diff --git a/Manifest.files.gz b/Manifest.files.gz index 04900a6bb7a7..ee7fc49e40b8 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz index 2ba1b59a148c..aaa015d103b8 100644 Binary files a/app-admin/Manifest.gz and b/app-admin/Manifest.gz differ diff --git a/app-admin/calamares/calamares-3.2.60.ebuild b/app-admin/calamares/calamares-3.2.60-r1.ebuild similarity index 98% rename from app-admin/calamares/calamares-3.2.60.ebuild rename to app-admin/calamares/calamares-3.2.60-r1.ebuild index 138cda4176eb..0a569c256030 100644 --- a/app-admin/calamares/calamares-3.2.60.ebuild +++ b/app-admin/calamares/calamares-3.2.60-r1.ebuild @@ -64,6 +64,10 @@ RDEPEND="${COMMON_DEPEND} upower? ( sys-power/upower ) " +PATCHES=( + "${FILESDIR}/${P}-ldflags.patch" +) + src_prepare() { ecm_src_prepare export PYTHON_INCLUDE_DIRS="$(python_get_includedir)" \ diff --git a/app-admin/calamares/calamares-3.2.60-r2.ebuild b/app-admin/calamares/calamares-3.2.60-r2.ebuild new file mode 100644 index 000000000000..138ba7e10169 --- /dev/null +++ b/app-admin/calamares/calamares-3.2.60-r2.ebuild @@ -0,0 +1,118 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_TEST="true" +PYTHON_COMPAT=( python3_{9..11} ) + +inherit ecm python-single-r1 + +DESCRIPTION="Distribution-independent installer framework" +HOMEPAGE="https://calamares.io" +SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="5" +KEYWORDS="~amd64" +IUSE="+networkmanager +upower" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +BDEPEND=" + dev-qt/linguist-tools:5 +" +COMMON_DEPEND="${PYTHON_DEPS} + dev-cpp/yaml-cpp:= + $(python_gen_cond_dep ' + dev-libs/boost:=[python,${PYTHON_USEDEP}] + dev-libs/libpwquality[${PYTHON_USEDEP}] + ') + dev-qt/qtconcurrent:5 + dev-qt/qtdbus:5 + dev-qt/qtdeclarative:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtsvg:5 + dev-qt/qtwebengine:5[widgets] + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + kde-frameworks/kconfig:5 + kde-frameworks/kcoreaddons:5 + kde-frameworks/kcrash:5 + kde-frameworks/kpackage:5 + kde-frameworks/kparts:5 + kde-frameworks/kservice:5 + sys-apps/dbus + sys-apps/dmidecode + sys-auth/polkit-qt + >=sys-libs/kpmcore-4.0.0:5= + virtual/libcrypt:= +" +DEPEND="${COMMON_DEPEND} + test? ( dev-qt/qttest:5 ) +" +RDEPEND="${COMMON_DEPEND} + app-admin/sudo + dev-libs/libatasmart + net-misc/rsync + || ( sys-boot/grub:2 sys-boot/systemd-boot ) + sys-boot/os-prober + sys-fs/squashfs-tools + sys-libs/timezone-data + virtual/udev + networkmanager? ( net-misc/networkmanager ) + upower? ( sys-power/upower ) +" + +PATCHES=( + "${FILESDIR}/${P}-ldflags.patch" +) + +src_prepare() { + ecm_src_prepare + export PYTHON_INCLUDE_DIRS="$(python_get_includedir)" \ + PYTHON_INCLUDE_PATH="$(python_get_library_path)"\ + PYTHON_CFLAGS="$(python_get_CFLAGS)"\ + PYTHON_LIBS="$(python_get_LIBS)" + + sed -i -e 's:pkexec /usr/bin/calamares:calamares-pkexec:' \ + calamares.desktop || die + sed -i -e 's:Icon=calamares:Icon=drive-harddisk:' \ + calamares.desktop || die +} + +src_configure() { + local mycmakeargs=( + -DINSTALL_CONFIG=ON + -DWEBVIEW_FORCE_WEBKIT=OFF + -DCMAKE_DISABLE_FIND_PACKAGE_LIBPARTED=ON + -DWITH_PYTHONQT=OFF + ) + + ecm_src_configure +} + +src_test() { + local myctestargs=( + # Skipped tests: + # load-dracut: tries and fails to find Dracut config + # libcalamaresnetworktest: needs network + # libcalamaresutilstest: inspects /tmp (expects namespace?) + # + # Need investigation: + # test_libcalamaresuipaste + # validate-netinstall + # validate-services-systemd + # localetest + # machineidtest + # packagechoosertest + -E "(load-dracut|libcalamaresnetworktest|libcalamaresutilstest|test_libcalamaresuipaste|validate-netinstall|validate-services-systemd|localetest|machineidtest|packagechoosertest)" + ) + + cmake_src_test +} + +src_install() { + ecm_src_install + dobin "${FILESDIR}"/calamares-pkexec +} diff --git a/app-admin/calamares/files/calamares-3.2.60-ldflags.patch b/app-admin/calamares/files/calamares-3.2.60-ldflags.patch new file mode 100644 index 000000000000..f81c49b50641 --- /dev/null +++ b/app-admin/calamares/files/calamares-3.2.60-ldflags.patch @@ -0,0 +1,14 @@ +From: Mario Haustein +Bug: https://bugs.gentoo.org/865281 + +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -203,7 +203,7 @@ set( CMAKE_C_FLAGS_MINSIZEREL "-Os -DNDEBUG" ) + set( CMAKE_C_FLAGS_RELEASE "-O4 -DNDEBUG" ) + set( CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g" ) + +-set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined -Wl,--fatal-warnings" ) ++set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined -Wl,--fatal-warnings ${CMAKE_SHARED_LINKER_FLAGS}" ) + + if( CMAKE_CXX_COMPILER_ID MATCHES "Clang" ) + message( STATUS "Found Clang ${CMAKE_CXX_COMPILER_VERSION}, setting up Clang-specific compiler flags." ) diff --git a/app-admin/conky/Manifest b/app-admin/conky/Manifest index 47ca17eb61b1..ff2edad84a26 100644 --- a/app-admin/conky/Manifest +++ b/app-admin/conky/Manifest @@ -1,3 +1,4 @@ DIST conky-1.13.1.tar.gz 2443276 BLAKE2B e51610172e830d0368e8c9a48ea056285efe48275364c4d0c973da6467ea044303d75f94cc0b963c3b423a7ec61d8eff26da30c102c557ccd5a4e8cf984db4f6 SHA512 3ee0e14f6ff2bac39404c272790055ac1106f47a00e8298da909a0febf6de0661486e8ce23f34e8c5050e364168b2efcefd0b28736cbd0bc135e1362f0dc5516 DIST conky-1.17.0.tar.gz 1699311 BLAKE2B 9aead9e1e9bf4bf61c1b3e09c6e319135ccce19c43740c1bb3c6142c936c2a045820078f4684ea037fc26a8b02343e11b5372f74258fdf2c5386459410498cc9 SHA512 4da55ba3835e8ff42747f2bc01c34a94b2819e08eb74ddb913fd34bf4b682d75331119745ee006d842d3d2142fc53eeada16afdf698a60f37b566f55896aa2db DIST conky-1.18.1.tar.gz 1703018 BLAKE2B ba3c0f9624bfcf229de4376a9446ad05285db4241d1caf4a7a8ac92971f57d022192504c9831a786e3c02db140d70f10cf34d7e146c8647cb2a2b923e6acc2cc SHA512 e390d2aa8a3f3b570b2e3dc43ef71ff0001e36f3b42ce5a9c01b8dca656a23b1af80ee2ee138f38b12b4581dd03711562445fb53e23ca0f26e8b8af878aa2ba1 +DIST conky-1.18.3.tar.gz 1710600 BLAKE2B 5664c504bab8ddda14e4442fce3c4bda70033b8b1efb0642901f154306adee300673756a776e304a151214fc9a3d7dd8277336ffd13305ff1d86c4d65819cfb4 SHA512 702932bad88265619cb6de60b2fe86e834e7828343f31e966df1838c6742d5da2998aab71704bb22e4b0bdc3d05e3c082c9ab6231124b310e8c14c89bd80ad52 diff --git a/app-admin/conky/conky-1.18.1.ebuild b/app-admin/conky/conky-1.18.1.ebuild index 44dd8a64799f..f60c0ae116e7 100644 --- a/app-admin/conky/conky-1.18.1.ebuild +++ b/app-admin/conky/conky-1.18.1.ebuild @@ -38,7 +38,6 @@ COMMON_DEPEND=" truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) wayland? ( dev-libs/wayland - dev-libs/wayland-protocols x11-libs/pango ) wifi? ( net-wireless/wireless-tools ) @@ -66,6 +65,9 @@ RDEPEND=" " DEPEND=" ${COMMON_DEPEND} + wayland? ( + dev-libs/wayland-protocols + ) " BDEPEND=" doc? ( diff --git a/app-admin/conky/conky-1.18.3.ebuild b/app-admin/conky/conky-1.18.3.ebuild new file mode 100644 index 000000000000..ff1244c36105 --- /dev/null +++ b/app-admin/conky/conky-1.18.3.ebuild @@ -0,0 +1,224 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LUA_COMPAT=( lua5-4 ) +PYTHON_COMPAT=( python{3_9,3_10,3_11} ) + +inherit cmake linux-info lua-single python-any-r1 readme.gentoo-r1 xdg + +DESCRIPTION="An advanced, highly configurable system monitor for X" +HOMEPAGE="https://github.com/brndnmtthws/conky" +SRC_URI="https://github.com/brndnmtthws/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3 BSD LGPL-2.1 MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="apcupsd bundled-toluapp cmus curl doc extras hddtemp ical iconv imlib + intel-backlight iostats irc lua-cairo lua-imlib lua-rsvg math moc mpd + mysql ncurses nvidia +portmon pulseaudio rss systemd thinkpad truetype + wayland webserver wifi X xinerama xmms2" + +COMMON_DEPEND=" + curl? ( net-misc/curl ) + ical? ( dev-libs/libical:= ) + iconv? ( virtual/libiconv ) + imlib? ( media-libs/imlib2[X] ) + irc? ( net-libs/libircclient ) + lua-cairo? ( x11-libs/cairo[X] ) + lua-imlib? ( media-libs/imlib2[X] ) + lua-rsvg? ( gnome-base/librsvg ) + mysql? ( dev-db/mysql-connector-c ) + ncurses? ( sys-libs/ncurses:= ) + nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] ) + pulseaudio? ( media-libs/libpulse ) + rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) + systemd? ( sys-apps/systemd ) + truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) + wayland? ( + dev-libs/wayland + x11-libs/pango + ) + wifi? ( net-wireless/wireless-tools ) + webserver? ( net-libs/libmicrohttpd ) + X? ( + x11-libs/libX11 + x11-libs/libXdamage + x11-libs/libXfixes + x11-libs/libXext + ) + xinerama? ( x11-libs/libXinerama ) + xmms2? ( media-sound/xmms2 ) + ${LUA_DEPS} +" +RDEPEND=" + ${COMMON_DEPEND} + apcupsd? ( sys-power/apcupsd ) + cmus? ( media-sound/cmus ) + hddtemp? ( app-admin/hddtemp ) + moc? ( media-sound/moc ) + extras? ( + app-editors/nano + || ( app-editors/vim app-editors/gvim ) + ) +" +DEPEND=" + ${COMMON_DEPEND} + wayland? ( + dev-libs/wayland-protocols + ) +" +BDEPEND=" + doc? ( + virtual/pandoc + $(python_gen_any_dep ' + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/jinja[${PYTHON_USEDEP}] + ') + ) + extras? ( + $(python_gen_any_dep ' + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/jinja[${PYTHON_USEDEP}] + ') + ) + wayland? ( dev-util/wayland-scanner ) +" + +python_check_deps() { + use doc || use extras || return 0 + python_has_version -b "dev-python/pyyaml[${PYTHON_USEDEP}]" && + python_has_version -b "dev-python/jinja[${PYTHON_USEDEP}]" +} + +REQUIRED_USE=" + imlib? ( X ) + lua-cairo? ( X bundled-toluapp ) + lua-imlib? ( X bundled-toluapp ) + lua-rsvg? ( X bundled-toluapp ) + nvidia? ( X ) + truetype? ( X ) + xinerama? ( X ) +" + +CONFIG_CHECK="~IPV6" + +DOCS=( README.md AUTHORS ) + +DISABLE_AUTOFORMATTING="yes" +DOC_CONTENTS="You can find sample configurations at ${ROOT}/usr/share/doc/${PF}. +To customize, copy to \${XDG_CONFIG_HOME}/conky/conky.conf and edit it to your liking. + +There are pretty html docs available at https://conky.cc/. + +Also see https://github.com/brndnmtthws/conky/wiki or https://wiki.gentoo.org/wiki/Conky" + +pkg_setup() { + linux-info_pkg_setup + lua-single_pkg_setup + if use doc || use extras; then + python-any-r1_pkg_setup + fi +} + +src_prepare() { + # pin lua 5.4 + sed -i -e 's|Lua "5.3" REQUIRED|Lua "5.4" EXACT|g' \ + cmake/ConkyPlatformChecks.cmake || die "ConkyPlatformChecks.cmake" + + cmake_src_prepare + xdg_environment_reset +} + +src_configure() { + local mycmakeargs=() + + if use X; then + mycmakeargs+=( + -DBUILD_ARGB=yes + -DBUILD_X11=yes + -DBUILD_XDAMAGE=yes + -DBUILD_XDBE=yes + -DBUILD_XSHAPE=yes + -DBUILD_MOUSE_EVENTS=yes + -DOWN_WINDOW=yes + ) + else + mycmakeargs+=( + -DBUILD_X11=no + ) + fi + + mycmakeargs+=( + -DBUILD_APCUPSD=$(usex apcupsd) + -DBUILD_AUDACIOUS=no + -DBUILD_BUILTIN_CONFIG=yes + -DBUILD_CMUS=$(usex cmus) + -DBUILD_CURL=$(usex curl) + -DBUILD_DOCS=$(usex doc) + -DBUILD_EXTRAS=$(usex extras) + -DBUILD_HDDTEMP=$(usex hddtemp) + -DBUILD_HTTP=$(usex webserver) + -DBUILD_I18N=yes + -DBUILD_IBM=$(usex thinkpad) + -DBUILD_ICAL=$(usex ical) + -DBUILD_ICONV=$(usex iconv) + -DBUILD_IMLIB2=$(usex imlib) + -DBUILD_INTEL_BACKLIGHT=$(usex intel-backlight) + -DBUILD_IOSTATS=$(usex iostats) + -DBUILD_IPV6=yes + -DBUILD_IRC=$(usex irc) + -DBUILD_JOURNAL=$(usex systemd) + -DBUILD_LUA_CAIRO=$(usex lua-cairo) + -DBUILD_LUA_IMLIB2=$(usex lua-imlib) + -DBUILD_LUA_RSVG=$(usex lua-rsvg) + -DBUILD_MATH=$(usex math) + -DBUILD_MOC=$(usex moc) + -DBUILD_MPD=$(usex mpd) + -DBUILD_MYSQL=$(usex mysql) + -DBUILD_NCURSES=$(usex ncurses) + -DBUILD_NVIDIA=$(usex nvidia) + -DBUILD_OLD_CONFIG=yes + -DBUILD_PORT_MONITORS=$(usex portmon) + -DBUILD_PULSEAUDIO=$(usex pulseaudio) + -DBUILD_RSS=$(usex rss) + -DBUILD_WAYLAND=$(usex wayland) + -DBUILD_WLAN=$(usex wifi) + -DBUILD_XFT=$(usex truetype) + -DBUILD_XINERAMA=$(usex xinerama) + -DBUILD_XMMS2=$(usex xmms2) + -DDOC_PATH=/usr/share/doc/${PF} + -DMAINTAINER_MODE=no + -DRELEASE=yes + ) + + if use doc || use extras; then + mycmakeargs+=( -DPython3_EXECUTABLE="${PYTHON}" ) + fi + + cmake_src_configure +} + +src_install() { + cmake_src_install + + if use extras; then + insinto /usr/share/vim/vimfiles/ftdetect + doins "${S}"/extras/vim/ftdetect/conkyrc.vim + + insinto /usr/share/vim/vimfiles/syntax + doins "${BUILD_DIR}"/extras/vim/syntax/conkyrc.vim + + insinto /usr/share/nano/ + doins "${BUILD_DIR}"/extras/nano/conky.nanorc + fi + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog + + xdg_pkg_postinst +} diff --git a/app-admin/eselect/Manifest b/app-admin/eselect/Manifest index 73ae2c1fd565..d22db10b0ff3 100644 --- a/app-admin/eselect/Manifest +++ b/app-admin/eselect/Manifest @@ -1,2 +1,3 @@ DIST eselect-1.4.20.tar.xz 180272 BLAKE2B 424653d00eda45335c3aaae50f6fbf2e89486da4529f657596516352f3b7fcb9859ceb2dc5b9762a34c44fb64e645fa27c46b86453bf50be6e8ae820664a4289 SHA512 9589ed89c4d5d31f71d535886eb50da67b84dec8a13a5df081e7569efee861dede4eaa43a0bfb9930c5b95d4f334e19245cb8820a73f7361527da262da1d1fb2 DIST eselect-1.4.21.tar.xz 182780 BLAKE2B 64db8ec3655bc78ad0e40be3c83625f46c49b1cd88e881dba843f05cdc56aba4e746b5fd27ab5c6663947dacc93211a98b224d48aeccc0154e203d3929d49116 SHA512 0dfb771401af3ce5f4002ac6717b37351b3a37b0421cf292b7b5a432f4ee2cff1705a44a45f8e5b3dee73440c7b49b2b76a69fb1cfa727874dd64285d1097eb7 +DIST eselect-1.4.22.tar.xz 183480 BLAKE2B 8f86bdddaf98bc075694bdf7283cbd366e0ef93635472b3bbac11fdd9765984cd82e493b16836bae66e4b2c42a9cb33ad0d2aacaaf8529b59e4898e11f172d26 SHA512 73a10278d604f462aefa099df398eec2b08aee33da69419351ff2faf1cf4c0f3de0f301d92015e52da63046fe7e2c1c388e11ac84b7deb3def505a59fa291dac diff --git a/app-admin/eselect/eselect-1.4.22.ebuild b/app-admin/eselect/eselect-1.4.22.ebuild new file mode 100644 index 000000000000..db0f598986ef --- /dev/null +++ b/app-admin/eselect/eselect-1.4.22.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit bash-completion-r1 + +DESCRIPTION="Gentoo's multi-purpose configuration and management tool" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Eselect" +SRC_URI="https://dev.gentoo.org/~ulm/eselect/${P}.tar.xz" + +LICENSE="GPL-2+ || ( GPL-2+ CC-BY-SA-4.0 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc emacs vim-syntax" + +DEPEND="sys-apps/sed + || ( + sys-apps/coreutils + app-misc/realpath + )" +RDEPEND="${DEPEND} + sys-apps/file + sys-libs/ncurses:0" +BDEPEND="doc? ( dev-python/docutils )" +PDEPEND="emacs? ( app-emacs/eselect-mode ) + vim-syntax? ( app-vim/eselect-syntax )" + +src_compile() { + emake + use doc && emake html +} + +src_install() { + emake DESTDIR="${D}" install + newbashcomp misc/${PN}.bashcomp ${PN} + dodoc AUTHORS ChangeLog NEWS README TODO doc/*.txt + if use doc; then + docinto html + dodoc *.html doc/*.html doc/*.css + fi + + # needed by news module + keepdir /var/lib/gentoo/news + if ! use prefix; then + fowners root:portage /var/lib/gentoo/news + fperms g+w /var/lib/gentoo/news + fi +} + +pkg_postinst() { + # fowners in src_install doesn't work for the portage group: + # merging changes the group back to root + if ! use prefix; then + chgrp portage "${EROOT}/var/lib/gentoo/news" \ + && chmod g+w "${EROOT}/var/lib/gentoo/news" + fi +} diff --git a/app-arch/Manifest.gz b/app-arch/Manifest.gz index ba4c214e1180..1839009d5693 100644 Binary files a/app-arch/Manifest.gz and b/app-arch/Manifest.gz differ diff --git a/app-arch/lzlib/lzlib-1.13-r1.ebuild b/app-arch/lzlib/lzlib-1.13-r1.ebuild index 8544568472f3..b90d523da001 100644 --- a/app-arch/lzlib/lzlib-1.13-r1.ebuild +++ b/app-arch/lzlib/lzlib-1.13-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI+=" verify-sig? ( https://download.savannah.gnu.org/releases/lzip/${PN}/$ LICENSE="libstdc++" # fancy form of GPL-2+ with library exception SLOT="0" -KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" BDEPEND="verify-sig? ( sec-keys/openpgp-keys-antoniodiazdiaz )" diff --git a/app-arch/makeself/Manifest b/app-arch/makeself/Manifest index 4c489fab56ef..b4929442c908 100644 --- a/app-arch/makeself/Manifest +++ b/app-arch/makeself/Manifest @@ -1 +1,2 @@ DIST makeself-2.4.5.tar.gz 39012 BLAKE2B f79cf1c087e89c4fd09f328fb795a3f8a78ee38060dbbd1590e3dcdf22a346b0c12bf6837d1636efadb2a66f6a762308de7ee9dd2fc62a7c88d417d257c5f0f6 SHA512 1dae74586f6bd5afb526801b7ffa7fc7962ff74b0f190cdd51da93c21421864b72f5fe18090cb2ff6ad27f0907fbf3aeb5545f3f70e33dbc9e505a78505f5f90 +DIST makeself-2.5.0.tar.gz 43996 BLAKE2B 60e5b7a55bd03e45d25753600ddb4e0e15f05eabc95db18f1a9da10308d018bb913ba1e8bc264c3bd828c3d229aca34fae4ab1682bf6cf59c591a6fdef186061 SHA512 cd0ce98579f00a02f9559848b39e0a6efea9df1866073d419f0b6560034cc186ed8315f8b4589e03f626b040727d9ae646bc2abaebe4f4da556b87617bdd770f diff --git a/app-arch/makeself/makeself-2.5.0.ebuild b/app-arch/makeself/makeself-2.5.0.ebuild new file mode 100644 index 000000000000..adf02e657005 --- /dev/null +++ b/app-arch/makeself/makeself-2.5.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit optfeature + +DESCRIPTION="Shell script that generates a self-extractible tar.gz" +HOMEPAGE="https://makeself.io/" +SRC_URI="https://github.com/megastep/makeself/archive/refs/tags/release-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux" + +# NB: The test framework requires bashunit (which isn't a big deal), but the +# tests themselves are not of great quality. You should avoid running them +# yourself as they like to run commands like gpg against your own ~/ settings. +RESTRICT="test" + +S="${WORKDIR}/${PN}-release-${PV}" + +src_compile() { :; } + +src_install() { + dobin makeself-header.sh makeself.sh + dosym makeself.sh /usr/bin/makeself + doman makeself.1 + dodoc README.md +} + +pkg_postinst() { + optfeature "bzip3 support" app-arch/bzip3 + optfeature "lz4 support" app-arch/lz4 + optfeature "lzop support" app-arch/lzop + optfeature "pbzip2 support" app-arch/pbzip2 + optfeature "pigz support" app-arch/pigz + optfeature "zstd support" app-arch/zstd + + # Also bzip2 and xz are supported but they are in @system. +} diff --git a/app-arch/snappy/Manifest b/app-arch/snappy/Manifest index 6d2cae5cff27..2b0fde8309f0 100644 --- a/app-arch/snappy/Manifest +++ b/app-arch/snappy/Manifest @@ -1 +1,2 @@ +DIST snappy-1.1.10.tar.gz 1105312 BLAKE2B 5195335fb1883974d290e7dca2b6d928bde2b183f3f61bca9da28855b39fd9a4ee1c24014322d238d2ec94f3a3a55fd43110c88283e85865272226e11cbb4834 SHA512 3578597f1d4ec09104ce0296b825b013590351230dfe56c635081fd282ce7a13a34caf2c283ac77bd24065e2d27af6db068d1f84b98cec2fd39a0e37a0d77070 DIST snappy-1.1.9.tar.gz 1102382 BLAKE2B 926d03156168e3d4800dc17144db3de2c182c6eb9970d87a00b94fb09b67e403479a64cbed75833b83fd03173c1bb8caaf248a55627e89fe2a34456f12ff3b42 SHA512 f1f8a90f5f7f23310423574b1d8c9acb84c66ea620f3999d1060395205e5760883476837aba02f0aa913af60819e34c625d8308c18a5d7a9c4e190f35968b024 diff --git a/app-arch/snappy/metadata.xml b/app-arch/snappy/metadata.xml index 733bf82bf93e..f228393d37be 100644 --- a/app-arch/snappy/metadata.xml +++ b/app-arch/snappy/metadata.xml @@ -14,6 +14,7 @@ other compression library; instead, it aims for very high speeds and reasonable compression. + cpe:/a:google:snappy google/snappy diff --git a/app-arch/snappy/snappy-1.1.10-r1.ebuild b/app-arch/snappy/snappy-1.1.10-r1.ebuild new file mode 100644 index 000000000000..a039f41ccade --- /dev/null +++ b/app-arch/snappy/snappy-1.1.10-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake-multilib + +DESCRIPTION="A high-speed compression/decompression library by Google" +HOMEPAGE="https://github.com/google/snappy" +SRC_URI="https://github.com/google/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +# ${PV%%.*}.FUDGE where FUDGE is incremented if ABI is broken without a new SONAME +# Please use abidiff on bumps. +SLOT="0/${PV%%.*}.1" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" +IUSE="cpu_flags_x86_avx cpu_flags_x86_avx2 test" +RESTRICT="!test? ( test )" + +DEPEND="test? ( dev-cpp/gtest )" + +DOCS=( format_description.txt framing_format.txt NEWS README.md ) + +PATCHES=( + "${FILESDIR}/${PN}-1.1.9_external_gtest.patch" + "${FILESDIR}/${PN}-1.1.9-clang-werror.patch" + "${FILESDIR}/${PN}-1.1.9_remove-no-rtti.patch" +) + +multilib_src_configure() { + local mycmakeargs=( + -DCMAKE_CXX_STANDARD=14 # Latest gtest needs -std=c++14 or newer + -DSNAPPY_BUILD_TESTS=$(usex test) + -DSNAPPY_REQUIRE_AVX=$(usex cpu_flags_x86_avx) + -DSNAPPY_REQUIRE_AVX2=$(usex cpu_flags_x86_avx2) + -DSNAPPY_BUILD_BENCHMARKS=OFF + # Options below are related to benchmarking, that we disable. + -DHAVE_LIBZ=NO + -DHAVE_LIBLZO2=NO + -DHAVE_LIBLZ4=NO + ) + cmake_src_configure +} + +multilib_src_test() { + # run tests directly to get verbose output + cd "${S}" || die + "${BUILD_DIR}"/snappy_unittest || die +} diff --git a/app-arch/xz-utils/Manifest b/app-arch/xz-utils/Manifest index 8e72b07133e1..457b0d0a09cb 100644 --- a/app-arch/xz-utils/Manifest +++ b/app-arch/xz-utils/Manifest @@ -1,4 +1,8 @@ DIST xz-5.2.10.tar.gz 2123206 BLAKE2B fdd9e77e21ee65482401e0e43e0b291093a227d452991a9182562989b7a4388ceed30d5d54cd7f86320dcc073eb792032a49741880338a29043a8380507c4215 SHA512 c3814680fcad421efa71cf977217a62c34e3223900302a6fd7d505f310a7b338815feee2c8225b1232bd22b9e29c7dda3664e54dae2d80f816daec6adf560ca1 DIST xz-5.2.10.tar.gz.sig 566 BLAKE2B ce72730816d03084dc0d1559d6f2890b3ebe25a5e6b0720d4775ba2364762b5d1934a3a53f2255f6e68a1cdf42778d85d8b02ab30396b2addab619e95855f733 SHA512 48a0864abee6639116678afab6e8319eb2de903b381362c611fb77f9b6fc21df5f7d9783a250810f7ecc08380fb371a3a791ab55f5a343b68b9d4f9e414da403 +DIST xz-5.2.11.tar.gz 2130684 BLAKE2B e513f99b2e28fa79f32747e21138cc13ab9340e95a302ac742bc6bda088465488173ea212704c4612f4059bbbc6c6a5b041332d84b999dc7df5b3fab1b1ac4e9 SHA512 8f75450380563229465420f4518fa7a60bbe6f0c9a3b580c2a9a7bf9bf380ad69209f792764115c346d89c49711478e8db42325ef9a46ccd3a6ec72292890ac8 +DIST xz-5.2.11.tar.gz.sig 566 BLAKE2B 34186ea22960f508dd796736107b99e1e3884ffae683f26671f455e46e4debf87400f2d7bb64b446fb142370a8bcebc6c05dce34dcc2678a761b9401b1e23860 SHA512 036ed0f663e179057a805a41052d3e437fbfb9dbbe173c5180fbb255f5a01ac4fa2561424228f4e568e63b22802b3a4ffd88dec2ba7c41a454998ebea30bea7c DIST xz-5.4.1.tar.gz 2528617 BLAKE2B f4dc8698fb97002aa0548107b448ab0dd8659cce506a83775930f95fd775601f7de1df44866310ac617853410a1915cd4e90ad4088b2fd56418e67b6f0fc4e98 SHA512 5cff8383a68fb88ecbb3770ec48af0ad5582e08de9dccd339e0b685aaa53447e59d6425caa3f63b54a674e5d78c20520876db547d156e6658ad4841660cba85b DIST xz-5.4.1.tar.gz.sig 566 BLAKE2B f384bcf7ea6bd7d3af65b6b17b379b48826257f403bca0bed1b42697f88edbc38f38eaac03c5564fc466df670f40e2e7ee49974232da4eb849718e89234c224b SHA512 2e6c3bf04ceb29c1bac8fdde7aa09c4d0f96442515d797e06ea860f365fd94777630b0034b98006cf844083efea8642a0bf87b1ff56de6a58446a644b1fd3c1c +DIST xz-5.4.2.tar.gz 2799022 BLAKE2B 3c622b0823f0cbb5fbc5eaa0372fc2f0fefe0950d131417f831bce47b6d9747d145429f0649de106819331f9ae6a289c497182c7b6d1e211513308dd083a9b72 SHA512 149f980338bea3d66de1ff5994b2b236ae1773135eda68b62b009df0c9dcdf5467f8cb2c06da95a71b6556d60bd3d21f475feced34d5dfdb80ee95416a2f9737 +DIST xz-5.4.2.tar.gz.sig 566 BLAKE2B 95c9c70fdd25b92095dd9691e4d9d4306a3f982becfe7bd42ca6132a76f29be2c2bc66f4fc2bda547058c18e227292f4185799eb905084fc3ab415ae867b4b1b SHA512 30e965c228ed3a8ecb804db8eb11703a765b7ee934030ea69bb3940b630811eb71bf74fd20371ef7759761904ece4f0144a0b00be4d843cf98299fd016f161aa diff --git a/app-arch/xz-utils/files/xz-utils-5.4.2-Wsign-conversion.patch b/app-arch/xz-utils/files/xz-utils-5.4.2-Wsign-conversion.patch new file mode 100644 index 000000000000..217cc759a904 --- /dev/null +++ b/app-arch/xz-utils/files/xz-utils-5.4.2-Wsign-conversion.patch @@ -0,0 +1,23 @@ +https://github.com/tukaani-project/xz/commit/0673c9ec98b6bae12b33dc295564514aaa26e2fc + +From 0673c9ec98b6bae12b33dc295564514aaa26e2fc Mon Sep 17 00:00:00 2001 +From: Lasse Collin +Date: Sun, 19 Mar 2023 22:45:59 +0200 +Subject: [PATCH] liblzma: Silence -Wsign-conversion in SSE2 code in + memcmplen.h. + +Thanks to Christian Hesse for reporting the issue. +Fixes: https://github.com/tukaani-project/xz/issues/44 +--- a/src/liblzma/common/memcmplen.h ++++ b/src/liblzma/common/memcmplen.h +@@ -89,7 +89,8 @@ lzma_memcmplen(const uint8_t *buf1, const uint8_t *buf2, + // version isn't used on x86-64. + # define LZMA_MEMCMPLEN_EXTRA 16 + while (len < limit) { +- const uint32_t x = 0xFFFF ^ _mm_movemask_epi8(_mm_cmpeq_epi8( ++ const uint32_t x = 0xFFFF ^ (uint32_t)_mm_movemask_epi8( ++ _mm_cmpeq_epi8( + _mm_loadu_si128((const __m128i *)(buf1 + len)), + _mm_loadu_si128((const __m128i *)(buf2 + len)))); + + diff --git a/app-arch/xz-utils/xz-utils-5.2.11.ebuild b/app-arch/xz-utils/xz-utils-5.2.11.ebuild new file mode 100644 index 000000000000..f867fbc26fe7 --- /dev/null +++ b/app-arch/xz-utils/xz-utils-5.2.11.ebuild @@ -0,0 +1,118 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Remember: we cannot leverage autotools in this ebuild in order +# to avoid circular deps with autotools + +EAPI=7 + +inherit libtool multilib multilib-minimal preserve-libs usr-ldscript + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://git.tukaani.org/xz.git" + inherit git-r3 autotools + + # bug #272880 and bug #286068 + BDEPEND="sys-devel/gettext >=sys-devel/libtool-2" +else + VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/lassecollin.asc + inherit verify-sig + + MY_P="${PN/-utils}-${PV/_}" + SRC_URI=" + mirror://sourceforge/lzmautils/${MY_P}.tar.gz + https://tukaani.org/xz/${MY_P}.tar.gz + verify-sig? ( + https://tukaani.org/xz/${MY_P}.tar.gz.sig + ) + " + + if [[ ${PV} != *_alpha* && ${PV} != *_beta* ]] ; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + fi + + S="${WORKDIR}/${MY_P}" +fi + +DESCRIPTION="Utils for managing LZMA compressed files" +HOMEPAGE="https://tukaani.org/xz/" + +# See top-level COPYING file as it outlines the various pieces and their licenses. +LICENSE="public-domain LGPL-2.1+ GPL-2+" +SLOT="0" +IUSE="+extra-filters nls static-libs" + +if [[ ${PV} != 9999 ]] ; then + BDEPEND+=" verify-sig? ( >=sec-keys/openpgp-keys-lassecollin-20230213 )" +fi + +# Tests currently do not account for smaller feature set +RESTRICT="!extra-filters? ( test )" + +src_prepare() { + default + + if [[ ${PV} == 9999 ]] ; then + eautopoint + eautoreconf + else + # Allow building shared libs on Solaris/x64 + elibtoolize + fi +} + +multilib_src_configure() { + local myconf=( + --enable-threads + $(use_enable nls) + $(use_enable static-libs static) + ) + + if ! multilib_is_native_abi ; then + myconf+=( + --disable-{xz,xzdec,lzmadec,lzmainfo,lzma-links,scripts} + ) + fi + + if ! use extra-filters ; then + myconf+=( + # LZMA1 + LZMA2 for standard .lzma & .xz files + --enable-encoders=lzma1,lzma2 + --enable-decoders=lzma1,lzma2 + + # those are used by default, depending on preset + --enable-match-finders=hc3,hc4,bt4 + + # CRC64 is used by default, though some (old?) files use CRC32 + --enable-checks=crc32,crc64 + ) + fi + + if [[ ${CHOST} == *-solaris* ]] ; then + export gl_cv_posix_shell="${EPREFIX}"/bin/sh + + # Undo Solaris-based defaults pointing to /usr/xpg5/bin + myconf+=( --disable-path-for-script ) + fi + + ECONF_SOURCE="${S}" econf "${myconf[@]}" +} + +multilib_src_install() { + default + + gen_usr_ldscript -a lzma +} + +multilib_src_install_all() { + find "${ED}" -type f -name '*.la' -delete || die + rm "${ED}"/usr/share/doc/${PF}/COPYING* || die +} + +pkg_preinst() { + preserve_old_lib /usr/$(get_libdir)/liblzma$(get_libname 0) +} + +pkg_postinst() { + preserve_old_lib_notify /usr/$(get_libdir)/liblzma$(get_libname 0) +} diff --git a/app-arch/xz-utils/xz-utils-5.4.2.ebuild b/app-arch/xz-utils/xz-utils-5.4.2.ebuild new file mode 100644 index 000000000000..736b0038dc69 --- /dev/null +++ b/app-arch/xz-utils/xz-utils-5.4.2.ebuild @@ -0,0 +1,130 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Remember: we cannot leverage autotools in this ebuild in order +# to avoid circular deps with autotools + +EAPI=7 + +inherit libtool multilib multilib-minimal preserve-libs usr-ldscript + +if [[ ${PV} == 9999 ]] ; then + # Per tukaani.org, git.tukaani.org is a mirror of github and + # may be behind. + EGIT_REPO_URI=" + https://github.com/tukaani-project/xz + https://git.tukaani.org/xz.git + " + inherit git-r3 autotools + + # bug #272880 and bug #286068 + BDEPEND="sys-devel/gettext >=sys-devel/libtool-2" +else + VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/lassecollin.asc + inherit verify-sig + + MY_P="${PN/-utils}-${PV/_}" + SRC_URI=" + https://github.com/tukaani-project/xz/releases/download/v${PV}/${MY_P}.tar.gz + mirror://sourceforge/lzmautils/${MY_P}.tar.gz + https://tukaani.org/xz/${MY_P}.tar.gz + verify-sig? ( + https://github.com/tukaani-project/xz/releases/download/v${PV}/${MY_P}.tar.gz.sig + https://tukaani.org/xz/${MY_P}.tar.gz.sig + ) + " + + if [[ ${PV} != *_alpha* && ${PV} != *_beta* ]] ; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + fi + + S="${WORKDIR}/${MY_P}" +fi + +DESCRIPTION="Utils for managing LZMA compressed files" +HOMEPAGE="https://tukaani.org/xz/" + +# See top-level COPYING file as it outlines the various pieces and their licenses. +LICENSE="public-domain LGPL-2.1+ GPL-2+" +SLOT="0" +IUSE="doc +extra-filters nls static-libs" + +if [[ ${PV} != 9999 ]] ; then + BDEPEND+=" verify-sig? ( >=sec-keys/openpgp-keys-lassecollin-20230213 )" +fi + +PATCHES=( + "${FILESDIR}"/${P}-Wsign-conversion.patch +) + +src_prepare() { + default + + if [[ ${PV} == 9999 ]] ; then + eautopoint + eautoreconf + else + # Allow building shared libs on Solaris/x64 + elibtoolize + fi +} + +multilib_src_configure() { + local myconf=( + --enable-threads + $(multilib_native_use_enable doc) + $(use_enable nls) + $(use_enable static-libs static) + ) + + if ! multilib_is_native_abi ; then + myconf+=( + --disable-{xz,xzdec,lzmadec,lzmainfo,lzma-links,scripts} + ) + fi + + if ! use extra-filters ; then + myconf+=( + # LZMA1 + LZMA2 for standard .lzma & .xz files + --enable-encoders=lzma1,lzma2 + --enable-decoders=lzma1,lzma2 + + # those are used by default, depending on preset + --enable-match-finders=hc3,hc4,bt4 + + # CRC64 is used by default, though some (old?) files use CRC32 + --enable-checks=crc32,crc64 + ) + fi + + if [[ ${CHOST} == *-solaris* ]] ; then + export gl_cv_posix_shell="${EPREFIX}"/bin/sh + + # Undo Solaris-based defaults pointing to /usr/xpg5/bin + myconf+=( --disable-path-for-script ) + fi + + ECONF_SOURCE="${S}" econf "${myconf[@]}" +} + +multilib_src_install() { + default + + gen_usr_ldscript -a lzma +} + +multilib_src_install_all() { + find "${ED}" -type f -name '*.la' -delete || die + + if use doc ; then + rm "${ED}"/usr/share/doc/${PF}/COPYING* || die + fi +} + +pkg_preinst() { + preserve_old_lib /usr/$(get_libdir)/liblzma$(get_libname 0) +} + +pkg_postinst() { + preserve_old_lib_notify /usr/$(get_libdir)/liblzma$(get_libname 0) +} diff --git a/app-arch/xz-utils/xz-utils-9999.ebuild b/app-arch/xz-utils/xz-utils-9999.ebuild index 8c4479233e8d..a6b8dfa60f8f 100644 --- a/app-arch/xz-utils/xz-utils-9999.ebuild +++ b/app-arch/xz-utils/xz-utils-9999.ebuild @@ -47,7 +47,7 @@ HOMEPAGE="https://tukaani.org/xz/" # See top-level COPYING file as it outlines the various pieces and their licenses. LICENSE="public-domain LGPL-2.1+ GPL-2+" SLOT="0" -IUSE="+extra-filters nls static-libs" +IUSE="doc +extra-filters nls static-libs" if [[ ${PV} != 9999 ]] ; then BDEPEND+=" verify-sig? ( >=sec-keys/openpgp-keys-lassecollin-20230213 )" @@ -68,6 +68,7 @@ src_prepare() { multilib_src_configure() { local myconf=( --enable-threads + $(multilib_native_use_enable doc) $(use_enable nls) $(use_enable static-libs static) ) @@ -110,7 +111,10 @@ multilib_src_install() { multilib_src_install_all() { find "${ED}" -type f -name '*.la' -delete || die - rm "${ED}"/usr/share/doc/${PF}/COPYING* || die + + if use doc ; then + rm "${ED}"/usr/share/doc/${PF}/COPYING* || die + fi } pkg_preinst() { diff --git a/app-benchmarks/Manifest.gz b/app-benchmarks/Manifest.gz index d8dedf10062c..7cccb3a85c1c 100644 Binary files a/app-benchmarks/Manifest.gz and b/app-benchmarks/Manifest.gz differ diff --git a/app-benchmarks/stress-ng/Manifest b/app-benchmarks/stress-ng/Manifest index 85f5170b3f7d..55615bdba3d6 100644 --- a/app-benchmarks/stress-ng/Manifest +++ b/app-benchmarks/stress-ng/Manifest @@ -1 +1 @@ -DIST stress-ng-0.15.05.tar.gz 3811699 BLAKE2B e156251163a9d1788a09cb957dd75c05770cd69fb2674b54fb8fe10ea94eb7d62dc4bfd38a8628b201bc5d260fd140bee78cd5ad7220a1e35dc51334ec2fca1e SHA512 654fff49ade6bc44c1f855cf5869255ef626180ca9b9d83374cd18c000a1b3f2e9c8b3b653592d2896d66d4cbb7dc0d60e67233af73fdc8039c2ba530d45fad4 +DIST stress-ng-0.15.06.tar.gz 3813785 BLAKE2B ebed2b6b087afc615e3a94ae239df32a7847f1ddc5db83a733ce8415d76818000bb742604643ebdd06d13e584a66c6814feb660752738f3fe7e714670e4ad396 SHA512 a999ecb813504cdcd56cb3f9ac6633c91ee3df2c203866d29fb04b61c41ee5e7738ca84cdbdb2cb8c6fe969f29a64d21a8df17419901266efc7f1170eb18013a diff --git a/app-benchmarks/stress-ng/stress-ng-0.15.05.ebuild b/app-benchmarks/stress-ng/stress-ng-0.15.06.ebuild similarity index 100% rename from app-benchmarks/stress-ng/stress-ng-0.15.05.ebuild rename to app-benchmarks/stress-ng/stress-ng-0.15.06.ebuild diff --git a/app-crypt/Manifest.gz b/app-crypt/Manifest.gz index 92397594b521..a6a42394dedb 100644 Binary files a/app-crypt/Manifest.gz and b/app-crypt/Manifest.gz differ diff --git a/app-crypt/ccrypt/ccrypt-1.11-r3.ebuild b/app-crypt/ccrypt/ccrypt-1.11-r4.ebuild similarity index 61% rename from app-crypt/ccrypt/ccrypt-1.11-r3.ebuild rename to app-crypt/ccrypt/ccrypt-1.11-r4.ebuild index dc921dadfc0a..a8bd812cb08c 100644 --- a/app-crypt/ccrypt/ccrypt-1.11-r3.ebuild +++ b/app-crypt/ccrypt/ccrypt-1.11-r4.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 + +inherit autotools DESCRIPTION="Encryption and decryption" HOMEPAGE="https://sourceforge.net/projects/ccrypt/" @@ -13,8 +15,21 @@ KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="emacs" RDEPEND="virtual/libcrypt:=" -DEPEND="${RDEPEND} - emacs? ( >=app-editors/emacs-23.1:* )" +DEPEND=" + ${RDEPEND} + emacs? ( >=app-editors/emacs-23.1:* ) +" + +PATCHES=( + "${FILESDIR}"/${PN}-1.11-refresh-macro-clang16.patch +) + +src_prepare() { + default + + # Clang 16 patch + eautoreconf +} src_configure() { econf \ diff --git a/app-crypt/ccrypt/files/ccrypt-1.11-refresh-macro-clang16.patch b/app-crypt/ccrypt/files/ccrypt-1.11-refresh-macro-clang16.patch new file mode 100644 index 000000000000..f610a1c38065 --- /dev/null +++ b/app-crypt/ccrypt/files/ccrypt-1.11-refresh-macro-clang16.patch @@ -0,0 +1,64 @@ +https://bugs.gentoo.org/900130 + +Refresh macro from gettext. +--- a/m4/intdiv0.m4 ++++ b/m4/intdiv0.m4 +@@ -1,5 +1,5 @@ +-# intdiv0.m4 serial 6 (gettext-0.18.2) +-dnl Copyright (C) 2002, 2007-2008, 2010-2016 Free Software Foundation, Inc. ++# intdiv0.m4 serial 9 (gettext-0.21.1) ++dnl Copyright (C) 2002, 2007-2008, 2010-2020 Free Software Foundation, Inc. + dnl This file is free software; the Free Software Foundation + dnl gives unlimited permission to copy and/or distribute it, + dnl with or without modifications, as long as this notice is preserved. +@@ -12,7 +12,7 @@ AC_DEFUN([gt_INTDIV0], + AC_REQUIRE([AC_CANONICAL_HOST])dnl + + AC_CACHE_CHECK([whether integer division by zero raises SIGFPE], +- gt_cv_int_divbyzero_sigfpe, ++ [gt_cv_int_divbyzero_sigfpe], + [ + gt_cv_int_divbyzero_sigfpe= + changequote(,)dnl +@@ -31,8 +31,11 @@ changequote([,])dnl + if test -z "$gt_cv_int_divbyzero_sigfpe"; then + AC_RUN_IFELSE( + [AC_LANG_SOURCE([[ +-#include ++#include /* for exit() */ + #include ++#if !(defined _WIN32 && !defined __CYGWIN__) ++#include /* for _exit() */ ++#endif + + static void + sigfpe_handler (int sig) +@@ -44,7 +47,7 @@ sigfpe_handler (int sig) + int x = 1; + int y = 0; + int z; +-int nan; ++int inan; + + int main () + { +@@ -59,7 +62,7 @@ int main () + #endif + + z = x / y; +- nan = y / y; ++ inan = y / y; + exit (2); + } + ]])], +@@ -79,8 +82,8 @@ changequote([,])dnl + fi + ]) + case "$gt_cv_int_divbyzero_sigfpe" in +- *yes) value=1;; +- *) value=0;; ++ *yes) value=1 ;; ++ *) value=0 ;; + esac + AC_DEFINE_UNQUOTED([INTDIV0_RAISES_SIGFPE], [$value], + [Define if integer division by zero raises signal SIGFPE.]) diff --git a/app-crypt/heimdal/heimdal-7.8.0-r1.ebuild b/app-crypt/heimdal/heimdal-7.8.0-r1.ebuild index 7852376dbebc..7e276c9c25ba 100644 --- a/app-crypt/heimdal/heimdal-7.8.0-r1.ebuild +++ b/app-crypt/heimdal/heimdal-7.8.0-r1.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86" IUSE="afs +berkdb caps gdbm hdb-ldap +lmdb otp selinux ssl static-libs test X" RESTRICT="!test? ( test )" diff --git a/app-crypt/mhash/files/mhash.pc b/app-crypt/mhash/files/mhash.pc new file mode 100644 index 000000000000..6186f85c7839 --- /dev/null +++ b/app-crypt/mhash/files/mhash.pc @@ -0,0 +1,4 @@ +Libs:-lmhash +Name: mhash +Version: @VERSION@ +Description: provides a uniform interface to several hash algorithms diff --git a/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild b/app-crypt/mhash/mhash-0.9.9.9-r3.ebuild similarity index 89% rename from app-crypt/mhash/mhash-0.9.9.9-r2.ebuild rename to app-crypt/mhash/mhash-0.9.9.9-r3.ebuild index e31cbe8e8e25..d8cba554e436 100644 --- a/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild +++ b/app-crypt/mhash/mhash-0.9.9.9-r3.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools @@ -39,6 +39,10 @@ src_prepare() { -e 's/--netscape//' \ "${S}"/doc/Makefile.in || die + sed \ + -e "s:@VERSION@:${PV}:" \ + "${FILESDIR}"/${PN}.pc > ${PN}.pc || die + # Refresh bundled libtool (ltmain.sh) # (elibtoolize is not sufficient) # bug #668666 @@ -57,5 +61,7 @@ src_compile() { src_install() { default + insinto /usr/$(get_libdir)/pkgconfig + doins ${PN}.pc find "${ED}" -name '*.la' -delete || die } diff --git a/app-crypt/ophcrack/files/ophcrack-3.8.0-buildsystem.patch b/app-crypt/ophcrack/files/ophcrack-3.8.0-buildsystem.patch new file mode 100644 index 000000000000..fc4ec60c016c --- /dev/null +++ b/app-crypt/ophcrack/files/ophcrack-3.8.0-buildsystem.patch @@ -0,0 +1,223 @@ +--- a/Makefile.in ++++ b/Makefile.in +@@ -35,7 +35,7 @@ + config \ + config.h.in \ + configure \ +- configure.in \ ++ configure.ac \ + COPYING \ + INSTALL \ + install-sh \ +@@ -82,13 +82,13 @@ + tar cfj $(distdir).tar.bz2 $(distdir) + rm -rf $(distdir) + +-# automatic re-running of configure if the configure.in file has changed +-configure: configure.in aclocal.m4 ++# automatic re-running of configure if the configure.ac file has changed ++configure: configure.ac aclocal.m4 + autoconf + + # autoheader might not change config.h.in, so touch a stamp file + config.h.in: stamp-h.in +-stamp-h.in: configure.in aclocal.m4 ++stamp-h.in: configure.ac aclocal.m4 + autoheader + echo timestamp > stamp-h.in + +--- a/configure.in ++++ b/configure.in +@@ -68,7 +68,7 @@ + AC_PROG_INSTALL + AC_PROG_LN_S + AC_PROG_MAKE_SET +-AC_PROG_RANLIB ++AC_CHECK_TOOL([AR], [ar]) + + if test "$GCC" = "yes"; then + CFLAGS="$CFLAGS -Wall -std=gnu9x -pedantic -I.." +@@ -167,55 +167,8 @@ + AC_CHECK_LIB([pthread], [pthread_mutex_init], [], [AC_MSG_ERROR([ophcrack requires libpthread.])]) + fi + +- +-AC_MSG_CHECKING(for libssl) +-with_ssl=no +-AC_ARG_WITH(libssl, AC_HELP_STRING(--with-libssl=DIR,use libssl in DIR), +-[ case "$withval" in +- no) +- AC_MSG_RESULT(no) +- ;; +- *) +- AC_MSG_RESULT(yes) +- with_ssl=$withval +- CFLAGS="$CFLAGS -I$with_ssl/include" +- CXXFLAGS="$CXXFLAGS -I$with_ssl/include" +- LIBS="$LIBS -L$with_ssl/lib -lssl -lcrypto" +- ;; +- esac ] +-) +- +-if test "x$with_ssl" = "xno"; then +- CHECK_SSL +-fi +- +-with_expat=no +-AC_ARG_WITH(libexpat, AC_HELP_STRING(--with-libexpat=DIR,use libexpat in DIR), +-[ AC_MSG_CHECKING(for libexpat) +- case "$withval" in +- no) +- AC_MSG_RESULT(no) +- ;; +- *) +- AC_MSG_RESULT(yes) +- with_expat=$withval +- if test "x$enable_win32" = "xyes"; then +- CFLAGS="$CFLAGS -I$with_expat/lib" +- CXXFLAGS="$CXXFLAGS -I$with_expat/lib" +- LIBS="$LIBS -L$with_expat" +- LIBS_END="$LIBS_END -lexpat" +- else +- CFLAGS="$CFLAGS -I$with_expat/include" +- CXXFLAGS="$CXXFLAGS -I$with_expat/include" +- LIBS="$LIBS -L$with_expat/lib -lexpat" +- fi +- ;; +- esac ] +-) +- +-if test "x$with_expat" = "xno"; then +- AC_CHECK_LIB([expat], [XML_ParserCreate], [], [AC_MSG_ERROR([ophcrack requires libexpat.])]) +-fi ++PKG_CHECK_MODULES([EXPAT], [expat]) ++PKG_CHECK_MODULES([CRYPTO], [libcrypto]) + + AC_CHECK_LIB([m], [sqrt], [], [AC_MSG_ERROR([ophcrack requires libmath.])]) + +--- a/src/Makefile.in ++++ b/src/Makefile.in +@@ -20,9 +20,16 @@ + + CC = @CC@ + +-CPPFLAGS = @CPPFLAGS@ +-CFLAGS = @CFLAGS@ -Icore -Intproba +-LDFLAGS = @LDFLAGS@ @LIBS@ ++CPPFLAGS = @CPPFLAGS@ -Icore -Intproba ++CFLAGS = @CFLAGS@ ++LIBS = @LIBS@ ++LDFLAGS = @LDFLAGS@ ++ ++EXPAT_CFLAGS = @EXPAT_CFLAGS@ ++EXPAT_LIBS = @EXPAT_LIBS@ ++ ++CRYPTO_CFLAGS = @CRYPTO_CFLAGS@ ++CRYPTO_LIBS = @CRYPTO_LIBS@ + + SUBDIRS = core ntproba samdump2 test + @HAVE_GUI_TRUE@SUBDIRS += gui +@@ -48,7 +55,7 @@ + ophcrack: gui/main.cpp core ntproba samdump2 + cp $< main.c + $(CC) $(CPPFLAGS) $(CFLAGS) -c main.c -o main.o +- $(CC) main.o $(ARCHIVES) -o $@ $(LDFLAGS) ++ $(CC) $(CFLAGS) $(LDFLAGS) main.o $(ARCHIVES) -o $@ $(EXPAT_LIBS) $(CRYPTO_LIBS) $(LIBS) + rm main.c main.o + + gui: core ntproba samdump2 +--- a/src/common.mk.in ++++ b/src/common.mk.in +@@ -23,7 +23,14 @@ + + CFLAGS = @CFLAGS@ + CPPFLAGS = @CPPFLAGS@ +-LDFLAGS = @LDFLAGS@ @LIBS@ ++LDFLAGS = @LDFLAGS@ ++LIBS = @LIBS@ ++ ++EXPAT_CFLAGS = @EXPAT_CFLAGS@ ++EXPAT_LIBS = @EXPAT_LIBS@ ++ ++CRYPTO_CFLAGS = @CRYPTO_CFLAGS@ ++CRYPTO_LIBS = @CRYPTO_LIBS@ + + HEADERS = $(wildcard *.h) + SOURCES = $(wildcard *.c) +@@ -32,11 +39,7 @@ + all: + + %.a: +- ar r $@ $^ +- $(RANLIB) $@ +- +-%.o: %.c +- $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ ++ $(AR) rcs $@ $^ + + clean_: + rm -f *.o *~ +--- a/src/core/Makefile.in ++++ b/src/core/Makefile.in +@@ -17,7 +17,7 @@ + + include ../common.mk + +-CFLAGS += -I../.. -I../samdump2 -I../ntproba ++CPPFLAGS += -I../.. -I../samdump2 -I../ntproba $(CRYPTO_CFLAGS) + + all: libophcrack.a + +--- a/src/gui/gui.pro.in ++++ b/src/gui/gui.pro.in +@@ -30,7 +30,7 @@ + ../ntproba/libntproba.a + + PRE_TARGETDEPS += $$ARCHIVES +-LIBS += $$ARCHIVES @LDFLAGS@ @LIBS@ ++LIBS += $$ARCHIVES @LDFLAGS@ @EXPAT_LIBS@ @CRYPTO_LIBS@ @LIBS@ + + QMAKE_CC = @CC@ + QMAKE_CXX = @CXX@ +--- a/src/ntproba/Makefile.in ++++ b/src/ntproba/Makefile.in +@@ -17,6 +17,8 @@ + + include ../common.mk + ++CPPFLAGS += $(EXPAT_CFLAGS) $(CRYPTO_CFLAGS) ++ + all: libntproba.a + + libntproba.a: $(OBJECTS) +--- a/src/samdump2/Makefile.in ++++ b/src/samdump2/Makefile.in +@@ -17,7 +17,7 @@ + + include ../common.mk + +-CFLAGS += -I../core ++CPPFLAGS += -I../core $(CRYPTO_CFLAGS) + + all: libsamdump2.a + +--- a/src/test/Makefile.in ++++ b/src/test/Makefile.in +@@ -17,7 +17,7 @@ + + include ../common.mk + +-CFLAGS += -I../.. -I../core -I../ntproba ++CPPFLAGS += -I../.. -I../core -I../ntproba + + ARCHIVES = \ + ../core/libophcrack.a \ +@@ -32,7 +32,7 @@ + %.a: + + test_%: test_%.o $(ARCHIVES) +- $(CC) $^ -o $@ $(LDFLAGS) ++ $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(EXPAT_LIBS) $(CRYPTO_LIBS) $(LIBS) + + clean: clean_ + rm -f $(TARGETS) diff --git a/app-crypt/ophcrack/files/ophcrack-ar.patch b/app-crypt/ophcrack/files/ophcrack-ar.patch deleted file mode 100644 index 422c17398d20..000000000000 --- a/app-crypt/ophcrack/files/ophcrack-ar.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/common.mk.in b/src/common.mk.in -index 0f090a8..9c133e0 100644 ---- a/src/common.mk.in -+++ b/src/common.mk.in -@@ -32,7 +32,7 @@ OBJECTS = $(SOURCES:%.c=%.o) - all: - - %.a: -- ar r $@ $^ -+ $(AR) r $@ $^ - $(RANLIB) $@ - - %.o: %.c diff --git a/app-crypt/ophcrack/ophcrack-3.8.0.ebuild b/app-crypt/ophcrack/ophcrack-3.8.0-r1.ebuild similarity index 54% rename from app-crypt/ophcrack/ophcrack-3.8.0.ebuild rename to app-crypt/ophcrack/ophcrack-3.8.0-r1.ebuild index c74837410a94..2a8a1e16c775 100644 --- a/app-crypt/ophcrack/ophcrack-3.8.0.ebuild +++ b/app-crypt/ophcrack/ophcrack-3.8.0-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit desktop toolchain-funcs qmake-utils +inherit autotools desktop qmake-utils xdg DESCRIPTION="A time-memory-trade-off-cracker" HOMEPAGE="https://ophcrack.sourceforge.io/" @@ -12,15 +12,17 @@ SRC_URI="https://downloads.sourceforge.net/project/${PN}/${PN}/${PV}/${P}.tar.bz LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="debug qt5 +tables" +IUSE="gui +tables" DEPEND=" - dev-libs/openssl:0= + dev-libs/openssl:= dev-libs/expat net-libs/netwib - qt5? ( + gui? ( dev-qt/qtcharts:5 + dev-qt/qtcore:5 dev-qt/qtgui:5 + dev-qt/qtwidgets:5 )" RDEPEND=" ${DEPEND} @@ -29,22 +31,25 @@ BDEPEND=" app-arch/unzip virtual/pkgconfig" -PATCHES=( "${FILESDIR}"/ophcrack-ar.patch ) +PATCHES=( "${FILESDIR}"/${P}-buildsystem.patch ) -src_configure() { - tc-export AR +src_prepare() { + default + eautoreconf +} +src_configure() { # bug #765229 - export PATH="$(qt5_get_bindir):${PATH}" + use gui && export PATH="$(qt5_get_bindir):${PATH}" - econf \ - $(use_enable debug) \ - $(use_enable qt5 gui) + econf $(use_enable gui) } src_install() { default - newicon src/gui/pixmaps/os.xpm ophcrack.xpm - make_desktop_entry "${PN}" OphCrack ophcrack + if use gui; then + newicon src/gui/pixmaps/os.xpm ophcrack.xpm + make_desktop_entry "${PN}" OphCrack ophcrack + fi } diff --git a/app-dicts/Manifest.gz b/app-dicts/Manifest.gz index d4bed5f00f14..2da332e0df4e 100644 Binary files a/app-dicts/Manifest.gz and b/app-dicts/Manifest.gz differ diff --git a/app-dicts/myspell-en/Manifest b/app-dicts/myspell-en/Manifest index 1597b4e5db04..5190969cad8b 100644 --- a/app-dicts/myspell-en/Manifest +++ b/app-dicts/myspell-en/Manifest @@ -1,2 +1,3 @@ DIST dict-en-20230101_lo.oxt 6099782 BLAKE2B 5103d0bdf9558184deb8d5d3d9ce00d7b597d4bdf4bfa2fefe3caa68d6e0fa68e2f9295d87c7a8315ba244ccbf007c198cad017aee6faf6590914f63c161cf61 SHA512 d34948b012245c0ad07819d625cd417a85b9edc13b842ad7d3974ed1428af4d2e02020ff0b89cde64a1b844ca8c2a54a7e77f37076e8cc1b38d6a2473da01d7d DIST dict-en-20230201_lo.oxt 6100214 BLAKE2B c75e6ce32020c10291909191eba888535a56cc4126f2d30c18516a967ca9ca88d7da6d26fa9026c7de75246ee42cc5977fe9db8494e224df3ca484667626d3c0 SHA512 9b9d893ed5061c32c808c91d2078e6f45716dfd3f5590edd02945e50cdb349b23bd35ff0d30aab352b0ddd318993091dcf180d5725016e238e209060eb7180dc +DIST dict-en-20230301_lo.oxt 6099726 BLAKE2B 3db7fc83af03a42f5f06fb13ff4f78415e0a806d86794b2e76e42f892a76281b9cf178e2c3ccddcc5a42a8d4d804657de5972905a58d817382bc970363763713 SHA512 b64c71ab00e5792411b56212b178a36b72fe10b83fa89db37cbbf3c1f9ce96f8d2c46a58d1773aabbb37a05c1812b59c45cc93fe5a1dd9fc19e0129c764aa251 diff --git a/app-dicts/myspell-en/myspell-en-20230301.ebuild b/app-dicts/myspell-en/myspell-en-20230301.ebuild new file mode 100644 index 000000000000..69910d320224 --- /dev/null +++ b/app-dicts/myspell-en/myspell-en-20230301.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit myspell-r2 + +DESCRIPTION="English dictionaries for myspell/hunspell" +HOMEPAGE=" + https://extensions.libreoffice.org/extensions/english-dictionaries + https://proofingtoolgui.org + https://github.com/marcoagpinto/aoo-mozilla-en-dict +" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/41/1677661772/dict-en-20230301_lo.oxt" + +LICENSE="BSD MIT LGPL-3+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" + +PLOCALES=( "en-AU" "en-CA" "en-GB" "en-US" "en-ZA" ) +IUSE+="+l10n_en ${PLOCALES[@]/#/l10n_}" +REQUIRED_USE="|| ( l10n_en ${PLOCALES[@]/#/l10n_} )" + +src_prepare() { + if use l10n_en-GB || use l10n_en; then + MYSPELL_HYPH+=( "hyph_en_GB.dic" ) + fi + if use l10n_en-US || use l10n_en; then + MYSPELL_THES+=( + "th_en_US_v2.dat" + "th_en_US_v2.idx" + ) + MYSPELL_HYPH+=( "hyph_en_US.dic" ) + fi + + MYSPELL_DICT=( ) + for lang in "${PLOCALES[@]}"; do + if [[ "${lang}" == "en" ]]; then + continue + fi + local mylinguas="${lang//-/_}" + if use "l10n_${lang}" || use l10n_en; then + MYSPELL_DICT+=( "${mylinguas}.aff" "${mylinguas}.dic" ) + else + rm "README_${mylinguas}.txt" || die + if [[ ${lang} == "en-US" ]]; then + rm "README_hyph_en_US.txt" || die + fi + if [[ ${lang} == "en-GB" ]]; then + rm "README_hyph_en_GB.txt" || die + rm "README_en_GB_thes.txt" || die + fi + fi + done + + default +} diff --git a/app-doc/Manifest.gz b/app-doc/Manifest.gz index 6d4b5e8b3e38..0a19171d2687 100644 Binary files a/app-doc/Manifest.gz and b/app-doc/Manifest.gz differ diff --git a/app-doc/doxygen/doxygen-1.9.6.ebuild b/app-doc/doxygen/doxygen-1.9.6.ebuild index 201a7de47d93..079b4fb5ea85 100644 --- a/app-doc/doxygen/doxygen-1.9.6.ebuild +++ b/app-doc/doxygen/doxygen-1.9.6.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} = *9999* ]]; then else SRC_URI="https://doxygen.nl/files/${P}.src.tar.gz" SRC_URI+=" mirror://sourceforge/doxygen/rel-${PV}/${P}.src.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi DESCRIPTION="Documentation system for most programming languages" diff --git a/app-editors/Manifest.gz b/app-editors/Manifest.gz index aa58dd479926..8d403c4098b8 100644 Binary files a/app-editors/Manifest.gz and b/app-editors/Manifest.gz differ diff --git a/app-editors/kakoune/files/kakoune-2022.10.31-gcc13.patch b/app-editors/kakoune/files/kakoune-2022.10.31-gcc13.patch new file mode 100644 index 000000000000..6c093bcdb2eb --- /dev/null +++ b/app-editors/kakoune/files/kakoune-2022.10.31-gcc13.patch @@ -0,0 +1,29 @@ +https://bugs.gentoo.org/895264 +https://github.com/mawww/kakoune/issues/4854 + +diff --git a/src/keys.hh b/src/keys.hh +index 0af1a5a8..ccafe336 100644 +--- a/src/keys.hh ++++ b/src/keys.hh +@@ -9,6 +9,8 @@ + #include "unicode.hh" + #include "vector.hh" + ++#include ++ + namespace Kakoune + { + +diff --git a/src/ranked_match.hh b/src/ranked_match.hh +index ec7fe626..62d6b8f0 100644 +--- a/src/ranked_match.hh ++++ b/src/ranked_match.hh +@@ -4,6 +4,8 @@ + #include "string.hh" + #include "meta.hh" + ++#include ++ + namespace Kakoune + { + diff --git a/app-editors/kakoune/kakoune-2022.10.31.ebuild b/app-editors/kakoune/kakoune-2022.10.31.ebuild index 2e6ad9d352ed..9293c946c84a 100644 --- a/app-editors/kakoune/kakoune-2022.10.31.ebuild +++ b/app-editors/kakoune/kakoune-2022.10.31.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020-2022 Gentoo Authors +# Copyright 2020-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,6 +15,10 @@ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" BDEPEND="virtual/pkgconfig" +PATCHES=( + "${FILESDIR}"/${P}-gcc13.patch +) + src_prepare() { sed -i '/CXXFLAGS += -O3/d' src/Makefile || die default diff --git a/app-emacs/Manifest.gz b/app-emacs/Manifest.gz index b656b5597509..382d7e5db9bf 100644 Binary files a/app-emacs/Manifest.gz and b/app-emacs/Manifest.gz differ diff --git a/app-emacs/all-the-icons-ivy-rich/Manifest b/app-emacs/all-the-icons-ivy-rich/Manifest index e9f4a5577ebc..12e41b372cf7 100644 --- a/app-emacs/all-the-icons-ivy-rich/Manifest +++ b/app-emacs/all-the-icons-ivy-rich/Manifest @@ -1,2 +1,3 @@ DIST all-the-icons-ivy-rich-1.7.1.tar.gz 23806 BLAKE2B 28d85c0a4d486900b444e2aab25c6cb257d91ddb4839ab3e71dced02c7ad85e822f465d0d29404c55421c05a1e14002480f977c898a8374e4c51c66631413413 SHA512 526632f74a674bfcd6c2019649be6e305c0d817a1b29d8e5883b239cd97f8b40a63c34bc39e4f4e8ca2ff71ee3cd15e43e40827f40aa2f6579ec4c96eced40e5 DIST all-the-icons-ivy-rich-1.8.0.tar.gz 26090 BLAKE2B ec0ccd4192007938d38dacf83c34bdae13df55400405dd0d25ba647c8ff0d50f6675fcccf80eb8cf76827111cd73cb189a70f1e8197b04c4d1985dc1600697f0 SHA512 3bc77353890d67b09016260cc47674ca0a1a73199eb50ca52f9a7f97039f99135151cd9e551919a0d4eade01dfd65dac14694e6226f1f7934cc2e213f35a512e +DIST all-the-icons-ivy-rich-1.9.0.tar.gz 26428 BLAKE2B f2d23fd537921fd48ce26caac35a5ac9516ad2bffdb99c37d507ba2640179aed8c5f88361c5e9e34c2945bdb9619d2416d8c5fea55c0dd25d0fe0fe42cd5c353 SHA512 ac0c3f18d3842eb4b9c6f098e00814f421277b44c4253f9efb28c6d02e94fbb159db40cd9ade877ce218154c30210bb39dc93bfd95a7a61a71b09cbed1af5d70 diff --git a/app-emacs/all-the-icons-ivy-rich/all-the-icons-ivy-rich-1.9.0.ebuild b/app-emacs/all-the-icons-ivy-rich/all-the-icons-ivy-rich-1.9.0.ebuild new file mode 100644 index 000000000000..05713b242f97 --- /dev/null +++ b/app-emacs/all-the-icons-ivy-rich/all-the-icons-ivy-rich-1.9.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=25.1 + +inherit elisp + +DESCRIPTION="Display icons for ivy buffers in Emacs" +HOMEPAGE="https://github.com/seagle0128/all-the-icons-ivy-rich/" +SRC_URI="https://github.com/seagle0128/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + app-emacs/all-the-icons + app-emacs/ivy-rich +" +BDEPEND="${RDEPEND}" + +DOCS=( README.md ) +SITEFILE="50${PN}-gentoo.el" diff --git a/app-emacs/citar/Manifest b/app-emacs/citar/Manifest index aa078ac35d44..66db9053f0a3 100644 --- a/app-emacs/citar/Manifest +++ b/app-emacs/citar/Manifest @@ -1,2 +1,3 @@ DIST citar-1.0.tar.gz 1339812 BLAKE2B 2093cc820199219ec70f99a746c630f2b8e6b4d464b1457d7b7db1c5c953138e7dd5ac55e21b13e7417dd0a764b6f1caaf400af353ecce9fb7e1bc578f570b0d SHA512 7f02a4e41a927c2c7c625189fa38caea8f0fc5616dd3487a93f71a373d1e4a124dd1cc520778a1ff2fa6dd7c3b619b539e3b0e47cb9caf7edd16e27e9d739585 DIST citar-1.1.tar.gz 1340039 BLAKE2B b2090a35a582918300f5e4bb2188d463630988830305aa4bb5e1e27f45ff8c96ca35458e610e13658b2120af497f9b877054a6fbebda48e0a4d87824ef48e9c8 SHA512 2b1924ef1a05a170eea31f844055b914410cd35613eda6604f08164818a8fc5480fc5a6d6f055ba95331b517305e51a6e671214cc88fccbda2430ae9b06dda49 +DIST citar-1.2.0.tar.gz 1417090 BLAKE2B 40673ee0f2ee5b4f86928e140714a517958d261c632ea1e7bcb3dcd3dde3a0bb9baaaa1107f50447f1d8e87485570033afbf0c652fa6b3f1fbffeda7b7df04c3 SHA512 31f817de77bc8fe9e2fdf96ac7df521ebe5685cf49a2a78cd2b1cd51e538165bde36fc8515c2fd7c20d4c6160372fdf37c1b870b12167f946c0f3934edd5fb7c diff --git a/app-emacs/citar/citar-1.2.0.ebuild b/app-emacs/citar/citar-1.2.0.ebuild new file mode 100644 index 000000000000..9c62e000f5a7 --- /dev/null +++ b/app-emacs/citar/citar-1.2.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=27.1 + +inherit elisp + +DESCRIPTION="Emacs package to quickly find and act on bibliographic references" +HOMEPAGE="https://github.com/emacs-citar/citar/" +SRC_URI="https://github.com/emacs-citar/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + app-emacs/citeproc-el + app-emacs/parsebib +" +BDEPEND="${RDEPEND}" + +# Embark integration has it's own package on MELPA, and it is probably better +# to split them. https://melpa.org/#/citar-embark +ELISP_REMOVE="citar-embark.el" + +DOCS=( CHANGELOG.org CONTRIBUTING.org README.org images ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +} + +src_test() { + ${EMACS} ${EMACSFLAGS} -L . -L test \ + -l test/citar-file-test.el \ + -l test/citar-format-test.el \ + -l test/citar-test.el \ + -f ert-run-tests-batch-and-exit || die +} diff --git a/app-emacs/company-coq/company-coq-1.0.1_p20210708-r1.ebuild b/app-emacs/company-coq/company-coq-1.0.1_p20210708-r1.ebuild index e03ba27d4576..4d43b44f080d 100644 --- a/app-emacs/company-coq/company-coq-1.0.1_p20210708-r1.ebuild +++ b/app-emacs/company-coq/company-coq-1.0.1_p20210708-r1.ebuild @@ -3,14 +3,14 @@ EAPI=8 -COMMIT=382db93374380e5db56f02934ee32bbe39159019 +[[ ${PV} == *_p20210708 ]] && COMMIT=382db93374380e5db56f02934ee32bbe39159019 inherit elisp DESCRIPTION="Collection of extensions for Proof General's Coq mode" HOMEPAGE="https://github.com/cpitclaudel/company-coq/" SRC_URI="https://github.com/cpitclaudel/${PN}/archive/${COMMIT}.tar.gz - -> ${P}.tar.gz" + -> ${P}.tar.gz" S="${WORKDIR}"/${PN}-${COMMIT} LICENSE="GPL-3+" diff --git a/app-emacs/company-coq/company-coq-1.0.1_p20220314.ebuild b/app-emacs/company-coq/company-coq-1.0.1_p20220314.ebuild index f6cf92448147..f1c8a7e4b396 100644 --- a/app-emacs/company-coq/company-coq-1.0.1_p20220314.ebuild +++ b/app-emacs/company-coq/company-coq-1.0.1_p20220314.ebuild @@ -3,14 +3,14 @@ EAPI=8 -COMMIT=a6e349e0131f676a885bd14c908fd26054b2df42 +[[ ${PV} == *_p20220314 ]] && COMMIT=a6e349e0131f676a885bd14c908fd26054b2df42 inherit elisp DESCRIPTION="Collection of extensions for Proof General's Coq mode" HOMEPAGE="https://github.com/cpitclaudel/company-coq/" SRC_URI="https://github.com/cpitclaudel/${PN}/archive/${COMMIT}.tar.gz - -> ${P}.tar.gz" + -> ${P}.tar.gz" S="${WORKDIR}"/${PN}-${COMMIT} LICENSE="GPL-3+" diff --git a/app-emacs/consult-flycheck/consult-flycheck-0.8.ebuild b/app-emacs/consult-flycheck/consult-flycheck-0.8-r1.ebuild similarity index 72% rename from app-emacs/consult-flycheck/consult-flycheck-0.8.ebuild rename to app-emacs/consult-flycheck/consult-flycheck-0.8-r1.ebuild index 71a13cdc7f92..b28863a7366a 100644 --- a/app-emacs/consult-flycheck/consult-flycheck-0.8.ebuild +++ b/app-emacs/consult-flycheck/consult-flycheck-0.8-r1.ebuild @@ -1,21 +1,25 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 + NEED_EMACS=26 inherit elisp DESCRIPTION="Consult integration for Flycheck" HOMEPAGE="https://github.com/minad/consult-flycheck" -SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz + -> ${P}.tar.gz" LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64" -SITEFILE="50${PN}-gentoo.el" +RDEPEND=" + app-emacs/consult + app-emacs/flycheck +" +BDEPEND="${RDEPEND}" -DEPEND="app-emacs/consult - app-emacs/flycheck" -RDEPEND="${DEPEND}" +SITEFILE="50${PN}-gentoo.el" diff --git a/app-emacs/consult-flycheck/consult-flycheck-0.9.ebuild b/app-emacs/consult-flycheck/consult-flycheck-0.9-r1.ebuild similarity index 72% rename from app-emacs/consult-flycheck/consult-flycheck-0.9.ebuild rename to app-emacs/consult-flycheck/consult-flycheck-0.9-r1.ebuild index 71a13cdc7f92..b28863a7366a 100644 --- a/app-emacs/consult-flycheck/consult-flycheck-0.9.ebuild +++ b/app-emacs/consult-flycheck/consult-flycheck-0.9-r1.ebuild @@ -1,21 +1,25 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 + NEED_EMACS=26 inherit elisp DESCRIPTION="Consult integration for Flycheck" HOMEPAGE="https://github.com/minad/consult-flycheck" -SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz + -> ${P}.tar.gz" LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64" -SITEFILE="50${PN}-gentoo.el" +RDEPEND=" + app-emacs/consult + app-emacs/flycheck +" +BDEPEND="${RDEPEND}" -DEPEND="app-emacs/consult - app-emacs/flycheck" -RDEPEND="${DEPEND}" +SITEFILE="50${PN}-gentoo.el" diff --git a/app-emacs/eglot/Manifest b/app-emacs/eglot/Manifest index 22fa75572fe9..c850f0a09d95 100644 --- a/app-emacs/eglot/Manifest +++ b/app-emacs/eglot/Manifest @@ -1,4 +1,3 @@ DIST eglot-1.11.tar.xz 36900 BLAKE2B 20496e37944127c0e209762d2455fad01e6578fd1fa8350cc1a6782ed3e5dc11b09f8b737cd97d5439ab7ef67caa5cdf725d53d2e9e91bbca10223106a9073ad SHA512 c258c89d8c81b1c1df8ea9798c120a7534c174ce435a4551f503c7477520619ac08bd627372033ed1740dfc67bf7e8004751259769844d6be9adc9411d8ae5ac -DIST eglot-1.6.tar.gz 288078 BLAKE2B a2214d216d0eeaca32d974c6686696dfcf141b3384741bc8cce0d02abb508eb5713933bc227d12a07f4b87fc34601431845b1b8e519538ae04ecc74b24db4004 SHA512 51227c8e2b0a1dd9a63ededbea592f01616ff728c34c330400c078212fef3f3e747e6dd30ba312523cbe60c7ea663a7af9d83300210cf331ea6162d2db5c7e41 DIST eglot-1.8.tar.gz 302450 BLAKE2B 7247b11adaf9a65a2e071ca17b55038fe85f5842fb4155b44dbfa82bae5774e4cd2f7a5557d40cb1a7ab7f554233f15abe297e10568a1630b464ab6a600d978f SHA512 0295eff6dfbbf9d7a82349b8e5ed9e7dad700f2f0bfcab879d906e30bfbb4d28b8779fd9076108ac9b1594a60ca5e30c5035e2f8ceae44add99c28a843027609 DIST eglot-1.9.tar.gz 316541 BLAKE2B 5b9f188ae3f2b26fd7bb95aeb3095fbf5a78f6a15eeccaceaf947f5f91e78253622d2c81d5e57f11762c0370baf9d6c856a4f770c2652840d750f98ee780b418 SHA512 961399e0877a09bd292424715c3fac86e7750e144ba302e61262925b6ded1d30c6ebf3e63067b27b56fa2062461a947425951ac5538e25312d179fa20bd68b79 diff --git a/app-emacs/eglot/eglot-1.6-r1.ebuild b/app-emacs/eglot/eglot-1.6-r1.ebuild deleted file mode 100644 index b5463a817ab2..000000000000 --- a/app-emacs/eglot/eglot-1.6-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -NEED_EMACS="26.1" - -inherit elisp - -DESCRIPTION="A minimal Emacs LSP client" -HOMEPAGE="https://github.com/joaotavora/eglot" -SRC_URI="https://github.com/joaotavora/eglot/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -# test requires internet connection to install several language servers, one of which -# is not packaged -RESTRICT="test" - -SITEFILE="50${PN}-gentoo.el" -ELISP_REMOVE="eglot-tests.el" -DOCS=( README.md NEWS.md ) - -src_install() { - elisp-make-autoload-file "${S}"/${PN}-autoload.el "${S}"/ - elisp_src_install -} diff --git a/app-emacs/elpher/elpher-3.3.3.ebuild b/app-emacs/elpher/elpher-3.3.3.ebuild index 944e4efca3e3..40280aceb7f3 100644 --- a/app-emacs/elpher/elpher-3.3.3.ebuild +++ b/app-emacs/elpher/elpher-3.3.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -COMMIT=ab75cff +[[ ${PV} == 3.3.3 ]] && COMMIT=ab75cff NEED_EMACS=27.1 inherit elisp @@ -11,7 +11,7 @@ inherit elisp DESCRIPTION="Practical and friendly Gopher and Gemini client for GNU Emacs" HOMEPAGE="https://thelambdalab.xyz/elpher/" SRC_URI="https://thelambdalab.xyz/gitweb/index.cgi?p=${PN}.git;a=snapshot;h=${COMMIT};sf=tgz - -> ${P}.tar.gz" + -> ${P}.tar.gz" S="${WORKDIR}"/${PN}-${COMMIT} LICENSE="GPL-3+" diff --git a/app-emacs/elpher/elpher-3.4.1.ebuild b/app-emacs/elpher/elpher-3.4.1.ebuild index b483395d707d..e0d169a965f4 100644 --- a/app-emacs/elpher/elpher-3.4.1.ebuild +++ b/app-emacs/elpher/elpher-3.4.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -COMMIT=bf0dd36 +[[ ${PV} == 3.4.1 ]] && COMMIT=bf0dd36 NEED_EMACS=27.1 inherit elisp @@ -11,7 +11,7 @@ inherit elisp DESCRIPTION="Practical and friendly Gopher and Gemini client for GNU Emacs" HOMEPAGE="https://thelambdalab.xyz/elpher/" SRC_URI="https://thelambdalab.xyz/gitweb/index.cgi?p=${PN}.git;a=snapshot;h=${COMMIT};sf=tgz - -> ${P}.tar.gz" + -> ${P}.tar.gz" S="${WORKDIR}"/${PN}-${COMMIT} LICENSE="GPL-3+" diff --git a/app-emacs/elpher/elpher-3.4.2.ebuild b/app-emacs/elpher/elpher-3.4.2.ebuild index e063d45937f0..48c35ad2cc84 100644 --- a/app-emacs/elpher/elpher-3.4.2.ebuild +++ b/app-emacs/elpher/elpher-3.4.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -COMMIT=f117f2f +[[ ${PV} == 3.4.2 ]] && COMMIT=f117f2f NEED_EMACS=27.1 inherit elisp @@ -11,7 +11,7 @@ inherit elisp DESCRIPTION="Practical and friendly Gopher and Gemini client for GNU Emacs" HOMEPAGE="https://thelambdalab.xyz/elpher/" SRC_URI="https://thelambdalab.xyz/gitweb/index.cgi?p=${PN}.git;a=snapshot;h=${COMMIT};sf=tgz - -> ${P}.tar.gz" + -> ${P}.tar.gz" S="${WORKDIR}"/${PN}-${COMMIT} LICENSE="GPL-3+" diff --git a/app-emacs/emojify/emojify-1.2_p20210309.ebuild b/app-emacs/emojify/emojify-1.2_p20210309.ebuild index 4474d180376c..50c7c8766728 100644 --- a/app-emacs/emojify/emojify-1.2_p20210309.ebuild +++ b/app-emacs/emojify/emojify-1.2_p20210309.ebuild @@ -3,7 +3,7 @@ EAPI=8 -COMMIT=1b726412f19896abf5e4857d4c32220e33400b55 +[[ ${PV} == *_p20210309 ]] && COMMIT=1b726412f19896abf5e4857d4c32220e33400b55 NEED_EMACS=24.3 inherit elisp @@ -11,7 +11,7 @@ inherit elisp DESCRIPTION="Display emojis in Emacs, like :smile: or plain ASCII ones like :)" HOMEPAGE="https://github.com/iqbalansari/emacs-emojify/" SRC_URI="https://github.com/iqbalansari/emacs-${PN}/archive/${COMMIT}.tar.gz - -> ${P}.tar.gz" + -> ${P}.tar.gz" S="${WORKDIR}"/emacs-${PN}-${COMMIT} LICENSE="GPL-3+" diff --git a/app-emacs/f/Manifest b/app-emacs/f/Manifest index 229c525f0a35..304a020040dd 100644 --- a/app-emacs/f/Manifest +++ b/app-emacs/f/Manifest @@ -1,2 +1 @@ -DIST f-0.19.0.tar.gz 19477 BLAKE2B 47cfb8c876e11cae7eca61815085c4290f65f9d72a7c5d397d8b53f6d57421f46997786556074027de5405acbf38ddb42ecbb767c809763e84d880286e6942dc SHA512 694eca1872cb0a0da7f75f610e4101993a79a5e7601c3f72fd2c642b1a44f5eada24777313b5166d901d9d983c18b4d412b4c6f01c382ace7530bacaa3b67c56 DIST f-0.20.0.tar.gz 19907 BLAKE2B 20b82a19b227d2e0863e540e75bc5094c0cf267eae00d699ff5b00fa574213d303135c246c454c92785080feae63ba6c529b115aeb1368774dd548852d94fb48 SHA512 0c44e63cd527a37bd5582d5a2a4cb2269d179930d7f41b378b9100ad5bb4518291b02197b1d55e1bf603bb5b1c12181b982d9b9a3f8fbd48860f6e86ea36c03e diff --git a/app-emacs/f/f-0.19.0-r1.ebuild b/app-emacs/f/f-0.19.0-r1.ebuild deleted file mode 100644 index c87a18f235d6..000000000000 --- a/app-emacs/f/f-0.19.0-r1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit elisp - -DESCRIPTION="Modern API for working with files and directories in Emacs" -HOMEPAGE="https://github.com/rejeep/f.el" -SRC_URI="https://github.com/rejeep/f.el/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -RESTRICT="test" - -RDEPEND="app-emacs/dash app-emacs/s" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/f.el-${PV}" -SITEFILE="50${PN}-gentoo.el" -DOCS="README.md" diff --git a/app-emacs/f/f-0.20.0-r1.ebuild b/app-emacs/f/f-0.20.0-r1.ebuild index 017525aa62d8..b3e020303c5b 100644 --- a/app-emacs/f/f-0.20.0-r1.ebuild +++ b/app-emacs/f/f-0.20.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,17 +6,21 @@ EAPI=8 inherit elisp DESCRIPTION="Modern API for working with files and directories in Emacs" -HOMEPAGE="https://github.com/rejeep/f.el" -SRC_URI="https://github.com/rejeep/f.el/archive/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/rejeep/f.el/" +SRC_URI="https://github.com/rejeep/f.el/archive/v${PV}.tar.gz + -> ${P}.tar.gz" +S="${WORKDIR}"/f.el-${PV} LICENSE="GPL-3+" SLOT="0" KEYWORDS="~alpha amd64 ~arm arm64 ~ppc64 ~riscv x86" RESTRICT="test" -RDEPEND="app-emacs/dash app-emacs/s" -DEPEND="${RDEPEND}" +RDEPEND=" + app-emacs/dash + app-emacs/s +" +BDEPEND="${RDEPEND}" -S="${WORKDIR}/f.el-${PV}" +DOCS=( README.md ) SITEFILE="50${PN}-gentoo.el" -DOCS="README.md" diff --git a/app-emacs/package-lint/Manifest b/app-emacs/package-lint/Manifest index a55a783a16b8..888bd2f18d82 100644 --- a/app-emacs/package-lint/Manifest +++ b/app-emacs/package-lint/Manifest @@ -1 +1,2 @@ DIST package-lint-0.16.tar.gz 224744 BLAKE2B a1d26ae28727e305416498b66da188cbadababc9f415c199eff380dbce4888ee3137b6f13a26147d427142a9d244c784e192d21df3173d0a0c2dde4acb1e8630 SHA512 f5d79b69d37671233614a622cd5fd6c28c230adb0d5b7934ccd6bedc12228adb7bdef6739fdd32be383cefceb65b9538a00f763b49be6499e4b6e3f8b1a34616 +DIST package-lint-0.17.tar.gz 284965 BLAKE2B 752adde42a820f54adef63cbe9f0cebef5af1d4d51dfefe9bf1c18929e739137081b722632f1fae8e171f4e25c0b9b15b47d9b3fb2c0f0542b214054c46ea190 SHA512 3f2240e03f67d6575b93643d26abd768bfe71fa1223c38b5b889c0f11784d22d3ad1849fa8f1424dccafc3befafdb49b1d796f175867490db96534c0e4b5f25e diff --git a/app-emacs/package-lint/package-lint-0.17.ebuild b/app-emacs/package-lint/package-lint-0.17.ebuild new file mode 100644 index 000000000000..580fcf939a43 --- /dev/null +++ b/app-emacs/package-lint/package-lint-0.17.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=26.1 + +inherit elisp + +DESCRIPTION="Linting library for Emacs Lisp package metadata" +HOMEPAGE="https://github.com/purcell/package-lint/" +SRC_URI="https://github.com/purcell/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +KEYWORDS="~amd64 ~x86" +SLOT="0" + +PATCHES=( "${FILESDIR}"/${PN}-symbol-info-data-directory.patch ) +SITEFILE="50${PN}-gentoo.el" + +src_prepare() { + elisp_src_prepare + + sed "s|@SITEETC@|${EPREFIX}${SITEETC}/${PN}|" -i ${PN}.el || die +} + +src_install() { + elisp-install ${PN} ${PN}{,-flymake}.el{,c} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + + insinto ${SITEETC}/${PN} + doins -r data + + einstalldocs +} diff --git a/app-emacs/paredit/Manifest b/app-emacs/paredit/Manifest index d2059fdca23e..4ef5df2d0033 100644 --- a/app-emacs/paredit/Manifest +++ b/app-emacs/paredit/Manifest @@ -1,3 +1,4 @@ DIST paredit-23.html.xz 1920 BLAKE2B 029c09848bb162c135c882ca17e6d5da9c3c17ba3937a809dcd03edb4b1841a0069a72dbd6676003cdf1a9de60a1f88eefa1de050210a37b52a005d28892ab14 SHA512 0ef584787b6094f1d0720aeb4d3a8c106605be62ffaa240d27a190ed9a6dd83d6d1ce68c2d184e84539a0e0658dcbed068335b69f4b1905ae9bf3d9968d5fb9b DIST paredit-24.el.xz 24332 BLAKE2B 5243810cfcc40ebfd62ce3f833afa214defe9b91affbeb142ddad308e1fcff3f54a0ed19029a5ebd31f374868abc34f160d2efac65a609e783483ba2c92194d2 SHA512 76d9d2694473aeaab573964d79418fba20bfecef7f3771682f769ef05fb9385f9ef6dda1a5c7edec5d0a6f919d2eca5e75d595bd8cd5220c5179bfcac5f20f94 DIST paredit-25.tar.xz 33552 BLAKE2B 7fd36e796c754a6bca28d3bbdf59c37bba326870a6ba94380b4c6130a5f0be103ef8ced0071059faa785fbad7cdcfecd0eb491a2b07200cc6e3208b61b0a2af2 SHA512 46ae5eee7007d7ddc2c03955f521dac950b88ee3274faf071983380d83b30b553da7d21fbe791a2c760f0f56b7fd177714085c18a8dbc5c50bc0a240bf7e77aa +DIST paredit-26.tar.gz 63322 BLAKE2B 6259b17655d0c1ebaa30fad2e46639f1e84e5aaee18980131d9e2cad9711ab469efc75a3ed264213bf3fbe18cddc9c69c0bb3907a3acfcc896aa2070cf00f44a SHA512 1f0a712d6b99740e559208451a3292e52b110a5f40224fdd30e390c4eb63f3b01790d8cc0a3fb0f0681a7739ca26763df6afbb4c2e00b6560dccb29950f70a70 diff --git a/app-emacs/paredit/metadata.xml b/app-emacs/paredit/metadata.xml index 986088003fe1..5e20d8694796 100644 --- a/app-emacs/paredit/metadata.xml +++ b/app-emacs/paredit/metadata.xml @@ -1,9 +1,13 @@ + - - gnu-emacs@gentoo.org - Gentoo GNU Emacs project - - + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + + emacsmirror/paredit + diff --git a/app-emacs/paredit/paredit-26.ebuild b/app-emacs/paredit/paredit-26.ebuild new file mode 100644 index 000000000000..57845814dc0c --- /dev/null +++ b/app-emacs/paredit/paredit-26.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Minor mode for performing structured editing of S-expressions" +HOMEPAGE="https://paredit.org/ + https://www.emacswiki.org/emacs/ParEdit/ + https://github.com/emacsmirror/paredit/" +SRC_URI="https://github.com/emacsmirror/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" + +DOCS=( CREDITS NEWS ${PN}.html ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + + sh ./genhtml.sh || die "the script genhtml.sh failed" +} + +src_test() { + ${EMACS} ${EMACSFLAGS} -l ${PN}.el -l test.el || die "tests failed" +} + +src_install() { + rm test.el* || die + + elisp_src_install +} diff --git a/app-emacs/php-mode/Manifest b/app-emacs/php-mode/Manifest index ae382cb94f27..c0b1c811e9b1 100644 --- a/app-emacs/php-mode/Manifest +++ b/app-emacs/php-mode/Manifest @@ -1,4 +1,4 @@ DIST php-mode-1.23.0.tar.gz 94451 BLAKE2B 324eda995ba8d93ca9bec691c88b05caac3d6786b2d1caac39dc34f513e8a026b3803ad3712729b147a8ee839fe337bf11ebaa1b718cb4c741997a9e1c9279a3 SHA512 051adf317ac1dc4ae14b3aaad9aa15ef650a74c7c1ff134ff9a26664cc7494b522957d9cbed981ec398e9bdc6ccae4437c628b2fe3535e8f2a95da34363ec88a DIST php-mode-1.24.0.tar.gz 94715 BLAKE2B 226dfe72153f541d8a7ee396dc3cb49c2b0a26c084a3ea36f812f4e923cf364d3ddca0192b87b5a068a9a19a9cfa1227a91f0793374e513b957764b0c867df3f SHA512 fd26f1f022d20bf3dffb772f3735b244cf7e2b4fe51ed35c6ead4f7a7b21686cecd2db54f882a6622a34e3265b4af68d71b589d5adc79b15be3c5e4019ea026a -DIST php-mode-1.24.1.tar.gz 98595 BLAKE2B f9f6e6812e7239eb9ec9dfdbb932dc74b85df46d0d4001a745a6ff297d060a5bcb835200b02e0bfb09f2d35b20d0c72e273d84e16ed3e7d95d235a369a0c54cc SHA512 e6459637874aef457b856c8730d6b761de38e251b49a44a51cecbb08ae092d383a59adc77997f2ebe27066cb050db588f0037cf9554a071d4834089e14acd9ac DIST php-mode-1.24.2.tar.gz 133018 BLAKE2B d6d5da323f10ffd133b34e672576a1ac7c2c2284aba6bab6c628d5fb335327a9e7c73035f47a709046591e57ff4bd53d386e516f4004d000c4276cb341ac4783 SHA512 52c9770baea00a05a468e91d9af765cb1665980c7acb32220829e7920ae092996b017c396836b171f2affa61bdb6329e7460acde88dd788004750ca21f280a7a +DIST php-mode-1.24.3.tar.gz 139037 BLAKE2B 07cd54f10f89a937481c523f1f6e4bbe0f006da80dabaf6ce245f9da89d8fc19a7703a6f05ac721eeec46c13e7ac2c6a7a754c731d4a4b7411030b7725c3b36c SHA512 50568799e894c6aafd07416680a3011406a0ef6e906cd5780684c327a696f13411bd01dc71919f12663a8dd7b000435dd8259248e4db56d0a6a7807d8387be29 diff --git a/app-emacs/php-mode/php-mode-1.24.1.ebuild b/app-emacs/php-mode/php-mode-1.24.3.ebuild similarity index 95% rename from app-emacs/php-mode/php-mode-1.24.1.ebuild rename to app-emacs/php-mode/php-mode-1.24.3.ebuild index d8261dee74fe..2c8b0eadeb01 100644 --- a/app-emacs/php-mode/php-mode-1.24.1.ebuild +++ b/app-emacs/php-mode/php-mode-1.24.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 diff --git a/app-emacs/undo-tree/undo-tree-0.8.1.ebuild b/app-emacs/undo-tree/undo-tree-0.8.1-r1.ebuild similarity index 85% rename from app-emacs/undo-tree/undo-tree-0.8.1.ebuild rename to app-emacs/undo-tree/undo-tree-0.8.1-r1.ebuild index dfeb0ba97404..be73ca2aef7e 100644 --- a/app-emacs/undo-tree/undo-tree-0.8.1.ebuild +++ b/app-emacs/undo-tree/undo-tree-0.8.1-r1.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 + NEED_EMACS=24 inherit readme.gentoo-r1 elisp @@ -15,9 +16,9 @@ LICENSE="GPL-3+" SLOT="0" KEYWORDS="amd64 x86" +RDEPEND="app-emacs/queue" +BDEPEND="${RDEPEND}" + SITEFILE="50${PN}-gentoo.el" DOC_CONTENTS="To enable undo trees globally, place '(global-undo-tree-mode)' in your .emacs file." - -DEPEND="app-emacs/queue" -RDEPEND="${DEPEND}" diff --git a/app-emacs/undo-tree/undo-tree-0.8.2.ebuild b/app-emacs/undo-tree/undo-tree-0.8.2-r1.ebuild similarity index 91% rename from app-emacs/undo-tree/undo-tree-0.8.2.ebuild rename to app-emacs/undo-tree/undo-tree-0.8.2-r1.ebuild index fc23a69f50bb..be6057114bef 100644 --- a/app-emacs/undo-tree/undo-tree-0.8.2.ebuild +++ b/app-emacs/undo-tree/undo-tree-0.8.2-r1.ebuild @@ -15,9 +15,9 @@ LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND="app-emacs/queue" -RDEPEND="${DEPEND}" +RDEPEND="app-emacs/queue" +BDEPEND="${RDEPEND}" +SITEFILE="50${PN}-gentoo.el" DOC_CONTENTS="To enable undo trees globally, place '(global-undo-tree-mode)' in your .emacs file." -SITEFILE="50${PN}-gentoo.el" diff --git a/app-emacs/vertico/Manifest b/app-emacs/vertico/Manifest index 6ea0b13224d4..a14ae3c8df4e 100644 --- a/app-emacs/vertico/Manifest +++ b/app-emacs/vertico/Manifest @@ -1,3 +1,2 @@ -DIST vertico-0.29.tar.gz 43682 BLAKE2B fef1ae786c823d7180f1c2d312a5961309d934145029933cc05e09839120bb2f4fcd1dbfad2194bb8613badb49966d1f69eb658397e4e2346ccc46fb228136ff SHA512 6af726ee916090247d003f552470dea6a2348c3ca382e030fe4c3de777c3414ed00a50aa5cdec17de7e59ebd44f5d88d842a284b38be7f9edca9220a1b240da0 -DIST vertico-1.0.tar.gz 43930 BLAKE2B 7418566d03c86c95aeb1969db19359628f04930413b17aaa2113836ee90368bb6df26c6af16a530a2977f3834b56565bbcd304ce362b6387baf9cc812c8b2982 SHA512 ad4e92b1edc5897f37b5ecc0c2f3291cf775afca14a33f1db17878f0560a4a1230513b833b1222f97b92f8711d2178bc30c6ccb55c8d22593f29b01717fd8968 DIST vertico-1.1.tar.gz 44320 BLAKE2B ca423d0a745cb0ed9c7f857f07595614264c8cf60056b696c31e26f85578278b1993c803556609fd444a1729f5380e314b39bd586073a6145b6b3e7f46462999 SHA512 e8df93ad4bd97d6313eefc3c2d88652841858a22db9be17b07e68095c158daf228f717524a6ba912541ce405afdfe5f696a3e5adf5d08c5e9e8b44694eb62294 +DIST vertico-1.2.tar.gz 44501 BLAKE2B 46ff938c13b6dbdf3f952a887b5fe4d091dfe68da067620e3ca2c567c783af748ab921502b7f5f66cfd6ffa7457b10563e95ae5d7add32565a15643531f83da4 SHA512 f7deeeaeb4b78a857e354dab8d61b5062147be4fb7b87083b0fd16d88bf26ec7354df462d17f756f538b32fbcbbda0878ee48540d1e45c592a5f7c2533c10eb0 diff --git a/app-emacs/vertico/vertico-1.0.ebuild b/app-emacs/vertico/vertico-1.0.ebuild deleted file mode 100644 index eec14ff439d5..000000000000 --- a/app-emacs/vertico/vertico-1.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -NEED_EMACS=27 - -inherit elisp - -DESCRIPTION="Vertical interactive completion" -HOMEPAGE="https://github.com/minad/vertico" -SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DOCS=( README.org ) -SITEFILE="50${PN}-gentoo.el" - -src_prepare() { - default - mv extensions/*.el . || die -} - -src_compile() { - elisp_src_compile - elisp-make-autoload-file -} diff --git a/app-emacs/vertico/vertico-0.29.ebuild b/app-emacs/vertico/vertico-1.2.ebuild similarity index 58% rename from app-emacs/vertico/vertico-0.29.ebuild rename to app-emacs/vertico/vertico-1.2.ebuild index eec14ff439d5..0ff52c845500 100644 --- a/app-emacs/vertico/vertico-0.29.ebuild +++ b/app-emacs/vertico/vertico-1.2.ebuild @@ -1,26 +1,30 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -NEED_EMACS=27 +NEED_EMACS=27.1 inherit elisp DESCRIPTION="Vertical interactive completion" HOMEPAGE="https://github.com/minad/vertico" -SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" -DOCS=( README.org ) +RDEPEND=">=app-emacs/compat-29.1.4.0" +BDEPEND="${RDEPEND}" + +DOCS=( CHANGELOG.org README.org ) SITEFILE="50${PN}-gentoo.el" src_prepare() { default - mv extensions/*.el . || die + mv extensions/*.el ./ || die } src_compile() { diff --git a/app-emulation/Manifest.gz b/app-emulation/Manifest.gz index 287dec31c8c7..64fb4d375653 100644 Binary files a/app-emulation/Manifest.gz and b/app-emulation/Manifest.gz differ diff --git a/app-emulation/aranym/aranym-1.1.0.ebuild b/app-emulation/aranym/aranym-1.1.0-r1.ebuild similarity index 96% rename from app-emulation/aranym/aranym-1.1.0.ebuild rename to app-emulation/aranym/aranym-1.1.0-r1.ebuild index 5c33cc4b867c..3b4f4ca886c8 100644 --- a/app-emulation/aranym/aranym-1.1.0.ebuild +++ b/app-emulation/aranym/aranym-1.1.0-r1.ebuild @@ -41,6 +41,8 @@ PATCHES=( "${FILESDIR}"/${PN}-1.1.0-libcwrap.patch "${FILESDIR}"/${PN}-1.1.0-ar.patch "${FILESDIR}"/${PN}-1.1.0-clang-16-register.patch + "${FILESDIR}"/${PN}-1.1.0-configure-clang16.patch + "${FILESDIR}"/${PN}-1.1.0-configure-bashisms.patch ) ECONF_SOURCE="${S}" diff --git a/app-emulation/aranym/files/aranym-1.1.0-configure-bashisms.patch b/app-emulation/aranym/files/aranym-1.1.0-configure-bashisms.patch new file mode 100644 index 000000000000..f2a453095a52 --- /dev/null +++ b/app-emulation/aranym/files/aranym-1.1.0-configure-bashisms.patch @@ -0,0 +1,37 @@ +https://github.com/aranym/aranym/pull/102 + +From 1a45b77ee2eaabc53fef0794c0e3a64a7c41683e Mon Sep 17 00:00:00 2001 +From: Sam James +Date: Sun, 19 Mar 2023 02:05:09 +0000 +Subject: [PATCH] configure.ac: fix bashisms + +configure scripts need to be runnable with a POSIX-compliant /bin/sh. + +On many (but not all!) systems, /bin/sh is provided by Bash, so errors +like this aren't spotted. Notably Debian defaults to /bin/sh provided +by dash which doesn't tolerate such bashisms as '=='. + +This retains compatibility with bash. +--- a/configure.ac ++++ b/configure.ac +@@ -1714,7 +1714,7 @@ SDL_CFLAGS= + SDL_LIBS= + no_sdl=yes + no_sdl2=yes +-if test "$OS_TYPE" == darwin -a "$WITH_FINK" = no; then ++if test "$OS_TYPE" = darwin -a "$WITH_FINK" = no; then + ARANYM_CHECK_FRAMEWORK(SDL, []) + if test "$have_framework_SDL" = yes ; then + ARANYM_CHECK_FRAMEWORK_LOCATION(SDL) +@@ -1781,7 +1781,7 @@ SDL_LIBS="$SDL_LIBS -lpthread" + AM_CONDITIONAL([ENABLE_SDL2], test "$enable_sdl2" = yes) + # + # SDL2 on macOS needs 10.6 or above +-if test "$enable_sdl2" = yes -a "$OS_TYPE" == darwin; then ++if test "$enable_sdl2" = yes -a "$OS_TYPE" = darwin; then + export MACOSX_DEPLOYMENT_TARGET=10.6 + fi + +-- +2.40.0 + diff --git a/app-emulation/aranym/files/aranym-1.1.0-configure-clang16.patch b/app-emulation/aranym/files/aranym-1.1.0-configure-clang16.patch new file mode 100644 index 000000000000..66d2c091b860 --- /dev/null +++ b/app-emulation/aranym/files/aranym-1.1.0-configure-clang16.patch @@ -0,0 +1,30 @@ +https://github.com/aranym/aranym/pull/102 + +From ef9ba74fcbf868aeb1b0e0b02e53775a14cda0f7 Mon Sep 17 00:00:00 2001 +From: Sam James +Date: Sun, 19 Mar 2023 01:56:56 +0000 +Subject: [PATCH] configure.ac: fix -Wimplicit-function-declaration in TUN/TAP + test + +Clang 16 makes -Wimplicit-function-declaration an error by default. + +Unfortunately, this can lead to misconfiguration or miscompilation of software as configure +tests may then return the wrong result. + +For more information, see LWN.net [0] or LLVM's Discourse [1], the Gentoo wiki [2], +or the (new) c-std-porting mailing list [3]. + +[0] https://lwn.net/Articles/913505/ +[1] https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration/65213 +[2] https://wiki.gentoo.org/wiki/Modern_C_porting +[3] hosted at lists.linux.dev. +--- a/configure.ac ++++ b/configure.ac +@@ -539,6 +539,7 @@ AC_CACHE_CHECK([whether TUN/TAP is supported], + #include + #include + #endif ++ #include + ], [ + struct ifreq ifr; + memset(&ifr, 0, sizeof(ifr)); diff --git a/app-emulation/wine-staging/Manifest b/app-emulation/wine-staging/Manifest index 197982707bc1..5935f910d20b 100644 --- a/app-emulation/wine-staging/Manifest +++ b/app-emulation/wine-staging/Manifest @@ -2,7 +2,9 @@ DIST wine-8.0.tar.xz 29054044 BLAKE2B baf8f96b665119c9f38a148a2472dbe8f6ca8d4641 DIST wine-8.1.tar.xz 29083080 BLAKE2B 6eed2128627f15159ad80588ebe839de76cb9a536797d7da136b61f56033ece60c60208702b7928cdb297c1d8730baae0d6bb0ac7a0473c34ed44b5c5edaaec5 SHA512 3f0477c26f293cf928acbdae2ffb98740ac227a605ec90f3ab3d35c0dbca2037529ff4e4de0b69cc975579ad14dc2fb8b52e050cfd99cffcc627418cf8cb4346 DIST wine-8.2.tar.xz 29129032 BLAKE2B 831a5d1c8228050db9257ed60dc77ed0a391f16ee16d2e5563eabbf8f7d988655477327e1081baf947b173e8eb716b15fb72d1daa70d5ade52508c7f1cc2c231 SHA512 d0b8bb8c6d75034519bdf48d52b89f9d44ba4f7306a0b8f860cbb2c4c39d8fae3c2d9c12be37427b9a9cbdb7dd8701844d0a74c245dd7a9e8a423cb56962b254 DIST wine-8.3.tar.xz 28983532 BLAKE2B b811a13aaa87f186c744254059d40fdf0740da42cf788acb2375c04cf3ecc281c92afc7bb7830d5797624d96f803edcb2d2778c5da378d89938fe0b68e72a287 SHA512 9c0c86f1d523cc65fe6bcb2f98e73f8909282eda1c04516ff35a32833e469421e099fe1351c3078ac96aa7884fc194a77fcf2ba8863e2a227316fd84562f1f5a +DIST wine-8.4.tar.xz 29031312 BLAKE2B 0b91267a68e4e332544d273646bb1e9389c3af3f48069ab7942096af5512e86a61d39788d91c221b4ae96e81858cfdff1e43a658ba407ff1450b6d752b8a3235 SHA512 8de144a65c0a3a2984fabc1294b647b8581da5fa8bd28a9ff756ab59256ee2b453d898453fc902bbc372a4e017a8e29b1eeef917f137ec1134ac08b671eccc7d DIST wine-staging-8.0.tar.gz 9529620 BLAKE2B c9540195ea885d9f1e980232b0af471e92c61eb079cae35fdb3af5c13d4660b3466f751772440e38f15874082db296d16d1f1d68827a505b2dd949617eda0203 SHA512 76a729d7ced1ff634ddb455ddfaa66ca103b652f43cd152b57ada7431bb5fbb74f5e92bf2f4f329b6df6f5908130afad84e609cbce6df645d6cf8131e9b949f9 DIST wine-staging-8.1.tar.gz 9527176 BLAKE2B 363243a4a04bc767099b74f3b7613463d99da82996c176e68b9233cbf51c87ecd143840f7729a3edc31ac004b771b89ec3d57a0276b26e30d475feb273d09257 SHA512 c5c3111b27de7d3bf1d7a3a53f33e8d78c5006f22ff0361f77392455fa69b0afd7c58406515ace04b2df7e1dfb20e3adf9d874e5e8be09c9032c1c1aa31fe696 DIST wine-staging-8.2.tar.gz 9528476 BLAKE2B e6fb4d15e9b94c9196c1f472ac50fbd3eabe34ef4a54493ca11b702448c4039c5a4f13fb1119a88477924e204c6e1972b1b25efe742118beec01f71a9d879aa2 SHA512 24bbfb6d03ca8282de058019cbbee57b36f8fdcf3e485f2ca94dbcf50614cf6c80e31103196d11fe48c77953d59a741ae2baf6987e56a88bea038ed16b692ad9 DIST wine-staging-8.3.tar.gz 9523336 BLAKE2B 3fdb6343ab3735e9235ea3d99e3da4d392de9620d93e85e2bd3b13ae2e0eca2654b2b48230a3bfd7c66ead1fb751ddb092b361943f7a95eb3df5a240c2b9e32b SHA512 e2b1dc107088f716f1c7e80bc25b152ff5c2c4c4a6f29a60e42eabdea0e8b5df84eaeaf8b978f5aefc3f9ad5962eb74784d5a98b95fa3694485d00f3fa628ce6 +DIST wine-staging-8.4.tar.gz 9522340 BLAKE2B b9fb08f529c9c24d9d6b09adbb359b265e246b8f4651eef0983d10b9c84afbdc9c58e04180e802cd3a7d0951f12ff46495b1ec0508e02f5b76ae7d0d987dc22c SHA512 96a6a870020e59f8437c65604536fec4b80d7d9e5a937e5d0a6cb0b2b4e544e6153fa0cdf2a8fd2c32d090001334e68124c2855c6a2a1454fdcdb6ea23d75fd7 diff --git a/app-emulation/wine-staging/wine-staging-8.4.ebuild b/app-emulation/wine-staging/wine-staging-8.4.ebuild new file mode 100644 index 000000000000..5f90e2ce8870 --- /dev/null +++ b/app-emulation/wine-staging/wine-staging-8.4.ebuild @@ -0,0 +1,369 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MULTILIB_COMPAT=( abi_x86_{32,64} ) +PYTHON_COMPAT=( python3_{9..11} ) +inherit autotools edo flag-o-matic multilib multilib-build +inherit python-any-r1 toolchain-funcs wrapper + +WINE_GECKO=2.47.3 +WINE_MONO=7.4.0 + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/wine-staging/wine-staging.git" + WINE_EGIT_REPO_URI="https://gitlab.winehq.org/wine/wine.git" +else + (( $(ver_cut 2) )) && WINE_SDIR=$(ver_cut 1).x || WINE_SDIR=$(ver_cut 1).0 + SRC_URI=" + https://dl.winehq.org/wine/source/${WINE_SDIR}/wine-${PV}.tar.xz + https://github.com/wine-staging/wine-staging/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="-* ~amd64 ~x86" +fi +S="${WORKDIR}/wine-${PV}" + +DESCRIPTION="Free implementation of Windows(tm) on Unix, with Wine-Staging patchset" +HOMEPAGE="https://wiki.winehq.org/Wine-Staging" + +LICENSE="LGPL-2.1+ BSD-2 IJG MIT OPENLDAP ZLIB gsm libpng2 libtiff" +SLOT="${PV}" +IUSE=" + +X +abi_x86_32 +abi_x86_64 +alsa capi crossdev-mingw cups dos + llvm-libunwind debug custom-cflags +fontconfig +gecko gphoto2 + +gstreamer kerberos +mingw +mono netapi nls opencl +opengl osmesa + pcap perl pulseaudio samba scanner +sdl selinux smartcard +ssl + +truetype udev udisks +unwind usb v4l +vulkan wayland +xcomposite + xinerama" +REQUIRED_USE=" + X? ( truetype ) + crossdev-mingw? ( mingw )" # bug #551124 for truetype + +# tests are non-trivial to run, can hang easily, don't play well with +# sandbox, and several need real opengl/vulkan or network access +RESTRICT="test" + +# `grep WINE_CHECK_SONAME configure.ac` + if not directly linked +WINE_DLOPEN_DEPEND=" + X? ( + x11-libs/libXcursor[${MULTILIB_USEDEP}] + x11-libs/libXfixes[${MULTILIB_USEDEP}] + x11-libs/libXi[${MULTILIB_USEDEP}] + x11-libs/libXrandr[${MULTILIB_USEDEP}] + x11-libs/libXrender[${MULTILIB_USEDEP}] + x11-libs/libXxf86vm[${MULTILIB_USEDEP}] + opengl? ( + media-libs/libglvnd[X,${MULTILIB_USEDEP}] + osmesa? ( media-libs/mesa[osmesa,${MULTILIB_USEDEP}] ) + ) + xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] ) + xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] ) + ) + cups? ( net-print/cups[${MULTILIB_USEDEP}] ) + fontconfig? ( media-libs/fontconfig[${MULTILIB_USEDEP}] ) + kerberos? ( virtual/krb5[${MULTILIB_USEDEP}] ) + netapi? ( net-fs/samba[${MULTILIB_USEDEP}] ) + sdl? ( media-libs/libsdl2[haptic,joystick,${MULTILIB_USEDEP}] ) + ssl? ( net-libs/gnutls:=[${MULTILIB_USEDEP}] ) + truetype? ( media-libs/freetype[${MULTILIB_USEDEP}] ) + udisks? ( sys-apps/dbus[${MULTILIB_USEDEP}] ) + v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] ) + vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )" +WINE_COMMON_DEPEND=" + ${WINE_DLOPEN_DEPEND} + X? ( + x11-libs/libX11[${MULTILIB_USEDEP}] + x11-libs/libXext[${MULTILIB_USEDEP}] + ) + alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] ) + capi? ( net-libs/libcapi:=[${MULTILIB_USEDEP}] ) + gphoto2? ( media-libs/libgphoto2:=[${MULTILIB_USEDEP}] ) + gstreamer? ( + dev-libs/glib:2[${MULTILIB_USEDEP}] + media-libs/gst-plugins-base:1.0[${MULTILIB_USEDEP}] + media-libs/gstreamer:1.0[${MULTILIB_USEDEP}] + ) + opencl? ( virtual/opencl[${MULTILIB_USEDEP}] ) + pcap? ( net-libs/libpcap[${MULTILIB_USEDEP}] ) + pulseaudio? ( media-libs/libpulse[${MULTILIB_USEDEP}] ) + scanner? ( media-gfx/sane-backends[${MULTILIB_USEDEP}] ) + smartcard? ( sys-apps/pcsc-lite[${MULTILIB_USEDEP}] ) + udev? ( virtual/libudev:=[${MULTILIB_USEDEP}] ) + unwind? ( + llvm-libunwind? ( sys-libs/llvm-libunwind[${MULTILIB_USEDEP}] ) + !llvm-libunwind? ( sys-libs/libunwind:=[${MULTILIB_USEDEP}] ) + ) + usb? ( dev-libs/libusb:1[${MULTILIB_USEDEP}] ) + wayland? ( dev-libs/wayland[${MULTILIB_USEDEP}] )" +RDEPEND=" + ${WINE_COMMON_DEPEND} + app-emulation/wine-desktop-common + dos? ( games-emulation/dosbox ) + gecko? ( app-emulation/wine-gecko:${WINE_GECKO}[${MULTILIB_USEDEP}] ) + gstreamer? ( media-plugins/gst-plugins-meta:1.0[${MULTILIB_USEDEP}] ) + mono? ( app-emulation/wine-mono:${WINE_MONO} ) + perl? ( + dev-lang/perl + dev-perl/XML-LibXML + ) + samba? ( net-fs/samba[winbind] ) + selinux? ( sec-policy/selinux-wine ) + udisks? ( sys-fs/udisks:2 )" +DEPEND=" + ${WINE_COMMON_DEPEND} + sys-kernel/linux-headers + X? ( x11-base/xorg-proto )" +# gitapply.sh prefers git but can fallback to patch+extras +BDEPEND=" + ${PYTHON_DEPS} + || ( + dev-vcs/git + ( + sys-apps/gawk + sys-apps/util-linux + ) + ) + dev-lang/perl + sys-devel/binutils + sys-devel/bison + sys-devel/flex + virtual/pkgconfig + mingw? ( !crossdev-mingw? ( + >=dev-util/mingw64-toolchain-10.0.0_p1-r2[${MULTILIB_USEDEP}] + ) ) + nls? ( sys-devel/gettext )" +IDEPEND=">=app-eselect/eselect-wine-2" + +QA_CONFIG_IMPL_DECL_SKIP=( + __clear_cache # unused on amd64+x86 (bug #900334) + res_getservers # false positive +) +QA_FLAGS_IGNORED="usr/lib/.*/wine/.*-unix/odbc32.so" # has no compiled objects +QA_TEXTRELS="usr/lib/*/wine/i386-unix/*.so" # uses -fno-PIC -Wl,-z,notext + +PATCHES=( + "${FILESDIR}"/${PN}-7.17-noexecstack.patch + "${FILESDIR}"/${PN}-7.20-unwind.patch +) + +pkg_pretend() { + [[ ${MERGE_TYPE} == binary ]] && return + + if use crossdev-mingw && [[ ! -v MINGW_BYPASS ]]; then + local mingw=-w64-mingw32 + for mingw in $(usev abi_x86_64 x86_64${mingw}) $(usev abi_x86_32 i686${mingw}); do + if ! type -P ${mingw}-gcc >/dev/null; then + eerror "With USE=crossdev-mingw, you must prepare the MinGW toolchain" + eerror "yourself by installing sys-devel/crossdev then running:" + eerror + eerror " crossdev --target ${mingw}" + eerror + eerror "For more information, please see: https://wiki.gentoo.org/wiki/Mingw" + die "USE=crossdev-mingw is enabled, but ${mingw}-gcc was not found" + fi + done + fi +} + +src_unpack() { + if [[ ${PV} == *9999 ]]; then + EGIT_CHECKOUT_DIR=${WORKDIR}/${P} + git-r3_src_unpack + + EGIT_COMMIT=$(<"${EGIT_CHECKOUT_DIR}"/staging/upstream-commit) || die + EGIT_REPO_URI=${WINE_EGIT_REPO_URI} + EGIT_CHECKOUT_DIR=${S} + einfo "Fetching Wine commit matching the current patchset by default (${EGIT_COMMIT})" + git-r3_src_unpack + else + default + fi +} + +src_prepare() { + local patchinstallargs=( + --all + --no-autoconf + -W winemenubuilder-Desktop_Icon_Path #652176 + ${MY_WINE_STAGING_CONF} + ) + + edo "${PYTHON}" ../${P}/staging/patchinstall.py "${patchinstallargs[@]}" + + # sanity check, bumping these has a history of oversights + local geckomono=$(sed -En '/^#define (GECKO|MONO)_VER/{s/[^0-9.]//gp}' \ + dlls/appwiz.cpl/addons.c || die) + if [[ ${WINE_GECKO}$'\n'${WINE_MONO} != "${geckomono}" ]]; then + local gmfatal= + [[ ${PV} == *9999 ]] && gmfatal=nonfatal + ${gmfatal} die -n "gecko/mono mismatch in ebuild, has: " ${geckomono} " (please file a bug)" + fi + + default + + # ensure .desktop calls this variant + slot + sed -i "/^Exec=/s/wine /${P} /" loader/wine.desktop || die + + # always update for patches (including user's wrt #432348) + eautoreconf + tools/make_requests || die # perl +} + +src_configure() { + WINE_PREFIX=/usr/lib/${P} + WINE_DATADIR=/usr/share/${P} + + local conf=( + --prefix="${EPREFIX}"${WINE_PREFIX} + --datadir="${EPREFIX}"${WINE_DATADIR} + --includedir="${EPREFIX}"/usr/include/${P} + --libdir="${EPREFIX}"${WINE_PREFIX} + --mandir="${EPREFIX}"${WINE_DATADIR}/man + $(use_enable gecko mshtml) + $(use_enable mono mscoree) + --disable-tests + $(use_with X x) + $(use_with alsa) + $(use_with capi) + $(use_with cups) + $(use_with fontconfig) + $(use_with gphoto2 gphoto) + $(use_with gstreamer) + $(use_with kerberos gssapi) + $(use_with kerberos krb5) + $(use_with mingw) + $(use_with netapi) + $(use_with nls gettext) + $(use_with opencl) + $(use_with opengl) + $(use_with osmesa) + --without-oss # media-sound/oss is not packaged (OSSv4) + $(use_with pcap) + $(use_with pulseaudio pulse) + $(use_with scanner sane) + $(use_with sdl) + $(use_with smartcard pcsclite) + $(use_with ssl gnutls) + $(use_with truetype freetype) + $(use_with udev) + $(use_with udisks dbus) # dbus is only used for udisks + $(use_with unwind) + $(use_with usb) + $(use_with v4l v4l2) + $(use_with vulkan) + $(use_with wayland) + $(use_with xcomposite) + $(use_with xinerama) + ) + + tc-ld-force-bfd # builds with non-bfd but broken at runtime (bug #867097) + filter-lto # build failure + use mingw || filter-flags -fno-plt # build failure + use custom-cflags || strip-flags # can break in obscure ways at runtime + use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} + + # temporary workaround for tc-ld-force-bfd not yet enforcing with mold + # https://github.com/gentoo/gentoo/pull/28355 + [[ $($(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) == mold* ]] && + append-ldflags -fuse-ld=bfd + + # build using upstream's way (--with-wine64) + # order matters: configure+compile 64->32, install 32->64 + local -i bits + for bits in $(usev abi_x86_64 64) $(usev abi_x86_32 32); do + ( + einfo "Configuring ${PN} for ${bits}bits in ${WORKDIR}/build${bits} ..." + + mkdir ../build${bits} || die + cd ../build${bits} || die + + pe_arch=i386 + if (( bits == 64 )); then + pe_arch=x86_64 + : "${CROSSCC:=${CROSSCC_amd64:-x86_64-w64-mingw32-gcc}}" + conf+=( --enable-win64 ) + elif use amd64; then + conf+=( + $(usev abi_x86_64 --with-wine64=../build64) + TARGETFLAGS=-m32 # for widl + ) + # _setup is optional, but use over Wine's auto-detect (+#472038) + multilib_toolchain_setup x86 + fi + : "${CROSSCC:=${CROSSCC_x86:-i686-w64-mingw32-gcc}}" + + if use mingw; then + # CROSSCC is no longer recognized by Wine, but still use for now + # (future handling for CROSS* variables is subject to changes) + conf+=( ac_cv_prog_${pe_arch}_CC="${CROSSCC}" ) + + # use *FLAGS for mingw, but strip unsupported + : "${CROSSCFLAGS:=$( + # >=wine-7.21 configure.ac no longer adds -fno-strict by mistake + append-cflags '-fno-strict-aliasing' + filter-flags '-fstack-clash-protection' #758914 + filter-flags '-fstack-protector*' #870136 + filter-flags '-mfunction-return=thunk*' #878849 + CC=${CROSSCC} test-flags-CC ${CFLAGS:--O2})}" + : "${CROSSLDFLAGS:=$( + filter-flags '-fuse-ld=*' + CC=${CROSSCC} test-flags-CCLD ${LDFLAGS})}" + export CROSS{C,LD}FLAGS + fi + + ECONF_SOURCE=${S} econf "${conf[@]}" + ) + done +} + +src_compile() { + use abi_x86_64 && emake -C ../build64 # do first + use abi_x86_32 && emake -C ../build32 +} + +src_install() { + use abi_x86_32 && emake DESTDIR="${D}" -C ../build32 install + use abi_x86_64 && emake DESTDIR="${D}" -C ../build64 install # do last + + # symlink for plain 'wine' and install its man pages if 64bit-only #404331 + if use abi_x86_64 && use !abi_x86_32; then + dosym wine64 ${WINE_PREFIX}/bin/wine + dosym wine64-preloader ${WINE_PREFIX}/bin/wine-preloader + local man + for man in ../build64/loader/wine.*man; do + : "${man##*/wine}" + : "${_%.*}" + insinto ${WINE_DATADIR}/man/${_:+${_#.}/}man1 + newins ${man} wine.1 + done + fi + + use perl || rm "${ED}"${WINE_DATADIR}/man/man1/wine{dump,maker}.1 \ + "${ED}"${WINE_PREFIX}/bin/{function_grep.pl,wine{dump,maker}} || die + + # create variant wrappers for eselect-wine + local bin + for bin in "${ED}"${WINE_PREFIX}/bin/*; do + make_wrapper "${bin##*/}-${P#wine-}" "${bin#"${ED}"}" + done + + # don't let portage try to strip PE files with the wrong + # strip executable and instead handle it here (saves ~120MB) + if use mingw; then + dostrip -x ${WINE_PREFIX}/wine/{i386,x86_64}-windows + use debug || + find "${ED}"${WINE_PREFIX}/wine/*-windows -regex '.*\.\(a\|dll\|exe\)' \ + -exec $(usex abi_x86_64 x86_64 i686)-w64-mingw32-strip --strip-unneeded {} + || die + fi + + dodoc ANNOUNCE AUTHORS README* documentation/README* +} + +pkg_postinst() { + eselect wine update --if-unset || die +} + +pkg_postrm() { + eselect wine update --if-unset || die +} diff --git a/app-eselect/Manifest.gz b/app-eselect/Manifest.gz index 622b7be7a5a1..810ee82f3c1c 100644 Binary files a/app-eselect/Manifest.gz and b/app-eselect/Manifest.gz differ diff --git a/app-eselect/eselect-blas/eselect-blas-0.3.ebuild b/app-eselect/eselect-blas/eselect-blas-0.3.ebuild new file mode 100644 index 000000000000..2dfac934a3c7 --- /dev/null +++ b/app-eselect/eselect-blas/eselect-blas-0.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="BLAS/CBLAS module for eselect" +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="" + +# Need skel.bash lib +RDEPEND=( ">=app-admin/eselect-1.0.5" + "!app-eselect/eselect-cblas" ) +DEPEND="${RDEPEND}" + +S="${WORKDIR}" + +src_install() { + local MODULEDIR="/usr/share/eselect/modules" + local MODULE="blas" + insinto ${MODULEDIR} + newins "${FILESDIR}"/${MODULE}.eselect-${PVR} ${MODULE}.eselect + doman "${FILESDIR}"/blas.eselect.5 +} diff --git a/app-eselect/eselect-blas/files/blas.eselect-0.3 b/app-eselect/eselect-blas/files/blas.eselect-0.3 new file mode 100644 index 000000000000..8941f720054f --- /dev/null +++ b/app-eselect/eselect-blas/files/blas.eselect-0.3 @@ -0,0 +1,168 @@ +# -*-eselect-*- vim: ft=eselect +# Copyright 2019-2023 Gentoo Authors +# Distributed under the terms of the GNU GPL version 2 or later + +inherit config tests multilib skel + +MODULE="BLAS/CBLAS" +IFACE="blas" +DESCRIPTION="Manage installed alternatives of $MODULE shared objects" +MAINTAINER="lumin@debian.org" +VERSION="0.3" + +### helper utility to find all available BLAS/CBLAS implementations +find_targets_in() { + [[ $# -eq 1 ]] || die -q "in which libdir?" + + local cand + for cand in "${EROOT}/etc/env.d/blas/$1"/*; do + [[ "config" = $(basename ${cand}) ]] && continue + [[ -r ${cand} ]] && basename ${cand} + done +} + +### helper utility to validate a BLAS/CBLAS library directory +validate_blaslibdir() { + [[ -d $1 ]] || return 2 # dir doesn't exist + [[ -r "${1}/libblas.so.3" ]] && [[ -r "${1}/libblas.so" ]] \ + && [[ -r "${1}/libcblas.so.3" ]] && [[ -r "${1}/libcblas.so" ]] \ + || return 1 +} + +### show action +do_show() { + # do_show -- show both lib64 and lib32 selection + # do_show libxx -- show libxx selection + local libdir cur libdirs=( $(list_libdirs) ) + + # if manually specified libdirs + if [[ ! $# -eq 0 ]]; then + for libdir in $@; do + has $libdir ${libdirs[@]} || die -q "invalid libdir '$libdir'!" + done + libdirs=( $@ ) + fi + + for libdir in ${libdirs[@]}; do + [[ ! -d ${EROOT}/usr/$libdir ]] && continue + [[ ! -r ${EROOT}/etc/env.d/blas/${libdir}/config ]] && continue + cur=$(load_config "${EROOT}"/etc/env.d/blas/${libdir}/config CURRENT) + echo ${libdir}: $cur + done +} + +### list action +do_list() { + local i cur targets + local libdir libdirs=( $(list_libdirs) ) + + # if manually specified libdirs + if [[ ! $# -eq 0 ]]; then + for libdir in $@; do + has $libdir ${libdirs[@]} || die -q "invalid libdir '$libdir'!" + done + libdirs=( $@ ) + fi + + for libdir in ${libdirs[@]}; do + [[ ! -d ${EROOT}/usr/$libdir ]] || [[ -L ${EROOT}/usr/$libdir ]] && continue + targets=( $(find_targets_in $libdir) ) + cur=$(load_config "${EROOT}"/etc/env.d/blas/${libdir}/config CURRENT) + + write_list_start "Available BLAS/CBLAS ($libdir) candidates:" + for (( i = 0; i < ${#targets[@]}; i++ )); do + [[ ${targets[i]} = $cur ]] \ + && targets[i]=$(highlight_marker "${targets[i]}") + done + write_numbered_list -m "(none found)" "${targets[@]}" + done +} + +### validate action +describe_validate() { + echo "validate candidates and remove invalid ones" +} + +do_validate() { + local i ldpath targets target candidate + local libdir libdirs=( $(list_libdirs) ) + for libdir in ${libdirs[@]}; do + [[ ! -d ${EROOT}/usr/$libdir ]] || [[ -L ${EROOT}/usr/$libdir ]] && continue + targets=( $(find_targets_in $libdir) ) + for target in ${targets[@]}; do + candidate=${EROOT}/etc/env.d/blas/${libdir}/${target} + ldpath=$(load_config "$candidate" LDPATH) + if ! validate_blaslibdir "${ROOT}/$ldpath"; then + echo "Removing invalid BLAS/CBLAS candidate ($candidate) ..." + rm -v "$candidate" + fi + done + done +} + +### set action + +describe_set() { + echo "Activate one of the installed $MODULE implementations" +} + +describe_set_parameters() { + echo "[] " +} + +describe_set_options() { + echo "libdir: lib64 or lib32. Will use the native one when omitted." + echo "implementation : implementation name or number (from 'list' action)" +} + +do_set() { + local libdirs=( $(list_libdirs) ) + local targets libdir ldconf libpath impl + + # check argument existence + [[ $# -eq 1 ]] || [[ $# -eq 2 ]] || \ + die -q "Please specify [] to activate!" + # read argumenets + if [[ $# -eq 2 ]]; then libdir="$1"; else libdir="$(get_libdir)"; fi + if [[ $# -eq 2 ]]; then impl="$2"; else impl="$1"; fi + # validate arguments + has "$libdir" "${libdirs[@]}" || die -q "Invalid libdir ($libdir) !" + targets=( $(find_targets_in $libdir) ) + if ! has "$impl" "${targets[@]}"; then + if [[ ${impl} -gt 0 ]] && [[ ${impl} -le ${#targets[@]} ]]; then + impl=${targets[(${impl} - 1)]} + else + die -q "Invalid impl ($impl) !" + fi + fi + # store the configuration to env.d + store_config "${EROOT}"/etc/env.d/blas/${libdir}/config CURRENT "${impl}" + # generate ld.so.conf file + ldconf="${EROOT}/etc/ld.so.conf.d/81-blas-${libdir}.conf" + libpath=$(load_config ${EROOT}/etc/env.d/blas/${libdir}/${impl} LDPATH) + truncate -s0 "$ldconf" + echo "# Auto-generated by eselect::blas. DON'T EDIT." >> "$ldconf" + echo "$libpath" >> "$ldconf" + + # refresh cache. env-update will call ldconfig (see + # portage::env_update.py) so we don't need to call it explicitly. + env-update +} + +### add action +describe_add_parameters() { + echo " " +} + +describe_add_options() { + echo "libdir : library directory where $MODULE implementation is installed (lib, lib64, etc.)" + echo "dir : directory containing lib{,c}blas.so{.3}" + echo "impl : name of the $MODULE implementation" +} + +do_add() { + [[ $# -eq 3 ]] \ + || die -q "Please specify to activate!" + validate_blaslibdir "${ROOT}/$2" || die -q "invalid blas libdir!" + store_config "${EROOT}/etc/env.d/blas/$1/$3" LDPATH "$2" +} diff --git a/app-eselect/eselect-lapack/eselect-lapack-0.3.ebuild b/app-eselect/eselect-lapack/eselect-lapack-0.3.ebuild new file mode 100644 index 000000000000..ace0c922c6fa --- /dev/null +++ b/app-eselect/eselect-lapack/eselect-lapack-0.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="LAPACK module for eselect" +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="" + +# Need skel.bash lib +RDEPEND=( ">=app-admin/eselect-1.0.5" ) +DEPEND="${RDEPEND}" + +S="${WORKDIR}" + +src_install() { + local MODULEDIR="/usr/share/eselect/modules" + local MODULE="lapack" + insinto ${MODULEDIR} + newins "${FILESDIR}"/${MODULE}.eselect-${PVR} ${MODULE}.eselect + doman "${FILESDIR}"/lapack.eselect.5 +} diff --git a/app-eselect/eselect-lapack/files/lapack.eselect-0.3 b/app-eselect/eselect-lapack/files/lapack.eselect-0.3 new file mode 100644 index 000000000000..f3fd6619f22f --- /dev/null +++ b/app-eselect/eselect-lapack/files/lapack.eselect-0.3 @@ -0,0 +1,167 @@ +# -*-eselect-*- vim: ft=eselect +# Copyright 2019-2023 Gentoo Authors +# Distributed under the terms of the GNU GPL version 2 or later + +inherit config tests multilib skel + +MODULE="LAPACK" +IFACE="lapack" +DESCRIPTION="Manage installed alternatives of $MODULE shared objects" +MAINTAINER="lumin@debian.org" +VERSION="0.3" + +### helper utility to find all available LAPACK implementations +find_targets_in() { + [[ $# -eq 1 ]] || die -q "in which libdir?" + + local cand + for cand in "${EROOT}/etc/env.d/lapack/$1"/*; do + [[ "config" = $(basename ${cand}) ]] && continue + [[ -r ${cand} ]] && basename ${cand} + done +} + +### helper utility to validate a LAPACK library directory +validate_lapacklibdir() { + [[ -d $1 ]] || return 2 # dir doesn't exist + [[ -r "${1}/liblapack.so.3" ]] && [[ -r "${1}/liblapack.so" ]] \ + || return 1 +} + +### show action +do_show() { + # do_show -- show both lib64 and lib32 selection + # do_show libxx -- show libxx selection + local libdir cur libdirs=( $(list_libdirs) ) + + # if manually specified libdirs + if [[ ! $# -eq 0 ]]; then + for libdir in $@; do + has $libdir ${libdirs[@]} || die -q "invalid libdir '$libdir'!" + done + libdirs=( $@ ) + fi + + for libdir in ${libdirs[@]}; do + [[ ! -d ${EROOT}/usr/$libdir ]] && continue + [[ ! -r ${EROOT}/etc/env.d/lapack/${libdir}/config ]] && continue + cur=$(load_config "${EROOT}"/etc/env.d/lapack/${libdir}/config CURRENT) + echo ${libdir}: $cur + done +} + +### list action +do_list() { + local i cur targets + local libdir libdirs=( $(list_libdirs) ) + + # if manually specified libdirs + if [[ ! $# -eq 0 ]]; then + for libdir in $@; do + has $libdir ${libdirs[@]} || die -q "invalid libdir '$libdir'!" + done + libdirs=( $@ ) + fi + + for libdir in ${libdirs[@]}; do + [[ ! -d ${EROOT}/usr/$libdir ]] || [[ -L ${EROOT}/usr/$libdir ]] && continue + targets=( $(find_targets_in $libdir) ) + cur=$(load_config "${EROOT}"/etc/env.d/lapack/${libdir}/config CURRENT) + + write_list_start "Available LAPACK ($libdir) candidates:" + for (( i = 0; i < ${#targets[@]}; i++ )); do + [[ ${targets[i]} = $cur ]] \ + && targets[i]=$(highlight_marker "${targets[i]}") + done + write_numbered_list -m "(none found)" "${targets[@]}" + done +} + +### validate action +describe_validate() { + echo "validate candidates and remove invalid ones" +} + +do_validate() { + local i ldpath targets target candidate + local libdir libdirs=( $(list_libdirs) ) + for libdir in ${libdirs[@]}; do + [[ ! -d ${EROOT}/usr/$libdir ]] || [[ -L ${EROOT}/usr/$libdir ]] && continue + targets=( $(find_targets_in $libdir) ) + for target in ${targets[@]}; do + candidate=${EROOT}/etc/env.d/lapack/${libdir}/${target} + ldpath=$(load_config "$candidate" LDPATH) + if ! validate_lapacklibdir "${ROOT}/$ldpath"; then + echo "Removing invalid LAPACK candidate ($candidate) ..." + rm -v "$candidate" + fi + done + done +} + +### set action + +describe_set() { + echo "Activate one of the installed $MODULE implementations" +} + +describe_set_parameters() { + echo "[] " +} + +describe_set_options() { + echo "libdir: lib64 or lib32. Will use the native one when omitted." + echo "implementation : implementation name or number (from 'list' action)" +} + +do_set() { + local libdirs=( $(list_libdirs) ) + local targets libdir ldconf libpath impl + + # check argument existence + [[ $# -eq 1 ]] || [[ $# -eq 2 ]] || \ + die -q "Please specify [] to activate!" + # read argumenets + if [[ $# -eq 2 ]]; then libdir="$1"; else libdir="$(get_libdir)"; fi + if [[ $# -eq 2 ]]; then impl="$2"; else impl="$1"; fi + # validate arguments + has "$libdir" "${libdirs[@]}" || die -q "Invalid libdir ($libdir) !" + targets=( $(find_targets_in $libdir) ) + if ! has "$impl" "${targets[@]}"; then + if [[ ${impl} -gt 0 ]] && [[ ${impl} -le ${#targets[@]} ]]; then + impl=${targets[(${impl} - 1)]} + else + die -q "Invalid impl ($impl) !" + fi + fi + # store the configuration to env.d + store_config "${EROOT}"/etc/env.d/lapack/${libdir}/config CURRENT "${impl}" + # generate ld.so.conf file + ldconf="${EROOT}/etc/ld.so.conf.d/82-lapack-${libdir}.conf" + libpath=$(load_config ${EROOT}/etc/env.d/lapack/${libdir}/${impl} LDPATH) + truncate -s0 "$ldconf" + echo "# Auto-generated by eselect::lapack. DON'T EDIT." >> "$ldconf" + echo "$libpath" >> "$ldconf" + + # refresh cache. env-update will call ldconfig (see + # portage::env_update.py) so we don't need to call it explicitly. + env-update +} + +### add action +describe_add_parameters() { + echo " " +} + +describe_add_options() { + echo "libdir : library directory where $MODULE implementation is installed (lib, lib64, etc.)" + echo "dir : directory containing liblapack.so{.3}" + echo "impl : name of the $MODULE implementation" +} + +do_add() { + [[ $# -eq 3 ]] \ + || die -q "Please specify to activate!" + validate_lapacklibdir "${ROOT}/$2" || die -q "invalid lapack libdir!" + store_config "${EROOT}/etc/env.d/lapack/$1/$3" LDPATH "$2" +} diff --git a/app-misc/Manifest.gz b/app-misc/Manifest.gz index d41be515651d..013a84204218 100644 Binary files a/app-misc/Manifest.gz and b/app-misc/Manifest.gz differ diff --git a/app-misc/dateutils/Manifest b/app-misc/dateutils/Manifest index 59db98794e3f..edfdc3dbca37 100644 --- a/app-misc/dateutils/Manifest +++ b/app-misc/dateutils/Manifest @@ -1,3 +1,2 @@ -DIST dateutils-0.4.7.tar.xz 649932 BLAKE2B 710c22d63fe3c8f77c69c97c405d3d4aa5c51de3d5768076ca24f8b2be0d6033ae652825e528d99c36f382e25c4e0a60eaa7cb9eec58f6b814d60d513b37ce7e SHA512 480943c32585efd8f42958d6e7d3304a37568f2134c9561d6e0b38f4719fd149ec7e55c559a5e73e97e1c9d217f3d53fe76a7e6a9d3114c040915ebf48db4666 -DIST dateutils-0.4.8.tar.xz 642316 BLAKE2B 483ae60829c3b77bd7c2ce72347bc99fda6f63018c2e2335322175f962f904c97ba07c4e39bcdf6e549e2e09043d56bcc00863a1299225964cd15921a22bfc05 SHA512 964204e2a04a5aa7fa73cbddd98e1a953d498a4b5e0447daa5f912845fb74825d1791b6bea3ebca47784a8edd2e549dfee1e48e3050632efed7f11f109b74be8 +DIST dateutils-0.4.10.tar.xz 652548 BLAKE2B b1fe3b07edfd223c9265df99888bf2edc37458b487b0f3b913f4c19e23b86d4a7f8cb3f0610bf140e6ce0233a9008ccd26cbe0b1462c5f85b2424cd39ffcbdb7 SHA512 04a9fff177596bb9bc47d3b221865bbeafeafbc708385610845a1cdcb2a7fa379e8d9363cce578836ae121dab7ee64e19f61d82e8f222250e52d23c5f43cf521 DIST dateutils-0.4.9.tar.xz 651024 BLAKE2B 9b9bab5f990689a367fa574c20113c01f4847cdcced47275b992655cb91cd14076c22e2d550a969c20ef979b63156c72a485c42105022e522dce4d1376aa0393 SHA512 b5cda838f8fa01e4208e11842f835503357c02b4a21b003db08ef88763a65f26ad2cd6f5d71c80b499d4e5ee5c0b4e552469ef91aa6cd02ebe5c5d2ad6e3105e diff --git a/app-misc/dateutils/dateutils-0.4.8.ebuild b/app-misc/dateutils/dateutils-0.4.10.ebuild similarity index 90% rename from app-misc/dateutils/dateutils-0.4.8.ebuild rename to app-misc/dateutils/dateutils-0.4.10.ebuild index 221496587862..5d54f490994d 100644 --- a/app-misc/dateutils/dateutils-0.4.8.ebuild +++ b/app-misc/dateutils/dateutils-0.4.10.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 DESCRIPTION="Command line date and time utilities" HOMEPAGE="https://www.fresse.org/dateutils/ https://github.com/hroptatyr/dateutils" @@ -13,7 +13,7 @@ case "${PV}" in ;; *) SRC_URI="https://github.com/hroptatyr/dateutils/releases/download/v${PV}/${P}.tar.xz" - KEYWORDS="amd64 x86" + KEYWORDS="~amd64 ~x86" esac LICENSE="BSD" diff --git a/app-misc/dateutils/dateutils-0.4.7.ebuild b/app-misc/dateutils/dateutils-0.4.7.ebuild deleted file mode 100644 index 8efc3c6c2dd7..000000000000 --- a/app-misc/dateutils/dateutils-0.4.7.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="command line date and time utilities" -HOMEPAGE="https://www.fresse.org/dateutils/ https://github.com/hroptatyr/dateutils" - -case "${PV}" in - 9999) - inherit autotools git-r3 - EGIT_REPO_URI="https://github.com/hroptatyr/dateutils.git" - ;; - *) - SRC_URI="https://github.com/hroptatyr/dateutils/releases/download/v${PV}/${P}.tar.xz" - KEYWORDS="amd64 x86" -esac - -LICENSE="BSD" -SLOT="0" - -BDEPEND="app-arch/xz-utils" -DEPEND="sys-libs/timezone-data" - -# bug 429810 -RDEPEND="${DEPEND} - !sys-fabric/dapl" - -PATCHES=( - "${FILESDIR}/${PN}-0.4.6-unportable-sys-sysctl_h.patch" -) - -src_prepare() { - default - [[ "${PV}" = 9999 ]] && eautoreconf -} - -src_configure() { - econf CFLAGS="${CFLAGS}" -} diff --git a/app-misc/dateutils/dateutils-9999.ebuild b/app-misc/dateutils/dateutils-9999.ebuild index 3e16869e3d11..7c1baaa588b0 100644 --- a/app-misc/dateutils/dateutils-9999.ebuild +++ b/app-misc/dateutils/dateutils-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 diff --git a/app-misc/dateutils/files/dateutils-0.4.6-unportable-sys-sysctl_h.patch b/app-misc/dateutils/files/dateutils-0.4.6-unportable-sys-sysctl_h.patch deleted file mode 100644 index dc310ea7812c..000000000000 --- a/app-misc/dateutils/files/dateutils-0.4.6-unportable-sys-sysctl_h.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/build-aux/yuck.c -+++ b/build-aux/yuck.c -@@ -65,7 +65,6 @@ - #include - #include - #include --#include - #include - #if defined WITH_SCMVER - # include diff --git a/app-misc/fhem/Manifest b/app-misc/fhem/Manifest index 47b20e676dae..05fe0c680ff2 100644 --- a/app-misc/fhem/Manifest +++ b/app-misc/fhem/Manifest @@ -1,2 +1 @@ -DIST fhem-6.1.tar.gz 32437246 BLAKE2B 0c7afce70d7fa4afe01b4dd46847cfb406a267c30ba6490b4ded75c365e745c0e84aa4872e6ca9c59f11b3082655e23295c59d69c5f91b272cc576df2e9e4978 SHA512 93767f6e8fa2b35b24192c1dd5de29bc9ac09f8690982870d1479350acc0954d6a635fcb2abfdac96f2f9b4f8217288486b35fa385f3388efd1407b4f14ebe8f DIST fhem-6.2.tar.gz 32526944 BLAKE2B 00ec9cb1518ab002e0565150a30ec7191c1f0a8ae0fccb7a3a745837f7794e4f61a8e7fa4707416e841f86803d69c27f7158c36f765733e76f461dcbb15e306e SHA512 8bb4cf277ab3f008b353c3fa7f67a50f502299e79f2b96d13e88150766e39498888a05a44b6509a51f90d82dcd0aefa6642deea585c72d65e3849b6aa0322143 diff --git a/app-misc/fhem/fhem-6.1.ebuild b/app-misc/fhem/fhem-6.1.ebuild deleted file mode 100644 index d6b57efc06db..000000000000 --- a/app-misc/fhem/fhem-6.1.ebuild +++ /dev/null @@ -1,107 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit systemd tmpfiles - -DESCRIPTION="A GPL'd perl server for house automation" -HOMEPAGE="https://www.fhem.de/" -SRC_URI="https://www.fhem.de/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc" - -RDEPEND=" - acct-group/fhem - acct-user/fhem - dev-perl/Crypt-CBC - dev-perl/Device-SerialPort - dev-perl/Digest-CRC - dev-perl/JSON -" - -DEPEND="media-gfx/pngcrush" - -src_prepare() { - default - - # Allow install path to be set by DESTDIR in Makefile - sed -i -e 's,^\(BINDIR=\),\1'\$\(DESTDIR\)',' Makefile || die - - # Remove docs in Makefile, as they will be installed manually - sed -i -e 's/docs//g' Makefile || die - sed -i -e '/README_DEMO.txt/d' Makefile || die - - # Remove manpage in Makefile, as it will be installed manually - sed -i -e '/fhem.pl.1/d' Makefile || die - - # Remove lcd4linux binaries, as they are provied by app-misc/lcd4linux - rm -r contrib/lcd4linux || die - - # Remove log dir, as it will be replaced with a symlink - rm -r log || die - - # Fix fhemicon_darksmall.png, as it reports "broken IDAT window length" - # Reported to Upstream: https://forum.fhem.de/index.php/topic,86238.0.html - pngcrush -fix -force -ow www/images/default/fhemicon_darksmall.png || die - - cp "${FILESDIR}"/fhem.cfg fhem.cfg || die -} - -src_compile() { - : -} - -src_install() { - local DOCS=( - "CHANGED" - "HISTORY" - "MAINTAINER.txt" - "README.SVN" - "README_DEMO.txt" - "docs"/*.txt - "docs"/*.patch - "docs"/*.pdf - "docs/changelog" - "docs/copyright" - "docs/dotconfig" - "docs/fhem.odg.readme" - "docs/LIESMICH.update-thirdparty" - "docs"/README* - "docs/X10" - ) - - if use doc; then - local DOCS+=( "docs/X10" ) - local HTML_DOCS=( "docs/"*.eps "docs/"*.html "docs"/*.jpg "docs"/*.js "docs"/*.odg "docs/"*.png "docs/km271" ) - fi - - diropts -o fhem -g fhem - keepdir "/var/lib/fhem" - keepdir "/var/log/fhem" - diropts - - dosym ../../var/lib/fhem /opt/fhem/data - dosym ../../var/log/fhem /opt/fhem/log - - default - - newinitd "${FILESDIR}"/fhem.initd fhem - - systemd_newunit "${FILESDIR}"/fhem.service-r1 fhem.service - newtmpfiles "${FILESDIR}"/fhem.tmpfiles fhem.conf - - newman docs/fhem.man fhem.pl.1 - - echo 'CONFIG_PROTECT="/opt/fhem /var/lib/fhem"' > "${T}"/99fhem || die - doenvd "${T}"/99fhem - - fowners fhem:fhem /opt/fhem/fhem.cfg -} - -pkg_postinst() { - tmpfiles_process fhem.conf -} diff --git a/app-misc/fhem/fhem-6.2.ebuild b/app-misc/fhem/fhem-6.2.ebuild index 0aff3dcd67c1..154939f05f50 100644 --- a/app-misc/fhem/fhem-6.2.ebuild +++ b/app-misc/fhem/fhem-6.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://www.fhem.de/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="doc" RDEPEND=" diff --git a/app-misc/gnote/Manifest b/app-misc/gnote/Manifest index 6b8d4b763029..9f7c2dcb3081 100644 --- a/app-misc/gnote/Manifest +++ b/app-misc/gnote/Manifest @@ -1,2 +1,3 @@ DIST gnote-43.0.tar.xz 3325232 BLAKE2B 9e56aa164262b710aab872be48fded2a6c70a062ddfe7c95ae633c38269390a6b3c3143c788f0ee43fb37d0229443a600d71e5edfbab1aa387a20e135210a0dc SHA512 34133ba1cef12c02a6518017f6b5b07b6781f05af787034ceb3dd8bc4d59fff2a7cdc17615511e7008c39bebf52e6b78a973840bdd5b6b1e5199226fdd12d91c DIST gnote-43.1.tar.xz 3329384 BLAKE2B 0e871797160a45d07ec17d9fbfeaaf159b755bdf373480ac47ac03b966b87510d0d721fdc581da76c0f7e3b1098964d926122f0aeb36c4a44597b137fe41ccf2 SHA512 7b007e325634371deee99e09230f4f2427a072e203d6086a91888ed3be69b54b22bfc9e49010a43a09c134f0d4de9d510fd1a370e2432f9542241d9f37e05921 +DIST gnote-44.0.tar.xz 3330052 BLAKE2B 5b8a45de08419cdc8b22596fc4019ddd18edf7103dda5d51fe87153e624a3623a3b5af1e65ee15bc0afbefc13400ceddebc740fc34ff3675f4e0fa3a68ae87d5 SHA512 95299d811372f9c011e2966cd0fcb770830d691a85e390fbeb0500ff2db394301d0aeb478c622af1a8caf54d07cb15243c65e73809e02ae36407ef5006e636bb diff --git a/app-misc/gnote/gnote-44.0.ebuild b/app-misc/gnote/gnote-44.0.ebuild new file mode 100644 index 000000000000..2575f11ea220 --- /dev/null +++ b/app-misc/gnote/gnote-44.0.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome2 meson readme.gentoo-r1 + +DESCRIPTION="Desktop note-taking application" +HOMEPAGE="https://wiki.gnome.org/Apps/Gnote" + +LICENSE="GPL-3+ FDL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND=" + >=dev-libs/glib-2.62:2[dbus] + >=dev-cpp/glibmm-2.62.0:2 + >=dev-cpp/gtkmm-3.22.20:3.0 + >=app-crypt/libsecret-0.8 + >=dev-libs/libxml2-2:2 + dev-libs/libxslt + >=sys-apps/util-linux-2.16 + >=app-text/gspell-1.6.0:= + test? ( dev-libs/unittest++ ) +" +RDEPEND="${DEPEND} + gnome-base/gsettings-desktop-schemas +" +BDEPEND=" + app-text/docbook-xml-dtd:4.1.2 + >=dev-util/intltool-0.35.0 + dev-util/itstool + virtual/pkgconfig +" + +src_prepare() { + default + + # Build system requires UnitTest++ >=1.5.1, but the .pc file doesn't + # specify a version + sed -i -e "/UnitTest++/ s/version: [^,]*,//" meson.build || die + if ! use test; then + sed -i -e "/unit_test_pp/ s/ = .*/ = disabler()/" meson.build || die + fi + + if has_version net-fs/wdfs; then + DOC_CONTENTS="You have net-fs/wdfs installed. app-misc/gnote will use it to + synchronize notes." + else + DOC_CONTENTS="Gnote can use net-fs/wdfs to synchronize notes. + If you want to use that functionality just emerge net-fs/wdfs. + Gnote will automatically detect that you did and let you use it." + fi +} + +src_install() { + meson_src_install + readme.gentoo_create_doc +} + +pkg_postinst() { + gnome2_pkg_postinst + readme.gentoo_print_elog +} diff --git a/app-misc/resolve-march-native/Manifest b/app-misc/resolve-march-native/Manifest index 533723481107..e9f96d354172 100644 --- a/app-misc/resolve-march-native/Manifest +++ b/app-misc/resolve-march-native/Manifest @@ -1,2 +1,3 @@ DIST resolve-march-native-1.0.0.tar.gz 9341 BLAKE2B 5b56084816a88a462c889e2409c2bd1a9fc6297f239716f1d61c84f2417755dc92f31e677283f818b9c0ca28f38eb57d7145d60587cea004a001b22098e1fa4d SHA512 fdd0fdbb0980e86bae793f37fe0de3d3886dfe360c2ce52b37d92f881e14b1eaa0ba9c8d52a1bc6774b1389154300c0753eba5701c3c2ddc98f0696a8351f895 DIST resolve-march-native-2.1.0.tar.gz 14940 BLAKE2B 2f8b16a04ce531c54bdd63632fb5bb2c82c1c22ef5fa4dc1f9fc5cafc4f59511f457ead95236d61b62cd4633bca35b0d2c5383e2d4b2bc7bf73ae44deb27029c SHA512 26fdb2871d93ba118f1433f2e303ed128bacada2a7fb6e813a8caddda05f7cff18de7339e02349a3b40f0b431f69ee1d877a8f082150c7222fa47dcf4fcf1544 +DIST resolve-march-native-2.2.0.tar.gz 15110 BLAKE2B bd0fc09f35bcc46727a9d105d09625c1e1e38528febd315f1e79427ec516326773c3832be15146fcb9bea99ba3435a1a9ee28684b963919c1c7eb185ed5716ca SHA512 85ddba5646168cb1644c99504b4be673c52cec0cae7deb028d9cb923fa0b09817a3f5c08f6e0e546bba89f78cc574193b0bb26d1c3bae86f31ed8808cb17bdda diff --git a/app-misc/resolve-march-native/resolve-march-native-2.2.0.ebuild b/app-misc/resolve-march-native/resolve-march-native-2.2.0.ebuild new file mode 100644 index 000000000000..66670c04a72c --- /dev/null +++ b/app-misc/resolve-march-native/resolve-march-native-2.2.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 + +DESCRIPTION="Resolve GCC flag -march=native" +HOMEPAGE="https://github.com/hartwork/resolve-march-native" +SRC_URI="https://github.com/hartwork/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=sys-devel/gcc-4.2" + +distutils_enable_tests pytest diff --git a/app-misc/timestamp/timestamp-1.1-r2.ebuild b/app-misc/timestamp/timestamp-1.1-r3.ebuild similarity index 73% rename from app-misc/timestamp/timestamp-1.1-r2.ebuild rename to app-misc/timestamp/timestamp-1.1-r3.ebuild index 07b66665a018..e5086f9fa791 100644 --- a/app-misc/timestamp/timestamp-1.1-r2.ebuild +++ b/app-misc/timestamp/timestamp-1.1-r3.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit autotools + DESCRIPTION="A text filtering pipe that marks each line with a timestamp" HOMEPAGE="http://math.smsu.edu/~erik/software.php?id=95" SRC_URI="http://math.smsu.edu/~erik/files/${P}.tar.gz" @@ -12,3 +14,10 @@ SLOT="0" KEYWORDS="amd64 ppc x86" RDEPEND="!sys-apps/moreutils" + +src_prepare() { + default + + # Clang 16, bug #900481 + eautoreconf +} diff --git a/app-misc/tmate/tmate-2.4.0-r1.ebuild b/app-misc/tmate/tmate-2.4.0-r1.ebuild index 25034bb83628..920c528ee69e 100644 --- a/app-misc/tmate/tmate-2.4.0-r1.ebuild +++ b/app-misc/tmate/tmate-2.4.0-r1.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://tmate.io/" LICENSE="ISC" SLOT="0" -KEYWORDS="~amd64 ~riscv ~x86" +KEYWORDS="amd64 ~riscv ~x86" IUSE="debug" SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" diff --git a/app-misc/tracker-miners/Manifest b/app-misc/tracker-miners/Manifest index 96155f218b6b..d79fb5a0ec83 100644 --- a/app-misc/tracker-miners/Manifest +++ b/app-misc/tracker-miners/Manifest @@ -1,2 +1,3 @@ DIST tracker-miners-3.4.3.tar.xz 7244744 BLAKE2B e018e8e80c5b87eda7ef50b00fe87b4d555806a1d630c147dd4c5a11bdf7140c28f68ef0724ec281f11acd5b63d9857eae8d23e51ed5607136c90d783c7a205b SHA512 b7287bd14be9c14be582109b660166b38c515199b809503a7b06e411f4cc1e0c1f59ce95ab70e1b404d7440b7f23312f1150a4e033e38cabfc0f396e3c1edc3c DIST tracker-miners-3.5.0.rc.tar.xz 7503452 BLAKE2B 769c7a28deeb1e8698bde22918b0b24c68c11aca2d690297ec55d891b6fcb978640fa50c5558b8f0a38e437ca9d5b893fb49f50d30c12acea207d2bdf6393ca6 SHA512 43285cdd0d43c19934995dcd1479dc7cd596eaa2e3e6be010c8789acac9f0bdec2930bec60d78ee551024f4cdb3789233e9e275eaec9157aa922f3f5d272db54 +DIST tracker-miners-3.5.0.tar.xz 7503332 BLAKE2B 9e5e3464d2c738ce1fc7570239d995d6deb4aeae73bdf71920759c760e3c2a2dd1c04363929fbb3d98369778522517453bd340efa3efe519d1e4ad7d8e99304e SHA512 db9bc92aa8e33adde2135dbc7e381c553dbd18517e856d149084dbcfc99af8d0df16909547263ef61a80dd8c06c326a7a0b31142ca3eb01c488a3172fbd2761d diff --git a/app-misc/tracker-miners/tracker-miners-3.5.0.ebuild b/app-misc/tracker-miners/tracker-miners-3.5.0.ebuild new file mode 100644 index 000000000000..3d8e03053266 --- /dev/null +++ b/app-misc/tracker-miners/tracker-miners-3.5.0.ebuild @@ -0,0 +1,177 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit flag-o-matic gnome.org gnome2-utils meson python-any-r1 systemd xdg + +DESCRIPTION="Collection of data extractors for Tracker/Nepomuk" +HOMEPAGE="https://wiki.gnome.org/Projects/Tracker" + +LICENSE="GPL-2+ LGPL-2.1+" +SLOT="3" +IUSE="cue exif ffmpeg gif gsf +gstreamer iptc +iso +jpeg networkmanager +pdf +playlist raw +rss seccomp test +tiff upower +xml xmp xps" + +REQUIRED_USE="cue? ( gstreamer )" # cue is currently only supported via gstreamer, not ffmpeg +RESTRICT="!test? ( test )" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +# tracker-2.1.7 currently always depends on ICU (theoretically could be libunistring instead); so choose ICU over enca always here for the time being (ICU is preferred) +RDEPEND=" + >=dev-libs/glib-2.70:2 + >=app-misc/tracker-3.4.0:3 + + >=sys-apps/dbus-1.3.1 + xmp? ( >=media-libs/exempi-2.1.0:= ) + raw? ( media-libs/gexiv2 ) + cue? ( media-libs/libcue:= ) + exif? ( >=media-libs/libexif-0.6 ) + gsf? ( >=gnome-extra/libgsf-1.14.24:= ) + xps? ( app-text/libgxps ) + iptc? ( media-libs/libiptcdata ) + jpeg? ( media-libs/libjpeg-turbo:0= ) + iso? ( >=sys-libs/libosinfo-1.10.0-r1 ) + >=media-libs/libpng-1.2:0= + seccomp? ( >=sys-libs/libseccomp-2.0 ) + tiff? ( media-libs/tiff:= ) + xml? ( >=dev-libs/libxml2-2.6 ) + pdf? ( >=app-text/poppler-0.16.0:=[cairo] ) + playlist? ( >=dev-libs/totem-pl-parser-3:= ) + sys-apps/util-linux + + gif? ( media-libs/giflib:= ) + + networkmanager? ( net-misc/networkmanager ) + + rss? ( >=net-libs/libgrss-0.7:0 ) + app-arch/gzip + + upower? ( >=sys-power/upower-0.9.0:= ) + + >=dev-libs/icu-4.8.1.1:= + + gstreamer? ( + >=media-libs/gstreamer-1.20:1.0 + >=media-libs/gst-plugins-base-1.20:1.0 + >=media-plugins/gst-plugins-meta-1.20:1.0 ) + !gstreamer? ( + ffmpeg? ( media-video/ffmpeg:0= ) ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + app-text/asciidoc + dev-libs/libxslt + dev-util/glib-utils + dev-util/gdbus-codegen + + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + test? ( + ${PYTHON_DEPS} + $(python_gen_any_dep 'dev-python/pygobject[${PYTHON_USEDEP}]') + $(python_gen_any_dep 'dev-python/tappy[${PYTHON_USEDEP}]') + gstreamer? ( + media-libs/gstreamer:1.0[introspection] + || ( + media-plugins/gst-plugins-libav:1.0 + media-plugins/gst-plugins-openh264:1.0 + ) + ) + ) +" + +PATCHES=( + "${FILESDIR}"/3.4.2-functional-tests-Run-png-region-of-interest-only-if-.patch +) + +python_check_deps() { + python_has_version -b \ + "dev-python/pygobject[${PYTHON_USEDEP}]" \ + "dev-python/tappy[${PYTHON_USEDEP}]" +} + +pkg_setup() { + use test && python-any-r1_pkg_setup +} + +src_prepare() { + default + + # Avoid gst-inspect calls that may trigger sandbox; instead assume the detection will succeed and add the needed test deps for that + if use gstreamer; then + sed -i -e 's:detect-h264-codec.sh:/bin/true:' tests/functional-tests/meson.build || die + else + sed -i -e 's:detect-h264-codec.sh:/bin/false:' tests/functional-tests/meson.build || die + fi + gnome2_environment_reset # sets gstreamer safety variables +} + +src_configure() { + append-cflags -DTRACKER_DEBUG -DG_DISABLE_CAST_CHECKS + + local media_extractor="none" + if use gstreamer ; then + media_extractor="gstreamer" + elif use ffmpeg ; then + media_extractor="libav" + fi + + local emesonargs=( + -Dtracker_core=system + + -Dman=true + -Dextract=true + $(meson_use test functional_tests) + $(meson_use test tests_tap_protocol) + -Dminer_fs=true + $(meson_use rss miner_rss) + -Dwriteback=true + -Dabiword=true + -Dicon=true + -Dmp3=true + -Dps=true + -Dtext=true + -Dunzip_ps_gz_files=true # spawns gunzip + + $(meson_feature networkmanager network_manager) + $(meson_feature cue) + $(meson_feature exif) + $(meson_feature gif) + $(meson_feature gsf) + $(meson_feature iptc) + $(meson_feature iso) + $(meson_feature jpeg) + $(meson_feature pdf) + $(meson_feature playlist) + -Dpng=enabled + $(meson_feature raw) + $(meson_feature tiff) + $(meson_feature xml) + $(meson_feature xmp) + $(meson_feature xps) + + -Dbattery_detection=$(usex upower upower none) + -Dcharset_detection=icu # enca is a possibility, but right now we have tracker core always dep on icu and icu is preferred over enca + -Dgeneric_media_extractor=${media_extractor} + # gupnp gstreamer_backend is in bad state, upstream suggests to use discoverer, which is the default + -Dsystemd_user_services_dir="$(systemd_get_userunitdir)" + ) + meson_src_configure +} + +src_test() { + export GSETTINGS_BACKEND="dconf" # Tests require dconf and explicitly check for it (env_reset set it to "memory") + dbus-run-session meson test -C "${BUILD_DIR}" || die 'tests failed' +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/app-misc/tracker/Manifest b/app-misc/tracker/Manifest index e9dfad65062e..5d62e4e2118a 100644 --- a/app-misc/tracker/Manifest +++ b/app-misc/tracker/Manifest @@ -1,2 +1,3 @@ DIST tracker-3.4.2.tar.xz 1865236 BLAKE2B 31cdb33de38d9251fc60a71b31c539e3f045748fb5dc160656dd5187dce109da858bad5390864cda8b63466a5113e0a193e0799b662ec250a31cfdff79467e6e SHA512 2214bce7cdbaf1039b11986cf101f615337bbc450331ee703edcfd7ad62dee6e1db831c2c89bf341663cadcdaae6ee9e5a15f49a8087acaafd58b389292ef480 DIST tracker-3.5.0.rc.tar.xz 1330772 BLAKE2B 27f6b942bb7a26266ede88466cbc1671779d49fa95278b2949d6338f6f976aa83aa15ef79c61f30a3c61b0304aee0ae125253185904794ba566b18397b868988 SHA512 cdbf903900a66ce0115e94193834d800a94d7dc7ff023125a8c1da9bf8d743829633bbe6af748bf0535071e492bd249b37e937527a3039143376511a320ddf44 +DIST tracker-3.5.0.tar.xz 2568708 BLAKE2B d3154e262ffa52890f98b0d00d3e2ddf69ca62e4d18a890a076fd1774bea97625a03180e058bebb1928536232f986e5f63c0990b162c73e69b534362b81cac09 SHA512 2c6d4f1c2c9d7687884052ae2ebc68e588cf91c56f98012ee138fc2020c66accb40f021c699d102b7634a936692341bd7ea28f3adfdb3c63c82ed9f837f97ba5 diff --git a/app-misc/tracker/tracker-3.5.0.ebuild b/app-misc/tracker/tracker-3.5.0.ebuild new file mode 100644 index 000000000000..f861aa658eaf --- /dev/null +++ b/app-misc/tracker/tracker-3.5.0.ebuild @@ -0,0 +1,106 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit bash-completion-r1 flag-o-matic gnome.org gnome2-utils linux-info meson python-any-r1 systemd vala xdg + +DESCRIPTION="A tagging metadata database, search tool and indexer" +HOMEPAGE="https://wiki.gnome.org/Projects/Tracker https://gitlab.gnome.org/GNOME/tracker" + +LICENSE="GPL-2+ LGPL-2.1+" +SLOT="3/0" # libtracker-sparql-3.0 soname version +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="gtk-doc +miners stemmer test vala" +RESTRICT="!test? ( test )" + +PV_SERIES=$(ver_cut 1-2) + +RDEPEND=" + >=dev-libs/glib-2.52:2 + >=sys-apps/dbus-1.3.2 + >=dev-libs/gobject-introspection-1.54:= + >=dev-libs/icu-4.8.1.2:= + >=dev-libs/json-glib-1.4 + >=net-libs/libsoup-2.99.2:3.0 + >=dev-libs/libxml2-2.7 + >=dev-db/sqlite-3.29.0:3 + stemmer? ( dev-libs/snowball-stemmer:= ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/glib-utils + app-text/asciidoc + dev-libs/libxslt + $(vala_depend) + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + gtk-doc? ( dev-util/gi-docgen ) + test? ( + $(python_gen_any_dep 'dev-python/pygobject[${PYTHON_USEDEP}]') + $(python_gen_any_dep 'dev-python/tappy[${PYTHON_USEDEP}]') + ) + ${PYTHON_DEPS} +" +PDEPEND="miners? ( >=app-misc/tracker-miners-${PV_SERIES} )" + +python_check_deps() { + python_has_version -b \ + "dev-python/pygobject[${PYTHON_USEDEP}]" \ + "dev-python/tappy[${PYTHON_USEDEP}]" +} + +pkg_setup() { + local CONFIG_CHECK="INOTIFY_USER" + linux-info_pkg_setup + + use test && python-any-r1_pkg_setup +} + +src_prepare() { + default + vala_setup + xdg_environment_reset +} + +src_configure() { + append-cflags -DTRACKER_DEBUG -DG_DISABLE_CAST_CHECKS + + local emesonargs=( + $(meson_use gtk-doc docs) + -Dman=true + $(meson_feature stemmer) + -Dunicode_support=icu + -Dbash_completion_dir="$(get_bashcompdir)" + -Dsystemd_user_services_dir="$(systemd_get_userunitdir)" + $(meson_use test tests) + -Dintrospection=enabled + $(meson_feature vala vapi) + -Dsoup=soup3 + ) + meson_src_configure +} + +src_test() { + dbus-run-session meson test -C "${BUILD_DIR}" || die 'tests failed' +} + +src_install() { + meson_src_install + + if use gtk-doc; then + mkdir -p "${ED}"/usr/share/gtk-doc/html/ || die + mv "${ED}"/usr/share/doc/Tracker-3.0 "${ED}"/usr/share/gtk-doc/html/ || die + fi +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/app-mobilephone/Manifest.gz b/app-mobilephone/Manifest.gz index 17e07efab827..eb5a9bd1e676 100644 Binary files a/app-mobilephone/Manifest.gz and b/app-mobilephone/Manifest.gz differ diff --git a/app-mobilephone/adebar/Manifest b/app-mobilephone/adebar/Manifest new file mode 100644 index 000000000000..ce565359d4d5 --- /dev/null +++ b/app-mobilephone/adebar/Manifest @@ -0,0 +1 @@ +DIST adebar-2.4.1.tar.gz 64226 BLAKE2B 88387844779d9ec857b3f23ca397703fd021cfefbbcb0e5e9bfdea04270adf0cb062d0b34035a93248e7574be5a0dc664f839267e8af82b17967b256f9a57dfc SHA512 7fea787157d1a9bde18601a5199fb57ce108545ade80774ad1d70d64aa7263e9da91f9da1dfa15ff17e266ab0fb78bacab2a767b636013a64d5b2a63f20d74d7 diff --git a/app-mobilephone/adebar/adebar-2.4.1.ebuild b/app-mobilephone/adebar/adebar-2.4.1.ebuild new file mode 100644 index 000000000000..1577d71816f9 --- /dev/null +++ b/app-mobilephone/adebar/adebar-2.4.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit readme.gentoo-r1 + +DESCRIPTION="Android DEvice Backup And Report, using Bash and ADB" +HOMEPAGE="https://codeberg.org/izzy/Adebar" +SRC_URI="https://codeberg.org/izzy/Adebar/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=" + app-shells/bash + dev-util/android-tools +" + +S="${WORKDIR}/${PN}" + +DISABLE_AUTOFORMATTING="no" +DOC_CONTENTS="Please refer to the documentation at https://codeberg.org/izzy/Adebar/wiki. +You can find example configurations at ${ROOT}/usr/share/doc/${PF}. +To customize, copy to \${XDG_CONFIG_HOME}/${PN} and edit it to your liking. +Contrary to the documentation, the Gentoo installation does not allow +configuration files relative to main program ${PN} installed to /usr/bin. +So the documentation must be placed in the users home directory." + +src_prepare() { + default + + sed -i -e 's|\(BINDIR=\).*|\1"/usr/share/adebar"|' ${PN}-cli + sed -i -e 's|\(LIBDIR=\).*|\1"/usr/lib/adebar"|' ${PN}-cli + sed -i -e '/-d "\$HOME\/\.config\/adebar"/,+2d' ${PN}-cli +} + +src_install() { + local libdir=/usr/lib/${PN} + local sharedir=/usr/share/${PN} + + newbin ${PN}-cli ${PN} + + insinto ${libdir} + doins -r lib/* + + exeinto ${sharedir}/tools + doexe tools/* + fperms 0644 ${sharedir}/tools/xml2array.php + + insinto ${sharedir}/templates + doins -r templates/* + + dodoc -r doc/* + dodoc README.md + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +} diff --git a/app-mobilephone/adebar/metadata.xml b/app-mobilephone/adebar/metadata.xml new file mode 100644 index 000000000000..46861791de00 --- /dev/null +++ b/app-mobilephone/adebar/metadata.xml @@ -0,0 +1,8 @@ + + + + + billie@gentoo.org + Daniel Pielmeier + + diff --git a/app-office/Manifest.gz b/app-office/Manifest.gz index 12b0dd6b6076..a2732e7b8498 100644 Binary files a/app-office/Manifest.gz and b/app-office/Manifest.gz differ diff --git a/app-office/ledger/ledger-3.3.1.ebuild b/app-office/ledger/ledger-3.3.1.ebuild index 833204a40ea1..d0356531b28f 100644 --- a/app-office/ledger/ledger-3.3.1.ebuild +++ b/app-office/ledger/ledger-3.3.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" IUSE="debug doc python" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" diff --git a/app-portage/Manifest.gz b/app-portage/Manifest.gz index 6cc83d475387..a1af4da95c50 100644 Binary files a/app-portage/Manifest.gz and b/app-portage/Manifest.gz differ diff --git a/app-portage/gentoolkit/metadata.xml b/app-portage/gentoolkit/metadata.xml index b637fc87273c..030cf9c14f49 100644 --- a/app-portage/gentoolkit/metadata.xml +++ b/app-portage/gentoolkit/metadata.xml @@ -12,4 +12,8 @@ implementations of features that may in time make it into Portage, or into full-fledged tools in their own right. + + proj/gentoolkit + gentoo/gentoolkit + diff --git a/app-portage/hackport/hackport-0.7.2.2.ebuild b/app-portage/hackport/hackport-0.7.2.2.ebuild index 7eaeebfe47a0..c82f8252ca25 100644 --- a/app-portage/hackport/hackport-0.7.2.2.ebuild +++ b/app-portage/hackport/hackport-0.7.2.2.ebuild @@ -16,6 +16,10 @@ LICENSE="GPL-3+" SLOT="0" KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv ~x86" +GHC_BOOTSTRAP_PACKAGES=( + cabal-doctest +) + RDEPEND=">=dev-haskell/async-2.0:= >=dev-haskell/base16-bytestring-0.1.1:= >=dev-haskell/base64-bytestring-1.0:= diff --git a/app-portage/iwdevtools/Manifest b/app-portage/iwdevtools/Manifest index c473f800db87..fe573f034eae 100644 --- a/app-portage/iwdevtools/Manifest +++ b/app-portage/iwdevtools/Manifest @@ -1 +1,2 @@ DIST iwdevtools-0.12.3.tar.gz 89745 BLAKE2B 7d52bd59fcc98cff28873dd8d7737b1e75a99111ea27dac6803d2a14975eb04dc5be88a03e6efd46eef6662828453fc7c53afc9c920d82e74b44fd1e837e58df SHA512 f2efdce89350f85d2c77c7df9fa5fde62ac2923b5cc36eedd4c6ce507fbbe12f915e138a16c8b6b360f093057118a274844c112158ce01bb3f456a415b222216 +DIST iwdevtools-0.12.4.tar.gz 89925 BLAKE2B 6fd87cc528784d443cf966fd126f4bcb020bbaf759509eb1d3e512af73d16fc22b12de06510d2486fcb96ff8c86f8fc77d404d55b2935ef0b456f582a007d903 SHA512 c6486a16ade37a98f38e551e8c01c19c1704b1d99cef87fd1bff9575dcb52df6a1429a2fc26783cbcdc64c971f4885286e9155786a8aa23360c32826e6b8f19e diff --git a/app-portage/iwdevtools/iwdevtools-0.12.4.ebuild b/app-portage/iwdevtools/iwdevtools-0.12.4.ebuild new file mode 100644 index 000000000000..ad9fe2c7e81b --- /dev/null +++ b/app-portage/iwdevtools/iwdevtools-0.12.4.ebuild @@ -0,0 +1,65 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson optfeature + +DESCRIPTION="Small tools to aid with Gentoo development, primarily intended for QA" +HOMEPAGE="https://github.com/ionenwks/iwdevtools" +SRC_URI="https://github.com/ionenwks/iwdevtools/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86 ~x64-macos" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-misc/pax-utils + app-portage/portage-utils + >=app-shells/bash-5.1 + dev-libs/libxml2:2 + sys-apps/coreutils + sys-apps/diffutils + sys-apps/file + sys-apps/portage + || ( sys-apps/util-linux app-misc/getopt )" +BDEPEND=" + sys-apps/help2man + || ( sys-apps/util-linux app-misc/getopt ) + test? ( ${RDEPEND} )" + +src_configure() { + local emesonargs=( + -Ddocdir=${PF} + -Deprefix="${EPREFIX}" + -Dshellcheck=false + $(meson_use test) + ) + + has_version sys-apps/util-linux || emesonargs+=( -Dgetopt=getopt-long ) + + meson_src_configure +} + +pkg_postinst() { + optfeature "detecting potential ABI issues using abidiff" dev-util/libabigail + + if [[ ! ${REPLACING_VERSIONS} ]]; then + elog "Optional portage integration relies on using /etc/portage/bashrc." + elog "The example bashrc can be used as-is if not already using one:" + elog + elog " ln -s ../../usr/share/${PN}/bashrc ${EROOT}/etc/portage/bashrc" + elog + elog "Otherwise, inspect the tools' --help output and the example to integrate" + elog "(if not defining the same phase functions, the example can be sourced)." + elog + elog "Note that \`eqawarn\` is used for portage output by default. QA messages" + elog "aren't logged / shown post-emerge unless e.g. in /etc/portage/make.conf:" + elog + elog ' PORTAGE_ELOG_CLASSES="${PORTAGE_ELOG_CLASSES} qa"' + elog + elog "See ${EROOT}/usr/share/doc/${PF}/README.rst* for information on tools." + fi +} diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index 45d689089202..890b71e818f5 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/a2ps/Manifest b/app-text/a2ps/Manifest index 51b484c868f4..3c28c5f929e6 100644 --- a/app-text/a2ps/Manifest +++ b/app-text/a2ps/Manifest @@ -1,3 +1,4 @@ DIST a2ps-4.14-ja_nls.patch.gz 27576 BLAKE2B 7300971fb76f6c8d2b0e5ffa519cf6064519a33f24430b9894e43778dff5b78f7cf7e2b9fe1e98fb475f452b39ccc29f88f579bbe1922ac3ef70775a05591b32 SHA512 f02f553dd9d9dbd9dfe41ebfe103493000aa4e9de5634c94e7453f73b66d88fea6b0010095913a4a99c7285990a1df1ebcc39da451b2b34f96b0c191112b125f DIST a2ps-4.14.tar.gz 2552507 BLAKE2B cd15a2b85f54f8bfb92adf9f4cf2c3c29091e528ae8072d0e905c58cc94caf55b76ac3e37891f8a0bc0909a177c5ee434fe5aaab3625a2c14127dabad8b506ed SHA512 fd6ac8ab47d789114c283e8ca508f7f56feabd1a189f4ac772cad9e6be7e3791e210892cfffd04ad1d39efe4b15386b2e61bf4cd56b70ed581c0554f36bfe06f DIST a2ps-4.15.1.tar.gz 3598826 BLAKE2B a205f1c5936329eda0768e1494aba62710ce6eccbdfc695f69d65e4c1cf0b84d6f52dd1c1b32b3aa55a037a37f783cb74cf9d2f3b63cffb07beb0bc15fe7303f SHA512 ed58bd03b9390f44b03ae2458bb94655ef0597f11aa89a2d778b14f03fba4d0e0272795d2f968ae304be46d7b862a2f0ce1dc82328d71a02b0293b23ec8b6fa5 +DIST a2ps-4.15.2.tar.gz 3600923 BLAKE2B 37d6dd76578301a629a4171e194cc34836b393ef293193191b2a4e3c5635c154b0d380f921e3862cad64e468108105a669c89e76ec8baa915587f8fff8af8aa9 SHA512 637bda87c7e8d59d923428398d0d67066c700e7e37d91cf3408bfe38f3367afdc651a8248984512fbe71e0d1cb07cb4a348816650748e1fbde52625e8e055a70 diff --git a/app-text/a2ps/a2ps-4.15.2.ebuild b/app-text/a2ps/a2ps-4.15.2.ebuild new file mode 100644 index 000000000000..db63721729f2 --- /dev/null +++ b/app-text/a2ps/a2ps-4.15.2.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools elisp-common + +DESCRIPTION="Any to PostScript filter" +HOMEPAGE="https://www.gnu.org/software/a2ps/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="cjk emacs latex nls static-libs vanilla" + +# a2ps-lpr-wrapper needs bash +RDEPEND=" + app-text/ghostscript-gpl + app-text/libpaper:= + >=app-text/psutils-1.17 + app-text/wdiff + app-shells/bash:* + dev-libs/boehm-gc + >=sys-apps/coreutils-6.10-r1 + emacs? ( >=app-editors/emacs-23.1:* ) + latex? ( virtual/latex-base ) + nls? ( virtual/libintl ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + app-alternatives/yacc + >=dev-util/gperf-2.7.2 + nls? ( sys-devel/gettext ) +" + +SITEFILE="50${PN}-gentoo.el" + +src_prepare() { + default + + use vanilla || eapply "${FILESDIR}"/${PN}-4.15-stdout.patch + + eautoreconf +} + +src_configure() { + export LANG=C LC_ALL=C + + econf \ + --enable-shared \ + $(use_enable static-libs static) \ + --sysconfdir="${EPREFIX}"/etc/a2ps \ + $(use_enable nls) \ + COM_netscape=no \ + COM_acroread=no \ + $(usev !latex COM_latex=no) \ + $(usev !emacs EMACS=no) +} + +src_install() { + emake \ + DESTDIR="${D}" \ + lispdir="${EPREFIX}${SITELISP}"/${PN} \ + install + + newdoc "${ED}"/usr/share/a2ps/README README.a2ps + newdoc "${ED}"/usr/share/a2ps/ppd/README README.a2ps.ppd + newdoc "${ED}"/usr/share/ogonkify/README README.ogonkify + + rm -f "${ED}"/usr/share/{a2ps,a2ps/ppd,ogonkify}/README || die + + find "${ED}" -name '*.la' -delete || die + + use emacs && elisp-site-file-install "${FILESDIR}"/${SITEFILE} + + dodoc ANNOUNCE AUTHORS ChangeLog FAQ NEWS README* THANKS TODO +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/app-text/dvipsk/dvipsk-2021.1_p20210325-r1.ebuild b/app-text/dvipsk/dvipsk-2021.1_p20210325-r1.ebuild index 17c6b2af4b95..2db4040223d4 100644 --- a/app-text/dvipsk/dvipsk-2021.1_p20210325-r1.ebuild +++ b/app-text/dvipsk/dvipsk-2021.1_p20210325-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -7,19 +7,19 @@ inherit texlive-common DESCRIPTION="DVI-to-PostScript translator" HOMEPAGE="http://tug.org/texlive/" -SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-${PV#*_p}-source.tar.xz" +SRC_URI="https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-${PV#*_p}-source.tar.xz" TL_VERSION=2021 EXTRA_TL_MODULES="dvips" EXTRA_TL_DOC_MODULES="dvips.doc" for i in ${EXTRA_TL_MODULES} ; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" done SRC_URI="${SRC_URI} doc? ( " for i in ${EXTRA_TL_DOC_MODULES} ; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" done SRC_URI="${SRC_URI} ) " diff --git a/app-text/libpaper/Manifest b/app-text/libpaper/Manifest index 0a97eec02845..fdb78efc81b3 100644 --- a/app-text/libpaper/Manifest +++ b/app-text/libpaper/Manifest @@ -1,5 +1,3 @@ DIST libpaper-2.0.10.tar.gz 1304460 BLAKE2B 89c0ab7348cff01e278a64fe984f51102146c38699d1036ae265343cc7174a2954974770384e625582669217f57992ed28dd1755867e2f7d00b7e423323f500c SHA512 629d357b4946aca324ca95024dbfd5d49a9e7110b6163eac72482c010c4cb84b50a50b5b119399090a49eaef58329bf3c497d3d871b7c9e46ae5c8e71364c2ce DIST libpaper-2.0.4.tar.gz 1286975 BLAKE2B 2751422ca3176d1f47d98c74d948d986e6dcff15acbac126535f526312900650e25fa0a4d68ceebc5d718f5135be22a9f9407d690dc5d5e22eab9dc55b040fc8 SHA512 d603a807c8fdc57b704cdfdc90bedf05c54c8a7b67e8cf52f26298c22a6cee5291fcadc6e67d28b00cf9d68f4890a394e56c8e91f0b97c8edfac4662fe4dc8f0 -DIST libpaper-2.0.8.tar.gz 1304248 BLAKE2B d42b239b5e6d79fccc42508ab55e3d0a7b7f688c288aae7a75286332cd13d563e6164289195e7b67ef1216d5b4d4127a75dffe4bbe97080e093f89b64f48a57b SHA512 06318779cee2d1cf9bea090a5956f90bf8cccc0d753eb7c931615c0dcb321e012ea870a20613b84e7f4350ab608237a2d21d5170c119d8908c86a94e0cba1d1f -DIST libpaper-2.0.9.tar.gz 1290212 BLAKE2B a1b54af2463c97d90b902fc31ae92347e47ff25d589712ab1f86cc46ccda0751b69733c37ab95bf4abbdad11639b133d812cf46760a04a5aff0ba8749e9a6bf6 SHA512 79d2f6d2b0c88f6edbfb1bbd9be43461cffaa05bfda67bc31b3b29c8f4988125cb7dbd2e982ac5b3b19315b6fea5757efc5c6f45a26b2e34d1569b050673788a DIST libpaper_1.1.28.tar.gz 42356 BLAKE2B 48c4a28c6ff01bd91e257b6b306e787e5c6112052cff09bdb501d1cc4ddd10964c3588942098a6092d5a44391dfb22e10d5147d4c5012497f473473129ff7422 SHA512 3bf6ebb0af89931d2f72ea4a09a7fa958b2facda5f238983ec7bac39652e08614b33f0de3af74a03457b2a4203eee4950bf18a4b726e79aa64093ace6a1fb0bc diff --git a/app-text/libpaper/libpaper-2.0.10.ebuild b/app-text/libpaper/libpaper-2.0.10.ebuild index d77438c2f590..5e23bb0110c8 100644 --- a/app-text/libpaper/libpaper-2.0.10.ebuild +++ b/app-text/libpaper/libpaper-2.0.10.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/rrthomas/libpaper/releases/download/v${PV}/${P}.tar. # paperspecs is public-domain LICENSE="LGPL-2.1+ GPL-3+ public-domain" SLOT="0/$(ver_cut 1)" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" src_configure() { econf --enable-relocatable diff --git a/app-text/libpaper/libpaper-2.0.8.ebuild b/app-text/libpaper/libpaper-2.0.8.ebuild deleted file mode 100644 index d77438c2f590..000000000000 --- a/app-text/libpaper/libpaper-2.0.8.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Library for handling paper characteristics" -HOMEPAGE="https://github.com/rrthomas/libpaper" -SRC_URI="https://github.com/rrthomas/libpaper/releases/download/v${PV}/${P}.tar.gz" - -# See README. -# paperspecs is public-domain -LICENSE="LGPL-2.1+ GPL-3+ public-domain" -SLOT="0/$(ver_cut 1)" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -src_configure() { - econf --enable-relocatable -} - -src_install() { - default - - find "${ED}" -type f -name '*.la' -delete || die -} diff --git a/app-text/libpaper/libpaper-2.0.9.ebuild b/app-text/libpaper/libpaper-2.0.9.ebuild deleted file mode 100644 index d77438c2f590..000000000000 --- a/app-text/libpaper/libpaper-2.0.9.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Library for handling paper characteristics" -HOMEPAGE="https://github.com/rrthomas/libpaper" -SRC_URI="https://github.com/rrthomas/libpaper/releases/download/v${PV}/${P}.tar.gz" - -# See README. -# paperspecs is public-domain -LICENSE="LGPL-2.1+ GPL-3+ public-domain" -SLOT="0/$(ver_cut 1)" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -src_configure() { - econf --enable-relocatable -} - -src_install() { - default - - find "${ED}" -type f -name '*.la' -delete || die -} diff --git a/app-text/ps2pkm/ps2pkm-1.8_p20210325-r1.ebuild b/app-text/ps2pkm/ps2pkm-1.8_p20210325-r1.ebuild index 575e1e85866c..252d4f99d3ef 100644 --- a/app-text/ps2pkm/ps2pkm-1.8_p20210325-r1.ebuild +++ b/app-text/ps2pkm/ps2pkm-1.8_p20210325-r1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DESCRIPTION="Tool that converts a PostScript type1 font into a corresponding TeX PK font" HOMEPAGE="http://tug.org/texlive/" -SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-${PV#*_p}-source.tar.xz" +SRC_URI="https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-${PV#*_p}-source.tar.xz" LICENSE="MIT" SLOT="0" diff --git a/app-text/scdoc/scdoc-1.11.2-r1.ebuild b/app-text/scdoc/scdoc-1.11.2-r1.ebuild index bb57bb33d44a..cb92a9c00651 100644 --- a/app-text/scdoc/scdoc-1.11.2-r1.ebuild +++ b/app-text/scdoc/scdoc-1.11.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then inherit git-r3 else SRC_URI="https://git.sr.ht/~sircmpwn/scdoc/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc x86" + KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86" fi LICENSE="MIT" diff --git a/app-text/sgrep/sgrep-1.94a-r1.ebuild b/app-text/sgrep/sgrep-1.94a-r2.ebuild similarity index 88% rename from app-text/sgrep/sgrep-1.94a-r1.ebuild rename to app-text/sgrep/sgrep-1.94a-r2.ebuild index eb45eb4f246a..de456e40df77 100644 --- a/app-text/sgrep/sgrep-1.94a-r1.ebuild +++ b/app-text/sgrep/sgrep-1.94a-r2.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit autotools + DESCRIPTION="Use structural criteria to grep and index text, SGML, XML and HTML and filter" HOMEPAGE="https://www.cs.helsinki.fi/u/jjaakkol/sgrep.html" SRC_URI="ftp://ftp.cs.helsinki.fi/pub/Software/Local/Sgrep/${P}.tar.gz" @@ -19,6 +21,9 @@ src_prepare() { default sed -i "s:/usr/lib:${EPREFIX}/etc:g" sgrep.1 || die + + # Clang 16, bug #900533 + eautoreconf } src_configure() { diff --git a/app-text/texlive-core/texlive-core-2021-r2.ebuild b/app-text/texlive-core/texlive-core-2021-r2.ebuild index 22b8b8716b82..ab7fa1955b85 100644 --- a/app-text/texlive-core/texlive-core-2021-r2.ebuild +++ b/app-text/texlive-core/texlive-core-2021-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,9 +16,9 @@ HOMEPAGE="https://tug.org/texlive/" SLOT="0" LICENSE="GPL-2 LPPL-1.3c TeX" -SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/texlive/${MY_P}.tar.xz - https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-tlpdb-${PV}.tar.xz - https://dev.gentoo.org/~zlogene/distfiles/texlive/${PN}-patches-${PV}-${PATCHLEVEL}.tar.xz" +SRC_URI="https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/${MY_P}.tar.xz + https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-tlpdb-${PV}.tar.xz + https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/${PN}-patches-${PV}-${PATCHLEVEL}.tar.xz" # We ship binextra collection alongside TL_CORE_BINEXTRA_MODULES=" @@ -61,17 +61,17 @@ TL_CORE_EXTRA_DOC_MODULES="gsftopk.doc texlive.infra.doc texlive-scripts.doc ${T TL_CORE_EXTRA_SRC_MODULES="${TL_CORE_BINEXTRA_SRC_MODULES}" for i in ${TL_CORE_EXTRA_MODULES}; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${PV}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${PV}.tar.xz" done SRC_URI="${SRC_URI} doc? ( " for i in ${TL_CORE_EXTRA_DOC_MODULES}; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${PV}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${PV}.tar.xz" done SRC_URI="${SRC_URI} )" SRC_URI="${SRC_URI} source? ( " for i in ${TL_CORE_EXTRA_SRC_MODULES}; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${PV}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${PV}.tar.xz" done SRC_URI="${SRC_URI} )" diff --git a/app-text/texlive-core/texlive-core-2021-r3.ebuild b/app-text/texlive-core/texlive-core-2021-r3.ebuild index 22942ff163d8..bc3e5846cb3e 100644 --- a/app-text/texlive-core/texlive-core-2021-r3.ebuild +++ b/app-text/texlive-core/texlive-core-2021-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,9 +17,9 @@ HOMEPAGE="https://tug.org/texlive/" SLOT="0" LICENSE="GPL-2 LPPL-1.3c TeX" -SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/texlive/${MY_P}.tar.xz - https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-tlpdb-${PV}.tar.xz - https://dev.gentoo.org/~zlogene/distfiles/texlive/${PN}-patches-${PV}-${PATCHLEVEL}.tar.xz" +SRC_URI="https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/${MY_P}.tar.xz + https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-tlpdb-${PV}.tar.xz + https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/${PN}-patches-${PV}-${PATCHLEVEL}.tar.xz" # We ship binextra collection alongside TL_CORE_BINEXTRA_MODULES=" @@ -62,17 +62,17 @@ TL_CORE_EXTRA_DOC_MODULES="gsftopk.doc texlive.infra.doc texlive-scripts.doc ${T TL_CORE_EXTRA_SRC_MODULES="${TL_CORE_BINEXTRA_SRC_MODULES}" for i in ${TL_CORE_EXTRA_MODULES}; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${PV}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${PV}.tar.xz" done SRC_URI="${SRC_URI} doc? ( " for i in ${TL_CORE_EXTRA_DOC_MODULES}; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${PV}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${PV}.tar.xz" done SRC_URI="${SRC_URI} )" SRC_URI="${SRC_URI} source? ( " for i in ${TL_CORE_EXTRA_SRC_MODULES}; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${PV}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${PV}.tar.xz" done SRC_URI="${SRC_URI} )" diff --git a/app-text/texlive-core/texlive-core-2021-r6.ebuild b/app-text/texlive-core/texlive-core-2021-r6.ebuild index 6ef89fc8bfd5..5f3008ea928a 100644 --- a/app-text/texlive-core/texlive-core-2021-r6.ebuild +++ b/app-text/texlive-core/texlive-core-2021-r6.ebuild @@ -17,9 +17,9 @@ HOMEPAGE="https://tug.org/texlive/" SLOT="0" LICENSE="GPL-2 LPPL-1.3c TeX" -SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/texlive/${MY_P}.tar.xz - https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-tlpdb-${PV}.tar.xz - https://dev.gentoo.org/~zlogene/distfiles/texlive/${PN}-patches-${PV}-${PATCHLEVEL}.tar.xz" +SRC_URI="https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/${MY_P}.tar.xz + https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-tlpdb-${PV}.tar.xz + https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/${PN}-patches-${PV}-${PATCHLEVEL}.tar.xz" # We ship binextra collection alongside TL_CORE_BINEXTRA_MODULES=" @@ -62,17 +62,17 @@ TL_CORE_EXTRA_DOC_MODULES="gsftopk.doc texlive.infra.doc texlive-scripts.doc ${T TL_CORE_EXTRA_SRC_MODULES="${TL_CORE_BINEXTRA_SRC_MODULES}" for i in ${TL_CORE_EXTRA_MODULES}; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${PV}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${PV}.tar.xz" done SRC_URI="${SRC_URI} doc? ( " for i in ${TL_CORE_EXTRA_DOC_MODULES}; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${PV}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${PV}.tar.xz" done SRC_URI="${SRC_URI} )" SRC_URI="${SRC_URI} source? ( " for i in ${TL_CORE_EXTRA_SRC_MODULES}; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${PV}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${PV}.tar.xz" done SRC_URI="${SRC_URI} )" diff --git a/app-text/ttf2pk2/ttf2pk2-2.0_p20210325.ebuild b/app-text/ttf2pk2/ttf2pk2-2.0_p20210325.ebuild index 2508e29afbae..249b1db56776 100644 --- a/app-text/ttf2pk2/ttf2pk2-2.0_p20210325.ebuild +++ b/app-text/ttf2pk2/ttf2pk2-2.0_p20210325.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DESCRIPTION="Freetype 2 based TrueType font to TeX's PK format converter" HOMEPAGE="http://tug.org/texlive/" -SRC_URI="https://dev.gentoo.org/~zlogene/texlive/texlive-${PV#*_p}-source.tar.xz" +SRC_URI="https://dev.gentoo.org/~{zlogene,sam}/texlive/texlive-${PV#*_p}-source.tar.xz" LICENSE="GPL-2" SLOT="0" diff --git a/app-text/xml2doc/xml2doc-20030510-r1.ebuild b/app-text/xml2doc/xml2doc-20030510-r2.ebuild similarity index 83% rename from app-text/xml2doc/xml2doc-20030510-r1.ebuild rename to app-text/xml2doc/xml2doc-20030510-r2.ebuild index 919ecba3c27c..471710170ee3 100644 --- a/app-text/xml2doc/xml2doc-20030510-r1.ebuild +++ b/app-text/xml2doc/xml2doc-20030510-r2.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit toolchain-funcs +inherit autotools toolchain-funcs DESCRIPTION="Tool to convert simple XML to a variety of formats (pdf, html, txt, manpage)" HOMEPAGE="http://xml2doc.sourceforge.net" SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" +S="${WORKDIR}/${PN}" LICENSE="GPL-2" SLOT="0" @@ -16,17 +17,22 @@ KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86" DEPEND="dev-libs/libxml2:2" RDEPEND="${DEPEND}" -S="${WORKDIR}/${PN}" - PATCHES=( # Fix pointer-related bug detected by a QA notice "${FILESDIR}"/${PN}-pointer_fix.patch # Don't strip symbols from binary (bug #152266) "${FILESDIR}"/${P}-makefile.patch - # fix GCC 10 -fno-common change + # Fix GCC 10 -fno-common change "${FILESDIR}"/${P}-gcc10-no-common.patch ) +src_prepare() { + default + + # Clang 16, bug #900539 + eautoreconf +} + src_configure() { tc-export CC econf --disable-pdf diff --git a/dev-ada/Manifest.gz b/dev-ada/Manifest.gz index fc8af3989c7e..4ef1ad3e3b47 100644 Binary files a/dev-ada/Manifest.gz and b/dev-ada/Manifest.gz differ diff --git a/dev-ada/VSS/VSS-22.0.0.ebuild b/dev-ada/VSS/VSS-22.0.0-r1.ebuild similarity index 94% rename from dev-ada/VSS/VSS-22.0.0.ebuild rename to dev-ada/VSS/VSS-22.0.0-r1.ebuild index a59fe4ac8241..2244278b3025 100644 --- a/dev-ada/VSS/VSS-22.0.0.ebuild +++ b/dev-ada/VSS/VSS-22.0.0-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 2021-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -ADA_COMPAT=( gnat_2021 gcc_12_2_0 ) +ADA_COMPAT=( gnat_2021 gcc_12_2_0 gcc_12 ) inherit ada multiprocessing DESCRIPTION="A high level string and text processing library" diff --git a/dev-ada/VSS/VSS-23.0.0.ebuild b/dev-ada/VSS/VSS-23.0.0-r1.ebuild similarity index 96% rename from dev-ada/VSS/VSS-23.0.0.ebuild rename to dev-ada/VSS/VSS-23.0.0-r1.ebuild index 7c3492e64841..9785ef553d34 100644 --- a/dev-ada/VSS/VSS-23.0.0.ebuild +++ b/dev-ada/VSS/VSS-23.0.0-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 2021-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -ADA_COMPAT=( gcc_12_2_0 ) +ADA_COMPAT=( gcc_12_2_0 gcc_12 ) inherit ada multiprocessing DESCRIPTION="A high level string and text processing library" diff --git a/dev-ada/gprbuild/gprbuild-23.0.0-r1.ebuild b/dev-ada/gprbuild/gprbuild-23.0.0-r1.ebuild index 3e090bfd7e4d..9649280c1c56 100644 --- a/dev-ada/gprbuild/gprbuild-23.0.0-r1.ebuild +++ b/dev-ada/gprbuild/gprbuild-23.0.0-r1.ebuild @@ -18,7 +18,7 @@ SRC_URI=" -> ${XMLADA}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND="${ADA_DEPS} diff --git a/dev-ada/gprbuild/gprbuild-23.0.0.ebuild b/dev-ada/gprbuild/gprbuild-23.0.0.ebuild deleted file mode 100644 index 3b99fe68bb8c..000000000000 --- a/dev-ada/gprbuild/gprbuild-23.0.0.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ADA_COMPAT=( gnat_2021 gcc_12_2_0 ) - -inherit ada multiprocessing - -XMLADA=xmlada-${PV} - -DESCRIPTION="Multi-Language Management" -HOMEPAGE="http://libre.adacore.com/" -SRC_URI=" - https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz - -> ${P}.tar.gz - https://github.com/AdaCore/xmlada/archive/refs/tags/v${PV}.tar.gz - -> ${XMLADA}.tar.gz" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="${ADA_DEPS} - dev-ada/gprconfig_kb[${ADA_USEDEP}]" -RDEPEND="${DEPEND}" - -REQUIRED_USE="${ADA_REQUIRED_USE}" -PATCHES=( "${FILESDIR}"/${PN}-22.0.0-gentoo.patch ) - -src_prepare() { - default - sed -i \ - -e "s:@GNATBIND@:${GNATBIND}:g" \ - src/gprlib.adb \ - || die - cd gpr/src || die - ln -s gpr-util-put_resource_usage__unix.adb \ - gpr-util-put_resource_usage.adb -} - -bin_progs="gprbuild gprconfig gprclean gprinstall gprname gprls" -lib_progs="gprlib gprbind" - -src_compile() { - local xmlada_src="../${XMLADA}" - inc_flags="-Isrc -Igpr/src -I${xmlada_src}/sax -I${xmlada_src}/dom \ - -I${xmlada_src}/schema -I${xmlada_src}/unicode \ - -I${xmlada_src}/input_sources" - - gcc -c ${CFLAGS} gpr/src/gpr_imports.c -o gpr_imports.o || die - for bin in ${bin_progs}; do - gnatmake -j$(makeopts_jobs) ${inc_flags} $ADAFLAGS ${bin}-main \ - -o ${bin} -largs ${LDFLAGS} gpr_imports.o || die - done - for lib in $lib_progs; do - gnatmake -j$(makeopts_jobs) ${inc_flags} ${lib} $ADAFLAGS \ - -largs ${LDFLAGS} gpr_imports.o || die - done -} - -src_install() { - dobin ${bin_progs} - exeinto /usr/libexec/gprbuild - doexe ${lib_progs} - insinto /usr/share/gpr - doins share/_default.gpr - einstalldocs -} diff --git a/dev-ada/gprconfig_kb/gprconfig_kb-23.0.0-r1.ebuild b/dev-ada/gprconfig_kb/gprconfig_kb-23.0.0-r1.ebuild deleted file mode 100644 index c3ffa5994631..000000000000 --- a/dev-ada/gprconfig_kb/gprconfig_kb-23.0.0-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ADA_COMPAT=( gnat_2021 gcc_12_2_0 ) - -inherit ada - -DESCRIPTION="GPR configuration knowledge base" -HOMEPAGE="https://www.adacore.com/" -SRC_URI="https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz - -> ${P}.tar.gz" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="!=dev-ada/gprbuild-2021*" - -REQUIRED_USE="${ADA_REQUIRED_USE}" -PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) - -src_prepare() { - default - - sed -i \ - -e "s:@VER@:${GCC_PV}:g" \ - db/compilers.xml \ - db/gnat.xml \ - db/c.xml \ - db/linker.xml \ - || die -} - -src_install() { - insinto /usr/share/gprconfig - doins db/*.xml - doins db/*.ent - einstalldocs -} diff --git a/dev-ada/gprconfig_kb/gprconfig_kb-23.0.0-r2.ebuild b/dev-ada/gprconfig_kb/gprconfig_kb-23.0.0-r2.ebuild index 6c1b527c0680..e7fecf750ebd 100644 --- a/dev-ada/gprconfig_kb/gprconfig_kb-23.0.0-r2.ebuild +++ b/dev-ada/gprconfig_kb/gprconfig_kb-23.0.0-r2.ebuild @@ -13,11 +13,9 @@ SRC_URI="https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" -RDEPEND="!=dev-ada/gprbuild-2021*" - REQUIRED_USE="${ADA_REQUIRED_USE}" PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) diff --git a/dev-ada/langkit/Manifest b/dev-ada/langkit/Manifest index 59b6bdba50b4..9a010d224369 100644 --- a/dev-ada/langkit/Manifest +++ b/dev-ada/langkit/Manifest @@ -1,2 +1 @@ -DIST langkit-22.0.0.tar.gz 1008946 BLAKE2B 2b4ee37c9af1c95f9a6e9ad81f37b6bb112d5bd70f36b78e95d969580eacc1101b824ea24de39d04ccf8bc9f9850906fa1c660a29de05e90d12106b10792c37d SHA512 4c6207b650ae8352c65f3edda3192fc66c9b5d2c351665d78ca83b549960a0a41e7828e8974cb8daa3c415281b50253aa15a247407bcedc2c13e573aaa804909 DIST langkit-23.0.0.tar.gz 1178557 BLAKE2B c3b81cafea3afcfd90a87192dca5abd0f19c5ff4e195515dd7c4df70824bf328c24855a6761264b89bf44a56afc8dd77b78fbf322c6f92299082507aa65d61e5 SHA512 6cc6adacb157a47ebc8da46591e45a4ff212fba2cd5ac80c12adb2e84f4508735d98dc68ffce86aa5e5e8d873e6f51efb4f88f4d76a190b9eb0024bf69deefc1 diff --git a/dev-ada/langkit/files/langkit-22.0.0-abc.patch b/dev-ada/langkit/files/langkit-22.0.0-abc.patch deleted file mode 100644 index 0b3e9bbf8f4f..000000000000 --- a/dev-ada/langkit/files/langkit-22.0.0-abc.patch +++ /dev/null @@ -1,24 +0,0 @@ -From cdc5768fb8db416e4eede97639f381a537ae9336 Mon Sep 17 00:00:00 2001 -From: Charles Pigott -Date: Wed, 10 Nov 2021 20:42:12 +0000 -Subject: [PATCH] Use collections.abc.Sequence as the alias is set to be - removed - -Alias has been in place since Py 3.3, and minimum (test) version is 3.7. ---- - langkit/templates/python_api/module_py.mako | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/langkit/templates/python_api/module_py.mako b/langkit/templates/python_api/module_py.mako -index 831fb6044..65373fdbc 100644 ---- a/langkit/templates/python_api/module_py.mako -+++ b/langkit/templates/python_api/module_py.mako -@@ -1503,7 +1503,7 @@ class ${root_astnode_name}: - if isinstance(ast_type_or_pred, type): - sought_type = ast_type_or_pred - pred = lambda node: isinstance(node, sought_type) -- elif isinstance(ast_type_or_pred, collections.Sequence): -+ elif isinstance(ast_type_or_pred, collections.abc.Sequence): - sought_types = ast_type_or_pred - pred = lambda node: isinstance(node, tuple(sought_types)) - else: diff --git a/dev-ada/langkit/langkit-22.0.0-r3.ebuild b/dev-ada/langkit/langkit-22.0.0-r3.ebuild deleted file mode 100644 index a5c90c452b7b..000000000000 --- a/dev-ada/langkit/langkit-22.0.0-r3.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_10 ) -ADA_COMPAT=( gnat_2021 gcc_12_2_0 ) - -DISTUTILS_USE_SETUPTOOLS=no -inherit distutils-r1 ada multiprocessing - -DESCRIPTION="A Python framework to generate language parsers" -HOMEPAGE="https://www.adacore.com/community" -SRC_URI="https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz - -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~x86" -IUSE="+shared static-libs static-pic" -REQUIRED_USE="${PYTHON_REQUIRED_USE} - ${ADA_REQUIRED_USE} - || ( shared static-libs static-pic )" - -RDEPEND="${PYTHON_DEPS} - ${ADA_DEPS} - dev-ada/gnatcoll-bindings[${ADA_USEDEP},gmp,iconv,shared?,static-libs?,static-pic?] - dev-python/mako[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/funcy[${PYTHON_USEDEP}] - dev-python/docutils[${PYTHON_USEDEP}] - dev-ada/e3-core[${PYTHON_USEDEP}]" -BDEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}"/${P}-abc.patch ) - -python_prepare_all() { - distutils-r1_python_prepare_all - cd testsuite/tests - - # missing gprbuild option to build libraries static/relocatable - rm -r {langkit_support,adalog,misc/link_two_libs} || die - - # require railroad-diagrams - rm -r contrib/svg_railroad_diagrams || die -} - -python_compile_all() { - build () { - gprbuild -j$(makeopts_jobs) -p -v \ - -XLIBRARY_TYPE=$1 -P support/langkit_support.gpr -XBUILD_MODE=dev \ - -cargs:Ada ${ADAFLAGS} -cargs:C ${CFLAGS} || die "gprbuild failed" - } - if use shared; then - build relocatable - fi - if use static-libs; then - build static - fi - if use static-pic; then - build static-pic - fi -} - -python_test_all() { - export GPR_PROJECT_PATH="${S}"/support - ${EPYTHON} ./manage.py make --no-langkit-support || die - eval $(./manage.py setenv) - ${EPYTHON} ./manage.py test --verbose |& tee langkit.testOut - grep -qw FAIL langkit.testOut && die -} - -python_install_all() { - build () { - gprinstall -v -P support/langkit_support.gpr -p -XBUILD_MODE=dev \ - --prefix="${D}"/usr --build-var=LIBRARY_TYPE \ - --build-var=LANGKIT_SUPPORT_LIBRARY_TYPE \ - --sources-subdir=include/langkit_support \ - -XLIBRARY_TYPE=$1 --build-name=$1 || die - } - if use shared; then - build relocatable - fi - if use static-libs; then - build static - fi - if use static-pic; then - build static-pic - fi -} diff --git a/dev-ada/libadalang/Manifest b/dev-ada/libadalang/Manifest index 074a7836d48b..1bbb55f0ff69 100644 --- a/dev-ada/libadalang/Manifest +++ b/dev-ada/libadalang/Manifest @@ -1,2 +1 @@ -DIST libadalang-22.0.0.tar.gz 2364531 BLAKE2B 3992baa7180dce696b2c8aa0d451117a12b90072e83274d96a8d971b627c82bc66c5c21fa1eb6dbdd7ce95e0264852c5702b3d7c90f7bdf093915178e0a4a659 SHA512 b874feb102fe221595ad4b9b95b3ea4c6593686f96097ace17ad3c57534dc801000819de0cf898489e3407fd201eb003dd75f4f743a53dfb76cadfa6c727d789 DIST libadalang-23.0.0.tar.gz 2604724 BLAKE2B 0e415c92fdd150e19288cee87a011c448962531b629b7f77be3b22a7e6662017a6cfd5132a5895c68ffee4b28b7ac35e4b5abc07f015a84638ecb1843976e3e5 SHA512 ed80d751d3a2e07b0d612bda24c0f1d753d15237cde3d9e3bbb6c79c8c98d6af050151c499d161e619282ed8cb742968bbfb5423008aa593a6673fcf0375c7d3 diff --git a/dev-ada/libadalang/libadalang-22.0.0.ebuild b/dev-ada/libadalang/libadalang-22.0.0.ebuild deleted file mode 100644 index 08e8d1ec59bb..000000000000 --- a/dev-ada/libadalang/libadalang-22.0.0.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_10 ) -ADA_COMPAT=( gnat_2021 gcc_12_2_0 ) - -inherit ada python-single-r1 multiprocessing - -DESCRIPTION="high performance semantic engine for the Ada programming language" -HOMEPAGE="https://libre.adacore.com/" -SRC_URI="https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz - -> ${P}.tar.gz" - -LICENSE="GPL-3 gcc-runtime-library-exception-3.1" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~x86" -IUSE="test +static-libs static-pic" -REQUIRED_USE="${PYTHON_REQUIRED_USE} - ${ADA_REQUIRED_USE}" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/pyyaml - dev-ada/gnatcoll-bindings[${ADA_USEDEP},gmp,iconv,shared,static-libs?,static-pic?] - ${ADA_DEPS} - ${PYTHON_DEPS} - ~dev-ada/langkit-${PV}[${ADA_USEDEP},shared,static-libs?,static-pic?] - $(python_gen_cond_dep ' - dev-ada/langkit[${PYTHON_USEDEP}] - ')" -DEPEND="${RDEPEND} - dev-ada/gprbuild[${ADA_USEDEP}] -" -BDEPEND="test? ( - dev-ml/dune - dev-ml/zarith - dev-ml/camomile - dev-ml/ocaml-ctypes - dev-ada/e3-testsuite - =app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( diff --git a/dev-db/mariadb/mariadb-10.4.26.ebuild b/dev-db/mariadb/mariadb-10.4.26-r1.ebuild similarity index 99% rename from dev-db/mariadb/mariadb-10.4.26.ebuild rename to dev-db/mariadb/mariadb-10.4.26-r1.ebuild index 48717b3242cb..717f973cbfff 100644 --- a/dev-db/mariadb/mariadb-10.4.26.ebuild +++ b/dev-db/mariadb/mariadb-10.4.26-r1.ebuild @@ -72,7 +72,7 @@ COMMON_DEPEND=" ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) - innodb-snappy? ( app-arch/snappy ) + innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( @@ -81,7 +81,7 @@ COMMON_DEPEND=" ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) - tokudb? ( app-arch/snappy ) + tokudb? ( app-arch/snappy:= ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= diff --git a/dev-db/mariadb/mariadb-10.4.27.ebuild b/dev-db/mariadb/mariadb-10.4.27-r1.ebuild similarity index 99% rename from dev-db/mariadb/mariadb-10.4.27.ebuild rename to dev-db/mariadb/mariadb-10.4.27-r1.ebuild index 76cd9e8f3d0b..71551ef51185 100644 --- a/dev-db/mariadb/mariadb-10.4.27.ebuild +++ b/dev-db/mariadb/mariadb-10.4.27-r1.ebuild @@ -72,7 +72,7 @@ COMMON_DEPEND=" ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) - innodb-snappy? ( app-arch/snappy ) + innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( @@ -81,7 +81,7 @@ COMMON_DEPEND=" ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) - tokudb? ( app-arch/snappy ) + tokudb? ( app-arch/snappy:= ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= diff --git a/dev-db/mariadb/mariadb-10.4.28.ebuild b/dev-db/mariadb/mariadb-10.4.28-r1.ebuild similarity index 99% rename from dev-db/mariadb/mariadb-10.4.28.ebuild rename to dev-db/mariadb/mariadb-10.4.28-r1.ebuild index 8085e28a8845..83d1d9c9e7d6 100644 --- a/dev-db/mariadb/mariadb-10.4.28.ebuild +++ b/dev-db/mariadb/mariadb-10.4.28-r1.ebuild @@ -69,7 +69,7 @@ COMMON_DEPEND=" ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) - innodb-snappy? ( app-arch/snappy ) + innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( @@ -78,7 +78,7 @@ COMMON_DEPEND=" ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) - tokudb? ( app-arch/snappy ) + tokudb? ( app-arch/snappy:= ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= diff --git a/dev-db/mariadb/mariadb-10.5.17.ebuild b/dev-db/mariadb/mariadb-10.5.17-r1.ebuild similarity index 99% rename from dev-db/mariadb/mariadb-10.5.17.ebuild rename to dev-db/mariadb/mariadb-10.5.17-r1.ebuild index ce1e8f716a0a..53dae8fc5e24 100644 --- a/dev-db/mariadb/mariadb-10.5.17.ebuild +++ b/dev-db/mariadb/mariadb-10.5.17-r1.ebuild @@ -63,7 +63,7 @@ COMMON_DEPEND=" app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( - app-arch/snappy + app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) @@ -74,7 +74,7 @@ COMMON_DEPEND=" ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) - innodb-snappy? ( app-arch/snappy ) + innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( diff --git a/dev-db/mariadb/mariadb-10.5.18.ebuild b/dev-db/mariadb/mariadb-10.5.18-r1.ebuild similarity index 99% rename from dev-db/mariadb/mariadb-10.5.18.ebuild rename to dev-db/mariadb/mariadb-10.5.18-r1.ebuild index 345f2fb47319..94c15f5dd051 100644 --- a/dev-db/mariadb/mariadb-10.5.18.ebuild +++ b/dev-db/mariadb/mariadb-10.5.18-r1.ebuild @@ -63,7 +63,7 @@ COMMON_DEPEND=" app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( - app-arch/snappy + app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) @@ -74,7 +74,7 @@ COMMON_DEPEND=" ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) - innodb-snappy? ( app-arch/snappy ) + innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( diff --git a/dev-db/mariadb/mariadb-10.5.19.ebuild b/dev-db/mariadb/mariadb-10.5.19-r1.ebuild similarity index 99% rename from dev-db/mariadb/mariadb-10.5.19.ebuild rename to dev-db/mariadb/mariadb-10.5.19-r1.ebuild index 3923784a2382..23642e369303 100644 --- a/dev-db/mariadb/mariadb-10.5.19.ebuild +++ b/dev-db/mariadb/mariadb-10.5.19-r1.ebuild @@ -60,7 +60,7 @@ COMMON_DEPEND=" app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( - app-arch/snappy + app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) @@ -71,7 +71,7 @@ COMMON_DEPEND=" ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) - innodb-snappy? ( app-arch/snappy ) + innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( diff --git a/dev-db/mariadb/mariadb-10.6.10.ebuild b/dev-db/mariadb/mariadb-10.6.10-r2.ebuild similarity index 99% rename from dev-db/mariadb/mariadb-10.6.10.ebuild rename to dev-db/mariadb/mariadb-10.6.10-r2.ebuild index 1dbeaa3ee303..873d6f63f847 100644 --- a/dev-db/mariadb/mariadb-10.6.10.ebuild +++ b/dev-db/mariadb/mariadb-10.6.10-r2.ebuild @@ -63,7 +63,7 @@ COMMON_DEPEND=" app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( - app-arch/snappy + app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) @@ -74,7 +74,7 @@ COMMON_DEPEND=" ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) - innodb-snappy? ( app-arch/snappy ) + innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( diff --git a/dev-db/mariadb/mariadb-10.6.11-r1.ebuild b/dev-db/mariadb/mariadb-10.6.11-r3.ebuild similarity index 99% rename from dev-db/mariadb/mariadb-10.6.11-r1.ebuild rename to dev-db/mariadb/mariadb-10.6.11-r3.ebuild index 8dd5bac2fb6c..10e0da46a123 100644 --- a/dev-db/mariadb/mariadb-10.6.11-r1.ebuild +++ b/dev-db/mariadb/mariadb-10.6.11-r3.ebuild @@ -61,7 +61,7 @@ COMMON_DEPEND=" app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( - app-arch/snappy + app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) @@ -72,7 +72,7 @@ COMMON_DEPEND=" ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) - innodb-snappy? ( app-arch/snappy ) + innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( diff --git a/dev-db/mariadb/mariadb-10.6.11.ebuild b/dev-db/mariadb/mariadb-10.6.11.ebuild index d9d6aeccc8f0..3b83b34f0607 100644 --- a/dev-db/mariadb/mariadb-10.6.11.ebuild +++ b/dev-db/mariadb/mariadb-10.6.11.ebuild @@ -63,7 +63,7 @@ COMMON_DEPEND=" app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( - app-arch/snappy + app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) @@ -74,7 +74,7 @@ COMMON_DEPEND=" ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) - innodb-snappy? ( app-arch/snappy ) + innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( diff --git a/dev-db/mariadb/mariadb-10.6.12.ebuild b/dev-db/mariadb/mariadb-10.6.12-r1.ebuild similarity index 99% rename from dev-db/mariadb/mariadb-10.6.12.ebuild rename to dev-db/mariadb/mariadb-10.6.12-r1.ebuild index 3b3c995c5a82..a79aca4cedf2 100644 --- a/dev-db/mariadb/mariadb-10.6.12.ebuild +++ b/dev-db/mariadb/mariadb-10.6.12-r1.ebuild @@ -58,7 +58,7 @@ COMMON_DEPEND=" app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( - app-arch/snappy + app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) @@ -69,7 +69,7 @@ COMMON_DEPEND=" ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) - innodb-snappy? ( app-arch/snappy ) + innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( diff --git a/dev-db/postgresql/postgresql-11.19.ebuild b/dev-db/postgresql/postgresql-11.19.ebuild index 3123f9fe26c1..97c811e81b4f 100644 --- a/dev-db/postgresql/postgresql-11.19.ebuild +++ b/dev-db/postgresql/postgresql-11.19.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{9,10,11} ) -LLVM_MAX_SLOT=15 +LLVM_MAX_SLOT=16 inherit flag-o-matic linux-info llvm pam python-single-r1 systemd tmpfiles @@ -37,8 +37,8 @@ icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( - =dev-lang/perl-5.8:= ) diff --git a/dev-db/postgresql/postgresql-12.14.ebuild b/dev-db/postgresql/postgresql-12.14.ebuild index 084853e140d3..0239892af326 100644 --- a/dev-db/postgresql/postgresql-12.14.ebuild +++ b/dev-db/postgresql/postgresql-12.14.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{9,10,11} ) -LLVM_MAX_SLOT=15 +LLVM_MAX_SLOT=16 inherit flag-o-matic linux-info llvm pam python-single-r1 systemd tmpfiles @@ -37,8 +37,8 @@ icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( - =dev-lang/perl-5.8:= ) diff --git a/dev-db/postgresql/postgresql-13.10.ebuild b/dev-db/postgresql/postgresql-13.10.ebuild index 8df70d557212..e5005d34eafb 100644 --- a/dev-db/postgresql/postgresql-13.10.ebuild +++ b/dev-db/postgresql/postgresql-13.10.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{9,10,11} ) -LLVM_MAX_SLOT=15 +LLVM_MAX_SLOT=16 inherit flag-o-matic linux-info llvm pam python-single-r1 systemd tmpfiles @@ -37,8 +37,8 @@ icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( - =dev-lang/perl-5.8:= ) diff --git a/dev-db/postgresql/postgresql-14.7.ebuild b/dev-db/postgresql/postgresql-14.7.ebuild index 8876f738f6c1..2be4264552ca 100644 --- a/dev-db/postgresql/postgresql-14.7.ebuild +++ b/dev-db/postgresql/postgresql-14.7.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{9,10,11} ) -LLVM_MAX_SLOT=15 +LLVM_MAX_SLOT=16 inherit flag-o-matic linux-info llvm pam python-single-r1 systemd tmpfiles @@ -37,8 +37,8 @@ icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( - /dev/null || die + + # Need Automatic-Module-Name also for the other JAR files + jar xvf ../../commons-logging.jar META-INF/MANIFEST.MF || die + + # https://github.com/apache/commons-logging/blob/058cf5ee350cd83d1ab28b000ad6be903ca160c5/pom.xml#L215-L236 + jar -cvfm ../../commons-logging-api.jar META-INF/MANIFEST.MF \ + $(find . -type f -name '*.class' \ + ! -name 'Jdk13LumberjackLogger.class' \ + ! -name 'ServletContextCleaner.class' \ + ) || die + + # https://github.com/apache/commons-logging/blob/058cf5ee350cd83d1ab28b000ad6be903ca160c5/pom.xml#L240-L257 + jar -cvfm ../../commons-logging-adapters.jar META-INF/MANIFEST.MF \ + $(find . -type f -path './org/apache/commons/logging/impl/**.class' \ + ! -name 'WeakHashtable*.class' \ + ! -name 'LogFactoryImpl*.class' \ + ) || die + + popd > /dev/null || die +} + +# https://github.com/apache/commons-logging/blob/058cf5ee350cd83d1ab28b000ad6be903ca160c5/pom.xml#L396-L407 +# src_test() { +# JAVA_TEST_EXTRA_ARGS=( +# -Dtestclasses="commons-logging-tests.jar" +# -Dcommons-logging="commons-logging.jar" +# -Dcommons-logging-api="commons-logging-api.jar" +# -Dcommons-logging-adapters="commons-logging-adapters.jar" +# ) +# JAVA_TEST_RESOURCE_DIRS="src/test/resources" +# JAVA_TEST_SRC_DIR="src/test/java" +# if use log4j; then +# JAVA_TEST_EXTRA_ARGS+=" -Dlog4j12=$(java-pkg_getjars log4j-12-api-2,log4j-core-2)" +# fi +# JAVA_TEST_EXTRA_ARGS+=" -Dservlet-api=$(java-pkg_getjars javax-servlet-api-2.5)" +# java-pkg-simple_src_test +# } diff --git a/dev-java/commons-logging/metadata.xml b/dev-java/commons-logging/metadata.xml index 929f4e61cf4e..c3b68538712d 100644 --- a/dev-java/commons-logging/metadata.xml +++ b/dev-java/commons-logging/metadata.xml @@ -1,14 +1,21 @@ - - java@gentoo.org - Java - - - Add optional support for avalon-framework - Add optional support for avalon-logkit - Add optional support for log4j - Add optional support for servletapi - + + java@gentoo.org + Java + + + https://issues.apache.org/jira/projects/LOGGING/issues/ + apache/commons-logging + + + Add optional support for avalon-framework + Add optional support for avalon-logkit + Add optional support for log4j + Add optional support for servletapi + + + Apache Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. + diff --git a/dev-java/java-dep-check/files/Main-0.5.java b/dev-java/java-dep-check/files/Main-0.5.java index bcd6b4f2a9d6..b8a1e053e301 100644 --- a/dev-java/java-dep-check/files/Main-0.5.java +++ b/dev-java/java-dep-check/files/Main-0.5.java @@ -73,7 +73,7 @@ public final class Main extends ClassVisitor { * Empty Constructor, sets ASM op code version */ public Main() { - super(Opcodes.ASM5); + super(Opcodes.ASM9); } /** diff --git a/dev-java/java-dep-check/java-dep-check-0.5-r1.ebuild b/dev-java/java-dep-check/java-dep-check-0.5-r2.ebuild similarity index 100% rename from dev-java/java-dep-check/java-dep-check-0.5-r1.ebuild rename to dev-java/java-dep-check/java-dep-check-0.5-r2.ebuild diff --git a/dev-java/maven-bin/Manifest b/dev-java/maven-bin/Manifest index 7e6983ebd6ae..f2272866a9b8 100644 --- a/dev-java/maven-bin/Manifest +++ b/dev-java/maven-bin/Manifest @@ -1,2 +1,4 @@ DIST apache-maven-3.8.7-bin.tar.gz 8293440 BLAKE2B 0a586cf0eb2a579d99bbe5736f294369b774ee4b041b37ecd4721eb3b988e274fd6d88bb34cc20a48c98c4f70c256dd74441c0f57119f90958af05e8c16f89c6 SHA512 21c2be0a180a326353e8f6d12289f74bc7cd53080305f05358936f3a1b6dd4d91203f4cc799e81761cf5c53c5bbe9dcc13bdb27ec8f57ecf21b2f9ceec3c8d27 +DIST apache-maven-3.8.8-bin.tar.gz 8296049 BLAKE2B af6353193365ed33e8f2f0a7e4d31933132751f142ebbdb68aab7a74ad2dda6593bf34cef9d8d56d6c93ff93293b75517a10a5c1c048733b8c911f4ac150bdf6 SHA512 332088670d14fa9ff346e6858ca0acca304666596fec86eea89253bd496d3c90deae2be5091be199f48e09d46cec817c6419d5161fb4ee37871503f472765d00 DIST apache-maven-3.9.0-bin.tar.gz 9024147 BLAKE2B ba2545a44a20c7ed7791ea116fbb72d549409d955f8403355e13cf86b95ffda685d5ee0c3d3377f2b5481b25a2f0e6f45d51e89b1ba5913c9be0688a98f8d585 SHA512 1ea149f4e48bc7b34d554aef86f948eca7df4e7874e30caf449f3708e4f8487c71a5e5c072a05f17c60406176ebeeaf56b5f895090c7346f8238e2da06cf6ecd +DIST apache-maven-3.9.1-bin.tar.gz 9039409 BLAKE2B e1925202d8b5363f16cd734aca409091a1e7f56fa9220aa6060a79fae6dfd37772daf04bc15edc2918757ac718ea41e861583c86dff40b0e3172fa0a7cdfbcef SHA512 d3be5956712d1c2cf7a6e4c3a2db1841aa971c6097c7a67f59493a5873ccf8c8b889cf988e4e9801390a2b1ae5a0669de07673acb090a083232dbd3faf82f3e3 diff --git a/dev-java/maven-bin/maven-bin-3.8.8.ebuild b/dev-java/maven-bin/maven-bin-3.8.8.ebuild new file mode 100644 index 000000000000..9248c8bb462c --- /dev/null +++ b/dev-java/maven-bin/maven-bin-3.8.8.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit java-pkg-2 + +MY_PN=apache-${PN%%-bin} +MY_PV=${PV/_alpha/-alpha-} +MY_P="${MY_PN}-${MY_PV}" +MY_MV="${PV%%.*}" + +DESCRIPTION="Project Management and Comprehension Tool for Java" +SRC_URI="mirror://apache/maven/maven-${MY_MV}/${PV}/binaries/${MY_P}-bin.tar.gz" +HOMEPAGE="https://maven.apache.org/" + +LICENSE="Apache-2.0" +SLOT="3.8" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + >=virtual/jdk-1.8:* + app-eselect/eselect-java" + +RDEPEND=" + >=virtual/jre-1.8:*" + +S="${WORKDIR}/${MY_P}" + +MAVEN="${PN}-${SLOT}" +MAVEN_SHARE="/usr/share/${MAVEN}" + +QA_FLAGS_IGNORED=( + "${MAVEN_SHARE}/lib/jansi-native/linux32/libjansi.so" + "${MAVEN_SHARE}/lib/jansi-native/linux64/libjansi.so" +) + +# TODO: +# We should use jars from packages, instead of what is bundled. +src_install() { + dodir "${MAVEN_SHARE}" + + cp -Rp bin boot conf lib "${ED}/${MAVEN_SHARE}" || die "failed to copy" + + java-pkg_regjar "${ED}/${MAVEN_SHARE}"/boot/*.jar + java-pkg_regjar "${ED}/${MAVEN_SHARE}"/lib/*.jar + + dodoc NOTICE README.txt + + dodir /usr/bin + dosym "${MAVEN_SHARE}/bin/mvn" /usr/bin/mvn-${SLOT} + + # See bug #342901. + echo "CONFIG_PROTECT=\"${MAVEN_SHARE}/conf\"" > "${T}/25${MAVEN}" || die + doenvd "${T}/25${MAVEN}" +} + +pkg_postinst() { + eselect maven update mvn-${SLOT} +} + +pkg_postrm() { + eselect maven update +} diff --git a/dev-java/maven-bin/maven-bin-3.9.1.ebuild b/dev-java/maven-bin/maven-bin-3.9.1.ebuild new file mode 100644 index 000000000000..6748f5927604 --- /dev/null +++ b/dev-java/maven-bin/maven-bin-3.9.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit java-pkg-2 + +MY_PN=apache-${PN%%-bin} +MY_PV=${PV/_alpha/-alpha-} +MY_P="${MY_PN}-${MY_PV}" +MY_MV="${PV%%.*}" + +DESCRIPTION="Project Management and Comprehension Tool for Java" +SRC_URI="mirror://apache/maven/maven-${MY_MV}/${PV}/binaries/${MY_P}-bin.tar.gz" +HOMEPAGE="https://maven.apache.org/" + +LICENSE="Apache-2.0" +SLOT="3.9" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + >=virtual/jdk-1.8:* + app-eselect/eselect-java" + +RDEPEND=" + >=virtual/jre-1.8:*" + +S="${WORKDIR}/${MY_P}" + +MAVEN="${PN}-${SLOT}" +MAVEN_SHARE="/usr/share/${MAVEN}" + +QA_FLAGS_IGNORED=( + "${MAVEN_SHARE}/lib/jansi-native/linux32/libjansi.so" + "${MAVEN_SHARE}/lib/jansi-native/linux64/libjansi.so" +) + +# TODO: +# We should use jars from packages, instead of what is bundled. +src_install() { + dodir "${MAVEN_SHARE}" + + cp -Rp bin boot conf lib "${ED}/${MAVEN_SHARE}" || die "failed to copy" + + java-pkg_regjar "${ED}/${MAVEN_SHARE}"/boot/*.jar + java-pkg_regjar "${ED}/${MAVEN_SHARE}"/lib/*.jar + + dodoc NOTICE README.txt + + dodir /usr/bin + dosym "${MAVEN_SHARE}/bin/mvn" /usr/bin/mvn-${SLOT} + + # See bug #342901. + echo "CONFIG_PROTECT=\"${MAVEN_SHARE}/conf\"" > "${T}/25${MAVEN}" || die + doenvd "${T}/25${MAVEN}" +} + +pkg_postinst() { + eselect maven update mvn-${SLOT} +} + +pkg_postrm() { + eselect maven update +} diff --git a/dev-java/snakeyaml/Manifest b/dev-java/snakeyaml/Manifest index c2603d2f156f..97b875b06b47 100644 --- a/dev-java/snakeyaml/Manifest +++ b/dev-java/snakeyaml/Manifest @@ -1 +1,2 @@ DIST snakeyaml-1.33.tar.gz 406196 BLAKE2B 9b7e7d7a5d35d433445737f4b5cc07744e3686a71cc4b9e44ce46153831b76f01da7ef6bc60ea82a7173283a77d0da500bea2bc7ee76bdde4ebda00aa6054aa8 SHA512 ad367d7e7bcb2225094d132df77d91e7401026af02f4ede14a2a4fc5cf78f0cfa1e4400f16f43a669faa2f0e444d36c3745e3c9df3d9114d62fee070c4c99414 +DIST snakeyaml-2.0.tar.gz 405458 BLAKE2B 69d81e0b23080ff86c1f6fe8a924a504d627c353bf9c026703ef54f14e572458e77c501415260667bcb18008ee96ca99cab7ed43c004d36fed781500f09054cf SHA512 ef4da2ae5f5e6cd7b68aabb0d37a4fdbd33be899cd1d4dad3210cc791ca85af57661f623898449841b930eaffc9e61cef337efa4e6371710307ef3758f0af329 diff --git a/dev-java/snakeyaml/snakeyaml-2.0.ebuild b/dev-java/snakeyaml/snakeyaml-2.0.ebuild new file mode 100644 index 000000000000..9066dbd63aba --- /dev/null +++ b/dev-java/snakeyaml/snakeyaml-2.0.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source test" +MAVEN_ID="org.yaml:snakeyaml:2.0" +JAVA_TESTING_FRAMEWORKS="junit-4" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="YAML 1.1 parser and emitter for Java" +HOMEPAGE="https://bitbucket.org/snakeyaml/snakeyaml" +SRC_URI="https://bitbucket.org/${PN}/${PN}/get/${P}.tar.gz" +S="${WORKDIR}/snakeyaml-snakeyaml-59ddbb3304bb" + +LICENSE="Apache-2.0" +SLOT="2" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +# Compile dependencies +# POM: pom.xml +# test? joda-time:joda-time:2.11.2 -> >=dev-java/joda-time-2.11.2:0 +# test? junit:junit:4.13.2 -> >=dev-java/junit-4.13.2:4 +# test? org.apache.velocity:velocity-engine-core:2.3 -> >=dev-java/velocity-2.3:0 +# test? org.projectlombok:lombok:1.18.24 -> !!!groupId-not-found!!! + +DEPEND=" + >=virtual/jdk-11:* + test? ( + dev-java/velocity:0 + dev-java/joda-time:0 + ) +" + +RDEPEND=">=virtual/jre-1.8:*" + +JAVA_SRC_DIR="src/main/java" +JAVA_TEST_GENTOO_CLASSPATH="joda-time,junit-4,velocity" +JAVA_TEST_RESOURCE_DIRS="src/test/resources" +JAVA_TEST_SRC_DIR="src/test/java" + +# Workaround for https://bugs.gentoo.org/900433 +# src/main/java9/org/yaml/snakeyaml/internal/Logger.java:16: +# error: duplicate class: org.yaml.snakeyaml.internal.Logger +src_prepare() { + java-pkg-2_src_prepare + mv src/main/java{9,}/module-info.java || die +} + +src_test() { + export EnvironmentKey1="EnvironmentValue1" + export EnvironmentEmpty="" + + # Not packaged org.projectlombok:lombok - https://bugs.gentoo.org/868684 + rm src/test/java/org/yaml/snakeyaml/env/EnvLombokTest.java || die # Tests run: 1 + rm src/test/java/org/yaml/snakeyaml/issues/issue387/YamlExecuteProcessContextTest.java || die # Tests run: 1 + rm src/test/java/org/yaml/snakeyaml/env/ApplicationProperties.java || die # No tests # import lombok. + + # https://bugs.gentoo.org/871744 + pushd src/test/java || die + local JAVA_TEST_RUN_ONLY=$(find * -name "*Test.java" \ + ! -name "StressTest.java" \ + ! -name "ParallelTest.java" \ + ! -name "AbstractTest.java" \ + ! -name "PyImportTest.java" \ + ! -name "Fuzzer50355Test.java" \ + ! -name "ContextClassLoaderTest.java" \ + ) + popd + + JAVA_TEST_RUN_ONLY="${JAVA_TEST_RUN_ONLY//.java}" + JAVA_TEST_RUN_ONLY="${JAVA_TEST_RUN_ONLY//\//.}" + + java-pkg-simple_src_test +} diff --git a/dev-java/swt/Manifest b/dev-java/swt/Manifest index 882aec4b4fd1..296f28fcfb56 100644 --- a/dev-java/swt/Manifest +++ b/dev-java/swt/Manifest @@ -1,8 +1,8 @@ DIST swt-3.7.2-gtk-linux-ppc64.zip 5688113 BLAKE2B bb102da40a3f63d63ca6a56d4c57ade55d7fe8d6206acf9e60caa0a8600b5c2cec6c0304cd2ab532948f03ff0706e8b2928ae9e93ef0019051044dad3fe7b1c0 SHA512 750aaa43560bbf6f82f7f8cd9338abc88578f4f0b9aadaec9bc8a5c3d1ad593619cdf01d202cbf06766090ee977989ea7904643669c61971973951d8428b57d0 DIST swt-3.7.2-gtk-linux-x86.zip 5374609 BLAKE2B 04d44b9fffcedc6ce255e2651377ac6968bb41c44cee403f063c159962d9d43a5c9529026819ddb1c8eea98cd11ed818075c37f4e9851d2e95532dc166e570ce SHA512 9f58864d05eba2648e4b5d5c958172f5c0c7c730209525b3d6f607586daaefea4d5ba1013e80c0c11948f01c553044b0a98c81688b33c14114ba79c7ce620426 DIST swt-3.7.2-gtk-linux-x86_64.zip 5671443 BLAKE2B 953fc9eab6d1f2750b1a1345cddf4aa6969567cb75977f87ee50668d367e55dda8be2ff836d87b780005c22132fa783b475f422c093617fd02f478eadd96076d SHA512 d60ae1d3f3b0577f7e3018139f93069c89d021064fec2f3f4074f95cfae56abdc0c7d531cb904ad3911482543cddcc3f6646ff47192073f4bde97c79e13612b7 -DIST swt-3.8.2-gtk-linux-ppc64.zip 5933708 BLAKE2B d49633d9d5049d1a6f9bbdcf5a364b73802194fbaf02aa5064c7a1c917e0aad80c829b026a1a41b7903ed0d8066af89ff24683897ced8cbe8c41406a7696c408 SHA512 cb9f2c7aed0b18bae6546272076c23c91d9e1a38404f0a70ddc6408047d961befe2839db177066312b82d8365bee6bcffb6e92aaa7a869ad37d9f49ab780e337 -DIST swt-3.8.2-gtk-linux-x86.zip 5558694 BLAKE2B 8dd0ce9f2c6b8dc448c85a6c509f39ef2da000e0589da52330b83dec87601d100320af778983b2083ca8f9e2890a2d4c731cb2810d9054a9e50e7940ad14bea2 SHA512 afe1563e92fe9af0a58e7dbae731976991a6afacf6415ab88ebf557f99a5154169ad7103519524f71142c4160d55a9b0a9f7379b21486430318e4160e6f01c00 -DIST swt-3.8.2-gtk-linux-x86_64.zip 5865160 BLAKE2B 45d60d334eb99f407cf9101a06f65e48543538a386103767700fb0af5ea0cf3da73eefe57b8cc6b3d78cb8f29345869f5474513648560395a69cbd4c9b8ee8a4 SHA512 43a27cb6fc891d7da35f5fcfc6ccb689d2b2c58de70b628b1e7cf07131f0641598b627eeedafb6a8dca715a336a7fb4fb6a03bb29fea3e115a4af571b1574cf8 DIST swt-4.10-gtk-linux-ppc64le.zip 3848264 BLAKE2B 214861fde6987906fb24f3187936f3bcb49aebed54fe242427c3737bf6761e8f77d049c376f30ca0fc33e74a1e8a48b6aff6d9863775ee9c33fea7cb2edd1309 SHA512 1b3ede58c2b41abae76f58a303bd3fbf1849ba8be3fd6518325bc22400e960c3ab542e7351b1bc08053e2746ea3e28812e04c2d1789cb1e19ea28745c8a5f39a DIST swt-4.10-gtk-linux-x86_64.zip 3844306 BLAKE2B 0e0ed21708acce347fd025920ee635f586c460f8a9c05a7067fd70eed9da999b4a62a5febd17f0c5546ab15198336038e4ab49a1bd588d49ffb39450353a1911 SHA512 9dd946cb7c11446f553f06b8af516167519bab00d4a89f626cd612be6d18e50023fc537aa3d844a8f7a56a767df00410efe4dd20e2bfd930639330a1e279a7a0 +DIST swt-4.27-gtk-linux-aarch64.zip 3849438 BLAKE2B b07daa4942c450d5cca5a323b0649a645fe9a283b272a73a9675f3bd07fbae859c41f451521231a93f4fb56ae4093d57474545611c4789c076abad2e9e1c911f SHA512 a3ba011258e5906beb15ffd5deaa73fc9a5ed5f7bce78a4a683ad8ad12a5cca1fa3a0d89fed6da9f4ade530ea3bda09093ad43202993b522a060a9dcd98746d3 +DIST swt-4.27-gtk-linux-ppc64le.zip 3872996 BLAKE2B 58ae779b7103da932719fe702674e211f8f0068c3b6094172b4c58e939de96d8d43ef80d40740c29f6fcd802a252a87ba850e9e6320d881c958b0161700e4e8c SHA512 6f8f1fce502e0980ced3f201dcdeb3397a583a9ba9ebe76d82c713c440d614c4ff38efe5f596a9da25940f931e3c651c36b18211faea4fab31872d25566b060a +DIST swt-4.27-gtk-linux-x86_64.zip 3869518 BLAKE2B d0eb7d1be59944cbffe5556c258043d084f7f1a8fa1d9ad9c3738896adc12aa015f85b675ba72af31de566ae451280bb83d82082b3f589c8da643631bf1f7bfb SHA512 efa89c1752340978e1aa1d2343a07df001fa952092aef959bdeedf53a31270d24ebe34ccb50e72ef2221da810ed08c53b188a80aab8a37e5932f85f6771ea1ef diff --git a/dev-java/swt/files/swt-3.8-as-needed-and-flag-fixes.patch b/dev-java/swt/files/swt-3.8-as-needed-and-flag-fixes.patch deleted file mode 100644 index ce5c54e408e2..000000000000 --- a/dev-java/swt/files/swt-3.8-as-needed-and-flag-fixes.patch +++ /dev/null @@ -1,243 +0,0 @@ ---- a/make_freebsd.mak -+++ b/make_freebsd.mak -@@ -64,7 +64,7 @@ GLXLIBS = -L/usr/X11R6/lib -lGL -lGLU -lm - # Uncomment for Native Stats tool - #NATIVE_STATS = -DNATIVE_STATS - --MOZILLACFLAGS = -O \ -+MOZILLACFLAGS += \ - -DSWT_VERSION=$(SWT_VERSION) \ - $(NATIVE_STATS) \ - -DMOZILLA_STRICT_API=1 \ -@@ -91,7 +91,7 @@ XULRUNNER_OBJECTS = swt.o xpcomxul.o xpcomxul_custom.o xpcomxul_structs.o xpcomx - XPCOMINIT_OBJECTS = swt.o xpcominit.o xpcominit_structs.o xpcominit_stats.o - GLX_OBJECTS = swt.o glx.o glx_structs.o glx_stats.o - --CFLAGS = -O -Wall \ -+CFLAGS += \ - -DSWT_VERSION=$(SWT_VERSION) \ - $(NATIVE_STATS) \ - -DFREEBSD -DGTK \ -@@ -115,13 +115,13 @@ all: make_swt make_atk make_gnome make_glx - make_swt: $(SWT_LIB) $(SWTPI_LIB) - - $(SWT_LIB): $(SWT_OBJECTS) -- $(CC) $(LFLAGS) -o $(SWT_LIB) $(SWT_OBJECTS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(SWT_LIB) $(SWT_OBJECTS) - - callback.o: callback.c callback.h - $(CC) $(CFLAGS) -DUSE_ASSEMBLER -c callback.c - - $(SWTPI_LIB): $(SWTPI_OBJECTS) -- $(CC) $(LFLAGS) -o $(SWTPI_LIB) $(SWTPI_OBJECTS) $(GTKLIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(SWTPI_LIB) $(SWTPI_OBJECTS) $(GTKLIBS) - - swt.o: swt.c swt.h - $(CC) $(CFLAGS) -c swt.c -@@ -140,7 +140,7 @@ os_stats.o: os_stats.c os_structs.h os.h os_stats.h swt.h - make_cairo: $(CAIRO_LIB) - - $(CAIRO_LIB): $(CAIRO_OBJECTS) -- $(CC) $(LFLAGS) -o $(CAIRO_LIB) $(CAIRO_OBJECTS) $(CAIROLIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(CAIRO_LIB) $(CAIRO_OBJECTS) $(CAIROLIBS) - - cairo.o: cairo.c cairo.h swt.h - $(CC) $(CFLAGS) $(CAIROCFLAGS) -c cairo.c -@@ -156,7 +156,7 @@ cairo_stats.o: cairo_stats.c cairo_structs.h cairo.h cairo_stats.h swt.h - make_cde: $(CDE_LIB) - - $(CDE_LIB): $(CDE_OBJECTS) -- $(CC) $(LFLAGS) -o $(CDE_LIB) $(CDE_OBJECTS) $(CDE_LIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(CDE_LIB) $(CDE_OBJECTS) $(CDE_LIBS) - - # - # AWT lib -@@ -164,7 +164,7 @@ $(CDE_LIB): $(CDE_OBJECTS) - make_awt:$(AWT_LIB) - - $(AWT_LIB): $(AWT_OBJECTS) -- $(CC) $(AWT_LFLAGS) -o $(AWT_LIB) $(AWT_OBJECTS) $(AWT_LIBS) -+ $(CC) $(LDFLAGS) $(AWT_LFLAGS) -o $(AWT_LIB) $(AWT_OBJECTS) $(AWT_LIBS) - - # - # Atk lib -@@ -172,7 +172,7 @@ $(AWT_LIB): $(AWT_OBJECTS) - make_atk: $(ATK_LIB) - - $(ATK_LIB): $(ATK_OBJECTS) -- $(CC) $(LFLAGS) -o $(ATK_LIB) $(ATK_OBJECTS) $(ATKLIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(ATK_LIB) $(ATK_OBJECTS) $(ATKLIBS) - - atk.o: atk.c atk.h - $(CC) $(CFLAGS) $(ATKCFLAGS) -c atk.c -@@ -189,7 +189,7 @@ atk_stats.o: atk_stats.c atk_structs.h atk_stats.h atk.h - make_gnome: $(GNOME_LIB) - - $(GNOME_LIB): $(GNOME_OBJECTS) -- $(CC) $(LFLAGS) -o $(GNOME_LIB) $(GNOME_OBJECTS) $(GNOMELIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(GNOME_LIB) $(GNOME_OBJECTS) $(GNOMELIBS) - - gnome.o: gnome.c - $(CC) $(CFLAGS) $(GNOMECFLAGS) -c gnome.c -@@ -206,7 +206,7 @@ gnome_stats.o: gnome_stats.c gnome_stats.h - make_mozilla:$(MOZILLA_LIB) - - $(MOZILLA_LIB): $(MOZILLA_OBJECTS) -- $(CXX) -o $(MOZILLA_LIB) $(MOZILLA_OBJECTS) $(MOZILLALFLAGS) ${MOZILLA_LIBS} -+ $(CXX) $(LDFLAGS) -o $(MOZILLA_LIB) $(MOZILLA_OBJECTS) $(MOZILLALFLAGS) ${MOZILLA_LIBS} - - xpcom.o: xpcom.cpp - $(CXX) $(MOZILLACFLAGS) ${MOZILLA_INCLUDES} -c xpcom.cpp -@@ -226,7 +226,7 @@ xpcom_stats.o: xpcom_stats.cpp - make_xulrunner:$(XULRUNNER_LIB) - - $(XULRUNNER_LIB): $(XULRUNNER_OBJECTS) -- $(CXX) -o $(XULRUNNER_LIB) $(XULRUNNER_OBJECTS) $(MOZILLALFLAGS) ${XULRUNNER_LIBS} -+ $(CXX) $(LDFLAGS) -o $(XULRUNNER_LIB) $(XULRUNNER_OBJECTS) $(MOZILLALFLAGS) ${XULRUNNER_LIBS} - - xpcomxul.o: xpcom.cpp - $(CXX) -o xpcomxul.o $(MOZILLACFLAGS) ${XULRUNNER_INCLUDES} -c xpcom.cpp -@@ -252,7 +252,7 @@ xpcomxulglue_stats.o: xpcomglue_stats.cpp - make_xpcominit:$(XPCOMINIT_LIB) - - $(XPCOMINIT_LIB): $(XPCOMINIT_OBJECTS) -- $(CXX) -o $(XPCOMINIT_LIB) $(XPCOMINIT_OBJECTS) $(MOZILLALFLAGS) ${XULRUNNER_LIBS} -+ $(CXX) $(LDFLAGS) -o $(XPCOMINIT_LIB) $(XPCOMINIT_OBJECTS) $(MOZILLALFLAGS) ${XULRUNNER_LIBS} - - xpcominit.o: xpcominit.cpp - $(CXX) $(MOZILLACFLAGS) ${XULRUNNER_INCLUDES} -c xpcominit.cpp -@@ -269,7 +269,7 @@ xpcominit_stats.o: xpcominit_stats.cpp - make_glx: $(GLX_LIB) - - $(GLX_LIB): $(GLX_OBJECTS) -- $(CC) $(LFLAGS) -o $(GLX_LIB) $(GLX_OBJECTS) $(GLXLIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(GLX_LIB) $(GLX_OBJECTS) $(GLXLIBS) - - glx.o: glx.c - $(CC) $(CFLAGS) $(GLXCFLAGS) -c glx.c ---- a/make_linux.mak -+++ b/make_linux.mak -@@ -66,7 +66,7 @@ GLXLIBS = -lGL -lGLU -lm - # Uncomment for Native Stats tool - #NATIVE_STATS = -DNATIVE_STATS - --MOZILLACFLAGS = -O \ -+MOZILLACFLAGS = $(CXXFLAGS) \ - -DSWT_VERSION=$(SWT_VERSION) \ - $(NATIVE_STATS) \ - -DMOZILLA_STRICT_API=1 \ -@@ -106,7 +106,7 @@ XPCOMINIT_OBJECTS = swt.o xpcominit.o xpcominit_structs.o xpcominit_stats.o - WEBKIT_OBJECTS = swt.o webkit.o webkit_structs.o webkit_stats.o - GLX_OBJECTS = swt.o glx.o glx_structs.o glx_stats.o - --CFLAGS = -O -Wall \ -+CFLAGS += \ - -DSWT_VERSION=$(SWT_VERSION) \ - $(NATIVE_STATS) \ - -DLINUX -DGTK \ -@@ -130,13 +130,13 @@ all: make_swt make_atk make_glx make_webkit - make_swt: $(SWT_LIB) $(SWTPI_LIB) - - $(SWT_LIB): $(SWT_OBJECTS) -- $(CC) $(LFLAGS) -o $(SWT_LIB) $(SWT_OBJECTS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(SWT_LIB) $(SWT_OBJECTS) - - callback.o: callback.c callback.h - $(CC) $(CFLAGS) -DUSE_ASSEMBLER -c callback.c - - $(SWTPI_LIB): $(SWTPI_OBJECTS) -- $(CC) $(LFLAGS) -o $(SWTPI_LIB) $(SWTPI_OBJECTS) $(GTKLIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(SWTPI_LIB) $(SWTPI_OBJECTS) $(GTKLIBS) - - swt.o: swt.c swt.h - $(CC) $(CFLAGS) -c swt.c -@@ -155,7 +155,7 @@ os_stats.o: os_stats.c os_structs.h os.h os_stats.h swt.h - make_cairo: $(CAIRO_LIB) - - $(CAIRO_LIB): $(CAIRO_OBJECTS) -- $(CC) $(LFLAGS) -o $(CAIRO_LIB) $(CAIRO_OBJECTS) $(CAIROLIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(CAIRO_LIB) $(CAIRO_OBJECTS) $(CAIROLIBS) - - cairo.o: cairo.c cairo.h swt.h - $(CC) $(CFLAGS) $(CAIROCFLAGS) -c cairo.c -@@ -171,7 +171,7 @@ cairo_stats.o: cairo_stats.c cairo_structs.h cairo.h cairo_stats.h swt.h - make_cde: $(CDE_LIB) - - $(CDE_LIB): $(CDE_OBJECTS) -- $(CC) $(LFLAGS) -o $(CDE_LIB) $(CDE_OBJECTS) $(CDE_LIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(CDE_LIB) $(CDE_OBJECTS) $(CDE_LIBS) - - # - # AWT lib -@@ -179,7 +179,7 @@ $(CDE_LIB): $(CDE_OBJECTS) - make_awt:$(AWT_LIB) - - $(AWT_LIB): $(AWT_OBJECTS) -- $(CC) $(AWT_LFLAGS) -o $(AWT_LIB) $(AWT_OBJECTS) $(AWT_LIBS) -+ $(CC) $(LDFLAGS) $(AWT_LFLAGS) -o $(AWT_LIB) $(AWT_OBJECTS) $(AWT_LIBS) - - # - # Atk lib -@@ -187,7 +187,7 @@ $(AWT_LIB): $(AWT_OBJECTS) - make_atk: $(ATK_LIB) - - $(ATK_LIB): $(ATK_OBJECTS) -- $(CC) $(LFLAGS) -o $(ATK_LIB) $(ATK_OBJECTS) $(ATKLIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(ATK_LIB) $(ATK_OBJECTS) $(ATKLIBS) - - atk.o: atk.c atk.h - $(CC) $(CFLAGS) $(ATKCFLAGS) -c atk.c -@@ -204,7 +204,7 @@ atk_stats.o: atk_stats.c atk_structs.h atk_stats.h atk.h - make_gnome: $(GNOME_LIB) - - $(GNOME_LIB): $(GNOME_OBJECTS) -- $(CC) $(LFLAGS) -o $(GNOME_LIB) $(GNOME_OBJECTS) $(GNOMELIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(GNOME_LIB) $(GNOME_OBJECTS) $(GNOMELIBS) - - gnome.o: gnome.c - $(CC) $(CFLAGS) $(GNOMECFLAGS) -c gnome.c -@@ -221,7 +221,7 @@ gnome_stats.o: gnome_stats.c gnome_stats.h - make_mozilla:$(MOZILLA_LIB) - - $(MOZILLA_LIB): $(MOZILLA_OBJECTS) -- $(CXX) -o $(MOZILLA_LIB) $(MOZILLA_OBJECTS) $(MOZILLALFLAGS) ${MOZILLA_LIBS} -+ $(CXX) $(LDFLAGS) -o $(MOZILLA_LIB) $(MOZILLA_OBJECTS) $(MOZILLALFLAGS) ${MOZILLA_LIBS} - - xpcom.o: xpcom.cpp - $(CXX) $(MOZILLACFLAGS) $(MOZILLAEXCLUDES) ${MOZILLA_INCLUDES} -c xpcom.cpp -@@ -242,7 +242,7 @@ make_xulrunner:$(XULRUNNER_LIB) - - $(XULRUNNER_LIB): $(XULRUNNER_OBJECTS) - echo -e "#include\nsize_t je_malloc_usable_size_in_advance(size_t n) {\nreturn n;\n}" | gcc --shared -xc - -o libswt-xulrunner-fix.so -- $(CXX) -o $(XULRUNNER_LIB) $(XULRUNNER_OBJECTS) $(MOZILLALFLAGS) ${XULRUNNER_LIBS} -+ $(CXX) $(LDFLAGS) -o $(XULRUNNER_LIB) $(XULRUNNER_OBJECTS) $(MOZILLALFLAGS) ${XULRUNNER_LIBS} - - xpcomxul.o: xpcom.cpp - $(CXX) -o xpcomxul.o $(MOZILLACFLAGS) $(XULRUNNEREXCLUDES) ${XULRUNNER_INCLUDES} -c xpcom.cpp -@@ -262,7 +262,7 @@ xpcomxul_stats.o: xpcom_stats.cpp - make_xpcominit:$(XPCOMINIT_LIB) - - $(XPCOMINIT_LIB): $(XPCOMINIT_OBJECTS) -- $(CXX) -o $(XPCOMINIT_LIB) $(XPCOMINIT_OBJECTS) $(MOZILLALFLAGS) ${XULRUNNER_LIBS} -+ $(CXX) $(LDFLAGS) -o $(XPCOMINIT_LIB) $(XPCOMINIT_OBJECTS) $(MOZILLALFLAGS) ${XULRUNNER_LIBS} - - xpcominit.o: xpcominit.cpp - $(CXX) $(MOZILLACFLAGS) ${XULRUNNER_INCLUDES} -c xpcominit.cpp -@@ -279,7 +279,7 @@ xpcominit_stats.o: xpcominit_stats.cpp - make_webkit: $(WEBKIT_LIB) - - $(WEBKIT_LIB): $(WEBKIT_OBJECTS) -- $(CC) $(LFLAGS) -o $(WEBKIT_LIB) $(WEBKIT_OBJECTS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(WEBKIT_LIB) $(WEBKIT_OBJECTS) - - webkit.o: webkitgtk.c - $(CC) $(CFLAGS) $(WEBKITCFLAGS) -c webkitgtk.c -o webkit.o -@@ -296,7 +296,7 @@ webkit_stats.o: webkitgtk_stats.c webkitgtk_stats.h - make_glx: $(GLX_LIB) - - $(GLX_LIB): $(GLX_OBJECTS) -- $(CC) $(LFLAGS) -o $(GLX_LIB) $(GLX_OBJECTS) $(GLXLIBS) -+ $(CC) $(LDFLAGS) $(LFLAGS) -o $(GLX_LIB) $(GLX_OBJECTS) $(GLXLIBS) - - glx.o: glx.c - $(CC) $(CFLAGS) $(GLXCFLAGS) -c glx.c diff --git a/dev-java/swt/files/swt-3.8-manifest b/dev-java/swt/files/swt-3.8-manifest deleted file mode 100644 index ee9e31c373d6..000000000000 --- a/dev-java/swt/files/swt-3.8-manifest +++ /dev/null @@ -1,17 +0,0 @@ -Manifest-Version: 1.0 -Bundle-ManifestVersion: 2 -Bundle-Name: %pluginName -Bundle-Vendor: %providerName -Bundle-Localization: plugin -Fragment-Host: org.eclipse.swt; bundle-version="[3.0.0,4.0.0)" -Bundle-SymbolicName: org.eclipse.swt.gtk.linux.SWT_ARCH; singleton:=true -Bundle-Version: 3.8 -Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=linux) (osgi.arch=SWT_ARCH)) -Export-Package: org.eclipse.swt.internal.accessibility.gtk; x-internal:=true, - org.eclipse.swt.internal.cairo; x-internal:=true, - org.eclipse.swt.internal.cde; x-internal:=true, - org.eclipse.swt.internal.gnome; x-internal:=true, - org.eclipse.swt.internal.gtk; x-internal:=true, - org.eclipse.swt.internal.opengl.glx; x-internal:=true - org.eclipse.swt.internal.webkit; x-internal:=true - diff --git a/dev-java/swt/files/swt-3.8.2-gthread.patch b/dev-java/swt/files/swt-3.8.2-gthread.patch deleted file mode 100644 index 6f99a59382ba..000000000000 --- a/dev-java/swt/files/swt-3.8.2-gthread.patch +++ /dev/null @@ -1,44 +0,0 @@ -From c973b9b9be568ebbce618985bc5ee440babf8ab1 Mon Sep 17 00:00:00 2001 -From: Jakub Adam -Date: Thu, 27 Jun 2013 10:16:49 +0200 -Subject: [PATCH 1/2] fix-glib-2.35-compatibility - -g_thread_init() and g_thread_supported() are deprecated and don't -have to be used anymore. - ---- - os.c | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - ---- a/os.c -+++ b/os.c -@@ -4444,9 +4444,9 @@ fail: - JNIEXPORT void JNICALL OS_NATIVE(_1g_1thread_1init) - (JNIEnv *env, jclass that, jintLong arg0) - { -- OS_NATIVE_ENTER(env, that, _1g_1thread_1init_FUNC); -+ /*OS_NATIVE_ENTER(env, that, _1g_1thread_1init_FUNC); - g_thread_init((GThreadFunctions *)arg0); -- OS_NATIVE_EXIT(env, that, _1g_1thread_1init_FUNC); -+ OS_NATIVE_EXIT(env, that, _1g_1thread_1init_FUNC);*/ - } - #endif - -@@ -4454,11 +4454,12 @@ JNIEXPORT void JNICALL OS_NATIVE(_1g_1thread_1init) - JNIEXPORT jboolean JNICALL OS_NATIVE(_1g_1thread_1supported) - (JNIEnv *env, jclass that) - { -- jboolean rc = 0; -+ /*jboolean rc = 0; - OS_NATIVE_ENTER(env, that, _1g_1thread_1supported_FUNC); - rc = (jboolean)g_thread_supported(); - OS_NATIVE_EXIT(env, that, _1g_1thread_1supported_FUNC); -- return rc; -+ return rc;*/ -+ return 1; - } - #endif - --- -1.7.10.4 - diff --git a/dev-java/swt/files/swt-4.27-as-needed-and-flag-fixes.patch b/dev-java/swt/files/swt-4.27-as-needed-and-flag-fixes.patch new file mode 100644 index 000000000000..fffbc910c521 --- /dev/null +++ b/dev-java/swt/files/swt-4.27-as-needed-and-flag-fixes.patch @@ -0,0 +1,82 @@ +diff -Naur a/make_linux.mak b/make_linux.mak +--- a/make_linux.mak 2019-01-07 14:08:00.269147198 +0100 ++++ b/make_linux.mak 2019-01-07 14:10:28.645155241 +0100 +@@ -98,7 +98,7 @@ + WEBKIT_OBJECTS = swt.o webkitgtk.o webkitgtk_structs.o webkitgtk_stats.o webkitgtk_custom.o + GLX_OBJECTS = swt.o glx.o glx_structs.o glx_stats.o + +-CFLAGS := $(CFLAGS) \ ++CFLAGS += -fPIC \ + -DSWT_VERSION=$(SWT_VERSION) \ + $(NATIVE_STATS) \ + $(SWT_DEBUG) \ +@@ -130,13 +130,13 @@ + make_swt: $(SWT_LIB) $(SWTPI_LIB) + + $(SWT_LIB): $(SWT_OBJECTS) +- $(CC) $(LFLAGS) -o $(SWT_LIB) $(SWT_OBJECTS) ++ $(CC) $(LDFLAGS) $(LFLAGS) -o $(SWT_LIB) $(SWT_OBJECTS) + + callback.o: callback.c callback.h + $(CC) $(CFLAGS) $(GTKCFLAGS) -DUSE_ASSEMBLER -c callback.c + + $(SWTPI_LIB): $(SWTPI_OBJECTS) +- $(CC) $(LFLAGS) -o $(SWTPI_LIB) $(SWTPI_OBJECTS) $(GTKLIBS) ++ $(CC) $(LDFLAGS) $(LFLAGS) -o $(SWTPI_LIB) $(SWTPI_OBJECTS) $(GTKLIBS) + + swt.o: swt.c swt.h + $(CC) $(CFLAGS) -c swt.c +@@ -169,7 +169,7 @@ + make_cairo: $(CAIRO_LIB) + + $(CAIRO_LIB): $(CAIRO_OBJECTS) +- $(CC) $(LFLAGS) -o $(CAIRO_LIB) $(CAIRO_OBJECTS) $(CAIROLIBS) ++ $(CC) $(LDFLAGS) $(LFLAGS) -o $(CAIRO_LIB) $(CAIRO_OBJECTS) $(CAIROLIBS) + + cairo.o: cairo.c cairo.h swt.h + $(CC) $(CFLAGS) $(CAIROCFLAGS) -c cairo.c +@@ -184,7 +184,7 @@ + make_awt:$(AWT_LIB) + + $(AWT_LIB): $(AWT_OBJECTS) +- $(CC) $(AWT_LFLAGS) -o $(AWT_LIB) $(AWT_OBJECTS) $(AWT_LIBS) ++ $(CC) -fPIC $(LDFLAGS) $(AWT_LFLAGS) -o $(AWT_LIB) $(AWT_OBJECTS) $(AWT_LIBS) + + # + # Atk lib +@@ -192,7 +192,7 @@ + make_atk: $(ATK_LIB) + + $(ATK_LIB): $(ATK_OBJECTS) +- $(CC) $(LFLAGS) -o $(ATK_LIB) $(ATK_OBJECTS) $(ATKLIBS) ++ $(CC) $(LDFLAGS) $(LFLAGS) -o $(ATK_LIB) $(ATK_OBJECTS) $(ATKLIBS) + + atk.o: atk.c atk.h + $(CC) $(CFLAGS) $(ATKCFLAGS) -c atk.c +@@ -209,7 +209,7 @@ + make_webkit: $(WEBKIT_LIB) + + $(WEBKIT_LIB): $(WEBKIT_OBJECTS) +- $(CC) $(LFLAGS) -o $(WEBKIT_LIB) $(WEBKIT_OBJECTS) $(WEBKITLIBS) ++ $(CC) $(LDFLAGS) $(LFLAGS) -o $(WEBKIT_LIB) $(WEBKIT_OBJECTS) $(WEBKITLIBS) + + webkitgtk.o: webkitgtk.c webkitgtk_custom.h + $(CC) $(CFLAGS) $(WEBKITCFLAGS) -c webkitgtk.c +# @@ -217,7 +217,7 @@ +# make_webkit2extension: $(WEBKIT_EXTENSION_LIB) +# +# $(WEBKIT_EXTENSION_LIB) : webkitgtk_extension.o +# - $(CC) $(LFLAGS) -o $@ $^ $(WEBKIT_EXTENSION_LFLAGS) +# + $(CC) $(LDFLAGS) $(LFLAGS) -o $@ $^ $(WEBKIT_EXTENSION_LFLAGS) +# +# webkitgtk_extension.o : webkitgtk_extension.c +# $(CC) $(CFLAGS) $(WEBKIT_EXTENSION_CFLAGS) ${SWT_PTR_CFLAGS} -fPIC -c $^ +@@ -229,7 +229,7 @@ + make_glx: $(GLX_LIB) + + $(GLX_LIB): $(GLX_OBJECTS) +- $(CC) $(LFLAGS) -o $(GLX_LIB) $(GLX_OBJECTS) $(GLXLIBS) ++ $(CC) $(LDFLAGS) $(LFLAGS) -o $(GLX_LIB) $(GLX_OBJECTS) $(GLXLIBS) + + glx.o: glx.c + $(CC) $(CFLAGS) $(GLXCFLAGS) -c glx.c diff --git a/dev-java/swt/metadata.xml b/dev-java/swt/metadata.xml index d94f6cdd831e..c06386289922 100644 --- a/dev-java/swt/metadata.xml +++ b/dev-java/swt/metadata.xml @@ -10,4 +10,9 @@ Eclipse platform in an operating system independent manner. It is analogous to AWT/Swing in Java with a difference - SWT uses a rich set of native widgets. + + https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Platform%38component=SWT + https://wiki.eclipse.org/SWT + eclipse-platform/eclipse.platform.swt + diff --git a/dev-java/swt/swt-3.8.2-r4.ebuild b/dev-java/swt/swt-3.8.2-r4.ebuild deleted file mode 100644 index ca352d8bd6b2..000000000000 --- a/dev-java/swt/swt-3.8.2-r4.ebuild +++ /dev/null @@ -1,152 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit java-pkg-2 java-ant-2 toolchain-funcs java-osgi - -MY_PV="${PV/_rc/RC}" -MY_DMF="https://archive.eclipse.org/eclipse/downloads/drops/R-${MY_PV}-201301310800" -MY_P="${PN}-${MY_PV}" - -DESCRIPTION="GTK based SWT Library" -HOMEPAGE="https://www.eclipse.org/" -SRC_URI=" - amd64? ( ${MY_DMF}/${MY_P}-gtk-linux-x86_64.zip ) - ppc? ( ${MY_DMF}/${MY_P}-gtk-linux-x86.zip ) - ppc64? ( ${MY_DMF}/${MY_P}-gtk-linux-ppc64.zip ) - x86? ( ${MY_DMF}/${MY_P}-gtk-linux-x86.zip )" - -LICENSE="CPL-1.0 LGPL-2.1 MPL-1.1" -SLOT="3.8" -KEYWORDS="amd64 ppc64 x86" -IUSE="cairo opengl" - -COMMON_DEPEND=" - >=dev-libs/atk-1.10.2 - >=dev-libs/glib-2.6 - >=x11-libs/gtk+-2.6.8:2 - x11-libs/libXtst - cairo? ( >=x11-libs/cairo-1.4.14 ) - opengl? ( - virtual/glu - virtual/opengl - )" -DEPEND="${COMMON_DEPEND} - app-arch/unzip - virtual/jdk:1.8 - virtual/pkgconfig - x11-base/xorg-proto - x11-libs/libX11 - x11-libs/libXrender - x11-libs/libXt - >=x11-libs/libXtst-1.1.0" -RDEPEND="${COMMON_DEPEND} - >=virtual/jre-1.4" - -S="${WORKDIR}" - -# JNI libraries don't need SONAME, bug #253756 -QA_SONAME="usr/lib.*/libswt-.*.so" - -PATCHES=( - "${FILESDIR}"/swt-3.8-as-needed-and-flag-fixes.patch - "${FILESDIR}"/swt-3.8.2-gthread.patch -) - -src_unpack() { - local DISTFILE=${A} - unzip -jq "${DISTDIR}"/${DISTFILE} "*src.zip" || die "Unable to extract distfile" - unpack "./src.zip" - - # Cleanup the redirtied directory structure - rm -rf about_files/ || die -} - -src_prepare() { - default - # Replace the build.xml to allow compilation without Eclipse tasks - cp "${FILESDIR}/build.xml" "${S}/build.xml" || die "Unable to update build.xml" - - mkdir -p "${S}/src" - mv "${S}/org" "${S}/src" || die "Unable to restructure SWT sources" -} - -src_compile() { - # Drop jikes support as it seems to be unfriendly with SWT - java-pkg_filter-compiler jikes - - local AWT_ARCH - local JAWTSO="libjawt.so" - if [[ $(tc-arch) == 'x86' ]] ; then - AWT_ARCH="i386" - elif [[ $(tc-arch) == 'ppc' ]] ; then - AWT_ARCH="ppc" - elif [[ $(tc-arch) == 'ppc64' ]] ; then - AWT_ARCH="ppc64" - else - AWT_ARCH="amd64" - fi - if [[ -f "${JAVA_HOME}/jre/lib/${AWT_ARCH}/${JAWTSO}" ]]; then - export AWT_LIB_PATH="${JAVA_HOME}/jre/lib/${AWT_ARCH}" - elif [[ -f "${JAVA_HOME}/jre/bin/${JAWTSO}" ]]; then - export AWT_LIB_PATH="${JAVA_HOME}/jre/bin" - elif [[ -f "${JAVA_HOME}/$(get_libdir)/${JAWTSO}" ]] ; then - export AWT_LIB_PATH="${JAVA_HOME}/$(get_libdir)" - else - eerror "${JAWTSO} not found in the JDK being used for compilation!" - die "cannot build AWT library" - fi - - # Fix the pointer size for AMD64 - [[ ${ARCH} == "amd64" || ${ARCH} == "ppc64" ]] && export SWT_PTR_CFLAGS=-DJNI64 - - local make="emake -f make_linux.mak NO_STRIP=y CC=$(tc-getCC) CXX=$(tc-getCXX)" - - einfo "Building AWT library" - ${make} make_awt - - einfo "Building SWT library" - ${make} make_swt - - einfo "Building JAVA-AT-SPI bridge" - ${make} make_atk - - if use cairo ; then - einfo "Building CAIRO support" - ${make} make_cairo - fi - - if use opengl ; then - einfo "Building OpenGL component" - ${make} make_glx - fi - - einfo "Building JNI libraries" - eant compile - - einfo "Copying missing files" - cp -i "${S}/version.txt" "${S}/build/version.txt" || die - cp -i "${S}/src/org/eclipse/swt/internal/SWTMessages.properties" \ - "${S}/build/org/eclipse/swt/internal/" || die - - einfo "Packing JNI libraries" - eant jar -} - -src_install() { - swtArch=${ARCH} - use amd64 && swtArch=x86_64 - - sed "s/SWT_ARCH/${swtArch}/" "${FILESDIR}/${PN}-${SLOT}-manifest" > "MANIFEST_TMP.MF" || die - use cairo || sed -i -e "/ org.eclipse.swt.internal.cairo; x-internal:=true,/d" "MANIFEST_TMP.MF" - sed -i -e "/ org.eclipse.swt.internal.gnome; x-internal:=true,/d" "MANIFEST_TMP.MF" - use opengl || sed -i -e "/ org.eclipse.swt.internal.opengl.glx; x-internal:=true,/d" "MANIFEST_TMP.MF" - sed -i -e "/ org.eclipse.swt.internal.webkit; x-internal:=true,/d" "MANIFEST_TMP.MF" - java-osgi_newjar-fromfile "swt.jar" "MANIFEST_TMP.MF" "Standard Widget Toolkit for GTK 2.0" - - java-pkg_sointo /usr/$(get_libdir) - java-pkg_doso *.so - - dodoc about.html -} diff --git a/dev-java/swt/swt-4.27.ebuild b/dev-java/swt/swt-4.27.ebuild new file mode 100644 index 000000000000..e21194ce71dd --- /dev/null +++ b/dev-java/swt/swt-4.27.ebuild @@ -0,0 +1,142 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source" + +inherit flag-o-matic java-pkg-2 java-pkg-simple toolchain-funcs + +MY_PV="${PV/_rc/RC}" +MY_DMF="https://download.eclipse.org/eclipse/downloads/drops4/R-${MY_PV}-202303020300" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="GTK based SWT Library" +HOMEPAGE="https://www.eclipse.org/swt/" +SRC_URI=" + amd64? ( ${MY_DMF}/${MY_P}-gtk-linux-x86_64.zip ) + arm64? ( ${MY_DMF}/${MY_P}-gtk-linux-aarch64.zip ) + ppc64? ( ${MY_DMF}/${MY_P}-gtk-linux-ppc64le.zip )" + +LICENSE="CPL-1.0 LGPL-2.1 MPL-1.1" +SLOT="4.27" +KEYWORDS="~amd64 ~ppc64" +IUSE="cairo opengl webkit" + +COMMON_DEP=" + app-accessibility/at-spi2-core:2 + dev-libs/glib + x11-libs/gtk+:2 + x11-libs/libXtst + cairo? ( x11-libs/cairo ) + opengl? ( + virtual/glu + virtual/opengl + ) + webkit? ( + net-libs/webkit-gtk:4.1 + )" +DEPEND="${COMMON_DEP} + >=virtual/jdk-11:*[-headless-awt] + x11-base/xorg-proto + x11-libs/libX11 + x11-libs/libXrender + x11-libs/libXt + x11-libs/libXtst" +RDEPEND="${COMMON_DEP} + >=virtual/jre-1.8:*" +BDEPEND=" + app-arch/unzip + virtual/pkgconfig +" + +HTML_DOCS=( about.html ) + +JAVA_RESOURCE_DIRS="resources" +JAVA_SRC_DIR="src" + +PATCHES=( + "${FILESDIR}/${P}-as-needed-and-flag-fixes.patch" +) + +src_unpack() { + default + unpack "./src.zip" +} + +src_prepare() { + default + java-pkg-2_src_prepare + # .css stuff is essential at least for running net-p2p/biglybt + unzip swt.jar 'org/eclipse/swt/internal/gtk/*.css' -d resources || die + java-pkg_clean + mkdir src || die "mkdir failed" + mv org src || die "moving java sources failed" + find src -type f ! -name '*.java' | xargs \ + cp --parent -t resources -v || die "copying resources failed" + cp version.txt resources || die "adding version.txt failed" +} + +src_compile() { + append-cflags -fcommon # https://bugs.gentoo.org/707838 + + local JAWTSO="libjawt.so" + IFS=":" read -r -a ldpaths <<< $(java-config -g LDPATH) + + for libpath in "${ldpaths[@]}"; do + if [[ -f "${libpath}/${JAWTSO}" ]]; then + export AWT_LIB_PATH="${libpath}" + break + # this is a workaround for broken LDPATH in <=openjdk-8.292_p10 and <=dev-java/openjdk-bin-8.292_p10 + elif [[ -f "${libpath}/$(tc-arch)/${JAWTSO}" ]]; then + export AWT_LIB_PATH="${libpath}/$(tc-arch)" + break + fi + done + + if [[ -z "${AWT_LIB_PATH}" ]]; then + eerror "${JAWTSO} not found in the JDK being used for compilation!" + die "cannot build AWT library" + fi + + # Fix the pointer size for AMD64 + export SWT_PTR_CFLAGS=-DJNI64 + + # Bug #461784, g_thread_init is deprecated since glib-2.32. + append-cflags -DNO__1g_1thread_1init + + local make="emake -f make_linux.mak NO_STRIP=y CC=$(tc-getCC) CXX=$(tc-getCXX)" + + einfo "Building AWT library" + ${make} make_awt AWT_LIBS="-L\$(AWT_LIB_PATH) -Wl,-rpath,\$(AWT_LIB_PATH) -ljawt \`pkg-config --libs x11\`" + + einfo "Building SWT library" + ${make} make_swt + + einfo "Building JAVA-AT-SPI bridge" + ${make} make_atk + + if use cairo ; then + einfo "Building CAIRO support" + ${make} make_cairo + fi + + if use opengl ; then + einfo "Building OpenGL component" + ${make} make_glx + fi + + if use webkit ; then + einfo "Building WebKit component" + ${make} make_webkit + fi + + java-pkg-simple_src_compile +} + +src_install() { + java-pkg-simple_src_install + + java-pkg_sointo "/usr/$(get_libdir)/swt" + java-pkg_doso *.so +} diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz index 10ad37892f20..db70a9b52f94 100644 Binary files a/dev-lang/Manifest.gz and b/dev-lang/Manifest.gz differ diff --git a/dev-lang/duktape/duktape-2.7.0-r3.ebuild b/dev-lang/duktape/duktape-2.7.0-r3.ebuild index 51a4ebed87cd..f77166dfcd44 100644 --- a/dev-lang/duktape/duktape-2.7.0-r3.ebuild +++ b/dev-lang/duktape/duktape-2.7.0-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,7 @@ LICENSE="MIT" # Upstream don't maintain binary compatibility # https://github.com/svaarala/duktape/issues/1524 SLOT="0/${PV}" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" PATCHES=( "${FILESDIR}"/${PN}-2.7.0-respect-tc-env.patch diff --git a/dev-lang/luajit/luajit-2.1.0_beta3_p20220613.ebuild b/dev-lang/luajit/luajit-2.1.0_beta3_p20220613.ebuild index b3acc0d0871b..50473d2a29c6 100644 --- a/dev-lang/luajit/luajit-2.1.0_beta3_p20220613.ebuild +++ b/dev-lang/luajit/luajit-2.1.0_beta3_p20220613.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -18,7 +18,7 @@ SRC_URI="https://github.com/LuaJIT/LuaJIT/archive/${GIT_COMMIT}.tar.gz -> ${P}.t LICENSE="MIT" # this should probably be pkgmoved to 2.0 for sake of consistency. SLOT="2/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 -hppa ~ppc -riscv -sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~arm64 -hppa ~mips ~ppc -riscv -sparc ~x86 ~amd64-linux ~x86-linux" IUSE="lua52compat static-libs" S="${WORKDIR}/LuaJIT-${GIT_COMMIT}" diff --git a/dev-lang/mujs/mujs-1.3.2.ebuild b/dev-lang/mujs/mujs-1.3.2.ebuild index 467e735ea5e9..959d5d70c1f4 100644 --- a/dev-lang/mujs/mujs-1.3.2.ebuild +++ b/dev-lang/mujs/mujs-1.3.2.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://mujs.com/downloads/${P}.tar.gz" LICENSE="ISC" # The subslot matches the SONAME SLOT="0/${PV}" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos" RDEPEND="sys-libs/readline:=" DEPEND="${RDEPEND}" diff --git a/dev-lang/rust-bin/Manifest b/dev-lang/rust-bin/Manifest index f8885fcab09a..86fe9c3aee66 100644 --- a/dev-lang/rust-bin/Manifest +++ b/dev-lang/rust-bin/Manifest @@ -96,6 +96,39 @@ DIST rust-1.67.1-x86_64-unknown-linux-gnu.tar.xz 186714164 BLAKE2B 648efbb302333 DIST rust-1.67.1-x86_64-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 669b7c4b0d5382a7d1d0fe49405f2798f67a9e745711dc2c8e7548ea6fdc8f0fefdab37d0594aec14b2745ce45e7c469e79c0cb1d86077ad9c7b6aafc2656827 SHA512 067681cb4140a29adfa5f4b141e2f3450dad34b95a1e549a6bc8d759e57da5d2ae69cc165efcdef9d83e2eee06edb6acd587d38c9b2f3d000d7a3f79daccc671 DIST rust-1.67.1-x86_64-unknown-linux-musl.tar.xz 269831452 BLAKE2B a36498528454f1bf0e1812eba005f27e3e281e4e2c117477785f5e48468c3fe316947b7e4360f573f0f4cd6f117e4102db8aeaa616be5bef09fb7518fd230b23 SHA512 9a3eb67239a88b875fe55846a2fffbbb1f2a4cc8eed18b5558f0f989d544a8ddfe0861d5b2b860a779833a1660ee622b30320ec9ef83e841724f7a32f08fda06 DIST rust-1.67.1-x86_64-unknown-linux-musl.tar.xz.asc 801 BLAKE2B b12d0ce1136e355ee027780dfe185ee443de402e531ecc743600aecf081990d4e998fa4a6e6f0f46a886cd806918e23c5e4ccb7cecb0324cb67189984192283f SHA512 37428f0d1d8e2ddb7ce52bce3a297a7f666789d00e7e240180c3e1f7fb5b30bf5e17593cbedebdef95c50406ee82d40ef1f75a576a1a0e02387e1a12ed977c77 +DIST rust-1.68.0-aarch64-unknown-linux-gnu.tar.xz 257311296 BLAKE2B 4ff9ea1c255e660a4ab3a574a81b02b38eb2458a36610e1afd350c02053f67f13693f302997daa6b1080bef98bba89cd4f248f804eee876e568264fabea2ee25 SHA512 43d4a25adbe85ccdb4fcc4314cf40d6611e0b388f1f8132aec32103971e559103f668ecbff12b147f23a4fee8a4cfe6864a2a88cfd9d716208c475d80578e807 +DIST rust-1.68.0-aarch64-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 4a52b7a3c033c9e0689251c7d12aba22654dc25dcc3e7e756fa151229c6c031f5a8ea2379540391d2259d75424de75332f21dcc609e8ca07f5e8f1b4aec922db SHA512 8424fd166dbc426ec98990afefb8a7faed853a59c90c6fd6ec41423b1f8aa1957bb909a1d08e4dac7fcc208ea481f603c3ec67831fa1e31d9b0633fc81ad7077 +DIST rust-1.68.0-aarch64-unknown-linux-musl.tar.xz 236214004 BLAKE2B 9979a2a8762bc75794f156cd01ccf52d5e6411c4a8a1c24172d34dd0d18c99e51363ed94ad81f2945b4f9d0fca798e14500202f65051a73f83a3575a154b59d0 SHA512 b0d395711813017b6106b2939122b5c4e2d172aab6f2deff5b591ebef4402745c6db7a58ee13ec0b639a93794058e9d10f785e0d77833c806b3ca3cbb14b8b56 +DIST rust-1.68.0-aarch64-unknown-linux-musl.tar.xz.asc 801 BLAKE2B abe24c0399cdaeac6d142a4b4b305651c21b621ad310b655c381199a6ff484ee4c35bec0e5eadad82917e6167bdd8f0fa56c3284b0a2fc3e5ca69b89c05c3def SHA512 90481ec3c464a26b131c19b79bb59ff7bb2642156f9fc659c19fded98331828e49a46b444f468353ac8501337b1d0ab19a20c05804e37647c2a38e2653e5eead +DIST rust-1.68.0-arm-unknown-linux-gnueabi.tar.xz 215973664 BLAKE2B 97d6216a17c0a37abb3c657df1eaa8791d15354fd78482138f7319e9d783d766745fe3d3a2b72ba0d75584eb260273975235445c5f95a0af15d1ac5b2114e78d SHA512 329ad331889b74dc5ec173bbdbf45c128a7a84bfd2116fc07027ce3b6d6ebc12d479d2aac0923121d250b3ba21843b5ecf5a08b36a9ba1e20e3b7a6884ee857a +DIST rust-1.68.0-arm-unknown-linux-gnueabi.tar.xz.asc 801 BLAKE2B f73f2568d74f701713caa0efc023fd0ee7af1a7357bd8167d61ef7ac8e7155c76462c2f530887d27d070a430d184ad7b0868ed12f7c0cf4bad91ae2d106a3c58 SHA512 10e9e89054ef2136a3c9df4882bb1484ef4eecb34f57197ca96f0323db4c14fc00ec4bfddb6ffe4ab58b2880c7667aa2273f6d80d551ba2e9cced3ad04db61d7 +DIST rust-1.68.0-arm-unknown-linux-gnueabihf.tar.xz 214421640 BLAKE2B 1499b5d696b8658b9a16a8a4c10079bc78c4bc15f2415033f0c44e9957da7f2102ad2f1b4492b00cde30234e4dd7c171620a02457b5749d952bb38515d3ba0cf SHA512 8b9c4d293a6a318ac57eed57caa0a65d7143aea77182f5fdb745f4bfa0f936ea684b655fdf0f15c6b35fd1cad3fbd3799abf293bfba0ad89b0165bad87e477b6 +DIST rust-1.68.0-arm-unknown-linux-gnueabihf.tar.xz.asc 801 BLAKE2B 9491777ed8bcf7993bd430c2aa4682c8d775385cf9c63e22504ba6bfa04664a6588fb2516143e4913c05c8d26f3236efc4156660889e488ce94028da5dd9d8d5 SHA512 e8249e6c97d71b2fb23ed5c4a492b17fed058474a9b88132e3a51507e080bf85530dbf19e1ae06267c451a15140f9ce6eb91c61ee331e0c4a125dbf1fe49d1b7 +DIST rust-1.68.0-armv7-unknown-linux-gnueabihf.tar.xz 219324828 BLAKE2B 71c3cf325f61ac79fc0c5ea7737e3c5288614322cbb568580f7b43ad7eecfb2225dbdfabf7693568de6f83875edc464032c0ed2954f3bf7e3d0d3d2f68c7bbf8 SHA512 dd08d0de87e99923ed48513d0a2776146f465ebce8d2d18cf7e8ce2dc8d20639546e068802233f4ef13c294dc83cb64707d520754c260eab16b88d135b4115cd +DIST rust-1.68.0-armv7-unknown-linux-gnueabihf.tar.xz.asc 801 BLAKE2B f05dc2e372aa486178f6d470597430510c3b426dc5febfd1db0f7e030544f65801b2b41e8dc520bed19cb6a8203dc1b69de2db8cf773f6682a1c3d4a4a94dcc1 SHA512 fd85483a8ee6fc5f8c0c13928720f97a3c710c766a3a94d007faca4bee88d52666932e2f925cc1861b153d48f8c090c450f9a35be37092fbcce2ab4a32492b08 +DIST rust-1.68.0-i686-unknown-linux-gnu.tar.xz 234040272 BLAKE2B 25ba94dc80dc188ea4640c8da1aa156d72b20cf790005facf19905a7c1422ff1b5a0d7cc78ff75a4184e8865435805e1c1783a07b470c7ca29ad85c2e62805d4 SHA512 9e3b5185cfbe74fae33e9e765ff316b1e109e395c65c5c88dca7fb7e8c48fb6fab11de2a6233fe929916936e5da9b0e301704e6002a6dc7d7c780d8498554815 +DIST rust-1.68.0-i686-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 7b0d3f1bb60711a0ad3b35e90d11a368306fcba98eb979677c893de250ceea7ee9e67230da3914f6656fee69959847e81e0d0c5ea63c4ce6be3fba62bd895999 SHA512 933184ad76f5c987ed805fcad8c4ba231337634e1193253d6d971d16494ba61437776178fd976cabd29835f79b91f6cf5c2d4903668791f2f3cd86a43dffc564 +DIST rust-1.68.0-mips-unknown-linux-gnu.tar.xz 195976308 BLAKE2B 08e613a7a7b51ff1d22a094412ec23add73c710def4050cfc7a8915abafef9b761ce2f599c0cfdd54295dd5086ef6a990e386f03f1bff2c1aa251dcb69847fdf SHA512 40249e34693dd9dcf343645cc412879fc5d46b3105b34c448f9a765b8227655b2083c8e3fceed1875c1a28333192e456607caad94d2df0724f07a2a222073782 +DIST rust-1.68.0-mips-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 1d14fc69046bd8ea0b6f0419b36476c5174d96fcf0fb7cf669f669b965b0f2d4c0d4503030ef010bf28249bce45e00b7465491c9b82b165724bc0c78f929fbdc SHA512 6be9284449f3339388f7e4e1a32bee51071d5c1d322b21d0f3f0e8b3d96661896d22a648f9526a3dc4b0b84785f3c981c657c4b12ec6fecd3eaccff4223fc5e6 +DIST rust-1.68.0-mips64-unknown-linux-gnuabi64.tar.xz 193927120 BLAKE2B 89414035ede47f0704a66aad91984d2ac19bb52ea6c86795b483ac56f551db2c6a75b3d112e01296e108b1bb204d6434459288cd885983f6dee6162d67ec4217 SHA512 27c336016b038eb5282a308f3d9ace4c9c64b8de4d68b336326f6174709361d8c1770105dbe12d4d25c333f160ce4c6e95acefe7a733551735cadbe0c9d694c7 +DIST rust-1.68.0-mips64-unknown-linux-gnuabi64.tar.xz.asc 801 BLAKE2B 288cc37d242a125e735eff2aaa0645f202650af4d7889dcc585303d033727bffa72c2f13ae46c6a9647a48940536e2d2d419efb96b0fd24dcedcc41b564af306 SHA512 eb914885149d05747409da14c08bd77c5f1ef072a89f7a0b5e5bdccbd9a26c3162297840f91531ac62ee715bf07442c6572f972f90fa510e67c578798be3555b +DIST rust-1.68.0-mipsel-unknown-linux-gnu.tar.xz 199493032 BLAKE2B bacbde3a3d4c98d884ecca6016a9a837038a71d8b3d6d0328213820f6dfecd3057c3f8f63d9f5f931053e629c5ffb9edecefd9c60172270c6e0ebbb25f72ed87 SHA512 5c51277641f81d335176e88aaf19692a25423842452c3264594651ee3747abab75d3f127bb944f319a6afd6fdbc3bf7fb90c1424ff254bc594d59950c6411c5a +DIST rust-1.68.0-mipsel-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B b531ff82a07116ad55894a7c274664786432006a4f6029ed8f45d3e432559bf192809eed273dc0adf1968b0d1d42fa3404dc9c33dd97fe0d1c4f8d4154ac10a9 SHA512 db3f0ae30c7e166951d67908525c02ee308b0a76b6d13307427d5e341d2b1ef3111a93f23f1079df4fd6457334ed284f462f52ec9f72fdd7f8703ae7241e99fd +DIST rust-1.68.0-powerpc-unknown-linux-gnu.tar.xz 220484376 BLAKE2B 92bd890b82b113bcd3bc9da69982288e34a28d7e6eafce6777c3b3562a0e355cfb5b0952a7c5bbdbcd672650fde591161ac2d2c1c10b15ad8107cc274663b021 SHA512 217214d298ede63575f7f5c851675be493cd88e3ba1740c420db49923d650f8de130ba43f0748e2f6b3490e0e56050163181b6fa35f9d2dda01cf669acfe2af4 +DIST rust-1.68.0-powerpc-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 531ba7c979ee6c8a5f88aea49edbcd3d727cd415d724128f9f17053dd0a18ee2b9fdc039e69b625fb72fba762351160cb2a2bb9add488d0c5b517a18d1bd2b2b SHA512 028a3b3e6ea960fa2f52bf3bcf26c5f915761fc8915f953742c7f7c00c351b3b064c2f3e05357ce11d000dcbfe0a9ec6aded20f015af4fff7ba953d37f839e75 +DIST rust-1.68.0-powerpc64-unknown-linux-gnu.tar.xz 218552304 BLAKE2B c6c147861b64b046bd529b7a535eec45513a3e94eb716e89ca5913adf70be4a169994ac6b9e4df9ce5252f906394e598e7661e70c96b03f74f428c12e8d3617f SHA512 8fa891cfe388d66af5480e2855739a29202f4f77d5527ea192331d4b2b901f98dd5d7fa9877360fa2fede994c923b12613128c07b88209b9fb1402088ffb063f +DIST rust-1.68.0-powerpc64-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B c3d951158eff5f97766529753528bcec2e5ccee3016c9bfb3358122bc0a11941e88f5f193d0b867fa5d3fb18486019d2338e40683ecff043ec247b0136a66ec8 SHA512 140757fcee815f04d2b3975d080ea43a00ce429d85c9847527877233999be4828ab5a760ce5db4b58c302ea8d515b842b1706d506f54135b9e39f3f359d03c05 +DIST rust-1.68.0-powerpc64le-unknown-linux-gnu.tar.xz 231410408 BLAKE2B 3290892de9f3cf6248064b7614cf6fd0742182125720e39b33b945ef9070674a2fde76882054ac8384bac661f9aea8491ed37a99e50de6635d5abee49d73a9d1 SHA512 99e715074b062a4c347f55192e365d262e240a1b28335eff97030bbb0a7c9369271a86a7f550bcb3a4d2f7c25744f2c3a9058d3c9c30399ee8c9762822618c9e +DIST rust-1.68.0-powerpc64le-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B aaded16515cf1cb6ee567ddd6a78e4e23c5920166e4ce87aa68434a442038ae55276adced3d8d76ffb0b817458dee3a68478ffab7abfebfd2784bb04581e6894 SHA512 6f82c39d97a250b03651401b57e49f3c93626829ae047291050172434504d31c66c588ae6d8eb8460c298dd3e66204d0dd0491ed369e08d251243b13d8608797 +DIST rust-1.68.0-riscv64gc-unknown-linux-gnu.tar.xz 207755284 BLAKE2B 12e019a695f952b78dfe7c21e618d5190d55fcd7beeea7500685bf4684fa47cc57751d2bbacce90c0a4ec2457789584cf23ebcc58fe6d274919e14735fa768e7 SHA512 b05cffe24035bdfedb04306fabecaf87bc58ab285d3097149f3a283fa39b5fa6d87158afa697733f1fcb0a585c1b02d2d444ae3a9a6e4146671f2be2484a4f52 +DIST rust-1.68.0-riscv64gc-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 638c71a2fdfc0e88f5452b042757835f9b4e9209d557924b0d4e72e1f11f137e889dbd2427eabefb01b6bfb6888cac76a461796bd8fbbcda07ef4c2dda22679e SHA512 dd17885f03c2160acb688b35b17c36766778ee6100b6d1946ca84ca65515f6d58143f4b13f27a2006bfe5c21c9e64f7199cd678e8d3cf5067cd2ecf1e9085374 +DIST rust-1.68.0-s390x-unknown-linux-gnu.tar.xz 233939748 BLAKE2B d9eab2bfba6ed7fac1967ebd11089ec00e521e815e4c6a14414fce40f7215e6298b4233ca2a051dab1c907cc448ac84ce720b491060f0f653cc8f08813324921 SHA512 b0a9703f486dc008f161d7d4e374bdf5732a7f3333447aeadf2ca115a6cc58b79f0a08bb59b83ace5f855b0f0c9e8967bc2918280f5bc44f75a0638fd694f660 +DIST rust-1.68.0-s390x-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 0963d71120563edaf16abd9e9fa03ed3ae4b0607595d3275dc337920e9f0a0f2d313531f1f900140a2f86244fadb339ea3f252387286124159653359004bbdd5 SHA512 7aa63ab7518d1cfeff96306fd44a34c54fd894ab6d8a1de7e4255bd047c6f55a2344e13e90fa62a8e1ca2c921ed8d45ababd8556cb7b94c21d73d3ce891cff76 +DIST rust-1.68.0-x86_64-unknown-linux-gnu.tar.xz 185829340 BLAKE2B e35252634dc14ee37fdb6397c6ef6e216ef51f5d7280a0e0ce289bbf551acfc3a9762dc47514b0bec696eef42e4eace967281d0e48535f293f4cabcdd7a7c61d SHA512 86258a7c21bd04e28661c37add745108d4043b6743d3b49a99743b3ceea0925c26c06ec507ea7cfbd894d750a10c31f11bf4e0ecaad43460182c0a1876445fbb +DIST rust-1.68.0-x86_64-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 3754e7ace2b73174d1e3ffcf82348f330a16c10fe71e5a989afac551062d66f89bab80a8c14d9cbcc26addb9865ad4657cf0153c3021e8a33210108b176a7298 SHA512 cb103df554f3e0c21c420aace31fa2966ec72cd6d3219f4d9a2d35b46d901340d2a3ec3917f0c4225a3f4bd1cbb4c88b33b34bee6fecedc3d90914a28d49c50d +DIST rust-1.68.0-x86_64-unknown-linux-musl.tar.xz 270042696 BLAKE2B edb9c42d47296538fa8bc4467a450d57604d94ee53effdadec6b74b2fec6753839085e0e96baff31fbbc5ae253d1604b9653b80b183291762926bbec3bf832b9 SHA512 a5d721c5ddf6a9d3a3adc00b8757a531665bac9969a19bd2c0b86d19164b9cf8d60118e35e1a17cd5e004b1a16975d52962c07179e0289653b692df368072655 +DIST rust-1.68.0-x86_64-unknown-linux-musl.tar.xz.asc 801 BLAKE2B d3004b933ea1bc4d21a9e9f2eee6abc112b76053254b6510d5ab432940951b3520ee5ec0eaa28e743fbad584e45f1cd655e733f2ed94a70e94d46d4a46e5bc46 SHA512 32443ee30ed9cf9a7e0aa960aa07991d7e3dd503568cac6dbb891cf82f57fafd5dc5387fb3c5b0ca6f801095d5dfa881cfd51299d0d4982594c8d17513e9edf0 DIST rust-src-1.65.0.tar.xz 2488012 BLAKE2B d48f5591e72e14084f2fb0d66c1365f1648060d514af23c0498e02adfd7223b1a79bd1f512859b058f9cabc4b88b9230d15960df7c30762a5263d1785b877a68 SHA512 247f822a9c2f16d1de29d1cf6fa7ff393b7c7fe01da66a7c0b4add6259d72403922b8b1bd1b511ed8a9cc0b2c12ff574945aa7fc76c731fba620b466bcdc2eac DIST rust-src-1.66.1.tar.xz 2512096 BLAKE2B 514b8f9170d8a0e9b9deeeda27c5b83c18b7f038cb27a867fc4df1a0375b5c492793e67d0f0a2c26354ed1b58c699e1ff3e19f536dec10fc8b8211325dd4999a SHA512 3b77e29bf0803278d46aa5a484a2d74f242bf7f1ce6f5a6d1e84107630aa238620c91459f385f1b9f1bfb67c593ea5a274950a4db2975307cabc3a009b89f157 DIST rust-src-1.67.1.tar.xz 2522656 BLAKE2B 28f67cbac3d09af16f572c102890b49ffb4c610ebf379cf48ff4d0107afbb39587d2bcb7c5a4f811542f84dc3157557c762b006a6e89c54cd121d22bb677a770 SHA512 839266d2046b12954fd46f258a975a37c81cb61b6d2d9a5905fd6c83961d97c197f1b467c881d5078f3725293eb73ca402b002af3f47b6f7d431828f01d49a15 +DIST rust-src-1.68.0.tar.xz 2535596 BLAKE2B 305aa63291a4ed385cea9bb0e79006c0408955fbf2f8cce16e71a8f56ce910ce37d64290cce5a4284c75f1549bb541c5cd2aa3dbdbee268a88a5dd823e98f732 SHA512 c91b63f8d5cc344f732eb8e496bb7146cf034d745e720270e84f68d5e4d243673d589b286ac28cb714b65e4e20c5e49bb946d586f1f47129a67b093ae89f3a74 diff --git a/dev-lang/rust-bin/rust-bin-1.68.0.ebuild b/dev-lang/rust-bin/rust-bin-1.68.0.ebuild new file mode 100644 index 000000000000..4842f8f8a534 --- /dev/null +++ b/dev-lang/rust-bin/rust-bin-1.68.0.ebuild @@ -0,0 +1,228 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit multilib prefix rust-toolchain toolchain-funcs verify-sig multilib-minimal + +MY_P="rust-${PV}" +# curl -L static.rust-lang.org/dist/channel-rust-${PV}.toml 2>/dev/null | grep "xz_url.*rust-src" +MY_SRC_URI="${RUST_TOOLCHAIN_BASEURL%/}/2023-03-09/rust-src-${PV}.tar.xz" +GENTOO_BIN_BASEURI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}" # omit leading slash + +DESCRIPTION="Systems programming language from Mozilla" +HOMEPAGE="https://www.rust-lang.org/" +SRC_URI="$(rust_all_arch_uris ${MY_P}) + rust-src? ( ${MY_SRC_URI} ) +" +# Keep this separate to allow easy commenting out if not yet built +#SRC_URI+=" sparc? ( ${GENTOO_BIN_BASEURI}/${MY_P}-sparc64-unknown-linux-gnu.tar.xz ) " + +LICENSE="|| ( MIT Apache-2.0 ) BSD BSD-1 BSD-2 BSD-4 UoI-NCSA" +SLOT="stable" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86" +IUSE="clippy cpu_flags_x86_sse2 doc prefix rust-analyzer rust-src rustfmt" + +DEPEND="" + +RDEPEND=" + >=app-eselect/eselect-rust-20190311 + || ( + dev-libs/openssl-compat:1.1.1 + /dev/null || die + local analysis std + analysis="$(grep 'analysis' ./components)" + std="$(grep 'std' ./components)" + local components="rustc,cargo,${std}" + use doc && components="${components},rust-docs" + use clippy && components="${components},clippy-preview" + use rustfmt && components="${components},rustfmt-preview" + use rust-analyzer && components="${components},rust-analyzer-preview,${analysis}" + # Rust component 'rust-src' is extracted from separate archive + if use rust-src; then + einfo "Combining rust and rust-src installers" + mv -v "${WORKDIR}/rust-src-${PV}/rust-src" "${S}" || die + echo rust-src >> ./components || die + components="${components},rust-src" + fi + ./install.sh \ + --components="${components}" \ + --disable-verify \ + --prefix="${ED}/opt/${P}" \ + --mandir="${ED}/opt/${P}/man" \ + --disable-ldconfig \ + || die + + if use prefix; then + local interpreter=$(patchelf --print-interpreter ${EPREFIX}/bin/bash) + ebegin "Changing interpreter to ${interpreter} for Gentoo prefix at ${ED}/opt/${P}/bin" + find "${ED}/opt/${P}/bin" -type f -print0 | \ + while IFS= read -r -d '' filename; do + patchelf_for_bin ${filename} ${interpreter} \; || die + done + eend $? + fi + + local symlinks=( + cargo + rustc + rustdoc + rust-gdb + rust-gdbgui + rust-lldb + ) + + use clippy && symlinks+=( clippy-driver cargo-clippy ) + use rustfmt && symlinks+=( rustfmt cargo-fmt ) + use rust-analyzer && symlinks+=( rust-analyzer ) + + einfo "installing eselect-rust symlinks and paths" + local i + for i in "${symlinks[@]}"; do + # we need realpath on /usr/bin/* symlink return version-appended binary path. + # so /usr/bin/rustc should point to /opt/rust-bin-/bin/rustc- + local ver_i="${i}-bin-${PV}" + ln -v "${ED}/opt/${P}/bin/${i}" "${ED}/opt/${P}/bin/${ver_i}" || die + dosym "../../opt/${P}/bin/${ver_i}" "/usr/bin/${ver_i}" + done + + # symlinks to switch components to active rust in eselect + dosym "../../../opt/${P}/lib" "/usr/lib/rust/lib-bin-${PV}" + dosym "../../../opt/${P}/man" "/usr/lib/rust/man-bin-${PV}" + dosym "../../opt/${P}/lib/rustlib" "/usr/lib/rustlib-bin-${PV}" + dosym "../../../opt/${P}/share/doc/rust" "/usr/share/doc/${P}" + + # make all capital underscored variable + local CARGO_TRIPLET="$(rust_abi)" + CARGO_TRIPLET="${CARGO_TRIPLET//-/_}" + CARGO_TRIPLET="${CARGO_TRIPLET^^}" + cat <<-_EOF_ > "${T}/50${P}" + LDPATH="${EPREFIX}/usr/lib/rust/lib" + MANPATH="${EPREFIX}/usr/lib/rust/man" + $(usev elibc_musl "CARGO_TARGET_${CARGO_TRIPLET}_RUSTFLAGS=\"-C target-feature=-crt-static\"") + _EOF_ + doenvd "${T}/50${P}" + + # note: eselect-rust adds EROOT to all paths below + cat <<-_EOF_ > "${T}/provider-${P}" + /usr/bin/cargo + /usr/bin/rustdoc + /usr/bin/rust-gdb + /usr/bin/rust-gdbgui + /usr/bin/rust-lldb + /usr/lib/rustlib + /usr/lib/rust/lib + /usr/lib/rust/man + /usr/share/doc/rust + _EOF_ + + if use clippy; then + echo /usr/bin/clippy-driver >> "${T}/provider-${P}" + echo /usr/bin/cargo-clippy >> "${T}/provider-${P}" + fi + if use rustfmt; then + echo /usr/bin/rustfmt >> "${T}/provider-${P}" + echo /usr/bin/cargo-fmt >> "${T}/provider-${P}" + fi + if use rust-analyzer; then + echo /usr/bin/rust-analyzer >> "${T}/provider-${P}" + fi + + insinto /etc/env.d/rust + doins "${T}/provider-${P}" + popd >/dev/null || die + #end native abi install + + else + local rust_target + rust_target="$(rust_abi $(get_abi_CHOST ${v##*.}))" + dodir "/opt/${P}/lib/rustlib" + cp -vr "${WORKDIR}/rust-${PV}-${rust_target}/rust-std-${rust_target}/lib/rustlib/${rust_target}"\ + "${ED}/opt/${P}/lib/rustlib" || die + fi + + # BUG: installs x86_64 binary on other arches + rm -f "${ED}/opt/${P}/lib/rustlib/"*/bin/rust-llvm-dwp || die +} + +pkg_postinst() { + eselect rust update + + elog "Rust installs a helper script for calling GDB now," + elog "for your convenience it is installed under /usr/bin/rust-gdb-bin-${PV}." + + if has_version app-editors/emacs; then + elog "install app-emacs/rust-mode to get emacs support for rust." + fi + + if has_version app-editors/gvim || has_version app-editors/vim; then + elog "install app-vim/rust-vim to get vim support for rust." + fi +} + +pkg_postrm() { + eselect rust cleanup +} diff --git a/dev-lang/rust/Manifest b/dev-lang/rust/Manifest index a1a5475671c3..6cf2721a5242 100644 --- a/dev-lang/rust/Manifest +++ b/dev-lang/rust/Manifest @@ -94,9 +94,43 @@ DIST rust-1.66.1-x86_64-unknown-linux-gnu.tar.xz 186651920 BLAKE2B de89dd720320d DIST rust-1.66.1-x86_64-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B d313eafed62763b0905636ff22d6c736696c55e55d2442512a95e239b5b37199fdb125d312284b2a249782fa61d552284c8eb3ef8c9aa9ea36283a9fb975dd66 SHA512 c491f07c77baeac6b92c2425092c1b3694e72c49d4e6e511597aac03d51930cd414a95b0d691a9b23df266fba8df3dd90bf7d30624383bd213403fe0cbc83ffb DIST rust-1.66.1-x86_64-unknown-linux-musl.tar.xz 270294752 BLAKE2B b068a9400f29e9318e8d52f2c37df72f1b8fd91ca0bba342e6681544595a7f2697bf10437be6c4612a36d2781cc915920b498273ab12dbe1163c41d9d4e9b438 SHA512 df03ef29b03924346ef2a4b5dbf1c7ce6e33fb1f357eb04b0fa80e48a607b29f5929ce587412c9dd3f385d6382f0229c19d0ce78d6c060ddc0539429d3cfc606 DIST rust-1.66.1-x86_64-unknown-linux-musl.tar.xz.asc 801 BLAKE2B a262a2a020a142ea8e3906a9c93d9294906ee51f5d22efd4ef041b6032524d2714e0b511f7deb366c0ee3337ecd52f1e091b6bfed01615eaa9026996100afe2d SHA512 f390b3a788c5b15b1acee01505b6501ad4a3170cd2f23ec490b02294ce0a62c3f708f1e66c0ba8258a1042dea0401a1e09d31d34e99558f50b0f65b359354182 +DIST rust-1.67.1-aarch64-unknown-linux-gnu.tar.xz 257819328 BLAKE2B 7d2b033f447f5df5879be3e6d55c26a96996910026db8a751e85cc1a0c034e508cb3b207f45a3ddfd491c6f97993374f5a285eb2b6cd0233954f4126db260828 SHA512 b49ad763f88db3414fa5b10e3462992bc880ff36437642f5fc29effe54d7b6bdef16119e039cbb7ae291f142e88b48ab213b9a51cd38c65fd57ccf2bdfaab3db +DIST rust-1.67.1-aarch64-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 94e00367ba680137847d41bd8bef7493eac46f04a5b42c0b8252642c30d25db5f813de3603e450cab9a1cdde4c0f065f58d03ee72c29a5c321d87a063a01d05a SHA512 8b558c63fefa00ee0d50cc1b22560572ce5babd9759350f5178eb82e86230e9f9e4f9f4339dcba976e1837f167dc0e3e4f376be7352f9127f0d7af545e93694c +DIST rust-1.67.1-aarch64-unknown-linux-musl.tar.xz 236561572 BLAKE2B 19168415f8199dec3ce4c148394c7c86dea81df0ecb7cb776395d8f0e7b910ecf8de4c9ef7a87baadfe52af65e612779ae3de8599808032e91c726c4d967139f SHA512 f2931563300d78af1c09dff10a9b8f73d441c559dfffc3907e5a2425d12027061ad2492683404cc2b58cf429446645807f6d3f70caa2dcb6cffe40ac39252f25 +DIST rust-1.67.1-aarch64-unknown-linux-musl.tar.xz.asc 801 BLAKE2B 7f4bd1c432971ce5f5346f2f39dd1f5bdbc19f13524ee7cae82eb6a3f30a5ecb69fb367fb4e0063e06656f457cff68a2b81ba5ca896a5857312a11fbaea0baf7 SHA512 d568b2d4cbbcba327bd04e9253f25839e0f183c144cafa1e8104b82d64bae3515fe8f16ccce2ff975210b6f54254d451c64fc4a070b80981a945d164897b1c7f +DIST rust-1.67.1-arm-unknown-linux-gnueabi.tar.xz 215162200 BLAKE2B d922e271d04e2cc18f21fcef6f1aa8f283a7bf56228a1b1a7d81be697333a0f16fdadb12e7350ae130dfac2ca78766990df2001a3b0fc898ad4233c51a7f39c2 SHA512 06bca6150bf088ae19fbdfc0ce74dc0a8f24c111290f9592cb65164dd6cc03c1468a599514052cafabbd1b4040673a0cea69e14b266d59a42bcd7c1701e212ba +DIST rust-1.67.1-arm-unknown-linux-gnueabi.tar.xz.asc 801 BLAKE2B c85feb559064bc24b25dab825ac6758c7759cc027dad4885bc87eff0f331f1177963b39096f4ab78490c54d82a0daaab035f58a0d6992eee1acca2a1add4fb50 SHA512 7754053412a2d17b9092166d37ec713c45ff32c9f161fa261bc075b89b43af716861aa15ab8dcf4472ea49d6e3d2f3c4085d536946cec6ff862f75f83debb7d6 +DIST rust-1.67.1-arm-unknown-linux-gnueabihf.tar.xz 215944916 BLAKE2B 7e04f28292669fd0c34dc317c42d67e1b27ad0b910186ee846eab88dec1c14f89a3b599a93d7c81c88c1b040052c3df11a50e6344528054095113131094acc66 SHA512 e4c54745b55e0a5b6b36e9dc058265ae4774855122f111a0029415df2fe5bb564cb641e332ebc1c00d792c7dce6ca370e6440ec20658012c1a605939cd8efa03 +DIST rust-1.67.1-arm-unknown-linux-gnueabihf.tar.xz.asc 801 BLAKE2B 0ca0c0ed5423c89e988f0c93e4aa8d8d6cb0e401b664f9ccdb642d736f4e4cfc2fd39d0a142b07d8e5dcacddd304c8dea04617b5e3264a3865a16bfaf49d1274 SHA512 e573a36c401fe5c543f4505bbec1b5e7c962831aba062cdf8e417f5fc3c6eff2bd6c44a6c01bec4cc5fc4ddeea1c5023f90c7f1c44a26a39b9520fee923b61b2 +DIST rust-1.67.1-armv7-unknown-linux-gnueabihf.tar.xz 218109412 BLAKE2B 256cf45036132ba6f4a4dceb80fef0a2bf079fd54b4119e8a869fcf9e093e76e1d7ac84eb920e272b766a328548514e7b0249b6287d8950528aa049ed92b21ba SHA512 05ef4e7f2abdbed1cda6209ab3500f8532e516c7e4f9d08ef0c1cfa790c2454b952ed59a43ed4453e7385b12f672d5029c6c436601d7a34368418c0800f0126d +DIST rust-1.67.1-armv7-unknown-linux-gnueabihf.tar.xz.asc 801 BLAKE2B cc15e8f68745d252e8851b79441684cea1f1214e7088d7ae6592a5d47719d9dd61abb01f37882775c3c00e1b318562ca050caf5ab06a665946886f50575bb1e2 SHA512 68d66234f3bb9c452aa4a2bb5bceaf26dcb71466f05a0aa7f7b7803a866be5cfda1bf3a8f71cc8e84c2168812641da07a0726d7f2f49882b892ae41f51465477 +DIST rust-1.67.1-i686-unknown-linux-gnu.tar.xz 235056732 BLAKE2B b02479f7d145b6ad3db16d62120a6b324a9db79ef0ff7a5900d7ffd9f5cff0416fa74120a70c1c2ef5bc05c6db4a70b18cf52aa49e0972a5c75becd995795803 SHA512 64f0f887f711b276bd9561fa258aee97bef234d84b02912c1c01ec8caccfe3b0bbfdfcfce98cbd6423043c312e577d0fa574f4c703292a58163a7d3286bbf6db +DIST rust-1.67.1-i686-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 602b2769db2e4810fdb962ce1241118e00d3ee6131267815b9c8602298bd55d249e75ce42b4a4965aa6835d8af762d6e23fb1ba3a3b8a954ef08fa5dd88b30b2 SHA512 18999437af3b51b836cfeb8096c55afa2027e783d32f492eb620964c1731f367d76cf72533b35bd67f3800be4e457f4a1192aa85bfe00a41d673484f2ff56eb1 +DIST rust-1.67.1-mips-unknown-linux-gnu.tar.xz 195834044 BLAKE2B feab999cd49f72bb0865324c3671d92025ebca88601b2b6257ad11ec66b506e65bb3cdfc9a459014d9f2af52bfb410837c30e3bd0c85f407f8ebe4f98be7439a SHA512 3dfbe7e846289cc22da42b630bee54b98749c1d659a0652559b9d4febfac6eb786da18ad1be1316aa3dccc4e213f1f20efc8556da88df7226a5d8a8890b830b2 +DIST rust-1.67.1-mips-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 100dcd13886287128065952d0b535208a0807c22175dd8fd04f16a16d76d2c9d32dd6b6da5ca929c517519e167e100607c7749ed6c512fae89e2e0313e7b7202 SHA512 5cebd45755d5accb15da29423eb7addf18a72326238ef6a0c2ca09776ac008490165d2b1fb069ec7a34d509bdfa7cf1212a87344e0dda4746dfb89afe404225a +DIST rust-1.67.1-mips64-unknown-linux-gnuabi64.tar.xz 193892140 BLAKE2B d17cc8b42ad0e2a658dbc170dfc7256ecfd0b520cb6670eac4be63e1a92c54ff9018ee4ef9cf90b1e29d052cb6076ccbb163348b99113fd2e0d9155436129f91 SHA512 92e5c3238d4544583ed8ab989d598275e729e7795b0d645a822ca7cdb5be9fe419fba3a7f2d8db11393ce03ac02873ee876ae55f959609f0a6f4b4f1273a7929 +DIST rust-1.67.1-mips64-unknown-linux-gnuabi64.tar.xz.asc 801 BLAKE2B 95c5e4829068b02c16f7e8e38b2d94a4f913bbd77b226d1c83c8cdc7ef198192b76ff67dc86f7978dd1b9cbb14bb627dc106fc2921a501c340f7d0442629f8e6 SHA512 32be92455ccb54328d1f62381501009e8dbe15f1b4f83e99a894bf5e7eb469a23aeeb3ef440be1ee798e00bfe865ec21d2dd6b2c58a475e1ec789425e53bd356 +DIST rust-1.67.1-mipsel-unknown-linux-gnu.tar.xz 199598332 BLAKE2B b894bef4c2f847a26be0badc6d069fad636f0cf1286a1643b876709ff292bfe3a2307f1a2904bf6e0c596c13dccd91baba0e0c4fcb45a7cfb71e555207a61292 SHA512 9574f8f078deae22bcdbeb89c7aaf1c26a49fb61cd9a7d777421497b85c243fdcbad8c25d1a80aab4ae0b03f6849628318371dc323e27e308c85ac556e2d649f +DIST rust-1.67.1-mipsel-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B dac540a5283281c495e4cc629e7d81279c55db4fce3191af55e88cfcb857a0f86eebeff9a0b8ba95d4da4654c5b11c0fb5364db876a4464b799499285f0184a0 SHA512 ccc990923cb5b73391b09e8c7f4479998bb378b07ee12b5a83d6fbe6044f6925429590a116a944163a2d8f7f6a210b6f2302cb5976a99174e012b7646d7cef5c +DIST rust-1.67.1-powerpc-unknown-linux-gnu.tar.xz 222275832 BLAKE2B e63426d9441a601044d8f0cc8f181bafa7f47bce972518676913d506be5566654e0afe84d63ad0c3a31596231b0a1a10c96e9246fca9bd2b0438f9d72613fc9d SHA512 66fab7b5679bfe59f12dfc5b863196c2cb0b5d0f53d0bd88700586a90a6e8ad4c986fb44979b4320e74ed8b9e4c62b4ab2b3e64e44254355577fc9d1e6b688e4 +DIST rust-1.67.1-powerpc-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 312da822216930be24d368f4c449b757f1b633e71b6897b19c9d45b7419ff0c39171804d2d8196a967e6e2296bbfcb87f0b2372b3260c6cb62c8fbd9fa192c4b SHA512 38f5ed49201ef0a99c24dd3e0549628e4bedf53f41d62f6e719a91b3afe3aba64ef7ed51a6984b21469c1ea2c5def284d13ff035c67eeee45d304ec04b34fd2a +DIST rust-1.67.1-powerpc64-unknown-linux-gnu.tar.xz 220473512 BLAKE2B d932865dbf797827507426c61107a0d89aac02d56cf552e21566ef6356173925697b72e3acf3fb8825b10814b476d28f9cee98ece21cb748d83c1526f9d7ebc6 SHA512 6f7b1e33da99bc46014785223bdc9aa5bfbb1a5619037cf48fe5ec46aa82e42e09fc8828b4e2b904bc122f61ccb24cf56caa7077260a1e7486dc3badf018be69 +DIST rust-1.67.1-powerpc64-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B aa72e61de6481748dc29cfb0f40662fb4a7ee6c3792b67efdd55df47abdfe75db4ab1f560175a3dfaaa036a3de0435ea6e2d9ceb1b4ba315c95c561fbfde0ca0 SHA512 e983fe67613257744fb7a147e4b29370795d52833a247b2c568610993a6e3eb5f6212fa511cb72636bcd7209c15181dca9ace05eb4866fcd09e69afad5ad9b77 +DIST rust-1.67.1-powerpc64le-unknown-linux-gnu.tar.xz 232947736 BLAKE2B d7448f4a7196eb67d35f5a280d5c53bdf1e08a7ca640503bac3d8cfa5b43680b231d9d1f560d4907ce7a191cf5f43973a0296e369bb81befbd7ff3f05fd12034 SHA512 c2602a03f389e3cee19c7f775ddab12a0635bb4f3a7d1242eca62cccbe91949ac9900ab1066074a2551b7c9fee57539949236ed37ae941a2c7dc0626320eecc7 +DIST rust-1.67.1-powerpc64le-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B f48881d0e3c1b1d78898720a46166794a4c52ff8f1bdd8a1e792a0c4be585d7c9e5ff369d2c80d3083d18fc548ec4e24b78fa27aef9b69a240095cc8e09decee SHA512 52af4cbb1792345347ce8864109e28ba0acdc3aab2c88f2db201a79a53d903872d3c70ab84a147d311d36000b2b84a64e2b8b97a9470e41b9d7c390c17facf6c +DIST rust-1.67.1-riscv64gc-unknown-linux-gnu.tar.xz 199552128 BLAKE2B acfeb341ff2ea1ff035445e616a668d565e0b52a7453c30a46a6cfadad0b0ef6eb72d89904095fd5f0363cabeffd2fbe97b435047d5c3606475da41fb50c6be8 SHA512 5c7e0b8942872d211779f46862d0826240a15f46c95d4038f2f8835ca68cf20f8add3231040a331ca761bf4351e0976518095d606303eac66752e5598df49442 +DIST rust-1.67.1-riscv64gc-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 246adaf9b5980413ac32af57d2e089e765336e085bb45799aaeb80311a7a5d73545779c8b2e810b763520d9d5a5d475f764675191c12a2d4b2b313c11230d311 SHA512 bf447737b414839b126fe258bb5dd6d34bb9d47d57fdb68a4cd0b9296fda2c47aa267cc9722f7821bab365b95ee4a2c93631786f89c7cb5197c283897c413016 +DIST rust-1.67.1-s390x-unknown-linux-gnu.tar.xz 235970856 BLAKE2B efbe49525e880b07de613be0d22bb87065e0d64f7006ae07c9deb020b65bcbb6dd20cdc250e740763480426baf9c64adfd06e005b616543f2ef9451e99b7d411 SHA512 308aa7bc5e32c50a0b5c2fdb5e9bae60d8c8ea32fcab72205aea9832f24df35d9331c63503e092ecfee18c1eedcb5a50138837e29bb50d74f526aafbad9e71aa +DIST rust-1.67.1-s390x-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 875b4168bf1458376ba31aa8b27d7bb331cb3bcfaf2645e65d0a2167cf55e6a6a2a0bf5f66438e7cca7c73f1cc02fddeea3be570e37ca80f5cc14fc5e0349423 SHA512 97a0e05fabc4755ffaf23ada6d77dde78b410ef530437a8700673ee986c1fc5015665948fb4c63f2e0716bc022ef7d6f061fee0a1516995a6a4d7ea100d234d2 +DIST rust-1.67.1-x86_64-unknown-linux-gnu.tar.xz 186714164 BLAKE2B 648efbb30233335e31c9a90aed4958325258365cd4aef5e01312005606f23ea42cb6788eb82a11e61fb5111c4d32e052ed815e455c32ed3f6fcb18d963589669 SHA512 1a65ce569fb3262dfb805d0fa2c5c9f987c2c69e547fce366d9d371c8b19a90de279099a942919690aa6d58e2462cfd7bf54240f7ef51dc22ce12e292c46038d +DIST rust-1.67.1-x86_64-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 669b7c4b0d5382a7d1d0fe49405f2798f67a9e745711dc2c8e7548ea6fdc8f0fefdab37d0594aec14b2745ce45e7c469e79c0cb1d86077ad9c7b6aafc2656827 SHA512 067681cb4140a29adfa5f4b141e2f3450dad34b95a1e549a6bc8d759e57da5d2ae69cc165efcdef9d83e2eee06edb6acd587d38c9b2f3d000d7a3f79daccc671 +DIST rust-1.67.1-x86_64-unknown-linux-musl.tar.xz 269831452 BLAKE2B a36498528454f1bf0e1812eba005f27e3e281e4e2c117477785f5e48468c3fe316947b7e4360f573f0f4cd6f117e4102db8aeaa616be5bef09fb7518fd230b23 SHA512 9a3eb67239a88b875fe55846a2fffbbb1f2a4cc8eed18b5558f0f989d544a8ddfe0861d5b2b860a779833a1660ee622b30320ec9ef83e841724f7a32f08fda06 +DIST rust-1.67.1-x86_64-unknown-linux-musl.tar.xz.asc 801 BLAKE2B b12d0ce1136e355ee027780dfe185ee443de402e531ecc743600aecf081990d4e998fa4a6e6f0f46a886cd806918e23c5e4ccb7cecb0324cb67189984192283f SHA512 37428f0d1d8e2ddb7ce52bce3a297a7f666789d00e7e240180c3e1f7fb5b30bf5e17593cbedebdef95c50406ee82d40ef1f75a576a1a0e02387e1a12ed977c77 DIST rustc-1.65.0-src.tar.xz 139674928 BLAKE2B a218263fb67e306b153f5a6dae95b5ec653acaa5eb4b833862d6f0fd4685a8cec097dadc1b8a934e1bf6055672c7a617f9a0ad4a7dbf2e78084297f10b7ada04 SHA512 3d0369ed3028209c4ecb9b9e7b5f5e3a20be8cc05199675df4f091d62a96c0734bc1dbd7630928fe162792392ec6d0daf9ceed10771531ce022200c7b631e3be DIST rustc-1.65.0-src.tar.xz.asc 801 BLAKE2B 43ff92011cd6f7f34ce0495fa341379e5907d032ea90f91e533e5edaec6ad518aad50a9d8b2694074d6909ee96aa779403b16e95792e962e79c1b967542ae26f SHA512 75b9be53363022c81333117876cbcc573bbd4733edf767cbb164218644efb1a9c4bfc2aa73aaa1e39f248a84f1adacb1930a94a6e63f60093ff760fb9ae02efc DIST rustc-1.66.1-src.tar.xz 141692940 BLAKE2B 3fae45345998386fda1b11ec896fac4613b8e3f0092bc0df29c9685f4a4012c0bd1b600911c2d19bcfa8f5a84b8a3c39d4c9e062a62cd61925b59129e1cd72b9 SHA512 1944c024c603140d0a9236043a3bd1d0d211dd8d368d6d82a3a620f1ff43b29624755b0943f2b38b40a188c7eee77a840238ea757eaf435e2a3fa6a0e6b82832 DIST rustc-1.66.1-src.tar.xz.asc 801 BLAKE2B 18e27c88b39eed29147854733c5533b7fffc417ff0b3bd5982174ffa2c5f6d217e2e28ced4da75863a4557800e7ad7a124a4bbb0def4c20da7ed543602185941 SHA512 4511f41ad3d098a339ea3173e3ffa692d1d3cd3ec9dd45af68e4491471f9a72a2e866f6924090eb366bdf6f856650d981eabe1cd851843a17f4a6e4f1dfbc8a9 DIST rustc-1.67.1-src.tar.xz 142758844 BLAKE2B 55b2a98592b1a2e465b7fb224607cbcb23cb13d5053b51abbd2e45428794f457b6925955c5c562f577830353e5287929b3588ee78a30036bf0ca13a3610316d9 SHA512 42d77ee93b168ae139b026138fb48d925624ff436a836aa97ee235f870e61ea11643b0cf7ad20bcafda774c6cd3855a4bc10a2e2ed1c4d82c6f15158963b304d DIST rustc-1.67.1-src.tar.xz.asc 801 BLAKE2B eb507c6f53c592921eb31cccb17c9d6027c67fb1311726f2d25fe7d1f8a1aa051efb99d7207a5e4477df0b75898783437e653fa041ed7daa27e7a7c4263ec230 SHA512 6c962f680d74251b55f77a43d6e383be53bacff8428e0d003bda207de1fea7f716b88f16686d22a88d99518a4834bf299731855fb030477a995d5e1f3d0024f4 +DIST rustc-1.68.0-src.tar.xz 147856584 BLAKE2B ee835ab2edc65c8f889d8d9e3e76e86ba87ba66ceb8ab6682b198b43d5587740b6c666a502e41f6fb075bae7a1f85d04c8b39e27a9d9af3b2beeccdf6e2039aa SHA512 f6cc5c06488080f2d7ce8c4f5adf7ca8ae8b10caea627b57876b051593af1201a48823d0abf5fcbcd344b46606b53957569db9844d647a5fdc4abca06e260f3a +DIST rustc-1.68.0-src.tar.xz.asc 801 BLAKE2B b57b9452291cb2572ce12d58073c93ca006f86d0cfa1fd0d216c078f2318a5d412d0db1be2c08f0c4d6577d5f518e1d2b93e983e85cf4d3bb945b1640afbb6ad SHA512 4fc2edf1afcd158c831e1a2e95ce1474d73bfc5e9be36fafa2070d63629132e3afd37555436bb95251647c51170e4a6c1efb894d27aa95cd0107ec7dd2ff8c88 diff --git a/dev-lang/rust/files/1.68.0-ignore-broken-and-non-applicable-tests.patch b/dev-lang/rust/files/1.68.0-ignore-broken-and-non-applicable-tests.patch new file mode 100644 index 000000000000..3ebd6e193af7 --- /dev/null +++ b/dev-lang/rust/files/1.68.0-ignore-broken-and-non-applicable-tests.patch @@ -0,0 +1,40 @@ +From 1879d1d1a284bf51c752e47db284ce22701ed5d0 Mon Sep 17 00:00:00 2001 +From: Samuel Holland +Date: Sun, 16 Sep 2018 16:38:48 +0000 +Subject: [PATCH 12/15] Ignore broken and non-applicable tests + +c-link-to-rust-va-list-fn: unstable feature, broken on aarch64, #56475 +env-funky-keys: can't handle LD_PRELOAD (e.g. sandbox) +long-linker-command-lines: takes >10 minutes to run (but still passes) +simd-intrinsic-generic-bitmask.rs: broken on BE, #59356 +sparc-struct-abi: no sparc target +sysroot-crates-are-unstable: can't run rustc without RPATH +--- + test/run-make-fulldeps/sysroot-crates-are-unstable/Makefile | 2 ++ + test/ui/env-funky-keys.rs | 1 + + 6 files changed, 10 insertions(+) + +diff --git a/tests/run-make-fulldeps/sysroot-crates-are-unstable/Makefile b/tests/run-make-fulldeps/sysroot-crates-are-unstable/Makefile +index 9e770706857..6d92ec5cec8 100644 +--- a/tests/run-make-fulldeps/sysroot-crates-are-unstable/Makefile ++++ b/tests/run-make-fulldeps/sysroot-crates-are-unstable/Makefile +@@ -1,1 +1,3 @@ ++# ignore-test ++ + all: + python2.7 test.py +diff --git a/tests/ui/env-funky-keys.rs b/tests/ui/env-funky-keys.rs +index c5c824ac58d..f3fe047a79c 100644 +--- a/tests/ui/env-funky-keys.rs ++++ b/tests/ui/env-funky-keys.rs +@@ -1,6 +1,7 @@ + // run-pass + // Ignore this test on Android, because it segfaults there. + ++// ignore-test + // ignore-android + // ignore-windows + // ignore-cloudabi no execve +-- +2.24.1 + diff --git a/dev-lang/rust/rust-1.68.0.ebuild b/dev-lang/rust/rust-1.68.0.ebuild new file mode 100644 index 000000000000..4f904c718106 --- /dev/null +++ b/dev-lang/rust/rust-1.68.0.ebuild @@ -0,0 +1,741 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) + +inherit bash-completion-r1 check-reqs estack flag-o-matic llvm multiprocessing \ + multilib multilib-build python-any-r1 rust-toolchain toolchain-funcs verify-sig + +if [[ ${PV} = *beta* ]]; then + betaver=${PV//*beta} + BETA_SNAPSHOT="${betaver:0:4}-${betaver:4:2}-${betaver:6:2}" + MY_P="rustc-beta" + SLOT="beta/${PV}" + SRC="${BETA_SNAPSHOT}/rustc-beta-src.tar.xz -> rustc-${PV}-src.tar.xz" +else + ABI_VER="$(ver_cut 1-2)" + SLOT="stable/${ABI_VER}" + MY_P="rustc-${PV}" + SRC="${MY_P}-src.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +fi + +RUST_STAGE0_VERSION="1.$(($(ver_cut 2) - 1)).1" + +DESCRIPTION="Systems programming language from Mozilla" +HOMEPAGE="https://www.rust-lang.org/" + +SRC_URI=" + https://static.rust-lang.org/dist/${SRC} + verify-sig? ( https://static.rust-lang.org/dist/${SRC}.asc ) + !system-bootstrap? ( $(rust_all_arch_uris rust-${RUST_STAGE0_VERSION}) ) +" + +# keep in sync with llvm ebuild of the same version as bundled one. +ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM AVR BPF Hexagon Lanai Mips MSP430 + NVPTX PowerPC RISCV Sparc SystemZ WebAssembly X86 XCore ) +ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" ) +LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/(-)?} + +LICENSE="|| ( MIT Apache-2.0 ) BSD BSD-1 BSD-2 BSD-4 UoI-NCSA" + +IUSE="clippy cpu_flags_x86_sse2 debug dist doc llvm-libunwind miri nightly parallel-compiler profiler rustfmt rust-analyzer rust-src system-bootstrap system-llvm test wasm ${ALL_LLVM_TARGETS[*]}" + +# Please keep the LLVM dependency block separate. Since LLVM is slotted, +# we need to *really* make sure we're not pulling more than one slot +# simultaneously. + +# How to use it: +# List all the working slots in LLVM_VALID_SLOTS, newest first. +LLVM_VALID_SLOTS=( 15 ) +LLVM_MAX_SLOT="${LLVM_VALID_SLOTS[0]}" + +# splitting usedeps needed to avoid CI/pkgcheck's UncheckableDep limitation +# (-) usedep needed because we may build with older llvm without that target +LLVM_DEPEND="|| ( " +for _s in ${LLVM_VALID_SLOTS[@]}; do + LLVM_DEPEND+=" ( " + for _x in ${ALL_LLVM_TARGETS[@]}; do + LLVM_DEPEND+=" + ${_x}? ( sys-devel/llvm:${_s}[${_x}(-)] ) + wasm? ( sys-devel/lld:${_s} )" + done + LLVM_DEPEND+=" )" +done +unset _s _x +LLVM_DEPEND+=" ) + /dev/null) ) + rustc_version=${rustc_version[0]#rust-bin-} + rustc_version=${rustc_version#rust-} + + [[ -z "${rustc_version}" ]] && die "Failed to determine rust version, check 'eselect rust' output" + + if ver_test "${rustc_version}" -lt "${rustc_wanted}" ; then + eerror "Rust >=${rustc_wanted} is required" + eerror "please run 'eselect rust' and set correct rust version" + die "selected rust version is too old" + elif ver_test "${rustc_version}" -ge "${rustc_toonew}" ; then + eerror "Rust <${rustc_toonew} is required" + eerror "please run 'eselect rust' and set correct rust version" + die "selected rust version is too new" + else + einfo "Using rust ${rustc_version} to build" + fi +} + +pre_build_checks() { + local M=8192 + # multiply requirements by 1.3 if we are doing x86-multilib + if use amd64; then + M=$(( $(usex abi_x86_32 13 10) * ${M} / 10 )) + fi + M=$(( $(usex clippy 128 0) + ${M} )) + M=$(( $(usex miri 128 0) + ${M} )) + M=$(( $(usex rustfmt 256 0) + ${M} )) + # add 2G if we compile llvm and 256M per llvm_target + if ! use system-llvm; then + M=$(( 2048 + ${M} )) + local ltarget + for ltarget in ${ALL_LLVM_TARGETS[@]}; do + M=$(( $(usex ${ltarget} 256 0) + ${M} )) + done + fi + M=$(( $(usex wasm 256 0) + ${M} )) + M=$(( $(usex debug 2 1) * ${M} )) + eshopts_push -s extglob + if is-flagq '-g?(gdb)?([1-9])'; then + M=$(( 15 * ${M} / 10 )) + fi + eshopts_pop + M=$(( $(usex system-bootstrap 0 1024) + ${M} )) + M=$(( $(usex doc 256 0) + ${M} )) + CHECKREQS_DISK_BUILD=${M}M check-reqs_pkg_${EBUILD_PHASE} +} + +llvm_check_deps() { + has_version -r "sys-devel/llvm:${LLVM_SLOT}[${LLVM_TARGET_USEDEPS// /,}]" +} + +# Is LLVM being linked against libc++? +is_libcxx_linked() { + local code='#include +#if defined(_LIBCPP_VERSION) + HAVE_LIBCXX +#endif +' + local out=$($(tc-getCXX) ${CXXFLAGS} ${CPPFLAGS} -x c++ -E -P - <<<"${code}") || return 1 + [[ ${out} == *HAVE_LIBCXX* ]] +} + +pkg_pretend() { + pre_build_checks +} + +pkg_setup() { + pre_build_checks + python-any-r1_pkg_setup + + export LIBGIT2_NO_PKG_CONFIG=1 #749381 + + use system-bootstrap && bootstrap_rust_version_check + + if use system-llvm; then + llvm_pkg_setup + + local llvm_config="$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config" + export LLVM_LINK_SHARED=1 + export RUSTFLAGS="${RUSTFLAGS} -Lnative=$("${llvm_config}" --libdir)" + fi +} + +esetup_unwind_hack() { + # https://bugs.gentoo.org/870280 + # this is a hack needed to bootstrap with libgcc_s linked tarball on llvm-libunwind system. + # it should trigger for internal bootstrap or system-bootstrap with rust-bin. + # the whole idea is for stage0 to bootstrap with fake libgcc_s. + # final stage will receive -L${T}/lib but not -lgcc_s args, producing clean compiler. + local fakelib="${T}/fakelib" + mkdir -p "${fakelib}" || die + # we need both symlinks, one for cargo runtime, other for linker. + ln -s "${ESYSROOT}/usr/lib/libunwind.so" "${fakelib}/libgcc_s.so.1" || die + ln -s "${ESYSROOT}/usr/lib/libunwind.so" "${fakelib}/libgcc_s.so" || die + export LD_LIBRARY_PATH="${fakelib}" + export RUSTFLAGS+=" -L${fakelib}" + # this is a literally magic variable that gets through cargo cache, without it some + # crates ignore RUSTFLAGS. + # this variable can not contain leading space. + export MAGIC_EXTRA_RUSTFLAGS+="${MAGIC_EXTRA_RUSTFLAGS:+ }-L${fakelib}" +} + +src_prepare() { + if ! use system-bootstrap; then + has_version sys-devel/gcc || esetup_unwind_hack + local rust_stage0_root="${WORKDIR}"/rust-stage0 + local rust_stage0="rust-${RUST_STAGE0_VERSION}-$(rust_abi)" + + "${WORKDIR}/${rust_stage0}"/install.sh --disable-ldconfig \ + --without=rust-docs-json-preview,rust-docs --destdir="${rust_stage0_root}" --prefix=/ || die + fi + + default +} + +src_configure() { + filter-flags '-flto*' # https://bugs.gentoo.org/862109 https://bugs.gentoo.org/866231 + + local rust_target="" rust_targets="" arch_cflags + + # Collect rust target names to compile standard libs for all ABIs. + for v in $(multilib_get_enabled_abi_pairs); do + rust_targets+=",\"$(rust_abi $(get_abi_CHOST ${v##*.}))\"" + done + if use wasm; then + rust_targets+=",\"wasm32-unknown-unknown\"" + if use system-llvm; then + # un-hardcode rust-lld linker for this target + # https://bugs.gentoo.org/715348 + sed -i '/linker:/ s/rust-lld/wasm-ld/' compiler/rustc_target/src/spec/wasm_base.rs || die + fi + fi + rust_targets="${rust_targets#,}" + + local tools='"cargo"' + use clippy && tools+=',"clippy"' + use miri && tools+=',"miri"' + use profiler && tools+=',"rust-demangler"' + use rustfmt && tools+=',"rustfmt"' + use rust-analyzer && tools+=',"rust-analyzer","analysis"' + use rust-src && tools+=',"src"' + + local rust_stage0_root + if use system-bootstrap; then + local printsysroot + printsysroot="$(rustc --print sysroot || die "Can't determine rust's sysroot")" + rust_stage0_root="${printsysroot}" + else + rust_stage0_root="${WORKDIR}"/rust-stage0 + fi + # in case of prefix it will be already prefixed, as --print sysroot returns full path + [[ -d ${rust_stage0_root} ]] || die "${rust_stage0_root} is not a directory" + + rust_target="$(rust_abi)" + + local cm_btype="$(usex debug DEBUG RELEASE)" + cat <<- _EOF_ > "${S}"/config.toml + changelog-seen = 2 + [llvm] + download-ci-llvm = false + optimize = $(toml_usex !debug) + release-debuginfo = $(toml_usex debug) + assertions = $(toml_usex debug) + ninja = true + targets = "${LLVM_TARGETS// /;}" + experimental-targets = "" + link-shared = $(toml_usex system-llvm) + $(if is_libcxx_linked; then + # https://bugs.gentoo.org/732632 + echo "use-libcxx = true" + echo "static-libstdcpp = false" + fi) + $(case "${rust_target}" in + i586-*-linux-*) + # https://github.com/rust-lang/rust/issues/93059 + echo 'cflags = "-fcf-protection=none"' + echo 'cxxflags = "-fcf-protection=none"' + echo 'ldflags = "-fcf-protection=none"' + ;; + *) + ;; + esac) + [llvm.build-config] + CMAKE_VERBOSE_MAKEFILE = "ON" + CMAKE_C_FLAGS_${cm_btype} = "${CFLAGS}" + CMAKE_CXX_FLAGS_${cm_btype} = "${CXXFLAGS}" + CMAKE_EXE_LINKER_FLAGS_${cm_btype} = "${LDFLAGS}" + CMAKE_MODULE_LINKER_FLAGS_${cm_btype} = "${LDFLAGS}" + CMAKE_SHARED_LINKER_FLAGS_${cm_btype} = "${LDFLAGS}" + CMAKE_STATIC_LINKER_FLAGS_${cm_btype} = "${ARFLAGS}" + [build] + build-stage = 2 + test-stage = 2 + build = "${rust_target}" + host = ["${rust_target}"] + target = [${rust_targets}] + cargo = "${rust_stage0_root}/bin/cargo" + rustc = "${rust_stage0_root}/bin/rustc" + rustfmt = "${rust_stage0_root}/bin/rustfmt" + docs = $(toml_usex doc) + compiler-docs = false + submodules = false + python = "${EPYTHON}" + locked-deps = true + vendor = true + extended = true + tools = [${tools}] + verbose = 2 + sanitizers = false + profiler = $(toml_usex profiler) + cargo-native-static = false + [install] + prefix = "${EPREFIX}/usr/lib/${PN}/${PV}" + sysconfdir = "etc" + docdir = "share/doc/rust" + bindir = "bin" + libdir = "lib" + mandir = "share/man" + [rust] + # https://github.com/rust-lang/rust/issues/54872 + codegen-units-std = 1 + optimize = true + debug = $(toml_usex debug) + debug-assertions = $(toml_usex debug) + debug-assertions-std = $(toml_usex debug) + debuginfo-level = $(usex debug 2 0) + debuginfo-level-rustc = $(usex debug 2 0) + debuginfo-level-std = $(usex debug 2 0) + debuginfo-level-tools = $(usex debug 2 0) + debuginfo-level-tests = 0 + backtrace = true + incremental = false + default-linker = "$(tc-getCC)" + parallel-compiler = $(toml_usex parallel-compiler) + channel = "$(usex nightly nightly stable)" + description = "gentoo" + rpath = false + verbose-tests = true + optimize-tests = $(toml_usex !debug) + codegen-tests = true + dist-src = false + remap-debuginfo = true + lld = $(usex system-llvm false $(toml_usex wasm)) + # only deny warnings if doc+wasm are NOT requested, documenting stage0 wasm std fails without it + # https://github.com/rust-lang/rust/issues/74976 + # https://github.com/rust-lang/rust/issues/76526 + deny-warnings = $(usex wasm $(usex doc false true) true) + backtrace-on-ice = true + jemalloc = false + [dist] + src-tarball = false + compression-formats = ["xz"] + _EOF_ + + for v in $(multilib_get_enabled_abi_pairs); do + rust_target=$(rust_abi $(get_abi_CHOST ${v##*.})) + arch_cflags="$(get_abi_CFLAGS ${v##*.})" + + export CFLAGS_${rust_target//-/_}="${arch_cflags}" + + cat <<- _EOF_ >> "${S}"/config.toml + [target.${rust_target}] + ar = "$(tc-getAR)" + cc = "$(tc-getCC)" + cxx = "$(tc-getCXX)" + linker = "$(tc-getCC)" + ranlib = "$(tc-getRANLIB)" + llvm-libunwind = "$(usex llvm-libunwind $(usex system-llvm system in-tree) no)" + _EOF_ + if use system-llvm; then + cat <<- _EOF_ >> "${S}"/config.toml + llvm-config = "$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config" + _EOF_ + fi + # by default librustc_target/spec/linux_musl_base.rs sets base.crt_static_default = true; + # but we patch it and set to false here as well + if use elibc_musl; then + cat <<- _EOF_ >> "${S}"/config.toml + crt-static = false + _EOF_ + fi + done + if use wasm; then + cat <<- _EOF_ >> "${S}"/config.toml + [target.wasm32-unknown-unknown] + linker = "$(usex system-llvm lld rust-lld)" + # wasm target does not have profiler_builtins https://bugs.gentoo.org/848483 + profiler = false + _EOF_ + fi + + if [[ -n ${I_KNOW_WHAT_I_AM_DOING_CROSS} ]]; then # whitespace intentionally shifted below + # experimental cross support + # discussion: https://bugs.gentoo.org/679878 + # TODO: c*flags, clang, system-llvm, cargo.eclass target support + # it would be much better if we could split out stdlib + # complilation to separate ebuild and abuse CATEGORY to + # just install to /usr/lib/rustlib/ + + # extra targets defined as a bash array + # spec format: :: + # best place would be /etc/portage/env/dev-lang/rust + # Example: + # RUST_CROSS_TARGETS=( + # "AArch64:aarch64-unknown-linux-gnu:aarch64-unknown-linux-gnu" + # ) + # no extra hand holding is done, no target transformations, all + # values are passed as-is with just basic checks, so it's up to user to supply correct values + # valid rust targets can be obtained with + # rustc --print target-list + # matching cross toolchain has to be installed + # matching LLVM_TARGET has to be enabled for both rust and llvm (if using system one) + # only gcc toolchains installed with crossdev are checked for now. + + # BUG: we can't pass host flags to cross compiler, so just filter for now + # BUG: this should be more fine-grained. + filter-flags '-mcpu=*' '-march=*' '-mtune=*' + + local cross_target_spec + for cross_target_spec in "${RUST_CROSS_TARGETS[@]}";do + # extracts first element form :: + local cross_llvm_target="${cross_target_spec%%:*}" + # extracts toolchain triples, : + local cross_triples="${cross_target_spec#*:}" + # extracts first element after before : separator + local cross_rust_target="${cross_triples%%:*}" + # extracts last element after : separator + local cross_toolchain="${cross_triples##*:}" + use llvm_targets_${cross_llvm_target} || die "need llvm_targets_${cross_llvm_target} target enabled" + command -v ${cross_toolchain}-gcc > /dev/null 2>&1 || die "need ${cross_toolchain} cross toolchain" + + cat <<- _EOF_ >> "${S}"/config.toml + [target.${cross_rust_target}] + ar = "${cross_toolchain}-ar" + cc = "${cross_toolchain}-gcc" + cxx = "${cross_toolchain}-g++" + linker = "${cross_toolchain}-gcc" + ranlib = "${cross_toolchain}-ranlib" + _EOF_ + if use system-llvm; then + cat <<- _EOF_ >> "${S}"/config.toml + llvm-config = "$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config" + _EOF_ + fi + if [[ "${cross_toolchain}" == *-musl* ]]; then + cat <<- _EOF_ >> "${S}"/config.toml + musl-root = "$(${cross_toolchain}-gcc -print-sysroot)/usr" + _EOF_ + fi + + # append cross target to "normal" target list + # example 'target = ["powerpc64le-unknown-linux-gnu"]' + # becomes 'target = ["powerpc64le-unknown-linux-gnu","aarch64-unknown-linux-gnu"]' + + rust_targets="${rust_targets},\"${cross_rust_target}\"" + sed -i "/^target = \[/ s#\[.*\]#\[${rust_targets}\]#" config.toml || die + + ewarn + ewarn "Enabled ${cross_rust_target} rust target" + ewarn "Using ${cross_toolchain} cross toolchain" + ewarn + if ! has_version -b 'sys-devel/binutils[multitarget]' ; then + ewarn "'sys-devel/binutils[multitarget]' is not installed" + ewarn "'strip' will be unable to strip cross libraries" + ewarn "cross targets will be installed with full debug information" + ewarn "enable 'multitarget' USE flag for binutils to be able to strip object files" + ewarn + ewarn "Alternatively llvm-strip can be used, it supports stripping any target" + ewarn "define STRIP=\"llvm-strip\" to use it (experimental)" + ewarn + fi + done + fi # I_KNOW_WHAT_I_AM_DOING_CROSS + + einfo "Rust configured with the following flags:" + echo + echo RUSTFLAGS="\"${RUSTFLAGS}\"" + echo RUSTFLAGS_BOOTSTRAP="\"${RUSTFLAGS_BOOTSTRAP}\"" + echo RUSTFLAGS_NOT_BOOTSTRAP="\"${RUSTFLAGS_NOT_BOOTSTRAP}\"" + echo MAGIC_EXTRA_RUSTFLAGS="\"${MAGIC_EXTRA_RUSTFLAGS}\"" + env | grep "CARGO_TARGET_.*_RUSTFLAGS=" + env | grep "CFLAGS_.*" + echo + einfo "config.toml contents:" + cat "${S}"/config.toml || die + echo +} + +src_compile() { + RUST_BACKTRACE=1 "${EPYTHON}" ./x.py build -vv --config="${S}"/config.toml -j$(makeopts_jobs) || die +} + +src_test() { + # https://rustc-dev-guide.rust-lang.org/tests/intro.html + + # those are basic and codegen tests. + local tests=( + codegen + codegen-units + compile-fail + incremental + mir-opt + pretty + run-make + ) + + # fails if llvm is not built with ALL targets. + # and known to fail with system llvm sometimes. + use system-llvm || tests+=( assembly ) + + # fragile/expensive/less important tests + # or tests that require extra builds + # TODO: instead of skipping, just make some nonfatal. + if [[ ${ERUST_RUN_EXTRA_TESTS:-no} != no ]]; then + tests+=( + rustdoc + rustdoc-js + rustdoc-js-std + rustdoc-ui + run-make-fulldeps + ui + ui-fulldeps + ) + fi + + local i failed=() + einfo "rust_src_test: enabled tests ${tests[@]/#/src/test/}" + for i in "${tests[@]}"; do + local t="src/test/${i}" + einfo "rust_src_test: running ${t}" + if ! RUST_BACKTRACE=1 "${EPYTHON}" ./x.py test -vv --config="${S}"/config.toml \ + -j$(makeopts_jobs) --no-doc --no-fail-fast "${t}" + then + failed+=( "${t}" ) + eerror "rust_src_test: ${t} failed" + fi + done + + if [[ ${#failed[@]} -ne 0 ]]; then + eerror "rust_src_test: failure summary: ${failed[@]}" + die "aborting due to test failures" + fi +} + +src_install() { + DESTDIR="${D}" "${EPYTHON}" ./x.py install -vv --config="${S}"/config.toml -j$(makeopts_jobs) || die + + # bug #689562, #689160 + rm -v "${ED}/usr/lib/${PN}/${PV}/etc/bash_completion.d/cargo" || die + rmdir -v "${ED}/usr/lib/${PN}/${PV}"/etc{/bash_completion.d,} || die + newbashcomp src/tools/cargo/src/etc/cargo.bashcomp.sh cargo + + local symlinks=( + cargo + rustc + rustdoc + rust-gdb + rust-gdbgui + rust-lldb + ) + + use clippy && symlinks+=( clippy-driver cargo-clippy ) + use miri && symlinks+=( miri cargo-miri ) + use profiler && symlinks+=( rust-demangler ) + use rustfmt && symlinks+=( rustfmt cargo-fmt ) + use rust-analyzer && symlinks+=( rust-analyzer ) + + einfo "installing eselect-rust symlinks and paths: ${symlinks[@]}" + local i + for i in "${symlinks[@]}"; do + # we need realpath on /usr/bin/* symlink return version-appended binary path. + # so /usr/bin/rustc should point to /usr/lib/rust//bin/rustc- + # need to fix eselect-rust to remove this hack. + local ver_i="${i}-${PV}" + if [[ -f "${ED}/usr/lib/${PN}/${PV}/bin/${i}" ]]; then + einfo "Installing ${i} symlink" + ln -v "${ED}/usr/lib/${PN}/${PV}/bin/${i}" "${ED}/usr/lib/${PN}/${PV}/bin/${ver_i}" || die + else + ewarn "${i} symlink requested, but source file not found" + ewarn "please report this" + fi + dosym "../lib/${PN}/${PV}/bin/${ver_i}" "/usr/bin/${ver_i}" + done + + # symlinks to switch components to active rust in eselect + dosym "${PV}/lib" "/usr/lib/${PN}/lib-${PV}" + dosym "${PV}/libexec" "/usr/lib/${PN}/libexec-${PV}" + dosym "${PV}/share/man" "/usr/lib/${PN}/man-${PV}" + dosym "rust/${PV}/lib/rustlib" "/usr/lib/rustlib-${PV}" + dosym "../../lib/${PN}/${PV}/share/doc/rust" "/usr/share/doc/${P}" + + newenvd - "50${P}" <<-_EOF_ + LDPATH="${EPREFIX}/usr/lib/rust/lib" + MANPATH="${EPREFIX}/usr/lib/rust/man" + _EOF_ + + rm -rf "${ED}/usr/lib/${PN}/${PV}"/*.old || die + rm -rf "${ED}/usr/lib/${PN}/${PV}/doc"/*.old || die + + # note: eselect-rust adds EROOT to all paths below + cat <<-_EOF_ > "${T}/provider-${P}" + /usr/bin/cargo + /usr/bin/rustdoc + /usr/bin/rust-gdb + /usr/bin/rust-gdbgui + /usr/bin/rust-lldb + /usr/lib/rustlib + /usr/lib/rust/lib + /usr/lib/rust/libexec + /usr/lib/rust/man + /usr/share/doc/rust + _EOF_ + + if use clippy; then + echo /usr/bin/clippy-driver >> "${T}/provider-${P}" + echo /usr/bin/cargo-clippy >> "${T}/provider-${P}" + fi + if use miri; then + echo /usr/bin/miri >> "${T}/provider-${P}" + echo /usr/bin/cargo-miri >> "${T}/provider-${P}" + fi + if use profiler; then + echo /usr/bin/rust-demangler >> "${T}/provider-${P}" + fi + if use rustfmt; then + echo /usr/bin/rustfmt >> "${T}/provider-${P}" + echo /usr/bin/cargo-fmt >> "${T}/provider-${P}" + fi + if use rust-analyzer; then + echo /usr/bin/rust-analyzer >> "${T}/provider-${P}" + fi + + insinto /etc/env.d/rust + doins "${T}/provider-${P}" + + if use dist; then + insinto "/usr/lib/${PN}/${PV}/dist" + doins -r "${S}/build/dist/." + fi +} + +pkg_postinst() { + eselect rust update + + if has_version sys-devel/gdb || has_version dev-util/lldb; then + elog "Rust installs a helper script for calling GDB and LLDB," + elog "for your convenience it is installed under /usr/bin/rust-{gdb,lldb}-${PV}." + fi + + if has_version app-editors/emacs; then + elog "install app-emacs/rust-mode to get emacs support for rust." + fi + + if has_version app-editors/gvim || has_version app-editors/vim; then + elog "install app-vim/rust-vim to get vim support for rust." + fi +} + +pkg_postrm() { + eselect rust cleanup +} diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index e1661458c4d5..c4fa7d812400 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/aml/Manifest b/dev-libs/aml/Manifest index 5910a49a25cb..908594ea00c8 100644 --- a/dev-libs/aml/Manifest +++ b/dev-libs/aml/Manifest @@ -1 +1 @@ -DIST aml-0.2.2.tar.gz 20442 BLAKE2B 3ea4e03ba511096fc02db628d2591ddf247f79ccdf7638614a2a20fe74dfa563b555662492d976371b407ab013bbb83c193c047fca48f7f08b05cf47e6a87ab4 SHA512 3cb5bf28186a9056b579dd76440202837d96a7abde9427c45a810068d5e051c642303cd73b012e3b093ffb1577896753a50fcc508b2a30c49146033bb74156e7 +DIST aml-0.3.0.tar.gz 21070 BLAKE2B 09b8818ba63eb0f8c36e90385ee0787cad45b80c71cfcf439f93560f56269d52468bbdd2c0e8ad6cbf78b8fd0dd715aa107bfeb3918f55671ffca3f8daab56e3 SHA512 7c3347ef47ace8a14860e2b46937c8ade3712aa75a8c36845594fb4fa6ca26c35320b5234574accff451ea8302f23075acbe1a1b0392f5fbcbbbda20640be1fd diff --git a/dev-libs/aml/aml-0.2.2.ebuild b/dev-libs/aml/aml-0.3.0.ebuild similarity index 76% rename from dev-libs/aml/aml-0.2.2.ebuild rename to dev-libs/aml/aml-0.3.0.ebuild index f455ef42c8e7..a7c7dfbf2a1a 100644 --- a/dev-libs/aml/aml-0.2.2.ebuild +++ b/dev-libs/aml/aml-0.3.0.ebuild @@ -22,12 +22,16 @@ IUSE="examples" DEPEND="elibc_musl? ( sys-libs/queue-standalone )" +PATCHES=( + "${FILESDIR}"/${P}-queue.patch +) + src_prepare() { default - # The bundled copy includes cdefs which breaks on musl and - # this header is already available on glibc. - # bug #828806 + # The bundled copy includes cdefs which breaks on musl and this header is + # already available on glibc. See bug #828806 and + # https://github.com/any1/aml/issues/11. rm include/sys/queue.h || die } diff --git a/dev-libs/aml/aml-9999.ebuild b/dev-libs/aml/aml-9999.ebuild index abe16736f7e8..a7c7dfbf2a1a 100644 --- a/dev-libs/aml/aml-9999.ebuild +++ b/dev-libs/aml/aml-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020-2022 Gentoo Authors +# Copyright 2020-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/any1/aml.git" else SRC_URI="https://github.com/any1/aml/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~loong ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~riscv ~x86" fi LICENSE="ISC" @@ -22,12 +22,16 @@ IUSE="examples" DEPEND="elibc_musl? ( sys-libs/queue-standalone )" +PATCHES=( + "${FILESDIR}"/${P}-queue.patch +) + src_prepare() { default - # The bundled copy includes cdefs which breaks on musl and - # this header is already available on glibc. - # bug #828806 + # The bundled copy includes cdefs which breaks on musl and this header is + # already available on glibc. See bug #828806 and + # https://github.com/any1/aml/issues/11. rm include/sys/queue.h || die } diff --git a/dev-libs/aml/files/aml-0.3.0-queue.patch b/dev-libs/aml/files/aml-0.3.0-queue.patch new file mode 100644 index 000000000000..299379a934f6 --- /dev/null +++ b/dev-libs/aml/files/aml-0.3.0-queue.patch @@ -0,0 +1,21 @@ +The bundled queue.h breaks on musl, but the standard version lacks +LIST_FOREACH_SAFE, which appears to come from FreeBSD, so patch that back +in here. See https://github.com/any1/aml/issues/11. + +diff -Naur a/src/aml.c b/src/aml.c +--- a/src/aml.c 2023-01-22 12:57:53.000000000 +0000 ++++ b/src/aml.c 2023-03-19 10:10:11.034092428 +0000 +@@ -31,6 +31,13 @@ + #include "sys/queue.h" + #include "thread-pool.h" + ++#ifndef LIST_FOREACH_SAFE ++#define LIST_FOREACH_SAFE(var, head, field, tvar) \ ++ for ((var) = LIST_FIRST((head)); \ ++ (var) && ((tvar) = LIST_NEXT((var), field), 1); \ ++ (var) = (tvar)) ++#endif ++ + #define EXPORT __attribute__((visibility("default"))) + + #define EVENT_MASK_DEFAULT AML_EVENT_READ diff --git a/dev-libs/apr-util/files/apr-util-1.6.1-fix-gdbm-error-handling.patch b/dev-libs/apr-util/files/apr-util-1.6.1-fix-gdbm-error-handling.patch deleted file mode 100644 index 92a4738e66a5..000000000000 --- a/dev-libs/apr-util/files/apr-util-1.6.1-fix-gdbm-error-handling.patch +++ /dev/null @@ -1,79 +0,0 @@ -# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=889170 -# needs to be submitted upstream ---- apr-util.orig/dbm/apr_dbm_gdbm.c -+++ apr-util/dbm/apr_dbm_gdbm.c -@@ -36,13 +36,22 @@ - static apr_status_t g2s(int gerr) - { - if (gerr == -1) { -- /* ### need to fix this */ -- return APR_EGENERAL; -+ return APR_OS_START_USEERR + gdbm_errno; - } - - return APR_SUCCESS; - } - -+static apr_status_t gdat2s(datum d) -+{ -+ if (d.dptr == NULL) { -+ return APR_OS_START_USEERR + gdbm_errno; -+ } -+ -+ return APR_SUCCESS; -+} -+ -+ - static apr_status_t datum_cleanup(void *dptr) - { - if (dptr) -@@ -55,19 +64,15 @@ static apr_status_t set_error(apr_dbm_t - { - apr_status_t rv = APR_SUCCESS; - -- /* ### ignore whatever the DBM said (dbm_said); ask it explicitly */ -- -- if ((dbm->errcode = gdbm_errno) == GDBM_NO_ERROR) { -+ if (dbm_said == APR_SUCCESS) { -+ dbm->errcode = GDBM_NO_ERROR; - dbm->errmsg = NULL; - } - else { -+ dbm->errcode = dbm_said; - dbm->errmsg = gdbm_strerror(gdbm_errno); -- rv = APR_EGENERAL; /* ### need something better */ - } - -- /* captured it. clear it now. */ -- gdbm_errno = GDBM_NO_ERROR; -- - return rv; - } - -@@ -144,7 +149,7 @@ static apr_status_t vt_gdbm_fetch(apr_db - - /* store the error info into DBM, and return a status code. Also, note - that *pvalue should have been cleared on error. */ -- return set_error(dbm, APR_SUCCESS); -+ return set_error(dbm, gdat2s(rd)); - } - - static apr_status_t vt_gdbm_store(apr_dbm_t *dbm, apr_datum_t key, -@@ -203,7 +208,7 @@ static apr_status_t vt_gdbm_firstkey(apr - apr_pool_cleanup_null); - - /* store any error info into DBM, and return a status code. */ -- return set_error(dbm, APR_SUCCESS); -+ return set_error(dbm, gdat2s(rd)); - } - - static apr_status_t vt_gdbm_nextkey(apr_dbm_t *dbm, apr_datum_t *pkey) -@@ -223,7 +228,7 @@ static apr_status_t vt_gdbm_nextkey(apr_ - apr_pool_cleanup_null); - - /* store any error info into DBM, and return a status code. */ -- return set_error(dbm, APR_SUCCESS); -+ return set_error(dbm, gdat2s(rd)); - } - - static void vt_gdbm_freedatum(apr_dbm_t *dbm, apr_datum_t data) diff --git a/dev-libs/apr-util/files/apr-util-1.6.1-mariadb-support.patch b/dev-libs/apr-util/files/apr-util-1.6.1-mariadb-support.patch deleted file mode 100644 index 137e99f97637..000000000000 --- a/dev-libs/apr-util/files/apr-util-1.6.1-mariadb-support.patch +++ /dev/null @@ -1,116 +0,0 @@ -Backport of http://svn.apache.org/viewvc?rev=1872060&view=rev - ---- a/build/dbd.m4 -+++ b/build/dbd.m4 -@@ -163,10 +163,15 @@ AC_DEFUN([APU_CHECK_DBD_MYSQL], [ - old_cppflags="$CPPFLAGS" - old_ldflags="$LDFLAGS" - -+ my_library="mysqlclient" -+ - AC_ARG_WITH([mysql], APR_HELP_STRING([--with-mysql=DIR], [enable MySQL DBD driver]), - [ - if test "$withval" = "yes"; then - AC_PATH_PROG([MYSQL_CONFIG],[mysql_config]) -+ if test "x$MYSQL_CONFIG" = "x"; then -+ AC_PATH_TOOL([MYSQL_CONFIG],[mariadb_config]) -+ fi - if test "x$MYSQL_CONFIG" != 'x'; then - mysql_CPPFLAGS="`$MYSQL_CONFIG --include`" - mysql_LDFLAGS="`$MYSQL_CONFIG --libs_r | sed -e 's/-l[[^ ]]\+//g'`" -@@ -174,29 +179,37 @@ AC_DEFUN([APU_CHECK_DBD_MYSQL], [ - - APR_ADDTO(CPPFLAGS, [$mysql_CPPFLAGS]) - APR_ADDTO(LIBS, [$mysql_LIBS]) -+ -+ if $MYSQL_CONFIG --libs_r | grep -q mariadb; then -+ my_library="mariadb" -+ fi - fi - -- AC_CHECK_HEADERS([mysql.h my_global.h my_sys.h], -- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]), -- [apu_have_mysql=0; break], -- [#include ]) -- if test "$apu_have_mysql" = "0"; then -- AC_CHECK_HEADERS([mysql/mysql.h mysql/my_global.h mysql/my_sys.h], -- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]), -- [apu_have_mysql=0; break], -- [#include ]) -+ AC_CHECK_HEADERS([mysql.h errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break]) -+ if test "$apr_have_mysql" = "0"; then -+ AC_CHECK_HEADERS([mysql/mysql.h mysql/errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break]) - fi -- if test "$apu_have_mysql" != "0" && test "x$MYSQL_CONFIG" != 'x'; then -+ if test "$apr_have_mysql" = "1"; then -+ AC_CHECK_HEADERS([my_global.h my_sys.h mysql/my_global.h mysql/my_sys.h]) -+ AC_CHECK_LIB($my_library, mysql_init,, [apu_have_mysql=0]) -+ fi -+ if test "$apu_have_mysql" = "1" && test "x$MYSQL_CONFIG" != 'x'; then - APR_ADDTO(APRUTIL_PRIV_INCLUDES, [$mysql_CPPFLAGS]) - fi - elif test "$withval" = "no"; then - : - else - AC_PATH_PROG([MYSQL_CONFIG],[mysql_config],,[$withval/bin]) -+ if test "x$MYSQL_CONFIG" = "x"; then -+ AC_PATH_TOOL([MYSQL_CONFIG],[mariadb_config],,[$withval/bin]) -+ fi - if test "x$MYSQL_CONFIG" != 'x'; then - mysql_CPPFLAGS="`$MYSQL_CONFIG --include`" - mysql_LDFLAGS="`$MYSQL_CONFIG --libs_r | sed -e 's/-l[[^ ]]\+//g'`" - mysql_LIBS="`$MYSQL_CONFIG --libs_r`" -+ if $MYSQL_CONFIG --libs_r | grep -q mariadb; then -+ my_library="mariadb" -+ fi - else - mysql_CPPFLAGS="-I$withval/include" - mysql_LDFLAGS="-L$withval/lib " -@@ -207,18 +220,15 @@ AC_DEFUN([APU_CHECK_DBD_MYSQL], [ - APR_ADDTO(LIBS, [$mysql_LIBS]) - - AC_MSG_NOTICE(checking for mysql in $withval) -- AC_CHECK_HEADERS([mysql.h my_global.h my_sys.h], -- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]), -- [apu_have_mysql=0; break], -- [#include ]) -- -- if test "$apu_have_mysql" != "1"; then -- AC_CHECK_HEADERS([mysql/mysql.h mysql/my_global.h mysql/my_sys.h], -- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]), -- [apu_have_mysql=0; break], -- [#include ]) -+ AC_CHECK_HEADERS([mysql.h errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break]) -+ if test "$apr_have_mysql" = "0"; then -+ AC_CHECK_HEADERS([mysql/mysql.h mysql/errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break]) -+ fi -+ if test "$apr_have_mysql" = "1"; then -+ AC_CHECK_HEADERS([my_global.h my_sys.h mysql/my_global.h mysql/my_sys.h]) -+ AC_CHECK_LIB($my_library, mysql_init,, [apu_have_mysql=0]) - fi -- if test "$apu_have_mysql" != "0"; then -+ if test "$apu_have_mysql" = "1"; then - APR_ADDTO(APRUTIL_PRIV_INCLUDES, [$mysql_CPPFLAGS]) - fi - fi -@@ -229,7 +239,7 @@ AC_DEFUN([APU_CHECK_DBD_MYSQL], [ - dnl Since we have already done the AC_CHECK_LIB tests, if we have it, - dnl we know the library is there. - if test "$apu_have_mysql" = "1"; then -- APR_ADDTO(LDADD_dbd_mysql, [$mysql_LDFLAGS -lmysqlclient $mysql_LIBS]) -+ APR_ADDTO(LDADD_dbd_mysql, [$mysql_LDFLAGS -l$my_library $mysql_LIBS]) - fi - AC_SUBST(LDADD_dbd_mysql) - ---- a/dbd/apr_dbd_mysql.c -+++ b/dbd/apr_dbd_mysql.c -@@ -1262,7 +1262,9 @@ static apr_status_t thread_end(void *data) - - static void dbd_mysql_init(apr_pool_t *pool) - { -+#if MYSQL_VERSION_ID < 100000 - my_init(); -+#endif - mysql_thread_init(); - - /* FIXME: this is a guess; find out what it really does */ diff --git a/dev-libs/apr/apr-1.7.2-r1.ebuild b/dev-libs/apr/apr-1.7.2-r1.ebuild new file mode 100644 index 000000000000..9ab51b0ca62a --- /dev/null +++ b/dev-libs/apr/apr-1.7.2-r1.ebuild @@ -0,0 +1,170 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools toolchain-funcs + +DESCRIPTION="Apache Portable Runtime Library" +HOMEPAGE="https://apr.apache.org/" +SRC_URI="mirror://apache/apr/${P}.tar.bz2" + +LICENSE="Apache-2.0" +SLOT="1/${PV%.*}" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc old-kernel selinux static-libs +urandom" + +# See bug #815265 for libcrypt dependency +DEPEND=" + virtual/libcrypt:= + elibc_glibc? ( >=sys-apps/util-linux-2.16 ) +" +RDEPEND=" + ${DEPEND} + selinux? ( sec-policy/selinux-base-policy ) +" +BDEPEND=" + >=sys-devel/libtool-2.4.2 + doc? ( app-doc/doxygen ) +" + +DOCS=( CHANGES NOTICE README ) + +PATCHES=( + "${FILESDIR}"/${PN}-1.5.0-mint.patch + "${FILESDIR}"/${PN}-1.6.3-skip-known-failing-tests.patch + "${FILESDIR}"/${PN}-1.7.2-libtool.patch + "${FILESDIR}"/${PN}-1.7.2-sysroot.patch # bug #385775 + "${FILESDIR}"/${PN}-1.7.2-fix-pkgconfig-libs.patch + "${FILESDIR}"/${PN}-1.7.2-respect-flags.patch + "${FILESDIR}"/${PN}-1.7.2-autoconf-2.72.patch + "${FILESDIR}"/config.layout.patch +) + +src_prepare() { + default + + mv configure.in configure.ac || die + AT_M4DIR="build" eautoreconf +} + +src_configure() { + tc-export AS CC CPP + + local myconf=( + --enable-layout=gentoo + --enable-nonportable-atomics + --enable-posix-shm + --enable-threads + $(use_enable static-libs static) + --with-installbuilddir="${EPREFIX}"/usr/share/${PN}/build + ) + + tc-is-static-only && myconf+=( --disable-dso ) + + if use old-kernel; then + local apr_cv_accept4 apr_cv_dup3 apr_cv_epoll_create1 apr_cv_sock_cloexec + export apr_cv_accept4="no" + export apr_cv_dup3="no" + export apr_cv_epoll_create1="no" + export apr_cv_sock_cloexec="no" + fi + + if tc-is-cross-compiler; then + # The apache project relies heavily on AC_TRY_RUN and doesn't + # have any sane cross-compiling fallback logic. + export \ + ac_cv_file__dev_zero="yes" \ + ac_cv_func_sem_open="yes" \ + ac_cv_mmap__dev_zero="yes" \ + ac_cv_negative_eai="yes" \ + ac_cv_o_nonblock_inherited="no" \ + ac_cv_struct_rlimit="yes" \ + ap_cv_atomic_builtins="yes" \ + apr_cv_accept4="yes" \ + apr_cv_dup3="yes" \ + apr_cv_epoll="yes" \ + apr_cv_epoll_create1="yes" \ + apr_cv_gai_addrconfig="yes" \ + apr_cv_mutex_recursive="yes" \ + apr_cv_mutex_robust_shared="yes" \ + apr_cv_process_shared_works="yes" \ + apr_cv_pthreads_lib="-pthread" \ + apr_cv_sock_cloexec="yes" \ + apr_cv_tcp_nodelay_with_cork="yes" + fi + + if use urandom; then + myconf+=( --with-devrandom=/dev/urandom ) + elif (( ${CHOST#*-hpux11.} <= 11 )); then + : # no /dev/*random on hpux11.11 and before, apr detects this. + else + myconf+=( --with-devrandom=/dev/random ) + fi + + # shl_load does not search runpath, but hpux11 supports dlopen + if [[ ${CHOST} == *-hpux11* ]]; then + myconf+=( --enable-dso=dlfcn ) + elif [[ ${CHOST} == *-solaris2.10 ]]; then + local atomic_contents=$(<$([[ ${CHOST} != ${CBUILD} ]] && echo "${EPREFIX}/usr/${CHOST}")/usr/include/atomic.h) + + case "${atomic_contents}" in + *atomic_cas_ptr*) + ;; + *) + local patch_id=$([[ ${CHOST} == sparc* ]] && echo 118884 || echo 118885) + + elog "You do not have Solaris Patch ID ${patch_id} (Problem 4954703) installed on your host ($(hostname))," + elog "using generic atomic operations instead." + + myconf+=( --disable-nonportable-atomics ) + ;; + esac + else + if use ppc || use sparc || use mips; then + # Avoid libapr containing undefined references (underlinked) + # undefined reference to `__sync_val_compare_and_swap_8' + # (May be possible to fix via libatomic linkage in future?) + # bug #740464 + myconf+=( --disable-nonportable-atomics ) + fi + fi + + econf "${myconf[@]}" +} + +src_compile() { + if tc-is-cross-compiler; then + # This header is the same across targets, so use the build compiler. + emake tools/gen_test_char + + tc-export_build_env BUILD_CC + ${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_CPPFLAGS} ${BUILD_LDFLAGS} \ + tools/gen_test_char.c -o tools/gen_test_char || die + fi + + emake all $(usev doc dox) +} + +src_test() { + # Building tests in parallel is broken + emake -j1 check +} + +src_install() { + default + + if ! use static-libs; then + find "${ED}" -name '*.la' -delete || die + fi + + if use doc; then + docinto html + dodoc -r docs/dox/html/* + fi + + # This file is only used on AIX systems, which Gentoo is not, + # and causes collisions between the SLOTs, so remove it. + # Even in Prefix, we don't need this on AIX. + rm "${ED}/usr/$(get_libdir)/apr.exp" || die +} diff --git a/dev-libs/apr/files/apr-1.5.0-cross-types.patch b/dev-libs/apr/files/apr-1.5.0-cross-types.patch deleted file mode 100644 index 266e5676817f..000000000000 --- a/dev-libs/apr/files/apr-1.5.0-cross-types.patch +++ /dev/null @@ -1,63 +0,0 @@ -use standard AC_CHECK_SIZEOF as it supports non-builtin types and -supports cross-compiling sanely - -https://issues.apache.org/bugzilla/show_bug.cgi?id=56053 - ---- a/configure.in -+++ b/configure.in -@@ -1684,7 +1684,7 @@ else - socklen_t_value="int" - fi - --APR_CHECK_SIZEOF_EXTENDED([#include ], pid_t, 8) -+AC_CHECK_SIZEOF(pid_t) - - if test "$ac_cv_sizeof_pid_t" = "$ac_cv_sizeof_short"; then - pid_t_fmt='#define APR_PID_T_FMT "hd"' -@@ -1753,7 +1753,7 @@ APR_CHECK_TYPES_COMPATIBLE(ssize_t, long, [ssize_t_fmt="ld"]) - APR_CHECK_TYPES_COMPATIBLE(size_t, unsigned int, [size_t_fmt="u"]) - APR_CHECK_TYPES_COMPATIBLE(size_t, unsigned long, [size_t_fmt="lu"]) - --APR_CHECK_SIZEOF_EXTENDED([#include ], ssize_t, 8) -+AC_CHECK_SIZEOF(ssize_t) - - AC_MSG_CHECKING([which format to use for apr_ssize_t]) - if test -n "$ssize_t_fmt"; then -@@ -1770,7 +1770,7 @@ fi - - ssize_t_fmt="#define APR_SSIZE_T_FMT \"$ssize_t_fmt\"" - --APR_CHECK_SIZEOF_EXTENDED([#include ], size_t, 8) -+AC_CHECK_SIZEOF(size_t) - - AC_MSG_CHECKING([which format to use for apr_size_t]) - if test -n "$size_t_fmt"; then -@@ -1787,7 +1787,7 @@ fi - - size_t_fmt="#define APR_SIZE_T_FMT \"$size_t_fmt\"" - --APR_CHECK_SIZEOF_EXTENDED([#include ], off_t, 8) -+AC_CHECK_SIZEOF(off_t) - - if test "${ac_cv_sizeof_off_t}${apr_cv_use_lfs64}" = "4yes"; then - # Enable LFS -@@ -1866,7 +1866,7 @@ case $host in - ;; - *) - ino_t_value=ino_t -- APR_CHECK_SIZEOF_EXTENDED(AC_INCLUDES_DEFAULT, ino_t, $ac_cv_sizeof_long) -+ AC_CHECK_SIZEOF(ino_t) - if test $ac_cv_sizeof_ino_t = 4; then - if test $ac_cv_sizeof_long = 4; then - ino_t_value="unsigned long" -@@ -1886,8 +1886,8 @@ else - bigendian=0 - fi - --APR_CHECK_SIZEOF_EXTENDED([#include --#include ],struct iovec,0) -+AC_CHECK_SIZEOF(struct iovec,,[AC_INCLUDES_DEFAULT -+#include ]) - if test "$ac_cv_sizeof_struct_iovec" = "0"; then - have_iovec=0 - else diff --git a/dev-libs/apr/files/apr-1.5.0-libtool.patch b/dev-libs/apr/files/apr-1.5.0-libtool.patch deleted file mode 100644 index 5368a2689bdf..000000000000 --- a/dev-libs/apr/files/apr-1.5.0-libtool.patch +++ /dev/null @@ -1,17 +0,0 @@ -generate a local copy of libtool for use in compiling - -https://bugs.gentoo.org/374355 - ---- a/configure.in -+++ b/configure.in -@@ -260,9 +260,7 @@ case $host in - fi - else - dnl libtoolize requires that the following not be indented -- dnl should become LT_INIT(win32-dll) --AC_LIBTOOL_WIN32_DLL --AC_PROG_LIBTOOL -+LT_INIT(win32-dll) - # get libtool's setting of shlibpath_var - eval `grep "^shlibpath_var=[[A-Z_]]*$" $apr_builddir/libtool` - if test "x$shlibpath_var" = "x"; then diff --git a/dev-libs/apr/files/apr-1.5.0-sysroot.patch b/dev-libs/apr/files/apr-1.5.0-sysroot.patch deleted file mode 100644 index 54c9d649ef07..000000000000 --- a/dev-libs/apr/files/apr-1.5.0-sysroot.patch +++ /dev/null @@ -1,37 +0,0 @@ -https://bugs.gentoo.org/385775 - -utilize $SYSROOT to find the right includedir tree - -drop the -L/-R paths since we know our libdir is the standard path which -the compiler already knows how to locate - ---- a/apr-config.in -+++ b/apr-config.in -@@ -28,7 +28,7 @@ libdir="@libdir@" - datarootdir="@datadir@" - datadir="@datadir@" --installbuilddir="@installbuilddir@" --includedir="@includedir@" -+installbuilddir="${SYSROOT}@installbuilddir@" -+includedir="${SYSROOT}@includedir@" - - CC="@CC@" - CPP="@CPP@" -@@ -183,7 +183,7 @@ while test $# -gt 0; do - --link-ld) - if test "$location" = "installed"; then - ### avoid using -L if libdir is a "standard" location like /usr/lib -- flags="$flags -L$libdir -l${APR_LIBNAME}" -+ flags="$flags -l${APR_LIBNAME}" - else - ### this surely can't work since the library is in .libs? - flags="$flags -L$APR_BUILD_DIR -l${APR_LIBNAME}" -@@ -200,7 +200,7 @@ while test $# -gt 0; do - ### avoid using -L if libdir is a "standard" location like /usr/lib - # Since the user is specifying they are linking with libtool, we - # *know* that -R will be recognized by libtool. -- flags="$flags -L$libdir -R$libdir -l${APR_LIBNAME}" -+ flags="$flags -l${APR_LIBNAME}" - else - flags="$flags $LA_FILE" - fi diff --git a/dev-libs/apr/files/apr-1.7.0-CVE-2021-35940.patch b/dev-libs/apr/files/apr-1.7.0-CVE-2021-35940.patch deleted file mode 100644 index f23d729f523e..000000000000 --- a/dev-libs/apr/files/apr-1.7.0-CVE-2021-35940.patch +++ /dev/null @@ -1,53 +0,0 @@ - -SECURITY: CVE-2021-35940 (cve.mitre.org) - -Restore fix for CVE-2017-12613 which was missing in 1.7.x branch, though -was addressed in 1.6.x in 1.6.3 and later via r1807976. - -The fix was merged back to 1.7.x in r1891198. - -Since this was a regression in 1.7.0, a new CVE name has been assigned -to track this, CVE-2021-35940. - -Thanks to Iveta Cesalova for reporting this issue. - -https://svn.apache.org/viewvc?view=revision&revision=1891198 - -Index: time/unix/time.c -=================================================================== ---- a/time/unix/time.c (revision 1891197) -+++ b/time/unix/time.c (revision 1891198) -@@ -142,6 +142,9 @@ - static const int dayoffset[12] = - {306, 337, 0, 31, 61, 92, 122, 153, 184, 214, 245, 275}; - -+ if (xt->tm_mon < 0 || xt->tm_mon >= 12) -+ return APR_EBADDATE; -+ - /* shift new year to 1st March in order to make leap year calc easy */ - - if (xt->tm_mon < 2) -Index: time/win32/time.c -=================================================================== ---- a/time/win32/time.c (revision 1891197) -+++ b/time/win32/time.c (revision 1891198) -@@ -54,6 +54,9 @@ - static const int dayoffset[12] = - {0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334}; - -+ if (tm->wMonth < 1 || tm->wMonth > 12) -+ return APR_EBADDATE; -+ - /* Note; the caller is responsible for filling in detailed tm_usec, - * tm_gmtoff and tm_isdst data when applicable. - */ -@@ -228,6 +231,9 @@ - static const int dayoffset[12] = - {306, 337, 0, 31, 61, 92, 122, 153, 184, 214, 245, 275}; - -+ if (xt->tm_mon < 0 || xt->tm_mon >= 12) -+ return APR_EBADDATE; -+ - /* shift new year to 1st March in order to make leap year calc easy */ - - if (xt->tm_mon < 2) diff --git a/dev-libs/apr/files/apr-1.7.0-autoconf-2.70.patch b/dev-libs/apr/files/apr-1.7.0-autoconf-2.70.patch deleted file mode 100644 index 488c3c59321d..000000000000 --- a/dev-libs/apr/files/apr-1.7.0-autoconf-2.70.patch +++ /dev/null @@ -1,64 +0,0 @@ -From 5593f23e8e062da108ed585535e7281b87346ee1 Mon Sep 17 00:00:00 2001 -From: Sergei Trofimovich -Date: Wed, 25 Nov 2020 09:36:25 +0000 -Subject: [PATCH] build/apr_common.m4: avoid explicit inclusion of - '"confdefs.h"' - -The failure is observed on `autoconf-2.69d` (soon to be released -as `autoconf-2.70`). There `int64_t` detection fails as: - -``` -$ autoreconf && ./configure -... -checking whether int64_t and int use fmt %d... no -checking whether int64_t and long use fmt %ld... no -checking whether int64_t and long long use fmt %lld... no -configure: error: could not determine the string function for int64_t -``` - -This happens because `./configure` always stumbles on warning: - -``` -configure:3350: gcc -c -g -O2 -Werror conftest.c >&5 -In file included from conftest.c:31: -confdefs.h:22: error: "__STDC_WANT_IEC_60559_ATTRIBS_EXT__" redefined [-Werror] - 22 | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 - | -``` - -It's triggered by double inclusion of `"confdefs.h"` contents: -explicitly in `APR_TRY_COMPILE_NO_WARNING` macro and implicitly -via `AC_LANG_SOURCE` use. - -To fix it and avoid having to define `main()` declaration the change -uses `AC_LANG_PROGRAM` instead. - -Tested on both `autoconf-2.69` and `autoconf-2.69d`. - -Bug: https://bugs.gentoo.org/738156 -Bug: https://bugs.gentoo.org/750353 -Signed-off-by: Sergei Trofimovich ---- - build/apr_common.m4 | 8 ++------ - 1 file changed, 2 insertions(+), 6 deletions(-) - -diff --git a/build/apr_common.m4 b/build/apr_common.m4 -index f4e2dfd0a7..6f5782e674 100644 ---- a/build/apr_common.m4 -+++ b/build/apr_common.m4 -@@ -504,13 +504,9 @@ AC_DEFUN([APR_TRY_COMPILE_NO_WARNING], - CFLAGS="$CFLAGS -Werror" - fi - AC_COMPILE_IFELSE( -- [AC_LANG_SOURCE( -- [#include "confdefs.h" -- ] -- [[$1]] -- [int main(int argc, const char *const *argv) {] -+ [AC_LANG_PROGRAM( -+ [[$1]], - [[$2]] -- [ return 0; }] - )], [CFLAGS=$apr_save_CFLAGS - $3], [CFLAGS=$apr_save_CFLAGS - $4]) diff --git a/dev-libs/apr/files/apr-1.7.0-clang-16.patch b/dev-libs/apr/files/apr-1.7.0-clang-16.patch deleted file mode 100644 index 2244b07a14ff..000000000000 --- a/dev-libs/apr/files/apr-1.7.0-clang-16.patch +++ /dev/null @@ -1,174 +0,0 @@ -https://bugs.gentoo.org/870004 - -Fixed upstream, hopefully (it's hard to keep track of 1.7.x branch churn): -- https://bz.apache.org/bugzilla/show_bug.cgi?id=64753 -- https://bz.apache.org/bugzilla/show_bug.cgi?id=65087 ---- a/build/apr_common.m4 -+++ b/build/apr_common.m4 -@@ -467,6 +467,7 @@ changequote([, ])dnl - AC_MSG_CHECKING(size of $2) - AC_CACHE_VAL(AC_CV_NAME, - [AC_TRY_RUN([#include -+#include - $1 - #ifdef WIN32 - #define binmode "b" -@@ -531,7 +532,8 @@ AC_TRY_RUN([ - #include - #include - #include --main() -+#include -+int main() - { - char buf[1024]; - if (strerror_r(ERANGE, buf, sizeof buf) < 1) { ---- a/build/apr_network.m4 -+++ b/build/apr_network.m4 -@@ -63,6 +63,10 @@ AC_DEFUN([APR_CHECK_WORKING_GETADDRINFO], [ - #ifdef HAVE_SYS_SOCKET_H - #include - #endif -+#include -+ -+#include -+#include - - int main(void) { - struct addrinfo hints, *ai; -@@ -136,6 +140,11 @@ dnl - AC_DEFUN([APR_CHECK_WORKING_GETNAMEINFO], [ - AC_CACHE_CHECK(for working getnameinfo, ac_cv_working_getnameinfo,[ - AC_TRY_RUN( [ -+#include -+#include -+#include -+#include -+ - #ifdef HAVE_NETDB_H - #include - #endif -@@ -195,6 +204,8 @@ AC_DEFUN([APR_CHECK_NEGATIVE_EAI], [ - #include - #endif - -+#include -+ - int main(void) { - if (EAI_ADDRFAMILY < 0) { - exit(0); -@@ -388,9 +399,14 @@ AC_DEFUN([APR_CHECK_TCP_NODELAY_INHERITED], [ - AC_CACHE_CHECK(if TCP_NODELAY setting is inherited from listening sockets, ac_cv_tcp_nodelay_inherited,[ - AC_TRY_RUN( [ - #include -+#include -+ - #ifdef HAVE_SYS_TYPES_H - #include --#endif -+#end -+#ifdef HAVE_STRING_H -+#include -+#endifif - #ifdef HAVE_SYS_SOCKET_H - #include - #endif -@@ -734,6 +750,9 @@ AC_TRY_COMPILE([ - #ifdef HAVE_ARPA_INET_H - #include - #endif -+ -+#include -+#include - ],[ - inet_addr("127.0.0.1"); - ],[ -@@ -754,6 +773,9 @@ fi - AC_DEFUN([APR_CHECK_INET_NETWORK], [ - AC_CACHE_CHECK(for inet_network, ac_cv_func_inet_network,[ - AC_TRY_COMPILE([ -+#include -+#include -+ - #ifdef HAVE_SYS_TYPES_H - #include - #endif ---- a/configure.in -+++ b/configure.in -@@ -1440,8 +1440,6 @@ AC_CHECK_FUNCS(sigaction, [ have_sigaction="1" ], [ have_sigaction="0" ]) - AC_DECL_SYS_SIGLIST - - AC_CHECK_FUNCS(fork, [ fork="1" ], [ fork="0" ]) --APR_CHECK_INET_ADDR --APR_CHECK_INET_NETWORK - AC_SUBST(apr_inaddr_none) - AC_CHECK_FUNC(_getch) - AC_CHECK_FUNCS(strerror_r, [ strerror_r="1" ], [ strerror_r="0" ]) -@@ -1547,6 +1545,9 @@ APR_FLAG_HEADERS( - sys/un.h \ - sys/wait.h) - -+APR_CHECK_INET_ADDR -+APR_CHECK_INET_NETWORK -+ - # IRIX 6.5 has a problem in which prevents it from - # being included by itself. Check for manually, - # including another header file first. -@@ -2208,7 +2209,8 @@ AC_TRY_RUN([ - #include - #include - #include --main() -+#include -+int main() - { - struct rlimit limit; - limit.rlim_cur = 0; -@@ -2247,7 +2249,7 @@ AC_TRY_RUN([ - #ifndef SEM_FAILED - #define SEM_FAILED (-1) - #endif --main() -+int main() - { - sem_t *psem; - const char *sem_name = "/apr_autoconf"; -@@ -2307,6 +2309,7 @@ if test "$threads" = "1"; then - AC_TRY_RUN([ - #include - #include -+#include - int main() - { - pthread_mutex_t mutex; -@@ -2435,6 +2438,8 @@ int fd; - struct flock proc_mutex_lock_it = {0}; - const char *fname = "conftest.fcntl"; - -+int lockit(); -+ - int main() - { - int rc, status;; ---- a/poll/os2/pollset.c -+++ b/poll/os2/pollset.c -@@ -308,7 +308,7 @@ APR_DECLARE(apr_status_t) apr_pollset_wakeup(apr_pollset_t *pollset) - - - --APR_DECLARE(const char *) apr_poll_method_defname() -+APR_DECLARE(const char *) apr_poll_method_defname(void) - { - return "select"; - } ---- a/poll/unix/pollset.c -+++ b/poll/unix/pollset.c -@@ -188,7 +188,7 @@ APR_DECLARE(const char *) apr_pollset_method_name(apr_pollset_t *pollset) - return pollset->provider->name; - } - --APR_DECLARE(const char *) apr_poll_method_defname() -+APR_DECLARE(const char *) apr_poll_method_defname(void) - { - const apr_pollset_provider_t *provider = NULL; - diff --git a/dev-libs/apr/files/apr-1.7.0-dev-zero.patch b/dev-libs/apr/files/apr-1.7.0-dev-zero.patch deleted file mode 100644 index be6433dd46bc..000000000000 --- a/dev-libs/apr/files/apr-1.7.0-dev-zero.patch +++ /dev/null @@ -1,34 +0,0 @@ -APR (ab)uses AC_TRY_RUN to determine if: - -* We have /dev/zero -* We can mmap /dev/zero - -The APR ebuild sets ac_cv_file__dev_zero=yes when cross compiling -to fill in an answer for the first question, but the configure script -immediately defeats that when answering the second. - -AC_TRY_FUN takes four arguments: the test, and what happens on success, -failure, and cross-compiling. The APR script uses this as a "gate" to -clear ac_cv_file__dev_zero when /dev/zero exists but it turns out not -to be useable. They take a pessimistic approach: if you can't "prove" -it is mmap-able, clear the flag. - -This patch changes that to leave the flag alone while cross compiling; -just assume /dev/zero is mmap-able. It relies on ac_cv_file__dev_zero -to be correctly set for the target. The fourth parameter is changed to -[:] and not [] because [] engages autoconf's default cross-compiling -behavior, which raises an error. - -Signed-off-by: Alexandra Parker - ---- a/configure.in 2022-01-09 00:31:05.552582255 -0800 -+++ b/configure.in 2022-01-09 00:31:19.824582533 -0800 -@@ -1203,7 +1203,7 @@ - return 3; - } - return 0; -- }], [], [ac_cv_file__dev_zero=no], [ac_cv_file__dev_zero=no]) -+ }], [], [ac_cv_file__dev_zero=no], [:]) - - AC_MSG_RESULT($ac_cv_file__dev_zero) - fi diff --git a/dev-libs/apr/files/apr-1.7.2-autoconf-2.72.patch b/dev-libs/apr/files/apr-1.7.2-autoconf-2.72.patch new file mode 100644 index 000000000000..49d3fd3f1638 --- /dev/null +++ b/dev-libs/apr/files/apr-1.7.2-autoconf-2.72.patch @@ -0,0 +1,23 @@ +https://src.fedoraproject.org/rpms/apr/raw/rawhide/f/apr-1.7.2-autoconf.patch + +Similar to https://github.com/apache/apr/commit/a15958a37a06f71c42c690278f9c958b93b7ee20. +--- a/build/apr_common.m4 ++++ b/build/apr_common.m4 +@@ -468,15 +468,8 @@ AC_DEFUN([APR_TRY_COMPILE_NO_WARNING], + fi + AC_COMPILE_IFELSE( + [AC_LANG_SOURCE( +- [ +-#ifndef PACKAGE_NAME +-#include "confdefs.h" +-#endif +- ] +- [[$1]] +- [int main(int argc, const char *const *argv) {] ++ [[$1]], + [[$2]] +- [ return 0; }] + )], [CFLAGS=$apr_save_CFLAGS + $3], [CFLAGS=$apr_save_CFLAGS + $4]) + diff --git a/dev-libs/avro-c/avro-c-1.9.1-r1.ebuild b/dev-libs/avro-c/avro-c-1.9.1-r2.ebuild similarity index 84% rename from dev-libs/avro-c/avro-c-1.9.1-r1.ebuild rename to dev-libs/avro-c/avro-c-1.9.1-r2.ebuild index 3978e6b7b701..ca9fa39e45d4 100644 --- a/dev-libs/avro-c/avro-c-1.9.1-r1.ebuild +++ b/dev-libs/avro-c/avro-c-1.9.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020-2021 Gentoo Authors +# Copyright 2020-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -13,10 +13,10 @@ SLOT="0" KEYWORDS="amd64" DEPEND=" - app-arch/snappy + app-arch/snappy:= >=dev-libs/jansson-2.3:= sys-libs/zlib" - RDEPEND="${DEPEND}" +RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}/${P}-fix-libdir.patch" diff --git a/dev-libs/capstone/capstone-5.0_rc2-r3.ebuild b/dev-libs/capstone/capstone-5.0_rc2-r3.ebuild index 52e6eaa6617a..c2a407fa7ca8 100644 --- a/dev-libs/capstone/capstone-5.0_rc2-r3.ebuild +++ b/dev-libs/capstone/capstone-5.0_rc2-r3.ebuild @@ -19,7 +19,7 @@ if [[ ${PV} == 9999 ]]; then else SRC_URI="https://github.com/capstone-engine/capstone/archive/${PV/_rc/-rc}.tar.gz -> ${P}.tar.gz" S=${WORKDIR}/${P/_rc/-rc} - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" + KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv x86" fi LICENSE="BSD" diff --git a/dev-libs/girara/Manifest b/dev-libs/girara/Manifest index 194016256fc7..1df2222c4687 100644 --- a/dev-libs/girara/Manifest +++ b/dev-libs/girara/Manifest @@ -1,2 +1,2 @@ -DIST girara-0.3.7.tar.xz 60352 BLAKE2B 59515baf53d3ef46d98d5720437c253c82637df8380abe04a1649d4a2636124d6d0dfb001c9363d8a33a1bc496511e90b8c5365db34a29d489802fc780575d2a SHA512 9b91ef7e5047b3250327eab9280372f38615e9948884c108c3d1c5d3e81794f786adc827692b112d2bfdc2660e22206a143fafd5a814408df8ffd4c858148717 DIST girara-0.3.9.tar.xz 60832 BLAKE2B e577c4273c2d8f4d51e0ee283184ecd2b5b48877996f95aa5cec83ad716efd4946508203d3108d451492ff5d118d965ca98d86f4e0d9b31fcc1cc0b2266b9511 SHA512 b5399b26389cff0c6aa6f70687b53a99243d38d66ec401f48de49391c88b31dc3287366819288c405051d14f4f778db952953d48be51ac47d90d9f3604c94708 +DIST girara-0.4.0.tar.xz 60804 BLAKE2B 4653986945b89c87c597f20425c0009473679578b9a92fd3f4480aa2decc5dcbb2c1a2b0db07bef67c818c2e2940b6c363da0020fa24e7001be13cb68e2ba945 SHA512 a8753231cb9de7d60ddaf6e7b19537f23ce447be5885725c982e395068466089fca46980d413cc4ea8e4a8059ccd4615366297600bcf7ef5bddf02d649703dec diff --git a/dev-libs/girara/girara-0.3.7.ebuild b/dev-libs/girara/girara-0.4.0.ebuild similarity index 90% rename from dev-libs/girara/girara-0.3.7.ebuild rename to dev-libs/girara/girara-0.4.0.ebuild index 7d10e474a577..40aa0809609b 100644 --- a/dev-libs/girara/girara-0.3.7.ebuild +++ b/dev-libs/girara/girara-0.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,7 +14,7 @@ if [[ ${PV} == *999 ]]; then EGIT_BRANCH="develop" else SRC_URI="https://pwmt.org/projects/girara/download/${P}.tar.xz" - KEYWORDS="amd64 arm ~riscv x86" + KEYWORDS="~amd64 ~arm ~riscv ~x86" fi LICENSE="ZLIB" @@ -24,7 +24,7 @@ IUSE="doc libnotify test" RESTRICT="!test? ( test )" DEPEND="dev-libs/glib:2 - dev-libs/json-c:= + dev-libs/json-glib:= >=x11-libs/gtk+-3.20:3 libnotify? ( x11-libs/libnotify )" RDEPEND="${DEPEND}" diff --git a/dev-libs/gjs/Manifest b/dev-libs/gjs/Manifest index ca195b26575b..3b5bf78e27c0 100644 --- a/dev-libs/gjs/Manifest +++ b/dev-libs/gjs/Manifest @@ -1,3 +1,4 @@ DIST gjs-1.74.1.tar.xz 638536 BLAKE2B 375abcaa20a538cfa271f7dcf6f3715e4324ff5a4a9482ce0dd7f78213598a715ebc034f701fe458876f841f72802db4ae2aabf0abc04dc4ac5bb39c917741fd SHA512 346667accb589df0e6a045e30782017eab928115f263d36d521b61b0af38fd268bc518b8ab5ec78e5d25e0194b744a2ee59e65668da679e138b2122858ce0614 DIST gjs-1.74.2.tar.xz 639012 BLAKE2B 12f6f60b801d96a4cff260a0abc5da96c30a5b77d69d31b646b16db20a586761b36b2601c8da8ab7b313c96b8fb2319ed65cb53f3f3ca2d3d255648ceccdbc7c SHA512 738176aabcc8d0147cf77b7af3271c93ca4e8a473b2d35722b4cf9a15dcdc9f87962a29dd949607d947256df9ffcfd499d7189b6eff7ac416bbad594a2bc8ea9 DIST gjs-1.75.90.tar.xz 645228 BLAKE2B 853704b5eed8d14e070fe47ec10a27071ab6d7c6754f61206f03c20a3fba0038105c54fd2b2b2196dfeb0e74aea966a6bd886ad8d77a0c1d1d70bf6eb5bc0a54 SHA512 2bfdb9fb62612505e2f647c164944337257915d427e62c340b1dbe389d22cf309fe4ba4f55c9399c3027136e24b49ed441598b9fbd93389e8596e2de8a6917fc +DIST gjs-1.76.0.tar.xz 645364 BLAKE2B 9987033883e466c983af007c870cba4f2ef70ee08e276777e1b52103ddcebd1285ca9f3ce64c8ef52437a829157f58902cfb921eed06442e53fd9778d9cd9f2b SHA512 fa44431f431f14b82c648c388046b83722808db52d2bbe2deeb8d270d6fbeee9c4ee27feaa4fef425e1ab5ac65a1e68d7aa9457d543044362752810128064ea6 diff --git a/dev-libs/gjs/files/gjs-1.76.0-move_have_gtk4_to_the_appropriate_place.patch b/dev-libs/gjs/files/gjs-1.76.0-move_have_gtk4_to_the_appropriate_place.patch new file mode 100644 index 000000000000..2bb80126507f --- /dev/null +++ b/dev-libs/gjs/files/gjs-1.76.0-move_have_gtk4_to_the_appropriate_place.patch @@ -0,0 +1,38 @@ +# https://gitlab.gnome.org/GNOME/gjs/-/issues/532 +# https://gitlab.gnome.org/GNOME/gjs/-/merge_requests/830/diffs?commit_id=83683d093c157828cf7787e53a32c586ae4e85d3 +diff --git a/installed-tests/js/meson.build b/installed-tests/js/meson.build +index 6db887d2250face397079b03d215bbd13f455efb..1e953ceb7695356b6e854775e5db005a9c22e053 100644 +--- a/installed-tests/js/meson.build ++++ b/installed-tests/js/meson.build +@@ -203,9 +203,13 @@ endif + # during build should be run using dbus-run-session + + dbus_tests = ['GDBus'] +-if have_gtk4 and not get_option('skip_gtk_tests') +- # FIXME: find out why GTK4 tries to acquire a message bus +- dbus_tests += 'Gtk4' ++if not get_option('skip_gtk_tests') ++ have_gtk4 = dependency('gtk4', required: false).found() ++ ++ if have_gtk4 ++ # FIXME: find out why GTK4 tries to acquire a message bus ++ dbus_tests += 'Gtk4' ++ endif + endif + + bus_config = files('../../test/test-bus.conf') +diff --git a/meson.build b/meson.build +index 3ac372a16b0bfaa364ed7422119f3e6e4af8971e..5c7703935b68c724347692ef5bf47a3edf868c61 100644 +--- a/meson.build ++++ b/meson.build +@@ -679,10 +679,6 @@ endif + + ### Tests and test setups ###################################################### + +-if not get_option('skip_gtk_tests') +- have_gtk4 = dependency('gtk4', required: false).found() +-endif +- + subdir('installed-tests') + + # Note: The test program in test/ needs to be ported diff --git a/dev-libs/gjs/gjs-1.76.0.ebuild b/dev-libs/gjs/gjs-1.76.0.ebuild new file mode 100644 index 000000000000..e7cdaae084f1 --- /dev/null +++ b/dev-libs/gjs/gjs-1.76.0.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit flag-o-matic gnome.org meson virtualx + +DESCRIPTION="Javascript bindings for GNOME" +HOMEPAGE="https://wiki.gnome.org/Projects/Gjs https://gitlab.gnome.org/GNOME/gjs" + +LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )" +SLOT="0" +IUSE="+cairo examples readline sysprof test" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.66.0:2 + dev-libs/libffi:= + >=dev-libs/gobject-introspection-1.71.1:= + >=dev-lang/spidermonkey-102.2.0:102 + cairo? ( x11-libs/cairo[X,glib] ) + readline? ( sys-libs/readline:0= ) +" +DEPEND="${RDEPEND} + sysprof? ( >=dev-util/sysprof-capture-3.40.1:4 ) + test? ( + sys-apps/dbus + >=x11-libs/gtk+-3.20:3[introspection] + ) +" +BDEPEND=" + virtual/pkgconfig +" + +PATCHES=( + "${FILESDIR}/${P}-move_have_gtk4_to_the_appropriate_place.patch" +) + +src_configure() { + append-cppflags -DG_DISABLE_CAST_CHECKS + + # On musl, it's required that either gjs, pixman or gnome-shell to be built + # with a larger stack otherwise librsvg fails to render a particular SVG, as + # a result we fail to get gdm or gnome-shell running (greeted with a fail + # whale screen). The bug has been reported to librsvg. This is ideally just + # a temporary workaround until we understand what exactly needs a larger + # stack size, as it's not sufficient to do just librsvg. + # + # Please refer to: + # https://gitlab.gnome.org/GNOME/librsvg/-/issues/686 + # https://gitlab.gnome.org/GNOME/librsvg/-/issues/874 + # + # TODO: Find an actual fix instead of increasing the stack + use elibc_musl && append-ldflags -Wl,-z,stack-size=2097152 + + # FIXME: add systemtap/dtrace support, like in glib:2 + local emesonargs=( + $(meson_feature cairo) + $(meson_feature readline) + $(meson_feature sysprof profiler) + -Dinstalled_tests=false + $(meson_use !test skip_dbus_tests) + $(meson_use !test skip_gtk_tests) + -Db_pch=True # TODO this has to go + ) + meson_src_configure +} + +src_test() { + virtx meson_src_test +} diff --git a/dev-libs/hyperscan/hyperscan-5.4.0.ebuild b/dev-libs/hyperscan/hyperscan-5.4.0.ebuild index 55f108b37fa3..e4d74772c853 100644 --- a/dev-libs/hyperscan/hyperscan-5.4.0.ebuild +++ b/dev-libs/hyperscan/hyperscan-5.4.0.ebuild @@ -57,8 +57,8 @@ src_test() { } pkg_postinst() { - if has_version 'mail-filter/rspamd'; then - elog "There is known issue with mail-filter/rspamd when hyperscan version changes." + if has_version ' +Date: Tue, 27 Sep 2022 07:03:14 +0200 +Subject: [PATCH] configure: Handle *-linux-musl* hosts properly + +This is the same as the `*-*-linux*` case with the two exceptions that +we don't set glibc=1 and don't define JEMALLOC_USE_CXX_THROW +--- + configure.ac | 13 +++++++++++++ + 1 file changed, 13 insertions(+) + +diff --git a/configure.ac b/configure.ac +index 2bbf7d54a..f38b72d64 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -723,6 +723,19 @@ case "${host}" in + fi + zero_realloc_default_free="1" + ;; ++ *-*-linux-musl*) ++ dnl syscall(2) and secure_getenv(3) are exposed by _GNU_SOURCE. ++ JE_APPEND_VS(CPPFLAGS, -D_GNU_SOURCE) ++ abi="elf" ++ AC_DEFINE([JEMALLOC_PURGE_MADVISE_DONTNEED_ZEROS], [ ], [ ]) ++ AC_DEFINE([JEMALLOC_HAS_ALLOCA_H], [ ], [ ]) ++ AC_DEFINE([JEMALLOC_PROC_SYS_VM_OVERCOMMIT_MEMORY], [ ], [ ]) ++ AC_DEFINE([JEMALLOC_THREADED_INIT], [ ], [ ]) ++ if test "${LG_SIZEOF_PTR}" = "3"; then ++ default_retain="1" ++ fi ++ zero_realloc_default_free="1" ++ ;; + *-*-linux*) + dnl syscall(2) and secure_getenv(3) are exposed by _GNU_SOURCE. + JE_APPEND_VS(CPPFLAGS, -D_GNU_SOURCE) + +From 45249cf5a9cfa13c2c62e68e272a391721523b4b Mon Sep 17 00:00:00 2001 +From: Marvin Schmidt +Date: Tue, 27 Sep 2022 07:00:13 +0200 +Subject: [PATCH] Fix exception specification error for hosts using musl libc + +It turns out that the previous commit did not suffice since the +JEMALLOC_SYS_NOTHROW definition also causes the same exception specification +errors as JEMALLOC_USE_CXX_THROW did: +``` +x86_64-pc-linux-musl-cc -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer- +arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O3 -funroll-loops -march=native -O2 -pipe -c -march=native -O2 -pipe -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/background_thread.o src/background_thread.c +In file included from src/jemalloc_cpp.cpp:9: +In file included from include/jemalloc/internal/jemalloc_preamble.h:27: +include/jemalloc/internal/../jemalloc.h:254:32: error: exception specification in declaration does not match previous declaration + void JEMALLOC_SYS_NOTHROW *je_malloc(size_t size) + ^ +include/jemalloc/internal/../jemalloc.h:75:21: note: expanded from macro 'je_malloc' + ^ +/usr/x86_64-pc-linux-musl/include/stdlib.h:40:7: note: previous declaration is here +void *malloc (size_t); + ^ +``` + +On systems using the musl C library we have to omit the exception specification +on malloc function family like it's done for MacOS, FreeBSD and OpenBSD. +--- + include/jemalloc/jemalloc_macros.h.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/include/jemalloc/jemalloc_macros.h.in b/include/jemalloc/jemalloc_macros.h.in +index 2de3f27de..05d996be2 100644 +--- a/include/jemalloc/jemalloc_macros.h.in ++++ b/include/jemalloc/jemalloc_macros.h.in +@@ -142,7 +142,7 @@ + # define JEMALLOC_COLD + #endif + +-#if (defined(__APPLE__) || defined(__FreeBSD__)) && !defined(JEMALLOC_NO_RENAME) ++#if (defined(__APPLE__) || defined(__FreeBSD__) || (defined(__linux__) && !defined(__GLIBC__))) && !defined(JEMALLOC_NO_RENAME) + # define JEMALLOC_SYS_NOTHROW + #else + # define JEMALLOC_SYS_NOTHROW JEMALLOC_NOTHROW diff --git a/dev-libs/jemalloc/jemalloc-5.3.0-r1.ebuild b/dev-libs/jemalloc/jemalloc-5.3.0-r1.ebuild index 36af3bb44643..341374a74d7f 100644 --- a/dev-libs/jemalloc/jemalloc-5.3.0-r1.ebuild +++ b/dev-libs/jemalloc/jemalloc-5.3.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" @@ -18,6 +18,7 @@ HTML_DOCS=( doc/jemalloc.html ) PATCHES=( "${FILESDIR}/${PN}-5.3.0-gentoo-fixups.patch" "${FILESDIR}/${PN}-5.3.0-backport-pr-2312.patch" + "${FILESDIR}/${PN}-5.3.0-backport-pr-2338.patch" ) MULTILIB_WRAPPED_HEADERS=( /usr/include/jemalloc/jemalloc.h ) diff --git a/dev-libs/kpathsea/kpathsea-6.3.3_p20210325-r1.ebuild b/dev-libs/kpathsea/kpathsea-6.3.3_p20210325-r1.ebuild index 45e773f12628..070d1bdb0646 100644 --- a/dev-libs/kpathsea/kpathsea-6.3.3_p20210325-r1.ebuild +++ b/dev-libs/kpathsea/kpathsea-6.3.3_p20210325-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -9,8 +9,8 @@ TEXMFD_VERSION="11" DESCRIPTION="Path searching library for TeX-related files" HOMEPAGE="http://tug.org/texlive/" -SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-${PV#*_p}-source.tar.xz - https://dev.gentoo.org/~zlogene/distfiles/texlive/${PN}-texmf.d-${TEXMFD_VERSION}.tar.xz" +SRC_URI="https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-${PV#*_p}-source.tar.xz + https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/${PN}-texmf.d-${TEXMFD_VERSION}.tar.xz" LICENSE="GPL-2" SLOT="0/${PV%_p*}" @@ -24,12 +24,12 @@ EXTRA_TL_MODULES="kpathsea" EXTRA_TL_DOC_MODULES="kpathsea.doc" for i in ${EXTRA_TL_MODULES} ; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" done SRC_URI="${SRC_URI} doc? ( " for i in ${EXTRA_TL_DOC_MODULES} ; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" done SRC_URI="${SRC_URI} ) " diff --git a/dev-libs/libclc/Manifest b/dev-libs/libclc/Manifest index b1c047b45e06..52a376db7b69 100644 --- a/dev-libs/libclc/Manifest +++ b/dev-libs/libclc/Manifest @@ -4,9 +4,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/dev-libs/libclc/libclc-16.0.0_rc3.ebuild b/dev-libs/libclc/libclc-16.0.0_rc3.ebuild deleted file mode 100644 index c424e4a83842..000000000000 --- a/dev-libs/libclc/libclc-16.0.0_rc3.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org python-any-r1 - -DESCRIPTION="OpenCL C library" -HOMEPAGE="https://libclc.llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( MIT BSD )" -SLOT="0" -KEYWORDS="" -IUSE="spirv video_cards_nvidia video_cards_r600 video_cards_radeonsi" - -LLVM_MAX_SLOT=16 -BDEPEND=" - ${PYTHON_DEPS} - || ( - ( - sys-devel/clang:16 - spirv? ( dev-util/spirv-llvm-translator:16 ) - ) - ( - sys-devel/clang:15 - spirv? ( dev-util/spirv-llvm-translator:15 ) - ) - ( - sys-devel/clang:14 - spirv? ( dev-util/spirv-llvm-translator:14 ) - ) - ( - sys-devel/clang:13 - spirv? ( dev-util/spirv-llvm-translator:13 ) - ) - ) -" - -LLVM_COMPONENTS=( libclc ) -llvm.org_set_globals - -llvm_check_deps() { - if use spirv; then - has_version -b "dev-util/spirv-llvm-translator:${LLVM_SLOT}" || - return 1 - fi - has_version -b "sys-devel/clang:${LLVM_SLOT}" -} - -pkg_setup() { - llvm_pkg_setup - python-any-r1_pkg_setup -} - -src_configure() { - local libclc_targets=() - - use spirv && libclc_targets+=( - "spirv-mesa3d-" - "spirv64-mesa3d-" - ) - use video_cards_nvidia && libclc_targets+=( - "nvptx--" - "nvptx64--" - "nvptx--nvidiacl" - "nvptx64--nvidiacl" - ) - use video_cards_r600 && libclc_targets+=( - "r600--" - ) - use video_cards_radeonsi && libclc_targets+=( - "amdgcn--" - "amdgcn-mesa-mesa3d" - "amdgcn--amdhsa" - ) - [[ ${#libclc_targets[@]} ]] || die "libclc target missing!" - - libclc_targets=${libclc_targets[*]} - local mycmakeargs=( - -DLIBCLC_TARGETS_TO_BUILD="${libclc_targets// /;}" - ) - cmake_src_configure -} diff --git a/dev-libs/libclc/libclc-16.0.0_rc4.ebuild b/dev-libs/libclc/libclc-16.0.0_rc4.ebuild deleted file mode 100644 index c424e4a83842..000000000000 --- a/dev-libs/libclc/libclc-16.0.0_rc4.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org python-any-r1 - -DESCRIPTION="OpenCL C library" -HOMEPAGE="https://libclc.llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( MIT BSD )" -SLOT="0" -KEYWORDS="" -IUSE="spirv video_cards_nvidia video_cards_r600 video_cards_radeonsi" - -LLVM_MAX_SLOT=16 -BDEPEND=" - ${PYTHON_DEPS} - || ( - ( - sys-devel/clang:16 - spirv? ( dev-util/spirv-llvm-translator:16 ) - ) - ( - sys-devel/clang:15 - spirv? ( dev-util/spirv-llvm-translator:15 ) - ) - ( - sys-devel/clang:14 - spirv? ( dev-util/spirv-llvm-translator:14 ) - ) - ( - sys-devel/clang:13 - spirv? ( dev-util/spirv-llvm-translator:13 ) - ) - ) -" - -LLVM_COMPONENTS=( libclc ) -llvm.org_set_globals - -llvm_check_deps() { - if use spirv; then - has_version -b "dev-util/spirv-llvm-translator:${LLVM_SLOT}" || - return 1 - fi - has_version -b "sys-devel/clang:${LLVM_SLOT}" -} - -pkg_setup() { - llvm_pkg_setup - python-any-r1_pkg_setup -} - -src_configure() { - local libclc_targets=() - - use spirv && libclc_targets+=( - "spirv-mesa3d-" - "spirv64-mesa3d-" - ) - use video_cards_nvidia && libclc_targets+=( - "nvptx--" - "nvptx64--" - "nvptx--nvidiacl" - "nvptx64--nvidiacl" - ) - use video_cards_r600 && libclc_targets+=( - "r600--" - ) - use video_cards_radeonsi && libclc_targets+=( - "amdgcn--" - "amdgcn-mesa-mesa3d" - "amdgcn--amdhsa" - ) - [[ ${#libclc_targets[@]} ]] || die "libclc target missing!" - - libclc_targets=${libclc_targets[*]} - local mycmakeargs=( - -DLIBCLC_TARGETS_TO_BUILD="${libclc_targets// /;}" - ) - cmake_src_configure -} diff --git a/dev-libs/libclc/libclc-17.0.0_pre20230304.ebuild b/dev-libs/libclc/libclc-17.0.0_pre20230304.ebuild deleted file mode 100644 index 93cce600989e..000000000000 --- a/dev-libs/libclc/libclc-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org python-any-r1 - -DESCRIPTION="OpenCL C library" -HOMEPAGE="https://libclc.llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( MIT BSD )" -SLOT="0" -KEYWORDS="" -IUSE="spirv video_cards_nvidia video_cards_r600 video_cards_radeonsi" - -LLVM_MAX_SLOT=17 -BDEPEND=" - ${PYTHON_DEPS} - || ( - ( - sys-devel/clang:17 - spirv? ( dev-util/spirv-llvm-translator:17 ) - ) - ( - sys-devel/clang:16 - spirv? ( dev-util/spirv-llvm-translator:16 ) - ) - ( - sys-devel/clang:15 - spirv? ( dev-util/spirv-llvm-translator:15 ) - ) - ( - sys-devel/clang:14 - spirv? ( dev-util/spirv-llvm-translator:14 ) - ) - ( - sys-devel/clang:13 - spirv? ( dev-util/spirv-llvm-translator:13 ) - ) - ) -" - -LLVM_COMPONENTS=( libclc ) -llvm.org_set_globals - -llvm_check_deps() { - if use spirv; then - has_version -b "dev-util/spirv-llvm-translator:${LLVM_SLOT}" || - return 1 - fi - has_version -b "sys-devel/clang:${LLVM_SLOT}" -} - -pkg_setup() { - llvm_pkg_setup - python-any-r1_pkg_setup -} - -src_configure() { - local libclc_targets=() - - use spirv && libclc_targets+=( - "spirv-mesa3d-" - "spirv64-mesa3d-" - ) - use video_cards_nvidia && libclc_targets+=( - "nvptx--" - "nvptx64--" - "nvptx--nvidiacl" - "nvptx64--nvidiacl" - ) - use video_cards_r600 && libclc_targets+=( - "r600--" - ) - use video_cards_radeonsi && libclc_targets+=( - "amdgcn--" - "amdgcn-mesa-mesa3d" - "amdgcn--amdhsa" - ) - [[ ${#libclc_targets[@]} ]] || die "libclc target missing!" - - libclc_targets=${libclc_targets[*]} - local mycmakeargs=( - -DLIBCLC_TARGETS_TO_BUILD="${libclc_targets// /;}" - ) - cmake_src_configure -} diff --git a/dev-libs/libdex/Manifest b/dev-libs/libdex/Manifest new file mode 100644 index 000000000000..b60b4a63c716 --- /dev/null +++ b/dev-libs/libdex/Manifest @@ -0,0 +1 @@ +DIST libdex-0.2.0.tar.xz 91648 BLAKE2B 258193b29082024cce30d5e20903f1ba6a3c8e566652d341845178797126796fcc1cf628636de02ba9776cb9d8ff5d38c24f10f269fcd9acbc0cdbb1c0918d8b SHA512 db54fa974af97e59e7a21c19be73db8fec6565377ce313a3532435845d3571216d6617f9a8db500019390d85677ca6f30be3f9a36c60240c8130ae0834826a65 diff --git a/dev-libs/libdex/libdex-0.2.0.ebuild b/dev-libs/libdex/libdex-0.2.0.ebuild new file mode 100644 index 000000000000..f0d86d8a55dd --- /dev/null +++ b/dev-libs/libdex/libdex-0.2.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org meson vala + +DESCRIPTION="Deferred Execution library for GNOME and GTK" +HOMEPAGE="https://gitlab.gnome.org/GNOME/libdex" + +LICENSE="LGPL-2.1+" +SLOT="0/1" +KEYWORDS="~amd64 ~x86" + +IUSE="gtk-doc +introspection sysprof test vala" +REQUIRED_USE=" + gtk-doc? ( introspection ) + vala? ( introspection ) +" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.68:2 + >=sys-libs/liburing-0.7:= + introspection? ( dev-libs/gobject-introspection:= ) + sysprof? ( dev-util/sysprof-capture:4 ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + vala? ( $(vala_depend) ) + dev-util/glib-utils + virtual/pkgconfig + gtk-doc? ( dev-util/gi-docgen ) +" + +src_prepare() { + default + use vala && vala_setup +} + +src_configure() { + local emesonargs=( + $(meson_use gtk-doc docs) + -Dexamples=false + $(meson_use vala vapi) + $(meson_feature introspection) + -Dsysprof=false + $(meson_use test tests) + ) + meson_src_configure +} + +src_install() { + meson_src_install + + if use gtk-doc; then + mkdir -p "${ED}"/usr/share/gtk-doc/html/ || die + mv "${ED}"/usr/share/doc/${PN}-1 "${ED}"/usr/share/gtk-doc/html/ || die + fi +} diff --git a/dev-libs/libdex/metadata.xml b/dev-libs/libdex/metadata.xml new file mode 100644 index 000000000000..64509955e2ba --- /dev/null +++ b/dev-libs/libdex/metadata.xml @@ -0,0 +1,22 @@ + + + + + gnome@gentoo.org + Gentoo GNOME Desktop + + + Dex is a library supporting "Deferred Execution" with the explicit + goal of integrating with GNOME and GTK-based applications. + It provides primatives for supporting futures in a variety of ways + with both read-only and writable views. Additionally, integration + with existing asynchronous-based APIs is provided through the use + of wrapper promises. + + + GNOME/libdex + + + Enable profiling data capture support using dev-util/sysprof-capture + + diff --git a/dev-libs/libtecla/files/libtecla-1.6.1-install.patch b/dev-libs/libtecla/files/libtecla-1.6.1-install.patch index 999d46c58185..769b98c6abb5 100644 --- a/dev-libs/libtecla/files/libtecla-1.6.1-install.patch +++ b/dev-libs/libtecla/files/libtecla-1.6.1-install.patch @@ -1,6 +1,5 @@ -diff -Naur libtecla/Makefile.in libtecla.new/Makefile.in ---- libtecla/Makefile.in 2004-10-31 15:30:57.000000000 -0500 -+++ libtecla.new/Makefile.in 2008-06-03 08:59:27.000000000 -0400 +--- a/Makefile.in ++++ b/Makefile.in @@ -15,10 +15,10 @@ prefix=@prefix@ diff --git a/dev-libs/libtecla/files/libtecla-1.6.1-no-strip.patch b/dev-libs/libtecla/files/libtecla-1.6.1-no-strip.patch index 1935c3894f76..7c6461bb5060 100644 --- a/dev-libs/libtecla/files/libtecla-1.6.1-no-strip.patch +++ b/dev-libs/libtecla/files/libtecla-1.6.1-no-strip.patch @@ -1,8 +1,7 @@ # prevent build system from stripping files (bug #239877). -diff -Naur libtecla/Makefile.in libtecla.new/Makefile.in ---- libtecla/Makefile.in 2004-10-31 15:30:57.000000000 -0500 -+++ libtecla.new/Makefile.in 2008-10-07 06:17:22.000000000 -0400 +--- a/Makefile.in ++++ b/Makefile.in @@ -260,7 +260,7 @@ install_bin: $(BINDIR) $(PROGRAMS) $(PROGRAMS_R) progs="$(PROGRAMS) $(PROGRAMS_R)"; \ diff --git a/dev-libs/libtecla/files/libtecla-1.6.1-prll-install.patch b/dev-libs/libtecla/files/libtecla-1.6.1-prll-install.patch index 1815f8571566..467cde20c2de 100644 --- a/dev-libs/libtecla/files/libtecla-1.6.1-prll-install.patch +++ b/dev-libs/libtecla/files/libtecla-1.6.1-prll-install.patch @@ -1,8 +1,6 @@ Makefile.in | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) -diff --git a/Makefile.in b/Makefile.in -index a44371a..dfd44b0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -217,7 +217,7 @@ install_inc: $(INCDIR) diff --git a/dev-libs/libtecla/files/libtecla-1.6.3-ldflags.patch b/dev-libs/libtecla/files/libtecla-1.6.3-ldflags.patch index 68c9e947b987..67dcb3e71daa 100644 --- a/dev-libs/libtecla/files/libtecla-1.6.3-ldflags.patch +++ b/dev-libs/libtecla/files/libtecla-1.6.3-ldflags.patch @@ -1,5 +1,5 @@ ---- libtecla/Makefile.rules.orig 2014-11-10 00:36:53.000000000 +0300 -+++ libtecla/Makefile.rules 2016-04-13 10:37:36.234418914 +0300 +--- a/Makefile.rules ++++ b/Makefile.rules @@ -54,19 +54,19 @@ demos: $(DEMO_PROGS) @@ -24,8 +24,8 @@ $(OBJDIR)/enhance.o -L. -ltecla$(SUFFIX) $(LIBS) #----------------------------------------------------------------------- ---- libtecla/configure.in.orig 2014-11-10 01:15:29.000000000 +0300 -+++ libtecla/configure.in 2016-04-13 10:32:25.916263565 +0300 +--- a/configure.in ++++ b/configure.in @@ -490,7 +490,7 @@ VERSION_OPT='' fi diff --git a/dev-libs/libtecla/files/libtecla-1.6.3-prll-build.patch b/dev-libs/libtecla/files/libtecla-1.6.3-prll-build.patch index 89f30a6ea31a..41e7b628b359 100644 --- a/dev-libs/libtecla/files/libtecla-1.6.3-prll-build.patch +++ b/dev-libs/libtecla/files/libtecla-1.6.3-prll-build.patch @@ -1,5 +1,5 @@ ---- libtecla/Makefile.rules.orig 2016-04-13 11:13:10.000000000 +0300 -+++ libtecla/Makefile.rules 2016-04-13 11:17:45.628234106 +0300 +--- a/Makefile.rules ++++ b/Makefile.rules @@ -165,5 +165,5 @@ # Include file dependencies. #----------------------------------------------------------------------- diff --git a/dev-libs/libtecla/files/libtecla-1.6.3-secure-runpath.patch b/dev-libs/libtecla/files/libtecla-1.6.3-secure-runpath.patch index b62104ae1d35..01552220e24a 100644 --- a/dev-libs/libtecla/files/libtecla-1.6.3-secure-runpath.patch +++ b/dev-libs/libtecla/files/libtecla-1.6.3-secure-runpath.patch @@ -1,5 +1,5 @@ ---- libtecla/Makefile.rules.orig 2014-11-10 00:36:53.000000000 +0300 -+++ libtecla/Makefile.rules 2016-04-13 10:37:36.234418914 +0300 +--- a/Makefile.rules ++++ b/Makefile.rules @@ -54,19 +54,19 @@ demos: $(DEMO_PROGS) diff --git a/dev-libs/libtecla/files/libtecla-1.6.3-static-libs.patch b/dev-libs/libtecla/files/libtecla-1.6.3-static-libs.patch index b88940e49b8b..0d7c14b6c172 100644 --- a/dev-libs/libtecla/files/libtecla-1.6.3-static-libs.patch +++ b/dev-libs/libtecla/files/libtecla-1.6.3-static-libs.patch @@ -1,5 +1,5 @@ ---- libtecla/configure.in.orig 2016-04-13 11:12:15.000000000 +0300 -+++ libtecla/configure.in 2016-04-13 11:43:05.632287268 +0300 +--- a/configure.in ++++ b/configure.in @@ -426,6 +426,9 @@ AC_ARG_WITH(file-system, AC_HELP_STRING([--with-file-system], [Does the target have a filesystem (default=yes)]), AC_DEFINE(WITHOUT_FILE_SYSTEM), ) diff --git a/dev-libs/libtecla/libtecla-1.6.3-r1.ebuild b/dev-libs/libtecla/libtecla-1.6.3-r1.ebuild index 4487a6f6dfe6..d0214a052aab 100644 --- a/dev-libs/libtecla/libtecla-1.6.3-r1.ebuild +++ b/dev-libs/libtecla/libtecla-1.6.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -8,12 +8,11 @@ inherit autotools flag-o-matic DESCRIPTION="Tecla command-line editing library" HOMEPAGE="https://www.astro.caltech.edu/~mcs/tecla/" SRC_URI="https://www.astro.caltech.edu/~mcs/tecla/${P}.tar.gz" -S="${WORKDIR}"/libtecla +S="${WORKDIR}/libtecla" LICENSE="icu" SLOT="0" KEYWORDS="amd64 ~arm ppc ~riscv x86 ~amd64-linux ~x86-linux" -IUSE="static-libs" DEPEND="sys-libs/ncurses:=" RDEPEND="${DEPEND}" @@ -31,14 +30,9 @@ PATCHES=( src_prepare() { default - mv configure.in configure.ac || die eautoreconf } -src_configure() { - econf $(use_enable static-libs) -} - src_compile() { emake \ OPT="" \ diff --git a/dev-libs/openssl/files/gentoo.config-1.0.3 b/dev-libs/openssl/files/gentoo.config-1.0.3 deleted file mode 100644 index 0662f72b6d80..000000000000 --- a/dev-libs/openssl/files/gentoo.config-1.0.3 +++ /dev/null @@ -1,172 +0,0 @@ -#!/usr/bin/env bash -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 -# -# Openssl doesn't play along nicely with cross-compiling -# like autotools based projects, so let's teach it new tricks. -# -# Review the bundled 'config' script to see why kind of targets -# we can pass to the 'Configure' script. - - -# Testing routines -if [[ $1 == "test" ]] ; then - for c in \ - "arm-gentoo-linux-uclibc |linux-generic32 -DL_ENDIAN" \ - "armv5b-linux-gnu |linux-armv4 -DB_ENDIAN" \ - "x86_64-pc-linux-gnu |linux-x86_64" \ - "alpha-linux-gnu |linux-alpha-gcc" \ - "alphaev56-unknown-linux-gnu |linux-alpha+bwx-gcc" \ - "i686-pc-linux-gnu |linux-elf" \ - "whatever-gentoo-freebsdX.Y |BSD-generic32" \ - "i686-gentoo-freebsdX.Y |BSD-x86-elf" \ - "sparc64-alpha-freebsdX.Y |BSD-sparc64" \ - "ia64-gentoo-freebsd5.99234 |BSD-ia64" \ - "x86_64-gentoo-freebsdX.Y |BSD-x86_64" \ - "hppa64-aldsF-linux-gnu5.3 |linux-generic32 -DB_ENDIAN" \ - "powerpc-gentOO-linux-uclibc |linux-ppc" \ - "powerpc64-unk-linux-gnu |linux-ppc64" \ - "powerpc64le-linux-gnu |linux-ppc64le" \ - "x86_64-apple-darwinX |darwin64-x86_64-cc" \ - "powerpc64-apple-darwinX |darwin64-ppc-cc" \ - "i686-apple-darwinX |darwin-i386-cc" \ - "i386-apple-darwinX |darwin-i386-cc" \ - "powerpc-apple-darwinX |darwin-ppc-cc" \ - "i586-pc-winnt |winnt-parity" \ - "s390-ibm-linux-gnu |linux-generic32 -DB_ENDIAN" \ - "s390x-linux-gnu |linux64-s390x" \ - ;do - CHOST=${c/|*} - ret_want=${c/*|} - ret_got=$(CHOST=${CHOST} "$0") - - if [[ ${ret_want} == "${ret_got}" ]] ; then - echo "PASS: ${CHOST}" - else - echo "FAIL: ${CHOST}" - echo -e "\twanted: ${ret_want}" - echo -e "\twe got: ${ret_got}" - fi - done - exit 0 -fi -[[ -z ${CHOST} && -n $1 ]] && CHOST=$1 - - -# Detect the operating system -case ${CHOST} in - *-aix*) system="aix";; - *-darwin*) system="darwin";; - *-freebsd*) system="BSD";; - *-hpux*) system="hpux";; - *-linux*) system="linux";; - *-solaris*) system="solaris";; - *-winnt*) system="winnt";; - x86_64-*-mingw*) system="mingw64";; - *mingw*) system="mingw";; - *) exit 0;; -esac - - -# Compiler munging -compiler="gcc" -if [[ ${CC} == "ccc" ]] ; then - compiler=${CC} -fi - - -# Detect target arch -machine="" -chost_machine=${CHOST%%-*} -case ${system} in -linux) - case ${chost_machine}:${ABI} in - aarch64*be*) machine="aarch64 -DB_ENDIAN";; - aarch64*) machine="aarch64 -DL_ENDIAN";; - alphaev56*|\ - alphaev[678]*)machine=alpha+bwx-${compiler};; - alpha*) machine=alpha-${compiler};; - armv[4-9]*b*) machine="armv4 -DB_ENDIAN";; - armv[4-9]*) machine="armv4 -DL_ENDIAN";; - arm*b*) machine="generic32 -DB_ENDIAN";; - arm*) machine="generic32 -DL_ENDIAN";; - avr*) machine="generic32 -DL_ENDIAN";; - bfin*) machine="generic32 -DL_ENDIAN";; - # hppa64*) machine=parisc64;; - hppa*) machine="generic32 -DB_ENDIAN";; - i[0-9]86*|\ - x86_64*:x86) machine=elf;; - ia64*) machine=ia64;; - loongarch64*) machine="generic64 -DL_ENDIAN";; - m68*) machine="latomic -DB_ENDIAN";; - mips*el*) machine="generic32 -DL_ENDIAN";; - mips*) machine="generic32 -DB_ENDIAN";; - powerpc64*le*)machine=ppc64le;; - powerpc64*) machine=ppc64;; - powerpc*le*) machine="generic32 -DL_ENDIAN";; - powerpc*) machine=ppc;; - riscv32*) machine="generic32 -DL_ENDIAN";; - riscv64*) machine="generic64 -DL_ENDIAN";; - # sh64*) machine=elf;; - sh*b*) machine="generic32 -DB_ENDIAN";; - sh*) machine="generic32 -DL_ENDIAN";; - # TODO: Might want to do -mcpu probing like glibc to determine a - # better default for sparc-linux-gnu targets. This logic will - # break v7 and older systems when they use it. - sparc*v7*) machine="generic32 -DB_ENDIAN";; - sparc64*) machine=sparcv9 system=linux64;; - sparc*v9*) machine=sparcv9;; - sparc*v8*) machine=sparcv8;; - sparc*) machine=sparcv8;; - s390x*) machine=s390x system=linux64;; - s390*) machine="generic32 -DB_ENDIAN";; - x86_64*:x32) machine=x32;; - x86_64*) machine=x86_64;; - esac - ;; -BSD) - case ${chost_machine} in - alpha*) machine=generic64;; - i[6-9]86*) machine=x86-elf;; - ia64*) machine=ia64;; - sparc64*) machine=sparc64;; - x86_64*) machine=x86_64;; - *) machine=generic32;; - esac - ;; -aix) - machine=${compiler} - ;; -darwin) - case ${chost_machine} in - powerpc64) machine=ppc-cc; system=${system}64;; - powerpc) machine=ppc-cc;; - i?86*) machine=i386-cc;; - x86_64) machine=x86_64-cc; system=${system}64;; - esac - ;; -hpux) - case ${chost_machine} in - ia64) machine=ia64-${compiler} ;; - esac - ;; -solaris) - case ${chost_machine} in - i386) machine=x86-${compiler} ;; - x86_64*) machine=x86_64-${compiler}; system=${system}64;; - sparcv9*) machine=sparcv9-${compiler}; system=${system}64;; - sparc*) machine=sparcv8-${compiler};; - esac - ;; -winnt) - machine=parity - ;; -mingw*) - # special case ... no xxx-yyy style name - echo ${system} - ;; -esac - - -# If we have something, show it -[[ -n ${machine} ]] && echo ${system}-${machine} diff --git a/dev-libs/ptexenc/ptexenc-1.3.9_p20210325-r1.ebuild b/dev-libs/ptexenc/ptexenc-1.3.9_p20210325-r1.ebuild index f3313148fcb3..176d2c975430 100644 --- a/dev-libs/ptexenc/ptexenc-1.3.9_p20210325-r1.ebuild +++ b/dev-libs/ptexenc/ptexenc-1.3.9_p20210325-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -7,7 +7,7 @@ inherit libtool DESCRIPTION="Library for Japanese pTeX providing a better way of handling character encodings" HOMEPAGE="http://tutimura.ath.cx/ptexlive/?ptexenc" -SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-${PV#*_p}-source.tar.xz" +SRC_URI="https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-${PV#*_p}-source.tar.xz" S="${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN}" LICENSE="BSD" diff --git a/dev-libs/tree-sitter-ocaml/Manifest b/dev-libs/tree-sitter-ocaml/Manifest index a291d9385837..93d52e3de42a 100644 --- a/dev-libs/tree-sitter-ocaml/Manifest +++ b/dev-libs/tree-sitter-ocaml/Manifest @@ -1 +1,2 @@ DIST tree-sitter-ocaml-0.19.0.tar.gz 1314747 BLAKE2B 8bceac43a40b11b27395a52a450ab734312fbb43cd4b711ca27e629f16599a04cbb55b13a05540ad20f7aa00f068ef57752b7ba42c45bbc75fc87c344133a743 SHA512 897ce5fcb58241c8ec123536ce52eba64698cb5da08403801f4d1760fab1addaced0b3cda5c24460cf2b4531215becf3a6b29c34ba871370b02b467a13b171ba +DIST tree-sitter-ocaml-0.20.1.tar.gz 1509589 BLAKE2B 965980ce37b27bde9771308eeabe5117bc7997f3a5429e9774eeb885b81199e5d8ebc471bc5cd10d3e15e2cbcffdf6f887f0623b61c3595deca06492d22c78a8 SHA512 c3a070367ddce3186ea09c705f4c08279f0fbf890669ce6486eef5b9564ea2c3a88041b3227ac9210fdb9257d4971697e6ceebea672fe37e7fce038cd9a09838 diff --git a/dev-libs/tree-sitter-ocaml/tree-sitter-ocaml-0.20.1.ebuild b/dev-libs/tree-sitter-ocaml/tree-sitter-ocaml-0.20.1.ebuild new file mode 100644 index 000000000000..ac6d9d2c1590 --- /dev/null +++ b/dev-libs/tree-sitter-ocaml/tree-sitter-ocaml-0.20.1.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit tree-sitter-grammar + +DESCRIPTION="OCaml grammar for Tree-sitter" +HOMEPAGE="https://github.com/tree-sitter/tree-sitter-ocaml" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +S="${WORKDIR}/${P}/ocaml/src" diff --git a/dev-libs/weston/weston-9999.ebuild b/dev-libs/weston/weston-9999.ebuild index 6ad9c5fed5e4..771f2ee63776 100644 --- a/dev-libs/weston/weston-9999.ebuild +++ b/dev-libs/weston/weston-9999.ebuild @@ -66,8 +66,8 @@ RDEPEND=" ) systemd? ( sys-apps/systemd ) vnc? ( - =dev-libs/aml-0.2* - =gui-libs/neatvnc-0.5* + =dev-libs/aml-0.3* + =gui-libs/neatvnc-0.6* sys-libs/pam ) webp? ( media-libs/libwebp:0= ) diff --git a/dev-lua/Manifest.gz b/dev-lua/Manifest.gz index f89f50840e86..afa1e684bdf3 100644 Binary files a/dev-lua/Manifest.gz and b/dev-lua/Manifest.gz differ diff --git a/dev-lua/luasec/Manifest b/dev-lua/luasec/Manifest index 36577684fbd7..abada21bb7c7 100644 --- a/dev-lua/luasec/Manifest +++ b/dev-lua/luasec/Manifest @@ -1,2 +1,2 @@ DIST luasec-1.2.0.tar.gz 53379 BLAKE2B dad93b341565b602fa02a5551a127bce42e76cee5abb0314f9cc4a98f162d23b0f8b4b9c0f16423095e4b54ec5ab260ee06bef5993ad46f559ad1295dcc28856 SHA512 5564f73495bef7c5683285ff7648c7b82a3a3dfdce96e88c77cc8835427b6595a694e5a2bf0a4f6332fe52b8aed3d94531607df81260d7597458a6fb0465d3fe -DIST luasec-1.3.0.tar.gz 54704 BLAKE2B f16009922f9fcb60f8e1da99011e683ad6e51afa218b936909a2a6ab9814d892e6d11307b3bf562292d0acd4ad2fb8875e4cc53c21d07f43aa056e54a451a205 SHA512 5dcaca773ad6ee00ca33cfcc2060c763a8c75ad45753a4e5f11e6e76bdb2a49a8b46780efec12146f691f900326218e63c11af5abb709ca84c16bb77ce791943 +DIST luasec-1.3.1.tar.gz 54807 BLAKE2B e09d340b8bc391830d671dd5cbec76bd5190bebdd2e534800bea8efd19749a4379e2681bb7a6e6551da49109345f0b846904c222c0ecada6135d775e2060bfc7 SHA512 cfa4187518445abc6591bd0c24924122b62252be25ffd5564cf291f9a2ae3702a5fa299ffd265d2e0e8315b90d6783eccace4ff560f54f299161d3c5e3749508 diff --git a/dev-lua/luasec/luasec-1.3.0.ebuild b/dev-lua/luasec/luasec-1.3.1.ebuild similarity index 100% rename from dev-lua/luasec/luasec-1.3.0.ebuild rename to dev-lua/luasec/luasec-1.3.1.ebuild diff --git a/dev-lua/mpack/Manifest b/dev-lua/mpack/Manifest index 00e09b45279c..47c151b429a8 100644 --- a/dev-lua/mpack/Manifest +++ b/dev-lua/mpack/Manifest @@ -1 +1,2 @@ +DIST mpack-1.0.10.tar.gz 16256 BLAKE2B 56f279be5b84e89a18a6010320eff9f006cfba6df9621e7b4c338a866170a69589e9e50d0d7deb238ff40634f28aa4d0c43a135c6b7fa9a38ec41b8b669945cd SHA512 879e200d806a4aeb3dc31bf44781bb92b377ee86fe3050692179bff794a2748c175135e4ab5eb59f29202bd36ff27ecc26bab07d0c46c11414361f72abf3dc53 DIST mpack-1.0.9.tar.gz 16087 BLAKE2B 062f0deaa9ea359486933b5736591ea3ee78886e31259b721d88ef44762403185b881d076ca35fe6e8c16ab756d36698fec1ca893ab3667635e388456a8ad417 SHA512 c663a6cb29c1ae3f88baf25d36b076c35b35b96a16f9df472f8063009dc70886071cc27bf9224aceb86afb5c590ac072fd484435f40ecc4961eabfb5df08f395 diff --git a/dev-lua/mpack/mpack-1.0.10.ebuild b/dev-lua/mpack/mpack-1.0.10.ebuild new file mode 100644 index 000000000000..1c6415df4d35 --- /dev/null +++ b/dev-lua/mpack/mpack-1.0.10.ebuild @@ -0,0 +1,113 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LUA_COMPAT=( lua5-{1..4} luajit ) + +inherit lua toolchain-funcs + +MY_PN="lib${PN}-lua" + +DESCRIPTION="Lua bindings for libmpack" +HOMEPAGE="https://github.com/libmpack/libmpack-lua/" +SRC_URI="https://github.com/${MY_PN/-lua/}/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos" +IUSE="test" +REQUIRED_USE="${LUA_REQUIRED_USE}" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/libmpack + ${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_compile() { + pushd "${BUILD_DIR}" || die + + local myemakeargs=( + "CC=$(tc-getCC)" + "LUA_INCLUDE=$(lua_get_CFLAGS)" + "LUA_LIB=" + "USE_SYSTEM_MPACK=yes" + "USE_SYSTEM_LUA=yes" + ) + + emake "${myemakeargs[@]}" + + popd +} + +src_compile() { + lua_foreach_impl lua_src_compile +} + +lua_src_test() { + pushd "${BUILD_DIR}" || die + + # "[ FAILED ] test.lua @ 279: mpack should not leak memory" + # It doesn't seem upstream actually support LuaJIT so were this up to me + # I would drop it from LUA_COMPAT, unfortunately there are packages in the + # tree which currently expect it to be supported. + if [[ ${ELUA} == "luajit" ]]; then + ewarn "Not running tests under ${ELUA} because they are known to fail" + return + fi + + busted --lua="${ELUA}" test.lua || die + + popd +} + +src_test() { + lua_foreach_impl lua_src_test +} + +lua_src_install() { + pushd "${BUILD_DIR}" || die + + local installdir="$(lua_get_cmod_dir)" + local myemakeargs=( + "DESTDIR=${ED}" + "LUA_CMOD_INSTALLDIR=${installdir#$EPREFIX}" + "USE_SYSTEM_MPACK=yes" + "USE_SYSTEM_LUA=yes" + ) + + emake "${myemakeargs[@]}" install + + popd + + if [[ ${CHOST} == *-darwin* ]] ; then + local luav=$(lua_get_version) + # we only want the major version (e.g. 5.1) + local luamv=${luav:0:3} + local file="lua/${luamv}/mpack.so" + install_name_tool -id "${EPREFIX}/usr/$(get_libdir)/${file}" "${ED}/usr/$(get_libdir)/${file}" || die "Failed to adjust install_name" + fi +} + +src_install() { + lua_foreach_impl lua_src_install + + einstalldocs +} diff --git a/dev-ml/Manifest.gz b/dev-ml/Manifest.gz index 9d187c154988..55f71e2cd267 100644 Binary files a/dev-ml/Manifest.gz and b/dev-ml/Manifest.gz differ diff --git a/dev-ml/llvm-ocaml/Manifest b/dev-ml/llvm-ocaml/Manifest index b1c047b45e06..52a376db7b69 100644 --- a/dev-ml/llvm-ocaml/Manifest +++ b/dev-ml/llvm-ocaml/Manifest @@ -4,9 +4,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-16.0.0_rc3.ebuild b/dev-ml/llvm-ocaml/llvm-ocaml-16.0.0_rc3.ebuild deleted file mode 100644 index aee649edd10c..000000000000 --- a/dev-ml/llvm-ocaml/llvm-ocaml-16.0.0_rc3.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org python-any-r1 - -DESCRIPTION="OCaml bindings for LLVM" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0/${PV}" -KEYWORDS="" -IUSE="debug test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-lang/ocaml-4.00.0:0= - dev-ml/ocaml-ctypes:= - ~sys-devel/llvm-${PV}:=[debug?] - !sys-devel/llvm[ocaml(-)] -" - -DEPEND=" - ${RDEPEND} -" -BDEPEND=" - ${PYTHON_DEPS} - dev-lang/perl - dev-ml/findlib - >=dev-util/cmake-3.16 -" - -LLVM_COMPONENTS=( llvm cmake third-party ) -LLVM_USE_TARGETS=llvm -llvm.org_set_globals - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-any-r1_pkg_setup -} - -src_configure() { - local libdir=$(get_libdir) - local mycmakeargs=( - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - - -DBUILD_SHARED_LIBS=OFF - -DLLVM_BUILD_LLVM_DYLIB=ON - -DLLVM_LINK_LLVM_DYLIB=ON - -DLLVM_OCAML_OUT_OF_TREE=ON - - # cheap hack: LLVM combines both anyway, and the only difference - # is that the former list is explicitly verified at cmake time - -DLLVM_TARGETS_TO_BUILD="" - -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" - -DLLVM_BUILD_TESTS=$(usex test) - - # disable various irrelevant deps and settings - -DLLVM_ENABLE_FFI=OFF - -DLLVM_ENABLE_TERMINFO=OFF - -DHAVE_HISTEDIT_H=NO - -DLLVM_ENABLE_ASSERTIONS=$(usex debug) - -DLLVM_ENABLE_EH=ON - -DLLVM_ENABLE_RTTI=ON - - -DLLVM_HOST_TRIPLE="${CHOST}" - - -DPython3_EXECUTABLE="${PYTHON}" - - # TODO: ocamldoc - ) - - use test && mycmakeargs+=( - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - # also: custom rules for OCaml do not work for CPPFLAGS - use debug || local -x CFLAGS="${CFLAGS} -DNDEBUG" - cmake_src_configure - - local llvm_libdir=$(llvm-config --libdir) - # an ugly hack; TODO: figure out a way to pass -L to ocaml... - cd "${BUILD_DIR}/${libdir}" || die - ln -s "${llvm_libdir}"/*.so . || die - - if use test; then - local llvm_bindir=$(llvm-config --bindir) - # Force using system-installed tools. - sed -i -e "/llvm_tools_dir/s@\".*\"@\"${llvm_bindir}\"@" \ - "${BUILD_DIR}"/test/lit.site.cfg.py || die - fi -} - -src_compile() { - cmake_build ocaml_all -} - -src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - cmake_build check-llvm-bindings-ocaml -} - -src_install() { - DESTDIR="${D}" \ - cmake -P "${BUILD_DIR}"/bindings/ocaml/cmake_install.cmake || die - - dodoc bindings/ocaml/README.txt -} diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-16.0.0_rc4.ebuild b/dev-ml/llvm-ocaml/llvm-ocaml-16.0.0_rc4.ebuild deleted file mode 100644 index aee649edd10c..000000000000 --- a/dev-ml/llvm-ocaml/llvm-ocaml-16.0.0_rc4.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org python-any-r1 - -DESCRIPTION="OCaml bindings for LLVM" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0/${PV}" -KEYWORDS="" -IUSE="debug test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-lang/ocaml-4.00.0:0= - dev-ml/ocaml-ctypes:= - ~sys-devel/llvm-${PV}:=[debug?] - !sys-devel/llvm[ocaml(-)] -" - -DEPEND=" - ${RDEPEND} -" -BDEPEND=" - ${PYTHON_DEPS} - dev-lang/perl - dev-ml/findlib - >=dev-util/cmake-3.16 -" - -LLVM_COMPONENTS=( llvm cmake third-party ) -LLVM_USE_TARGETS=llvm -llvm.org_set_globals - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-any-r1_pkg_setup -} - -src_configure() { - local libdir=$(get_libdir) - local mycmakeargs=( - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - - -DBUILD_SHARED_LIBS=OFF - -DLLVM_BUILD_LLVM_DYLIB=ON - -DLLVM_LINK_LLVM_DYLIB=ON - -DLLVM_OCAML_OUT_OF_TREE=ON - - # cheap hack: LLVM combines both anyway, and the only difference - # is that the former list is explicitly verified at cmake time - -DLLVM_TARGETS_TO_BUILD="" - -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" - -DLLVM_BUILD_TESTS=$(usex test) - - # disable various irrelevant deps and settings - -DLLVM_ENABLE_FFI=OFF - -DLLVM_ENABLE_TERMINFO=OFF - -DHAVE_HISTEDIT_H=NO - -DLLVM_ENABLE_ASSERTIONS=$(usex debug) - -DLLVM_ENABLE_EH=ON - -DLLVM_ENABLE_RTTI=ON - - -DLLVM_HOST_TRIPLE="${CHOST}" - - -DPython3_EXECUTABLE="${PYTHON}" - - # TODO: ocamldoc - ) - - use test && mycmakeargs+=( - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - # also: custom rules for OCaml do not work for CPPFLAGS - use debug || local -x CFLAGS="${CFLAGS} -DNDEBUG" - cmake_src_configure - - local llvm_libdir=$(llvm-config --libdir) - # an ugly hack; TODO: figure out a way to pass -L to ocaml... - cd "${BUILD_DIR}/${libdir}" || die - ln -s "${llvm_libdir}"/*.so . || die - - if use test; then - local llvm_bindir=$(llvm-config --bindir) - # Force using system-installed tools. - sed -i -e "/llvm_tools_dir/s@\".*\"@\"${llvm_bindir}\"@" \ - "${BUILD_DIR}"/test/lit.site.cfg.py || die - fi -} - -src_compile() { - cmake_build ocaml_all -} - -src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - cmake_build check-llvm-bindings-ocaml -} - -src_install() { - DESTDIR="${D}" \ - cmake -P "${BUILD_DIR}"/bindings/ocaml/cmake_install.cmake || die - - dodoc bindings/ocaml/README.txt -} diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-17.0.0_pre20230304.ebuild b/dev-ml/llvm-ocaml/llvm-ocaml-17.0.0_pre20230304.ebuild deleted file mode 100644 index aee649edd10c..000000000000 --- a/dev-ml/llvm-ocaml/llvm-ocaml-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org python-any-r1 - -DESCRIPTION="OCaml bindings for LLVM" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0/${PV}" -KEYWORDS="" -IUSE="debug test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-lang/ocaml-4.00.0:0= - dev-ml/ocaml-ctypes:= - ~sys-devel/llvm-${PV}:=[debug?] - !sys-devel/llvm[ocaml(-)] -" - -DEPEND=" - ${RDEPEND} -" -BDEPEND=" - ${PYTHON_DEPS} - dev-lang/perl - dev-ml/findlib - >=dev-util/cmake-3.16 -" - -LLVM_COMPONENTS=( llvm cmake third-party ) -LLVM_USE_TARGETS=llvm -llvm.org_set_globals - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-any-r1_pkg_setup -} - -src_configure() { - local libdir=$(get_libdir) - local mycmakeargs=( - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - - -DBUILD_SHARED_LIBS=OFF - -DLLVM_BUILD_LLVM_DYLIB=ON - -DLLVM_LINK_LLVM_DYLIB=ON - -DLLVM_OCAML_OUT_OF_TREE=ON - - # cheap hack: LLVM combines both anyway, and the only difference - # is that the former list is explicitly verified at cmake time - -DLLVM_TARGETS_TO_BUILD="" - -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" - -DLLVM_BUILD_TESTS=$(usex test) - - # disable various irrelevant deps and settings - -DLLVM_ENABLE_FFI=OFF - -DLLVM_ENABLE_TERMINFO=OFF - -DHAVE_HISTEDIT_H=NO - -DLLVM_ENABLE_ASSERTIONS=$(usex debug) - -DLLVM_ENABLE_EH=ON - -DLLVM_ENABLE_RTTI=ON - - -DLLVM_HOST_TRIPLE="${CHOST}" - - -DPython3_EXECUTABLE="${PYTHON}" - - # TODO: ocamldoc - ) - - use test && mycmakeargs+=( - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - # also: custom rules for OCaml do not work for CPPFLAGS - use debug || local -x CFLAGS="${CFLAGS} -DNDEBUG" - cmake_src_configure - - local llvm_libdir=$(llvm-config --libdir) - # an ugly hack; TODO: figure out a way to pass -L to ocaml... - cd "${BUILD_DIR}/${libdir}" || die - ln -s "${llvm_libdir}"/*.so . || die - - if use test; then - local llvm_bindir=$(llvm-config --bindir) - # Force using system-installed tools. - sed -i -e "/llvm_tools_dir/s@\".*\"@\"${llvm_bindir}\"@" \ - "${BUILD_DIR}"/test/lit.site.cfg.py || die - fi -} - -src_compile() { - cmake_build ocaml_all -} - -src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - cmake_build check-llvm-bindings-ocaml -} - -src_install() { - DESTDIR="${D}" \ - cmake -P "${BUILD_DIR}"/bindings/ocaml/cmake_install.cmake || die - - dodoc bindings/ocaml/README.txt -} diff --git a/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild b/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild index 416be5f5e176..40773d40d9e9 100644 --- a/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild +++ b/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild @@ -16,7 +16,7 @@ LICENSE="|| ( AFL-3.0 AGPL-3 APL-1.0 Apache-2.0 BSD-2 Boost-1.0 CDDL CPAL-1.0 QPL-1.0 OFL-1.1 Sleepycat Watcom-1.0 W3C wxWinLL-3 ZLIB libpng )" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86" IUSE="test minimal" RESTRICT="!test? ( test )" diff --git a/dev-perl/Email-Address/Email-Address-1.913.0.ebuild b/dev-perl/Email-Address/Email-Address-1.913.0.ebuild new file mode 100644 index 000000000000..69bfabbd26e1 --- /dev/null +++ b/dev-perl/Email-Address/Email-Address-1.913.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=RJBS +DIST_VERSION=1.913 +inherit perl-module + +DESCRIPTION="RFC 2822 Address Parsing and Creation" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +RDEPEND="" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + virtual/perl-Encode + virtual/perl-File-Spec + >=virtual/perl-Test-Simple-0.960.0 + virtual/perl-Time-HiRes + ) +" diff --git a/dev-perl/Email-Address/Manifest b/dev-perl/Email-Address/Manifest index b505cac8f29f..f1213059c718 100644 --- a/dev-perl/Email-Address/Manifest +++ b/dev-perl/Email-Address/Manifest @@ -1 +1,2 @@ DIST Email-Address-1.912.tar.gz 42390 BLAKE2B f6a05f967a2c98f785e1c615a83e3cca68a800eb49659b6ee6586d46e5693c71f5cb5a4824d9370085460d78774cdd0167e64a1e748169f9fc22a4869e3f110f SHA512 fd8a8c09829f725609aa84c79ad89d1e44cbfb70cc44cae6a9f31174589404f56cf60ab3a4186137f7ff9838a3fe34a95a7c584e0eec2e5d1d79c919610f6e1a +DIST Email-Address-1.913.tar.gz 42844 BLAKE2B bcf569b8a2f2b9a97c8ba72351f3eaf2a4dec8b41b40e81a0c0066e6fa87fcaa332b52a02421b6225522b05392bafdb684829060f51a23569e0b6fd4eb577b3a SHA512 3c12c052cf7bc5738763f35e81eb328f990494774703ac204b516cec7faa985d262af79126e4068cb084ee4f3b56b1704bbe219288ff8efe5e61b6a62fcea901 diff --git a/dev-perl/Email-MIME/Email-MIME-1.953.0.ebuild b/dev-perl/Email-MIME/Email-MIME-1.953.0.ebuild new file mode 100644 index 000000000000..21961fa28ddb --- /dev/null +++ b/dev-perl/Email-MIME/Email-MIME-1.953.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=RJBS +DIST_VERSION=1.953 +inherit perl-module + +DESCRIPTION="Easy MIME message parsing" + +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~sparc-solaris ~x86-solaris" + +RDEPEND=" + virtual/perl-Carp + dev-perl/Email-Address-XS + >=dev-perl/Email-MIME-ContentType-1.23.0 + >=dev-perl/Email-MIME-Encodings-1.314.0 + dev-perl/Email-MessageID + >=dev-perl/Email-Simple-2.212.0 + >=virtual/perl-Encode-1.980.100 + virtual/perl-MIME-Base64 + >=dev-perl/MIME-Types-1.130.0 + dev-perl/Module-Runtime + virtual/perl-Scalar-List-Utils + virtual/perl-parent +" +BDEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.780.0 + test? ( + virtual/perl-File-Spec + >=virtual/perl-Test-Simple-0.960.0 + ) +" diff --git a/dev-perl/Email-MIME/Manifest b/dev-perl/Email-MIME/Manifest index 6923161aa862..f54ebde5a546 100644 --- a/dev-perl/Email-MIME/Manifest +++ b/dev-perl/Email-MIME/Manifest @@ -1 +1,2 @@ DIST Email-MIME-1.952.tar.gz 124514 BLAKE2B 89f294a6b8bb648b4b745fafb6c7009ba4943b070300544a535a5aa98d38275b1d1927e9bd41a7574aae73bec55191dbcb7190cc026b74cd0b189adc5c6c096d SHA512 bae81cf6e4db11848951c8a900e58de7077b30e8f16cd28fd5a7bbe44668b09419f51acb70b393d292b83c32b61f9c91af1abdc258453cb3b1590146f4bc6d70 +DIST Email-MIME-1.953.tar.gz 124368 BLAKE2B 55ec8978427874fa17f55026a7ff0d86f6816b724b4263bf03c6f57661aa544ca77445f082eec62f42fc61e0696dab5a44d752d645e83bea6ce58b6658b9f15c SHA512 d88704c7f0173198f94180da81beacaad6ea675e3fcd525f92df7c06a85df8664295c63f71ad6aa14ec517f101f23449e6c3818bbd951c1257b8d0080530c5f7 diff --git a/dev-perl/Email-Sender/Email-Sender-2.600.0.ebuild b/dev-perl/Email-Sender/Email-Sender-2.600.0.ebuild new file mode 100644 index 000000000000..1a1514549a56 --- /dev/null +++ b/dev-perl/Email-Sender/Email-Sender-2.600.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=RJBS +DIST_VERSION=2.600 +inherit perl-module + +DESCRIPTION="A library for sending email" + +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + virtual/perl-Carp + >=dev-perl/Email-Abstract-3.6.0 + dev-perl/Email-Address-XS + >=dev-perl/Email-Simple-1.998.0 + >=virtual/perl-File-Path-2.60.0 + virtual/perl-File-Spec + >=virtual/perl-IO-1.110.0 + >=virtual/perl-Scalar-List-Utils-1.450.0 + dev-perl/Module-Runtime + >=dev-perl/Moo-2.0.0 + >=dev-perl/MooX-Types-MooseLike-0.150.0 + >=virtual/perl-libnet-3.70.0 + dev-perl/Sub-Exporter + >=dev-perl/Throwable-0.200.3 + dev-perl/Try-Tiny +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + >=virtual/perl-CPAN-Meta-2.120.900 + >=dev-perl/Capture-Tiny-0.80.0 + virtual/perl-Exporter + virtual/perl-File-Temp + dev-perl/Sub-Override + dev-perl/Test-MockObject + >=virtual/perl-Test-Simple-0.960.0 + ) +" diff --git a/dev-perl/Email-Sender/Manifest b/dev-perl/Email-Sender/Manifest index 846a29bba48f..04292681f6b7 100644 --- a/dev-perl/Email-Sender/Manifest +++ b/dev-perl/Email-Sender/Manifest @@ -1,2 +1,3 @@ DIST Email-Sender-1.300035.tar.gz 52327 BLAKE2B 236e0ba6f0b1429f26b72d0e9a9b3d97c3c79330c95f2160b17eb83669338cafa5c756a8587d746e9db478a51404bf86c154db372a3078e5d0420490a1b942ca SHA512 1592af000d9abd4ecb410b3cb317d5b2b0e6dd938e1b3f3d8a561527845fe27ff53837761fcc47e10246a19e1dba2521422c96831970354ec20bbbe160d35afe DIST Email-Sender-2.500.tar.gz 52593 BLAKE2B 16a633f064ed3d1f34dcc8fbbecc9a7be5e1bcc775458f87b0043be36c00d2ff34f9640d8abb2a24f530cee901edefb0c4f4ccee26331e9e7f0bd949f62fcb12 SHA512 d7b9848ed7e218abaa9a47ef3c3f79f5fdd728a67795904655ad4df4b536f1df40bf80e0b6838112e26e71d56341e88b6044e6867fc351d41918b117a52ebbf3 +DIST Email-Sender-2.600.tar.gz 52671 BLAKE2B cabed02545f7d4c068454135f02128237c5342eafe2fb2d121da24d655fa9fe69a1fe675e693bc2f6bc812210bb5cf7d1da5268100674c2ae428dbe168b2f311 SHA512 2c28cc1f5c36488bf573a6e806ec4fbbe5fe3560fbb24c237375586a3f4e87df4c539e494910950a66e235296733fc9d186c49d9c7c5c016b17f2eacb62b17c6 diff --git a/dev-perl/Mail-DKIM/Mail-DKIM-1.202.302.120.ebuild b/dev-perl/Mail-DKIM/Mail-DKIM-1.202.302.120.ebuild new file mode 100644 index 000000000000..d413c224bf92 --- /dev/null +++ b/dev-perl/Mail-DKIM/Mail-DKIM-1.202.302.120.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=MBRADSHAW +DIST_VERSION=1.20230212 +DIST_EXAMPLES=("scripts/*") +inherit perl-module + +DESCRIPTION="Signs/verifies Internet mail using DKIM message signatures" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + virtual/perl-Carp + >=dev-perl/Crypt-OpenSSL-RSA-0.240.0 + virtual/perl-Digest-SHA + virtual/perl-MIME-Base64 + dev-perl/MailTools + dev-perl/Mail-AuthenticationResults + dev-perl/Net-DNS +" + +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + dev-perl/Net-DNS-Resolver-Mock + virtual/perl-Test-Simple + dev-perl/Test-RequiresInternet + dev-perl/YAML-LibYAML + ) +" + +mydoc=("doc/*.txt" "HACKING.DKIM") + +src_test() { + # disable online tests + if ! has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then + einfo "Removing network tests w/o DIST_TEST_OVERRIDE=~network" + perl_rm_files t/{policy,public_key,verifier,dev-manifest}.t + fi + perl-module_src_test +} diff --git a/dev-perl/Mail-DKIM/Manifest b/dev-perl/Mail-DKIM/Manifest index b424f1d35c92..d3c6a45bbfb8 100644 --- a/dev-perl/Mail-DKIM/Manifest +++ b/dev-perl/Mail-DKIM/Manifest @@ -1 +1,2 @@ DIST Mail-DKIM-1.20200907.tar.gz 177877 BLAKE2B a71da80038e9abc8056fb248f7c6da76fdd98427bc18fc1d3c4bdba73dde4a683db10a1b1b61bedf03adbcf349c4be9e82e29b13adaa02007db5b7422ffc27f1 SHA512 1bfdd97ca49abfd3ae6f13bc8ede8706531801e078351ac41a3a6172b9e65249d247e38a95c53eb60781b5f38b971a5acf9c8b98948e9c4d7a427a525ee231cb +DIST Mail-DKIM-1.20230212.tar.gz 179183 BLAKE2B 51613469d5369525a5c51859cabbf2ac0dc04e5406ede338dcb16471182d3d3e789821b5cc52fe85cdb07f67a20b33abf4fff1e647e3aa25c2a69c1037b0f753 SHA512 b34ee931f121104c93973f5cacf551f7583947c82fd272197b970852ac37d910f69d2fd44a4d4614162ee38b54205bb93e0138fdf48cc2c43ab2606040f18d3b diff --git a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild index 2d2516801b8c..08796f224a0a 100644 --- a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild +++ b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild @@ -9,7 +9,7 @@ inherit perl-module DESCRIPTION="Perl implementation of DMARC" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86" IUSE="minimal" PERL_RM_FILES=( diff --git a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.302.150.ebuild b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.302.150.ebuild new file mode 100644 index 000000000000..f8729cac15c7 --- /dev/null +++ b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.302.150.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=MBRADSHAW +DIST_VERSION=1.20230215 +inherit perl-module + +DESCRIPTION="Perl implementation of DMARC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="minimal" + +PERL_RM_FILES=( + 'bin/install_deps.pl' +) + +RDEPEND=" + !minimal? ( + dev-perl/Mail-DKIM + dev-perl/Net-IMAP-Simple + dev-perl/Net-SMTPS + ) + virtual/perl-Carp + dev-perl/Config-Tiny + >=dev-perl/DBD-SQLite-1.310.0 + >=dev-perl/DBIx-Simple-1.350.0 + virtual/perl-Data-Dumper + dev-perl/Email-MIME + >=dev-perl/Email-Sender-1.300.32 + dev-perl/Email-Simple + virtual/perl-Encode + dev-perl/File-ShareDir + virtual/perl-Getopt-Long + virtual/perl-HTTP-Tiny + virtual/perl-IO + virtual/perl-IO-Compress + dev-perl/IO-Socket-SSL + dev-perl/libwww-perl + dev-perl/Mail-DKIM + dev-perl/Net-DNS + dev-perl/Net-HTTP + dev-perl/Net-IDN-Encode + dev-perl/Net-IP + dev-perl/Net-SMTPS + dev-perl/Net-SSLeay + >=dev-perl/Net-Server-2 + virtual/perl-Socket + >=dev-perl/Socket6-0.230.0 + virtual/perl-Sys-Syslog + dev-perl/Test-File-ShareDir + dev-perl/URI + dev-perl/XML-LibXML + virtual/perl-parent + >=dev-perl/Regexp-Common-2013031301 +" +BDEPEND="${RDEPEND} + >=dev-perl/Module-Build-0.360.100 + virtual/perl-ExtUtils-MakeMaker + >=dev-perl/File-ShareDir-Install-0.60.0 + test? ( + dev-perl/Test-Exception + dev-perl/Test-Output + virtual/perl-Test-Simple + ) +" + +src_test() { + local my_test_control + local badfiles=( t/author-*.t ) + my_test_control=${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel verbose}} + if ! has network ${my_test_control} ; then + einfo "Removing network tests w/o DIST_TEST_OVERRIDE~=network"; + badfiles+=( \ + "t/04.PurePerl.t" \ + "t/06.Result.t" \ + "t/09.HTTP.t" \ + "t/11.Report.Store.t" \ + "t/17.Report.Aggregate.Schema.t" \ + "t/22.Report.Send.SMTP.t" \ + ) + fi + perl_rm_files "${badfiles[@]}" + perl-module_src_test +} diff --git a/dev-perl/Mail-DMARC/Manifest b/dev-perl/Mail-DMARC/Manifest index 7f78dd57c02a..e14291e96224 100644 --- a/dev-perl/Mail-DMARC/Manifest +++ b/dev-perl/Mail-DMARC/Manifest @@ -1 +1,2 @@ DIST Mail-DMARC-1.20210927.tar.gz 794723 BLAKE2B 3b0eeed4ccc6498c0af3afe20052e9ea0b0c8ba1625b80ee7b211d7f4235a4f595f7f15862b6b79642423dccd95755047ac53d54b30a5db0b0c05a6070725443 SHA512 eef5d0fda54ea45c04e61b4b6f7fae995404978c297289e68640d0409528542806ceed9dc4c701376c81014ac5d5df25f541a789f54fd982be8c4518fbcc524f +DIST Mail-DMARC-1.20230215.tar.gz 799270 BLAKE2B 110b0e8603373df73bbc1d660799e923ec7e26403c40031fa7e61b824d8ab8da1c537a9f300370cb75232e7f2cbe79a6a87300c8e8e0d629a5b3e139896a8f1c SHA512 584ede08abe69c9db671465499c5ac79693e6d2d6c913cee1fbe20d85858847b99a0b0864ad62c8bb0786907c6254c3eda45183d00a1f3e38ba90ac542fb337a diff --git a/dev-perl/Manifest.gz b/dev-perl/Manifest.gz index 204fc9a92a65..d0b8732126ce 100644 Binary files a/dev-perl/Manifest.gz and b/dev-perl/Manifest.gz differ diff --git a/dev-perl/Net-HTTP/Manifest b/dev-perl/Net-HTTP/Manifest index dabef342fade..7726000559af 100644 --- a/dev-perl/Net-HTTP/Manifest +++ b/dev-perl/Net-HTTP/Manifest @@ -1 +1,2 @@ DIST Net-HTTP-6.21.tar.gz 38914 BLAKE2B 7d0351912f279a60acf30c5867ba54023e29b7208fa3605bd493271f9b59b3c8ca4e26c093b80b24a8f9a98e57bef54304b70c98896d270f9580a7e88794db1d SHA512 ca50e54a893e38456dc107c216c6b119cce9c30b2d1ca47607e0fed426a79d2ed660818a5d5a6ef240cae28844c2d7ca613ce81f53e890e7f15b22e4d0e2887b +DIST Net-HTTP-6.22.tar.gz 39087 BLAKE2B 07bb50d172a01b56839b6e5f26584451a3713cd645791e294dedb0c28bedbcd2e1c89fe16dafbb2f89544c0a5e7eab3d591c1d3b874f4f617b02ed508863de1c SHA512 8d0af85baee8a3b257995c6dd277c2eb578d1feeec89f3e4be0548959d2cf07934764d9d16a542a50f72a4611e3f4b6335ff7e969a28cd74fbb0ec3961588131 diff --git a/dev-perl/Net-HTTP/Net-HTTP-6.220.0.ebuild b/dev-perl/Net-HTTP/Net-HTTP-6.220.0.ebuild new file mode 100644 index 000000000000..24939515ebc3 --- /dev/null +++ b/dev-perl/Net-HTTP/Net-HTTP-6.220.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=OALDERS +DIST_VERSION=6.22 +inherit perl-module + +DESCRIPTION="Low-level HTTP connection (client)" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris" +IUSE="minimal test" +RESTRICT="!test? ( test )" + +RDEPEND=" + !minimal? ( + virtual/perl-IO-Socket-IP + dev-perl/IO-Socket-INET6 + >=dev-perl/IO-Socket-SSL-2.12.0 + ) + virtual/perl-Carp + ! .git/refs/remotes/origin/master || die - TRAVIS=1 ./init-tests-after-clone.sh || die - cat test/fixtures/.gitconfig >> ~/.gitconfig || die - - distutils-r1_src_test -} - -python_test() { - local EPYTEST_DESELECT=( - # performance tests are unreliable by design - test/performance - # unimpoortant and problematic - test/test_installation.py - # Internet - test/test_repo.py::TestRepo::test_leaking_password_in_clone_logs - # requires which(1) - # https://github.com/gitpython-developers/GitPython/pull/1525 - test/test_git.py::TestGit::test_refresh - # TODO - test/test_submodule.py::TestSubmodule::test_base_rw - test/test_submodule.py::TestSubmodule::test_git_submodules_and_add_sm_with_new_commit - test/test_submodule.py::TestSubmodule::test_list_only_valid_submodules - test/test_submodule.py::TestSubmodule::test_root_module - ) - - epytest test -} diff --git a/dev-python/GitPython/GitPython-3.1.31.ebuild b/dev-python/GitPython/GitPython-3.1.31.ebuild index 803fa451e4ec..2ecd169efe75 100644 --- a/dev-python/GitPython/GitPython-3.1.31.ebuild +++ b/dev-python/GitPython/GitPython-3.1.31.ebuild @@ -29,7 +29,7 @@ SRC_URI+=" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" RDEPEND=" dev-vcs/git diff --git a/dev-python/GitPython/Manifest b/dev-python/GitPython/Manifest index aa98dd078a51..70a71e7d2e43 100644 --- a/dev-python/GitPython/Manifest +++ b/dev-python/GitPython/Manifest @@ -1,7 +1,4 @@ -DIST GitPython-3.1.30.gitbundle 9945082 BLAKE2B ac3e530509d459303c0c465668c92073d0532bb75c0635c9e5521857132c2d3c18f0e30b85830cf101fc0c79cde33a5eaf459cddbd66abeb6185453d90e4077d SHA512 e43275e8ffc3fb02e360503de3cd9d0b2c817f870361fe6bcfcd9dec30da077c4c685f57bce408ec670f2fb49d265abca34bf14d806a3ea54fd25f9eaf5019b3 -DIST GitPython-3.1.30.tar.gz 195508 BLAKE2B ba3dcb7c7aba8ec42842e6240777b8823e641139e6704641a7236ea07b2a82966638fb074c8fe3ff47b66e23aa526cfc899d8c28359f260f62fd1962a6de66de SHA512 067e64c801ca3882d70aca7706b3a57a51597817f0a3f03290a17e3ebb0fa0fd04cd1d72a32eae3bb72b6c486ffd26d1ede9cee5b17d99ffceb0f8dcc83081b9 DIST GitPython-3.1.31.gitbundle 9820824 BLAKE2B 47becdf80c8047c3de74f3ad2308f2003629dac970df961e97ae455719690afa8ca4fc08c85fdd01d351980cac5b79265164b92c16e993efb964e4c5d6e62810 SHA512 2b73a9bbe11bf24c1f0cfbc817b1226ae49c52a898f233d23aa8512cb7709adaba57c76afce8aa4416dcc4f16775d0d4138f0059ede51f59a6ccdd27d0f08cd3 DIST GitPython-3.1.31.tar.gz 195822 BLAKE2B c5644a811e33da4e2983d5b41dc5e223bff23bb817027485fd24598163dc515d1823e8abc5f871a9ad4334827f097dbe7856cf618940cd3ddbe507728253ea2c SHA512 80d5f73db589e239dead268c99092b2429c4d0602e4f9a1e77cce5c68f2eade1651e3da9de68fd485021565f3a2d9b980c286b0d302c58e60011a443b4361e71 DIST gitdb-4.0.10.gitbundle 1485461 BLAKE2B 5a217c609a402cd7888da1502b25d217812503cd703cda8bce3c7159732c59d7f4bcd52688a5da457f43fde1645a6db79588a6fc8cc8dff5c58e9dcbaef79b9a SHA512 98dba48f75e28eaded791f91c611e07bef73c28a7f8ac58889b05d04f4b3699a85a5be1c829ea3e2f380507a9009f35bc552bb4260564127e2863807f9b4712a -DIST smmap-5.0.0.gitbundle 338621 BLAKE2B 58c151245a1353d482e06313beb1cfbe7aa23d30733b284b1745b562da1da4e6f9b8acd7d4b967987e8c29a0cfbe6d3b27790f4683f6cbd86fc22a1416bc1c24 SHA512 94b827cdcfaf31b726b48b7b0a9036e852683046b07430b79e59a1339079ca078129d5eb02d9009979ce86892748b700d6cd281e401ddf6b0048252e2181fe1f DIST smmap-5.0.0_p1.gitbundle 324544 BLAKE2B 69098c7644abaec7f32226cad7ff3008e49d94c9f7349d0b815223249c20bfd2b51a50474e51864821f30c98f5982e5c35ce9217145a1e5d11326492c41faecc SHA512 4f36ca2c94ddfeb949c880fb52c3b1905d144dd59b95f2f05c93ed7b694dcb128218a2800ca23b721fbeff9a1920e8c3326675098e2ef0361ff6e90c8c2850ba diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index 490679fa7053..02b3e13d9591 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/PyGithub/Manifest b/dev-python/PyGithub/Manifest index 7178a4f43652..05a1fe131dc7 100644 --- a/dev-python/PyGithub/Manifest +++ b/dev-python/PyGithub/Manifest @@ -1,2 +1,3 @@ DIST PyGithub-1.57.gh.tar.gz 3159952 BLAKE2B e753a72c0fe20f0697ff3246fd2c3445571079ae18bee50abf6543da51d9e889c67cafa0bf36a980223f3423cf880c36d24ce74a6bf245117a080186a209ddcb SHA512 6c8880d21c5134581be6bc5549184c3f13cef8f360a46a459234f22f3dd4fc5f8b573cc3a5d870bba6c6129ff7b670e739d87e42f2e34ddcdf357a3fe2b3cadc DIST PyGithub-1.58.0.gh.tar.gz 3172006 BLAKE2B a1d71c11a359d296fbf895a1fc3c9f60490b7c63fd65c92a3a025c2b306ca281a03cf65d49a1dcca5bb0a9c537b130f5ef7bd9ab594f1521a106857f83669f65 SHA512 cbaca0d116be56f6d44084892e52b7073378743178342a480c2b3990542e476bee52947d56f8be950d05d5c06fb8eaeb32acb35285c79e0cbbd8b24239af6cba +DIST PyGithub-1.58.1.tar.gz 3171074 BLAKE2B e1397db839b2fc194fc67d9ac47adf9faa4a087c9350596e243d8d763a05d50ee1f9b03192bc5b88c0c94893c8d39b798efd07d0c2c8c597072c65306339c03a SHA512 97e316d8bcd47546da2f64afe462b51d183a5385544a57963585a179d844e12865c7b87f08c507c4d3d8c0397a7f98acd84c17f45e9668722459c4c2cc328363 diff --git a/dev-python/PyGithub/PyGithub-1.58.1.ebuild b/dev-python/PyGithub/PyGithub-1.58.1.ebuild new file mode 100644 index 000000000000..c22ebb71ed44 --- /dev/null +++ b/dev-python/PyGithub/PyGithub-1.58.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Python library to access the Github API v3" +HOMEPAGE=" + https://github.com/PyGithub/PyGithub/ + https://pypi.org/project/PyGithub/ +" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +# cryptography via pyjwt[crypto] +RDEPEND=" + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/deprecated[${PYTHON_USEDEP}] + >=dev-python/pyjwt-2.4.0[${PYTHON_USEDEP}] + >=dev-python/pynacl-1.4.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.14.0[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] + test? ( + >=dev-python/httpretty-0.9.6[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest diff --git a/dev-python/argcomplete/Manifest b/dev-python/argcomplete/Manifest index 2bca546cb267..fd628a4f3a9d 100644 --- a/dev-python/argcomplete/Manifest +++ b/dev-python/argcomplete/Manifest @@ -2,3 +2,4 @@ DIST argcomplete-2.0.0.tar.gz 54164 BLAKE2B 77da149b07d4019f8d6f3dda8fd9bbe9953c DIST argcomplete-2.0.5.tar.gz 54665 BLAKE2B 33b3c1d6ba4b6fe6ac959db050d4944411a3ef6e737b9ae16f70d1e2cdd6cea0c2534ac4f4edce63df3606a18b9d8e16831a14db655cdd9cb4c2ad3afed60c72 SHA512 6354f2f67a5d0ff35539c2c4fa5ab5b78d3e57648ee2436da7b3916044d568d8558316a3e2b34581c97540c4a9f2191869fb215f0020ce09416d7b31377252e5 DIST argcomplete-2.1.1.tar.gz 54042 BLAKE2B f4d1825306a17a873e3b3a9f23fea20ba29c4956ffc3228de4737b5be6280a3f29214a9e96bf5123220b2bd0b0fd88e77aa4d1487ef715af4e353fab0e2827a5 SHA512 3d37059713d953037421f2a3a2de1f3de7d2073423bce16187ffd47d24edbb72778ca2513ecb52c68ed6a3f89999da85770af36d07fded4ab1b41693a2ef2836 DIST argcomplete-2.1.2.tar.gz 54114 BLAKE2B 19d29eb26c8d77998dcba51c263f49800ff98f22038964faf63d7b5963e8d62ca71ade9493937014f2e030add8a7d1032e2fdffce28765e12164906499cd2bcb SHA512 a91e3c0274c780da173659524f166b98f55342e54fbd38583757e65350b2288ea0e7f5acee7cb83b11478eda1b9b0f82ae6b0f559d7104c4ed67a6e1c9befa24 +DIST argcomplete-3.0.0.tar.gz 54666 BLAKE2B 98ea63847232e17a485f2a5484fc58d2154281046c190c98f542ee9c3e82ee13d4504056a8da29a093632693badb9a93067ad64b28ffa3d58d22de9c0a99f21a SHA512 ecb88f6487fe6b4e7ecd8b504496bd2e4ffb4ca9dc0e27557d6db49b5b07610f6a8560e15cb5a5ad49af71e5b6c1d825a2e8a72731b2c39ba3907c2a9fe0a14f diff --git a/dev-python/argcomplete/argcomplete-3.0.0.ebuild b/dev-python/argcomplete/argcomplete-3.0.0.ebuild new file mode 100644 index 000000000000..4c9150727c75 --- /dev/null +++ b/dev-python/argcomplete/argcomplete-3.0.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} pypy3 ) + +inherit distutils-r1 pypi + +DESCRIPTION="Bash tab completion for argparse" +HOMEPAGE=" + https://github.com/kislyuk/argcomplete/ + https://pypi.org/project/argcomplete/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" +IUSE="test" +RESTRICT="!test? ( test )" + +# pip is called as an external tool +BDEPEND=" + test? ( + app-shells/fish + app-shells/tcsh + dev-python/pexpect[${PYTHON_USEDEP}] + >=dev-python/pip-19 + ) +" + +src_prepare() { + sed -i -e 's:timeout=5:timeout=30:' test/test.py || die + distutils-r1_src_prepare +} + +python_test() { + "${EPYTHON}" test/test.py -v || die +} diff --git a/dev-python/canonicaljson/Manifest b/dev-python/canonicaljson/Manifest index a5258eb4dff2..deb484d6803f 100644 --- a/dev-python/canonicaljson/Manifest +++ b/dev-python/canonicaljson/Manifest @@ -1,3 +1,2 @@ -DIST canonicaljson-1.6.4.gh.tar.gz 10408 BLAKE2B 4d55bb90cd4bbd5e019ffd0d505651c99dc6b296e9c0a52582265438586890cd6b663116ba0b66807b7a665c54eea001e039ca86c2fef9175b72a318a11a79a7 SHA512 7be1300c17d51f917b1e81931f6d0dd681b1eef9b7f4e82ba3ae683609d74fd924eb3a832c8261611f556c190329748966bf15abe34bc1d22f2ecdf29372b560 DIST canonicaljson-1.6.5.gh.tar.gz 10457 BLAKE2B 14a56133e6b907ddd897f1d2f183c6ac0ab247b629253e74fd76bf7a41092dabe20de51d5a3ef7c5d6c67c78c76c2174ef430aaf73d744477bb12a8eb1b1e4b2 SHA512 dc4c18b8b2cf833038ca77a7c1c5cac6b9e09b0bc902fa58db095767c23a7e6b24257694931a4db0503934535ae965f5ceafd26d42b9a6c9ae19821522b2d070 DIST canonicaljson-2.0.0.tar.gz 10716 BLAKE2B e310e9e8e0437f0e5cc69d2e258887582f8ff010a242102a331b5d09686d0785bec35b8c1fd44ed18f4ad381af1710bc5edf186602106ab0196f33f48474a909 SHA512 aa9bed50f8d0c7c32451ec5f701c8a8b7d1139eb41797842eea1a86e7d86a52ddec6b1e0254469aa3c92ed1fc462bec647580d60d96c38be7d8bd8ee641b51b7 diff --git a/dev-python/canonicaljson/canonicaljson-1.6.4.ebuild b/dev-python/canonicaljson/canonicaljson-1.6.4.ebuild deleted file mode 100644 index 6441edec0649..000000000000 --- a/dev-python/canonicaljson/canonicaljson-1.6.4.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -DESCRIPTION="Canonical JSON" -HOMEPAGE=" - https://github.com/matrix-org/python-canonicaljson/ - https://pypi.org/project/canonicaljson/ -" -SRC_URI=" - https://github.com/matrix-org/python-canonicaljson/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -S="${WORKDIR}/python-${P}" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~ppc64" - -RDEPEND=" - dev-python/simplejson[${PYTHON_USEDEP}] -" - -distutils_enable_tests unittest diff --git a/dev-python/canonicaljson/canonicaljson-1.6.5.ebuild b/dev-python/canonicaljson/canonicaljson-1.6.5.ebuild index 08779249ceca..d1d2f7724407 100644 --- a/dev-python/canonicaljson/canonicaljson-1.6.5.ebuild +++ b/dev-python/canonicaljson/canonicaljson-1.6.5.ebuild @@ -22,7 +22,7 @@ S="${WORKDIR}/python-${P}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~ppc64" +KEYWORDS="amd64 ~ppc64" RDEPEND=" dev-python/simplejson[${PYTHON_USEDEP}] diff --git a/dev-python/casttube/casttube-0.2.1-r1.ebuild b/dev-python/casttube/casttube-0.2.1-r1.ebuild index d4e9308a101d..f094dffdcbbe 100644 --- a/dev-python/casttube/casttube-0.2.1-r1.ebuild +++ b/dev-python/casttube/casttube-0.2.1-r1.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/ur1katz/casttube" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" RDEPEND="dev-python/requests[${PYTHON_USEDEP}]" diff --git a/dev-python/casttube/casttube-0.2.1.ebuild b/dev-python/casttube/casttube-0.2.1.ebuild deleted file mode 100644 index 3be48593c8ee..000000000000 --- a/dev-python/casttube/casttube-0.2.1.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..10} ) - -inherit distutils-r1 - -DESCRIPTION="casttube provides a way to interact with the Youtube Chromecast api" -HOMEPAGE="https://github.com/ur1katz/casttube" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND="dev-python/requests[${PYTHON_USEDEP}]" - -src_prepare() { - sed -e '/data_files/d' -i setup.py || die - distutils-r1_src_prepare -} diff --git a/dev-python/cheetah3/cheetah3-3.2.6_p2.ebuild b/dev-python/cheetah3/cheetah3-3.2.6_p2.ebuild index d40d485e41b3..609d7d6073f4 100644 --- a/dev-python/cheetah3/cheetah3-3.2.6_p2.ebuild +++ b/dev-python/cheetah3/cheetah3-3.2.6_p2.ebuild @@ -18,7 +18,7 @@ SRC_URI=" S=${WORKDIR}/${MY_P} LICENSE="MIT" -KEYWORDS="amd64 arm arm64 ~loong ~riscv x86" +KEYWORDS="amd64 arm arm64 ~loong ~ppc64 ~riscv x86" SLOT="0" RDEPEND=" diff --git a/dev-python/clang-python/Manifest b/dev-python/clang-python/Manifest index b1c047b45e06..52a376db7b69 100644 --- a/dev-python/clang-python/Manifest +++ b/dev-python/clang-python/Manifest @@ -4,9 +4,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/dev-python/clang-python/clang-python-16.0.0_rc3.ebuild b/dev-python/clang-python/clang-python-16.0.0_rc3.ebuild deleted file mode 100644 index 5ec556a2ca20..000000000000 --- a/dev-python/clang-python/clang-python-16.0.0_rc3.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit llvm.org python-r1 - -DESCRIPTION="Python bindings for sys-devel/clang" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="" -IUSE="test" -RESTRICT="!test? ( test )" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -# The module is opening libclang.so directly, and doing some blasphemy -# on top of it. -DEPEND=" - >=sys-devel/clang-${PV}:* - !sys-devel/llvm:0[clang(-),python(-)] - !sys-devel/clang:0[python(-)] -" -RDEPEND=" - ${DEPEND} - ${PYTHON_DEPS} -" -BDEPEND=" - ${PYTHON_DEPS} - test? ( - sys-devel/clang:${LLVM_MAJOR} - ) -" - -LLVM_COMPONENTS=( clang/bindings/python ) -llvm.org_set_globals - -python_test() { - # tests rely on results from a specific clang version, so override - # the search path - local -x CLANG_LIBRARY_PATH=${BROOT}/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir) - local -x CLANG_NO_DEFAULT_CONFIG=1 - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}" -} - -src_test() { - python_foreach_impl python_test -} - -src_install() { - python_foreach_impl python_domodule clang -} diff --git a/dev-python/clang-python/clang-python-16.0.0_rc4.ebuild b/dev-python/clang-python/clang-python-16.0.0_rc4.ebuild deleted file mode 100644 index 5ec556a2ca20..000000000000 --- a/dev-python/clang-python/clang-python-16.0.0_rc4.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit llvm.org python-r1 - -DESCRIPTION="Python bindings for sys-devel/clang" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="" -IUSE="test" -RESTRICT="!test? ( test )" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -# The module is opening libclang.so directly, and doing some blasphemy -# on top of it. -DEPEND=" - >=sys-devel/clang-${PV}:* - !sys-devel/llvm:0[clang(-),python(-)] - !sys-devel/clang:0[python(-)] -" -RDEPEND=" - ${DEPEND} - ${PYTHON_DEPS} -" -BDEPEND=" - ${PYTHON_DEPS} - test? ( - sys-devel/clang:${LLVM_MAJOR} - ) -" - -LLVM_COMPONENTS=( clang/bindings/python ) -llvm.org_set_globals - -python_test() { - # tests rely on results from a specific clang version, so override - # the search path - local -x CLANG_LIBRARY_PATH=${BROOT}/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir) - local -x CLANG_NO_DEFAULT_CONFIG=1 - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}" -} - -src_test() { - python_foreach_impl python_test -} - -src_install() { - python_foreach_impl python_domodule clang -} diff --git a/dev-python/clang-python/clang-python-17.0.0_pre20230304.ebuild b/dev-python/clang-python/clang-python-17.0.0_pre20230304.ebuild deleted file mode 100644 index 5ec556a2ca20..000000000000 --- a/dev-python/clang-python/clang-python-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit llvm.org python-r1 - -DESCRIPTION="Python bindings for sys-devel/clang" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="" -IUSE="test" -RESTRICT="!test? ( test )" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -# The module is opening libclang.so directly, and doing some blasphemy -# on top of it. -DEPEND=" - >=sys-devel/clang-${PV}:* - !sys-devel/llvm:0[clang(-),python(-)] - !sys-devel/clang:0[python(-)] -" -RDEPEND=" - ${DEPEND} - ${PYTHON_DEPS} -" -BDEPEND=" - ${PYTHON_DEPS} - test? ( - sys-devel/clang:${LLVM_MAJOR} - ) -" - -LLVM_COMPONENTS=( clang/bindings/python ) -llvm.org_set_globals - -python_test() { - # tests rely on results from a specific clang version, so override - # the search path - local -x CLANG_LIBRARY_PATH=${BROOT}/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir) - local -x CLANG_NO_DEFAULT_CONFIG=1 - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}" -} - -src_test() { - python_foreach_impl python_test -} - -src_install() { - python_foreach_impl python_domodule clang -} diff --git a/dev-python/comm/comm-0.1.2.ebuild b/dev-python/comm/comm-0.1.2.ebuild index 84c686fc4064..386bea008940 100644 --- a/dev-python/comm/comm-0.1.2.ebuild +++ b/dev-python/comm/comm-0.1.2.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" RDEPEND=" >=dev-python/traitlets-5.3[${PYTHON_USEDEP}] diff --git a/dev-python/cov-core/Manifest b/dev-python/cov-core/Manifest deleted file mode 100644 index f85649084cb3..000000000000 --- a/dev-python/cov-core/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST cov-core-1.15.0.tar.gz 5890 BLAKE2B bddab94ae47ba19ecdee5aae0198d9086a423673362ac64f0885f773bd8b8ab3f4d6abf1203ee901e272161dfb4b64168f2aa5f2d0f4426ea279d6d7251e921e SHA512 1b962a6a7253c1f6530248f3a71058e7709ee5cca274166807f040163c9cc240e9e85e42820063476c1c0f6dfca81d45277738663ed818fe715b30db151ace16 diff --git a/dev-python/cov-core/cov-core-1.15.0-r3.ebuild b/dev-python/cov-core/cov-core-1.15.0-r3.ebuild deleted file mode 100644 index 244ce842a537..000000000000 --- a/dev-python/cov-core/cov-core-1.15.0-r3.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) -inherit distutils-r1 pypi - -DESCRIPTION="plugin core for use by pytest-cov, nose-cov and nose2-cov" -HOMEPAGE="https://github.com/schlamar/cov-core" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" - -RDEPEND=">=dev-python/coverage-3.6[${PYTHON_USEDEP}]" - -python_install() { - [[ ${EPYTHON} == pypy* ]] && addpredict "$(python_get_sitedir)/init_cov_core.pth" - distutils-r1_python_install -} - -python_install_all() { - distutils-r1_python_install_all - find "${D}" -name '*.pth' -delete || die -} diff --git a/dev-python/cov-core/metadata.xml b/dev-python/cov-core/metadata.xml deleted file mode 100644 index 83f44b373d30..000000000000 --- a/dev-python/cov-core/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - chutzpah@gentoo.org - Patrick McLean - - - cov-core - schlamar/cov-core - - diff --git a/dev-python/importlib_metadata/Manifest b/dev-python/importlib_metadata/Manifest index 6988bbbadba7..2eb0751d3f71 100644 --- a/dev-python/importlib_metadata/Manifest +++ b/dev-python/importlib_metadata/Manifest @@ -1,2 +1,4 @@ DIST importlib_metadata-4.13.0.tar.gz 50445 BLAKE2B 0f52430bdcf63275d16d330fd2ec6a85926ab75cc2c14d0e996dc29a1258ba71e12253dd36f776f280c68cfc0d68058ce52d246fef5eccd9c3b7e5ea9bab5441 SHA512 68deb9b017d89df05b613c564bfaafd9024f9a6b1b14973bb75c0756f29911c6a2516a87b4fad60cb15b66bca79a275163fb8db2cfbd088ab952633de056d1e1 DIST importlib_metadata-6.0.0.tar.gz 49776 BLAKE2B 9c4e6b20b725e263dad4acc4553b0067777c7332b33c0e56344aa2ceb09e93d71db14aebc522ae81e068a1a82ad48947f6f72eaec932933ae61d4daa2e043e63 SHA512 7d5cea465bf02722b28542f374e36ed55ab09455e1e548e838acf0cb38dcd84a79f5ef7cd673400852ff3a33271078ec8476f02aa7bf7748d3b85f4cefe3f678 +DIST importlib_metadata-6.0.1.tar.gz 49963 BLAKE2B 8f915035334965ae373977814d335b66028f85372f96a9815fe3e59ca346b60d64c16e147e8a9d1ce44e26b31851dcfbda84002fc1a0d93c0d154115f5acec4e SHA512 9ee241a8865d181fae103e643ae618f46541ba9aab299df32892739db991d78b4199df436f77d7c28aeb736e4c2cfb38301cb7133d8baff3c149f4421e0431a1 +DIST importlib_metadata-6.1.0.tar.gz 50209 BLAKE2B 8c3afc8037eb49de1e862539150a9401297bf136ca005119c1f1d19fb7a9485b1d2caf2a290eb577308e3111352113cdd51312388f952a8a1402f9bf6081e28a SHA512 7effcdcfa67d2360533205e63013934141bfa4cf5fcafa021381470e9e99025df89c1b9328d620fce6eb83f95af6919e3576f366cec47ec3a3f79414e3171e6c diff --git a/dev-python/importlib_metadata/importlib_metadata-6.0.1.ebuild b/dev-python/importlib_metadata/importlib_metadata-6.0.1.ebuild new file mode 100644 index 000000000000..94609d071b76 --- /dev/null +++ b/dev-python/importlib_metadata/importlib_metadata-6.0.1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# please keep this ebuild at EAPI 7 -- sys-apps/portage dep +EAPI=7 + +DISTUTILS_USE_PEP517=flit +# NB: this package extends beyond built-in importlib stuff in py3.8+ +# new entry_point API not yet included in cpython release +PYTHON_COMPAT=( pypy3 python3_{9..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Read metadata from Python packages" +HOMEPAGE=" + https://github.com/python/importlib_metadata/ + https://pypi.org/project/importlib-metadata/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +RDEPEND=" + dev-python/zipp[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/pyfakefs[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/importlib_resources[${PYTHON_USEDEP}] + ' 3.8) + ) +" + +distutils_enable_tests unittest + +src_configure() { + grep -q 'build-backend = "setuptools' pyproject.toml || + die "Upstream changed build-backend, recheck" + # write a custom pyproject.toml to ease setuptools bootstrap + cat > pyproject.toml <<-EOF || die + [build-system] + requires = ["flit_core >=3.2,<4"] + build-backend = "flit_core.buildapi" + + [project] + name = "importlib_metadata" + version = "${PV}" + description = "Read metadata from Python packages" + EOF +} diff --git a/dev-python/importlib_metadata/importlib_metadata-6.1.0.ebuild b/dev-python/importlib_metadata/importlib_metadata-6.1.0.ebuild new file mode 100644 index 000000000000..94609d071b76 --- /dev/null +++ b/dev-python/importlib_metadata/importlib_metadata-6.1.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# please keep this ebuild at EAPI 7 -- sys-apps/portage dep +EAPI=7 + +DISTUTILS_USE_PEP517=flit +# NB: this package extends beyond built-in importlib stuff in py3.8+ +# new entry_point API not yet included in cpython release +PYTHON_COMPAT=( pypy3 python3_{9..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Read metadata from Python packages" +HOMEPAGE=" + https://github.com/python/importlib_metadata/ + https://pypi.org/project/importlib-metadata/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +RDEPEND=" + dev-python/zipp[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/pyfakefs[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/importlib_resources[${PYTHON_USEDEP}] + ' 3.8) + ) +" + +distutils_enable_tests unittest + +src_configure() { + grep -q 'build-backend = "setuptools' pyproject.toml || + die "Upstream changed build-backend, recheck" + # write a custom pyproject.toml to ease setuptools bootstrap + cat > pyproject.toml <<-EOF || die + [build-system] + requires = ["flit_core >=3.2,<4"] + build-backend = "flit_core.buildapi" + + [project] + name = "importlib_metadata" + version = "${PV}" + description = "Read metadata from Python packages" + EOF +} diff --git a/dev-python/ioflo/ioflo-2.0.2-r3.ebuild b/dev-python/ioflo/ioflo-2.0.2-r3.ebuild deleted file mode 100644 index df2d9b3131ce..000000000000 --- a/dev-python/ioflo/ioflo-2.0.2-r3.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_10 ) -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 - -DESCRIPTION="Automated Reasoning Engine and Flow Based Programming Framework" -HOMEPAGE="https://github.com/ioflo/ioflo/" -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~riscv x86" - -BDEPEND=" - test? ( - app-admin/salt[${PYTHON_USEDEP}] - dev-python/pytest-salt-factories[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/ioflo-1.7.8-network-test.patch" - "${FILESDIR}/ioflo-2.0.2-python39.patch" - "${FILESDIR}/ioflo-2.0.2-tests.patch" - "${FILESDIR}/ioflo-2.0.2-py310.patch" -) - -distutils_enable_tests pytest - -python_prepare_all() { - sed -e 's:"setuptools_git[^"]*",::' -i setup.py || die - distutils-r1_python_prepare_all -} diff --git a/dev-python/ioflo/ioflo-2.0.2-r4.ebuild b/dev-python/ioflo/ioflo-2.0.2-r4.ebuild index 5ad220e1519b..114be58c3c6f 100644 --- a/dev-python/ioflo/ioflo-2.0.2-r4.ebuild +++ b/dev-python/ioflo/ioflo-2.0.2-r4.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~riscv x86" PATCHES=( "${FILESDIR}/ioflo-1.7.8-network-test.patch" diff --git a/dev-python/linkify-it-py/linkify-it-py-2.0.0.ebuild b/dev-python/linkify-it-py/linkify-it-py-2.0.0.ebuild index fa4e1e9918e5..65b57ee70511 100644 --- a/dev-python/linkify-it-py/linkify-it-py-2.0.0.ebuild +++ b/dev-python/linkify-it-py/linkify-it-py-2.0.0.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" RDEPEND=" dev-python/uc-micro-py[${PYTHON_USEDEP}] diff --git a/dev-python/lit/Manifest b/dev-python/lit/Manifest index b1c047b45e06..52a376db7b69 100644 --- a/dev-python/lit/Manifest +++ b/dev-python/lit/Manifest @@ -4,9 +4,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/dev-python/lit/lit-16.0.0_rc3.ebuild b/dev-python/lit/lit-16.0.0_rc3.ebuild deleted file mode 100644 index e4fccac18491..000000000000 --- a/dev-python/lit/lit-16.0.0_rc3.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 llvm.org - -DESCRIPTION="A stand-alone install of the LLVM suite testing tool" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="~loong" -IUSE="test" -RESTRICT="!test? ( test )" - -# Tests require 'FileCheck' and 'not' utilities (from llvm) -BDEPEND=" - test? ( - dev-python/psutil[${PYTHON_USEDEP}] - sys-devel/llvm - ) -" - -LLVM_COMPONENTS=( llvm/utils/lit ) -llvm.org_set_globals - -# TODO: move the manpage generation here (from sys-devel/llvm) - -src_prepare() { - cd "${WORKDIR}" || die - distutils-r1_src_prepare -} - -python_test() { - local -x LIT_PRESERVES_TMP=1 - local litflags=$(get_lit_flags) - ./lit.py ${litflags//;/ } tests || die -} diff --git a/dev-python/lit/lit-16.0.0_rc4.ebuild b/dev-python/lit/lit-16.0.0_rc4.ebuild deleted file mode 100644 index e4fccac18491..000000000000 --- a/dev-python/lit/lit-16.0.0_rc4.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 llvm.org - -DESCRIPTION="A stand-alone install of the LLVM suite testing tool" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="~loong" -IUSE="test" -RESTRICT="!test? ( test )" - -# Tests require 'FileCheck' and 'not' utilities (from llvm) -BDEPEND=" - test? ( - dev-python/psutil[${PYTHON_USEDEP}] - sys-devel/llvm - ) -" - -LLVM_COMPONENTS=( llvm/utils/lit ) -llvm.org_set_globals - -# TODO: move the manpage generation here (from sys-devel/llvm) - -src_prepare() { - cd "${WORKDIR}" || die - distutils-r1_src_prepare -} - -python_test() { - local -x LIT_PRESERVES_TMP=1 - local litflags=$(get_lit_flags) - ./lit.py ${litflags//;/ } tests || die -} diff --git a/dev-python/lit/lit-17.0.0_pre20230304.ebuild b/dev-python/lit/lit-17.0.0_pre20230304.ebuild deleted file mode 100644 index f4b401a77373..000000000000 --- a/dev-python/lit/lit-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 llvm.org - -DESCRIPTION="A stand-alone install of the LLVM suite testing tool" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="" -IUSE="test" -RESTRICT="!test? ( test )" - -# Tests require 'FileCheck' and 'not' utilities (from llvm) -BDEPEND=" - test? ( - dev-python/psutil[${PYTHON_USEDEP}] - sys-devel/llvm - ) -" - -LLVM_COMPONENTS=( llvm/utils/lit ) -llvm.org_set_globals - -# TODO: move the manpage generation here (from sys-devel/llvm) - -src_prepare() { - cd "${WORKDIR}" || die - distutils-r1_src_prepare -} - -python_test() { - local -x LIT_PRESERVES_TMP=1 - local litflags=$(get_lit_flags) - ./lit.py ${litflags//;/ } tests || die -} diff --git a/dev-python/markdown-it-py/markdown-it-py-2.2.0.ebuild b/dev-python/markdown-it-py/markdown-it-py-2.2.0.ebuild index a4afe6ca22e6..1d2f5c71d865 100644 --- a/dev-python/markdown-it-py/markdown-it-py-2.2.0.ebuild +++ b/dev-python/markdown-it-py/markdown-it-py-2.2.0.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" RDEPEND=" =dev-python/krb5-0.3.0" - optfeature "YAML output support" "dev-python/ruamel-yaml" -} diff --git a/dev-python/pyspnego/pyspnego-0.8.0.ebuild b/dev-python/pyspnego/pyspnego-0.8.0.ebuild index 202be95d8916..b38e608d2a22 100644 --- a/dev-python/pyspnego/pyspnego-0.8.0.ebuild +++ b/dev-python/pyspnego/pyspnego-0.8.0.ebuild @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +KEYWORDS="amd64 ~arm arm64 ~riscv x86" RDEPEND=" dev-python/cryptography[${PYTHON_USEDEP}] diff --git a/dev-python/pytest-asyncio/Manifest b/dev-python/pytest-asyncio/Manifest index 3126a82035ec..58f880ef05e9 100644 --- a/dev-python/pytest-asyncio/Manifest +++ b/dev-python/pytest-asyncio/Manifest @@ -1 +1,2 @@ DIST pytest-asyncio-0.20.3.gh.tar.gz 27695 BLAKE2B 6e6f0d58d0f985cee9dc0b27f886d0b1b4b54ecbf4980c4ac59b420d6e6e5c01d1c6f3c9ed803391910124f19ee3a882c963f10e5f6bab6de6115bfa222c8be2 SHA512 78a6e251db80696d6f62a54c8d6836e2a820f27efdaa848eb1be512a1592d3bd3fb7c7eee46bb2039a317a8d431565614c888f8436fbe0d4eb60534ce4780e90 +DIST pytest-asyncio-0.21.0.tar.gz 29898 BLAKE2B 6455e59a2e28ddbefd54e4c16970d36d22a674406fbc0e352e9886af3a7a51a0ae4a8ce32e01d076e2411f0501548092dfbe3150d87c14cb5e5eb71966bcb743 SHA512 ce557e5f15f3ae745804f4484d590a9f673d76f0c67c2e8ab444e1b17a4ae5ea6021bf55d7ef905643bfbcded6299f207a386fb4dc05ddf20ade25e6618a9773 diff --git a/dev-python/pytest-asyncio/pytest-asyncio-0.21.0.ebuild b/dev-python/pytest-asyncio/pytest-asyncio-0.21.0.ebuild new file mode 100644 index 000000000000..6eb231250e27 --- /dev/null +++ b/dev-python/pytest-asyncio/pytest-asyncio-0.21.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 2019-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 +PYTHON_COMPAT=( python3_{9..11} pypy3 ) + +inherit distutils-r1 pypi + +DESCRIPTION="Library for testing asyncio code with pytest" +HOMEPAGE=" + https://github.com/pytest-dev/pytest-asyncio/ + https://pypi.org/project/pytest-asyncio/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" + +RDEPEND=" + >=dev-python/pytest-5.4.0[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] + test? ( + dev-python/flaky[${PYTHON_USEDEP}] + >=dev-python/hypothesis-3.64[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + # rely on precise warning counts + tests/test_pytest_min_version_warning.py + tests/modes/test_legacy_mode.py + tests/trio/test_fixtures.py::test_strict_mode_ignores_trio_fixtures + tests/test_event_loop_fixture_finalizer.py::test_event_loop_fixture_finalizer_raises_warning_when_fixture_leaves_loop_unclosed + tests/test_event_loop_fixture_finalizer.py::test_event_loop_fixture_finalizer_raises_warning_when_test_leaves_loop_unclosed + ) + + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + local -x PYTEST_PLUGINS=pytest_asyncio.plugin,_hypothesis_pytestplugin,flaky.flaky_pytest_plugin + epytest +} diff --git a/dev-python/pytest-datadir/pytest-datadir-1.4.1.ebuild b/dev-python/pytest-datadir/pytest-datadir-1.4.1.ebuild index 886d17c001cf..c560f899f21b 100644 --- a/dev-python/pytest-datadir/pytest-datadir-1.4.1.ebuild +++ b/dev-python/pytest-datadir/pytest-datadir-1.4.1.ebuild @@ -17,7 +17,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" RDEPEND=" dev-python/pytest[${PYTHON_USEDEP}] diff --git a/dev-python/pytest-flake8/Manifest b/dev-python/pytest-flake8/Manifest deleted file mode 100644 index eb448b6acb51..000000000000 --- a/dev-python/pytest-flake8/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pytest-flake8-1.1.1.tar.gz 9144 BLAKE2B 4f9984181cbadf1d14f2bfaa39a801eb40506457d5178e04a80d49afbd2e54ef10feef0c6cf99ac888442ee75df15663b4f7fa86ff392f34ee4615cbf12f7d13 SHA512 c6fed2228520501bc0c007c90b189d43953391c10fe93fdd7c4c68203ddfc64937b9919730f25ebcba0c1003ed266fbcb35d3ab12ed49fb63503bf27615286c0 diff --git a/dev-python/pytest-flake8/metadata.xml b/dev-python/pytest-flake8/metadata.xml deleted file mode 100644 index 5a37bda9d8a3..000000000000 --- a/dev-python/pytest-flake8/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - python@gentoo.org - Python - - - titanofold@gentoo.org - Aaron W. Swenson - - - - pytest-flake8 - tholo/pytest-flake8 - - diff --git a/dev-python/pytest-flake8/pytest-flake8-1.1.1.ebuild b/dev-python/pytest-flake8/pytest-flake8-1.1.1.ebuild deleted file mode 100644 index 37558791b48b..000000000000 --- a/dev-python/pytest-flake8/pytest-flake8-1.1.1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..10} ) - -inherit distutils-r1 pypi - -DESCRIPTION="pytest plugin for flake8" -HOMEPAGE=" - https://github.com/tholo/pytest-flake8/ - https://pypi.org/project/pytest-flake8/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 x86" - -RDEPEND=" - >=dev-python/flake8-4.0[${PYTHON_USEDEP}] - >=dev-python/pytest-7.0[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -python_test() { - epytest -p flake8 -} diff --git a/dev-python/pytest-param-files/pytest-param-files-0.3.5.ebuild b/dev-python/pytest-param-files/pytest-param-files-0.3.5.ebuild index 06df570c3e27..6e7768649ec6 100644 --- a/dev-python/pytest-param-files/pytest-param-files-0.3.5.ebuild +++ b/dev-python/pytest-param-files/pytest-param-files-0.3.5.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" RDEPEND=" dev-python/pytest[${PYTHON_USEDEP}] diff --git a/dev-python/pytest-regressions/pytest-regressions-2.4.2.ebuild b/dev-python/pytest-regressions/pytest-regressions-2.4.2.ebuild index 34119a45eb0f..689b80c6146a 100644 --- a/dev-python/pytest-regressions/pytest-regressions-2.4.2.ebuild +++ b/dev-python/pytest-regressions/pytest-regressions-2.4.2.ebuild @@ -17,7 +17,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" RDEPEND=" dev-python/pytest[${PYTHON_USEDEP}] diff --git a/dev-python/pyusb/pyusb-1.2.1-r1.ebuild b/dev-python/pyusb/pyusb-1.2.1-r1.ebuild index 9f3ac1f4c29c..4edc92acc431 100644 --- a/dev-python/pyusb/pyusb-1.2.1-r1.ebuild +++ b/dev-python/pyusb/pyusb-1.2.1-r1.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="https://pyusb.github.io/pyusb/ https://pypi.org/project/pyusb/" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv x86" ### This version is compatible with both 0.X and 1.X versions of libusb DEPEND="virtual/libusb:=" diff --git a/dev-python/pyusb/pyusb-1.2.1.ebuild b/dev-python/pyusb/pyusb-1.2.1.ebuild deleted file mode 100644 index d7c303722986..000000000000 --- a/dev-python/pyusb/pyusb-1.2.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit distutils-r1 pypi - -DESCRIPTION="USB support for Python" -HOMEPAGE="https://pyusb.github.io/pyusb/ https://pypi.org/project/pyusb/" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv x86" - -### This version is compatible with both 0.X and 1.X versions of libusb -DEPEND="virtual/libusb:=" -RDEPEND="${DEPEND}" - -DOCS=( README.rst docs/tutorial.rst ) - -PATCHES=( - "${FILESDIR}"/${P}-setuptools.patch -) - -python_test() { - cd tests || die - "${EPYTHON}" testall.py || die "Tests failed with ${EPYTHON}" -} diff --git a/dev-python/pywlroots/Manifest b/dev-python/pywlroots/Manifest index c22522919570..446dcdbf2f88 100644 --- a/dev-python/pywlroots/Manifest +++ b/dev-python/pywlroots/Manifest @@ -1,2 +1,3 @@ DIST pywlroots-0.15.24.gh.tar.gz 85570 BLAKE2B 0c7ba0be6159152488785298028bb1feec20e2380357060a850dab417b3fb1fccb4a9e6cc6564d2b7f124bf4fc454789549267e9036b0b4559e5fcd4c6f06196 SHA512 b29b76cf18a65b2ef19d15ecf018a9ba44119d60ee61435967d17f06d5f7544d2117f2e9a81574734c71591a237b00c8584a5cc6d6adb928f39f11170f21ee94 DIST pywlroots-0.16.1.gh.tar.gz 90101 BLAKE2B 5b26b8aeacef7336353376f1ac0f230f88e50da3dca1ac726470791555edb9c486234122242ced3220b893eb6d0666cfc6519f23ed3922645549ff012ab46d04 SHA512 599210486c6461660b2c85b69726afc30c5b0d835e61ee2cf246296aaccf9d8fb1e332d7eb50a30599f155fbbd7c5c204ca1158d9a8122fcc36fbf745085902f +DIST pywlroots-0.16.2.gh.tar.gz 90372 BLAKE2B 94107199e912b53e484d0fd81f18900bb5b2283a588b09da2c078606881f1cbe8e25bec3bada32e1d0c74300374d66c95d56ff976661813730ffedaf023cb57a SHA512 314339e6b4f66f03af74fc7e69814b4e1e879da6ec624f33eb3b04e26a7a4159776f182830a3b2ff31720021386cab70cdfc16a0b2377414c94cd834fd1ca26c diff --git a/dev-python/pywlroots/pywlroots-0.16.2.ebuild b/dev-python/pywlroots/pywlroots-0.16.2.ebuild new file mode 100644 index 000000000000..b802883e934e --- /dev/null +++ b/dev-python/pywlroots/pywlroots-0.16.2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 + +DESCRIPTION="Python binding to the wlroots library using cffi" +HOMEPAGE=" + https://github.com/flacjacket/pywlroots/ + https://pypi.org/project/pywlroots/ +" +SRC_URI=" + https://github.com/flacjacket/pywlroots/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +# See README for wlroots dep +DEPEND=" + >=dev-python/pywayland-0.4.14[${PYTHON_USEDEP}] + >=dev-python/xkbcommon-0.2[${PYTHON_USEDEP}] + =gui-libs/wlroots-$(ver_cut 1-2)*:= +" +RDEPEND=" + ${DEPEND} +" + +PATCHES=( + "${FILESDIR}"/${PN}-0.15.24-no-import-version-check.patch +) + +distutils_enable_tests pytest + +python_test() { + rm -rf wlroots || die + epytest +} diff --git a/dev-python/rdflib/Manifest b/dev-python/rdflib/Manifest index bfbcb8ce50f6..e4a650ddcf39 100644 --- a/dev-python/rdflib/Manifest +++ b/dev-python/rdflib/Manifest @@ -1,2 +1,3 @@ DIST rdflib-6.2.0.gh.tar.gz 4886953 BLAKE2B 74044b0cbaf6c1ba6f2a43347112118dcf92b5237afdd49782ca6d637df092379ff2d81eaec254ad0bf25057f8c0cd44c82a35a89d4ce7b21c8e222de9aef16a SHA512 8177c50e9c2d48859a061dfee24c3560b8f979bc306b3d940a9251ec130e3a324bbad474f4fa7ced5e11522d3bd4e13931461bf106f31177fd972806968d8245 DIST rdflib-6.3.0.gh.tar.gz 4980436 BLAKE2B 07f86418a0d598f59e4912057f4e11183bc0ad66a4cc5d7a83df6abce325f708a4920303afcbcdc97fb19b39199725a6410552704011e0f154815b7692724d88 SHA512 b8fd7d43f22779175e4d29f6256f070cb58f694fbfc9d068932c992ac732c687668ef68defbb6fa49f55f0b11d3b8f65b3a9d94aa8693ad9b8ab7c670625d06c +DIST rdflib-6.3.1.gh.tar.gz 4985262 BLAKE2B 1de63607aca70f3c498970fd639a8fb61c65ecd1fbae63c466bf7750dd3f84264f3abe2ed958fef4f1a06877069a0d21ba36ac946a72fc53f93087b27e35a69a SHA512 e348b721edac73a5cedc499e7e50819694c931d921fc1637fc2f26f66801d17d169cc447126974828d745851818bd5a616081dddf9a48e483835dbf20288b318 diff --git a/dev-python/rdflib/rdflib-6.3.1.ebuild b/dev-python/rdflib/rdflib-6.3.1.ebuild new file mode 100644 index 000000000000..2535757a8ef0 --- /dev/null +++ b/dev-python/rdflib/rdflib-6.3.1.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE="sqlite?,threads(+)" + +inherit distutils-r1 + +DESCRIPTION="RDF library containing a triple store and parser/serializer" +HOMEPAGE=" + https://github.com/RDFLib/rdflib/ + https://pypi.org/project/rdflib/ +" +SRC_URI=" + https://github.com/RDFLib/rdflib/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="examples sqlite" + +RDEPEND=" + =dev-python/isodate-0.6.0[${PYTHON_USEDEP}] + dev-python/html5lib[${PYTHON_USEDEP}] + =dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/requests[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_prepare_all() { + # doctests require internet + sed -i -e '/doctest-modules/d' pyproject.toml || die + + # we disable pytest-cov + sed -i -e 's@, no_cover: None@@' test/test_misc/test_plugins.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + local EPYTEST_DESELECT=( + # Internet + "test/test_examples.py::test_example[sparqlstore_example.py]" + test/test_sparql/test_service.py + "test/jsonld/test_onedotone.py::test_suite[https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034-do_test_parser-https://w3c.github.io/json-ld-api/tests/-toRdf-c034-toRdf/c034-in.jsonld-toRdf/c034-out.nq-False-options66]" + "test/jsonld/test_onedotone.py::test_suite[https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126-do_test_parser-https://w3c.github.io/json-ld-api/tests/-toRdf-e126-toRdf/e126-in.jsonld-toRdf/e126-out.nq-False-options167]" + "test/jsonld/test_onedotone.py::test_suite[https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127-do_test_parser-https://w3c.github.io/json-ld-api/tests/-toRdf-e127-toRdf/e127-in.jsonld-toRdf/e127-out.nq-False-options168]" + "test/jsonld/test_onedotone.py::test_suite[https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05-do_test_parser-https://w3c.github.io/json-ld-api/tests/-toRdf-so05-toRdf/so05-in.jsonld-toRdf/so05-out.nq-False-options253]" + "test/jsonld/test_onedotone.py::test_suite[https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08-do_test_parser-https://w3c.github.io/json-ld-api/tests/-toRdf-so08-toRdf/so08-in.jsonld-toRdf/so08-out.nq-False-options254]" + "test/jsonld/test_onedotone.py::test_suite[https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09-do_test_parser-https://w3c.github.io/json-ld-api/tests/-toRdf-so09-toRdf/so09-in.jsonld-toRdf/so09-out.nq-False-options255]" + "test/jsonld/test_onedotone.py::test_suite[https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11-do_test_parser-https://w3c.github.io/json-ld-api/tests/-toRdf-so11-toRdf/so11-in.jsonld-toRdf/so11-out.nq-False-options256]" + test/test_extras/test_infixowl/test_basic.py::test_infix_owl_example1 + test/test_extras/test_infixowl/test_context.py::test_context + test/test_graph/test_graph.py::test_guess_format_for_parse + ) + local EPYTEST_IGNORE=( + # Uses network + test/test_so_69984830.py + ) + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + + epytest +} + +python_install_all() { + distutils-r1_python_install_all + + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi +} diff --git a/dev-python/reno/reno-3.5.0-r1.ebuild b/dev-python/reno/reno-3.5.0-r1.ebuild index af452418d530..0f8379712afc 100644 --- a/dev-python/reno/reno-3.5.0-r1.ebuild +++ b/dev-python/reno/reno-3.5.0-r1.ebuild @@ -17,7 +17,7 @@ HOMEPAGE=" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~riscv ~s390 ~x86" +KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc64 ~riscv ~s390 x86" RDEPEND=" dev-python/pbr[${PYTHON_USEDEP}] diff --git a/dev-python/reno/reno-3.5.0.ebuild b/dev-python/reno/reno-3.5.0.ebuild deleted file mode 100644 index 29246b1b609f..000000000000 --- a/dev-python/reno/reno-3.5.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..10} ) -inherit distutils-r1 - -DESCRIPTION="Release notes manager, storing release notes in a git repo and building docs" -HOMEPAGE="https://pypi.org/project/reno/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc64 ~riscv ~s390 x86" - -RDEPEND=" - dev-python/pbr[${PYTHON_USEDEP}] - >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}] - >=dev-python/dulwich-0.15.0[${PYTHON_USEDEP}] - >=dev-python/packaging-20.4[${PYTHON_USEDEP}] - >=dev-python/docutils-0.11[${PYTHON_USEDEP}] - >=dev-python/sphinx-2.1.1[${PYTHON_USEDEP}] -" -BDEPEND=" - dev-python/pbr[${PYTHON_USEDEP}] - test? ( - >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}] - ) -" - -# The doc needs to be built from a git repository -distutils_enable_tests unittest - -python_prepare_all() { - # Some tests need to be run from a git repository - rm reno/tests/test_{cache,semver}.py || die - distutils-r1_python_prepare_all -} diff --git a/dev-python/requests-ntlm/Manifest b/dev-python/requests-ntlm/Manifest index 1a1d3cb85fbb..faa23a475d6b 100644 --- a/dev-python/requests-ntlm/Manifest +++ b/dev-python/requests-ntlm/Manifest @@ -1,2 +1 @@ DIST requests-ntlm-1.2.0.gh.tar.gz 14540 BLAKE2B 0b9dd72680c6e67dc6e4f0a3eef3b9fa0cc03c71010238a0e7ef8a48b59c57e12846040975f7eef7710113f372cd1e1628e5a9be0eca8e7a287a9cfd0765ebf0 SHA512 230eb6c8a90e8745a3c969114f81d2559aa0f411b79b54747d21c6c28572f7d61c024c47a831777c2d85fb8b09af7fee667d3a3abf318473c97e727c5f2d7943 -DIST requests_ntlm-1.1.0.tar.gz 5183 BLAKE2B 190a75d3f82ae2216e05295f855aa072f98908ef8a0d4dda68d6e39239655ccf175c707af137290cd78cf622c0a3d1741a0afbb1363f8b170f408c34a2682fa6 SHA512 9a74ecd6e4ed5c5e4381d2ee3fb9ff233352b49baa5fae4e0ecc30aaad12fc7a5c1b9dd936f35d4a3815ae7f6ec5bb8581e84128d63ff0e961181408daddb807 diff --git a/dev-python/requests-ntlm/requests-ntlm-1.1.0-r1.ebuild b/dev-python/requests-ntlm/requests-ntlm-1.1.0-r1.ebuild deleted file mode 100644 index 2d38b1de135b..000000000000 --- a/dev-python/requests-ntlm/requests-ntlm-1.1.0-r1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -MY_PN="${PN/-/_}" - -DESCRIPTION="HTTP NTLM authentication using the requests library" -HOMEPAGE="https://github.com/requests/requests-ntlm" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" - -SLOT="0" -LICENSE="ISC" -KEYWORDS="amd64 ~riscv ~x86" -IUSE="" - -RDEPEND=" - >=dev-python/requests-2.0.0[${PYTHON_USEDEP}] - >=dev-python/ntlm-auth-1.0.2[${PYTHON_USEDEP}]" - -S=${WORKDIR}/${MY_PN}-${PV} diff --git a/dev-python/requests-ntlm/requests-ntlm-1.2.0.ebuild b/dev-python/requests-ntlm/requests-ntlm-1.2.0.ebuild index 81473a0deacb..3f99539476a1 100644 --- a/dev-python/requests-ntlm/requests-ntlm-1.2.0.ebuild +++ b/dev-python/requests-ntlm/requests-ntlm-1.2.0.ebuild @@ -20,7 +20,7 @@ SRC_URI=" SLOT="0" LICENSE="ISC" -KEYWORDS="~amd64 ~riscv ~x86" +KEYWORDS="amd64 ~riscv ~x86" RDEPEND=" >=dev-python/cryptography-1.3[${PYTHON_USEDEP}] diff --git a/dev-python/rply/Manifest b/dev-python/rply/Manifest index a94ce7c015ed..43caf77493fc 100644 --- a/dev-python/rply/Manifest +++ b/dev-python/rply/Manifest @@ -1,2 +1 @@ DIST rply-0.7.8.gh.tar.gz 26697 BLAKE2B 95c4be3bbbd7aea7f278dbe0c37fd43d012df768169d0363d1a938f762c2f9ad69d596cbbaaafee3c93f3d615ea5cd1509e9b642188320f8acd09c12d6b7c780 SHA512 b43e6425f046561cfca616801d37d7151f015aeb2ea2365abc00f97fd6b41f1a01a17e330aed5a81537065e4b29d49cd0824b5a5cb8b2d11da2ff1f8de952fce -DIST rply-0.7.8.tar.gz 26697 BLAKE2B 95c4be3bbbd7aea7f278dbe0c37fd43d012df768169d0363d1a938f762c2f9ad69d596cbbaaafee3c93f3d615ea5cd1509e9b642188320f8acd09c12d6b7c780 SHA512 b43e6425f046561cfca616801d37d7151f015aeb2ea2365abc00f97fd6b41f1a01a17e330aed5a81537065e4b29d49cd0824b5a5cb8b2d11da2ff1f8de952fce diff --git a/dev-python/rply/rply-0.7.8-r1.ebuild b/dev-python/rply/rply-0.7.8-r1.ebuild index 8564db9983de..96b78f429602 100644 --- a/dev-python/rply/rply-0.7.8-r1.ebuild +++ b/dev-python/rply/rply-0.7.8-r1.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" RDEPEND=" dev-python/appdirs[${PYTHON_USEDEP}] diff --git a/dev-python/rply/rply-0.7.8.ebuild b/dev-python/rply/rply-0.7.8.ebuild deleted file mode 100644 index 2374ad057e87..000000000000 --- a/dev-python/rply/rply-0.7.8.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..10} ) - -inherit distutils-r1 - -DESCRIPTION="Pure python parser generator that also works with RPython" -HOMEPAGE="https://github.com/alex/rply" -SRC_URI="https://github.com/alex/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND="dev-python/appdirs[${PYTHON_USEDEP}]" -BDEPEND="test? ( dev-python/py[${PYTHON_USEDEP}] )" - -distutils_enable_tests pytest -distutils_enable_sphinx docs diff --git a/dev-python/sphinx-pytest/sphinx-pytest-0.0.5.ebuild b/dev-python/sphinx-pytest/sphinx-pytest-0.0.5.ebuild index d013331c49c2..9fee05c1455e 100644 --- a/dev-python/sphinx-pytest/sphinx-pytest-0.0.5.ebuild +++ b/dev-python/sphinx-pytest/sphinx-pytest-0.0.5.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" RDEPEND=" dev-python/pytest[${PYTHON_USEDEP}] diff --git a/dev-python/sphinx-rtd-theme/sphinx-rtd-theme-1.2.0.ebuild b/dev-python/sphinx-rtd-theme/sphinx-rtd-theme-1.2.0.ebuild index c069e1cd632e..7c026f5bbf7a 100644 --- a/dev-python/sphinx-rtd-theme/sphinx-rtd-theme-1.2.0.ebuild +++ b/dev-python/sphinx-rtd-theme/sphinx-rtd-theme-1.2.0.ebuild @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" RDEPEND=" dev-python/docutils[${PYTHON_USEDEP}] diff --git a/dev-python/sphinxcontrib-jquery/sphinxcontrib-jquery-4.1.ebuild b/dev-python/sphinxcontrib-jquery/sphinxcontrib-jquery-4.1.ebuild index eabbb0eb43ec..bff40ea86907 100644 --- a/dev-python/sphinxcontrib-jquery/sphinxcontrib-jquery-4.1.ebuild +++ b/dev-python/sphinxcontrib-jquery/sphinxcontrib-jquery-4.1.ebuild @@ -18,7 +18,7 @@ HOMEPAGE=" # MIT for jQuery LICENSE="0BSD MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" RDEPEND=" dev-python/sphinx[${PYTHON_USEDEP}] diff --git a/dev-python/sqlalchemy/Manifest b/dev-python/sqlalchemy/Manifest index a7bc006a449f..6987319ed455 100644 --- a/dev-python/sqlalchemy/Manifest +++ b/dev-python/sqlalchemy/Manifest @@ -1,5 +1,7 @@ DIST SQLAlchemy-1.4.46.tar.gz 8544238 BLAKE2B 8ef4aae61bee3c9c54b953a9ba34074d8cac0d54d8ae3389f40fa99f57755b2ee0a8a7826e0835fada2d82b96559d974172c9d9781ec746c79006f59d7a5bba0 SHA512 1977c6125e9f45a45b7941c1e0164866bd5ea72839e619d4e259db9a5370fe2b4f191257f3c9ddb28b5c22617a71d359620601c54d9273c38b3281a6c2f5ff03 +DIST SQLAlchemy-1.4.47.tar.gz 8559530 BLAKE2B 051e6f0114162f5525e756d8762281464020a3c4e1751df8432f76ce3281ea1004fbf842e92bdd310e3a736fc87d25db12a1566720c76bde7960d51c22a483da SHA512 702cbae848bc662b686db43b2d2dbd18b503b3aacac6f5960bcd260cc5bd7058536ff2207f1780cb8425c228a82796490088c3ec32f24637edd2cf1cdac7a8bb DIST SQLAlchemy-2.0.3.tar.gz 9229747 BLAKE2B b70116a8f9f24ed2b41aa7ebbe8a004371f3aa2e81487bce307157eec8032f134313091455245fe631818a1e6373e3144671f314991408f14b0f0f5f87335290 SHA512 8bf0fa6d95f26fd137690f75e335cf741b8fd19a5a30424e22bb85b79893cbbdc15e206d3f069f202200eb54254df868c4a6d3e74adc1a19e8ce8f92cc407098 DIST SQLAlchemy-2.0.4.tar.gz 9250723 BLAKE2B c3cec648a527e7beb349b2bbb6924a4e794a1fe4d1563ba7573afdc28ed24fce149c5b3c08fa419e85713b68080b2a805e1999e312f59ed7fae55f9aee6a966e SHA512 098004c594ff00a47a66850b0661f673e4d7a6f168fce72ca37a65ecfe04b3d291b9a6fb9393f7671c9a7c5c128ab6ba2035d18cef28736df1207e689cd8c412 DIST SQLAlchemy-2.0.5.tar.gz 9285821 BLAKE2B e0af62e05801a30d915ff4a852dc30ab61b8d5ddc632cddef549bb2d548f5a2c4056519c9ddcf690587736d415973bde9042b6cd022f874e1dc3c143ef0a6add SHA512 642f6665ca8a3aa2c30bc9e14f8e65f9baa0a678f88637e784ee8606cece92d876f8d2e639dfd462261f0c790c2f0851e3490b4c84dbaa21028df93f354b68a4 DIST SQLAlchemy-2.0.6.tar.gz 9294603 BLAKE2B ea8c7f23199c62898764656e82673f6b9c5ac8108feba49c2b74a4c3b278b2ac7ed5f9e5f2ad1b59c70b451440c9376dde19bd283c4c585029957386d56589a9 SHA512 2742f2dd7424118f34a70d3b17157d16976f422459c698ab042c08a5099c275cc8bebdb1f811fd783bd1b024e9f27925e1a72cac818dd16c807e1553a766f25c +DIST SQLAlchemy-2.0.7.tar.gz 9298301 BLAKE2B abedb2805cad489e68fdec383eaf1bc65ef92777230317911a9351fce7c9159f746629197f7443a37495c23cd8d3cdd1015d8417f00227f28b8af1468a8327ef SHA512 94f5c4262741986456a9de435a81d9df8d5eed16417cc8c07321cb28030c99ea347c33a2054f2961e3b794bd5f75da19b0879675e2c1106fc5030382895caf75 diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.47.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.4.47.ebuild new file mode 100644 index 000000000000..09207d492452 --- /dev/null +++ b/dev-python/sqlalchemy/sqlalchemy-1.4.47.ebuild @@ -0,0 +1,94 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_REQ_USE="sqlite?" + +inherit distutils-r1 optfeature pypi + +MY_PN="SQLAlchemy" +DESCRIPTION="Python SQL toolkit and Object Relational Mapper" +HOMEPAGE=" + https://www.sqlalchemy.org/ + https://pypi.org/project/SQLAlchemy/ + https://github.com/sqlalchemy/sqlalchemy/ +" +SRC_URI="$(pypi_sdist_url --no-normalize "${MY_PN}")" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="examples +sqlite test" + +BDEPEND=" + test? ( + $(python_gen_impl_dep sqlite) + ) +" + +distutils_enable_tests pytest + +EPYTEST_IGNORE=( + # hardcode call counts specific to Python versions + test/aaa_profiling +) + +src_prepare() { + sed -i -e '/greenlet/d' setup.cfg || die + distutils-r1_src_prepare +} + +python_test() { + local EPYTEST_DESELECT=( + # warning tests are unreliable + test/base/test_warnings.py + ) + [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=( + test/ext/test_associationproxy.py::ProxyHybridTest::test_msg_fails_on_cls_access + # https://github.com/sqlalchemy/sqlalchemy/issues/8762 + test/orm/test_query.py::YieldTest_sqlite+pysqlite_3_39_4::test_yield_per_close_on_interrupted_iteration_legacy + ) + if ! has_version "dev-python/greenlet[${PYTHON_USEDEP}]"; then + EPYTEST_DESELECT+=( + test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_execution + test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_run_sync + "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[False-True]" + "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[True-True]" + "test/engine/test_pool.py::QueuePoolTest::test_userspace_disconnectionerror_weakref_finalizer[True-_exclusions0]" + ) + fi + + # upstream's test suite is horribly hacky; it relies on disabling + # the warnings plugin and turning warnings into errors; this also + # means that any DeprecationWarnings from third-party plugins cause + # everything to explode + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + local -x PYTEST_PLUGINS= + # upstream automagically depends on xdist when it is importable + if has_version "dev-python/pytest-xdist[${PYTHON_USEDEP}]"; then + PYTEST_PLUGINS+=xdist.plugin + fi + epytest +} + +python_install_all() { + if use examples; then + docompress -x "/usr/share/doc/${PF}/examples" + dodoc -r examples + fi + + distutils-r1_python_install_all +} + +pkg_postinst() { + optfeature "asyncio support" dev-python/greenlet + optfeature "MySQL support" \ + dev-python/mysqlclient \ + dev-python/pymysql \ + dev-python/mysql-connector-python + optfeature "postgresql support" dev-python/psycopg:2 +} diff --git a/dev-python/sqlalchemy/sqlalchemy-2.0.7.ebuild b/dev-python/sqlalchemy/sqlalchemy-2.0.7.ebuild new file mode 100644 index 000000000000..0ac2428370ce --- /dev/null +++ b/dev-python/sqlalchemy/sqlalchemy-2.0.7.ebuild @@ -0,0 +1,107 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_REQ_USE="sqlite?" + +inherit distutils-r1 optfeature pypi + +MY_PN="SQLAlchemy" +DESCRIPTION="Python SQL toolkit and Object Relational Mapper" +HOMEPAGE=" + https://www.sqlalchemy.org/ + https://pypi.org/project/SQLAlchemy/ + https://github.com/sqlalchemy/sqlalchemy/ +" +SRC_URI="$(pypi_sdist_url --no-normalize "${MY_PN}")" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="examples +sqlite test" + +RDEPEND=" + >=dev-python/typing-extensions-4.2.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + $(python_gen_impl_dep sqlite) + ) +" + +distutils_enable_tests pytest + +src_prepare() { + sed -i -e '/greenlet/d' setup.cfg || die + distutils-r1_src_prepare +} + +python_test() { + local EPYTEST_IGNORE=( + test/ext/mypy/test_mypy_plugin_py3k.py + # hardcode call counts specific to Python versions + test/aaa_profiling + ) + local EPYTEST_DESELECT=( + # warning tests are unreliable + test/base/test_warnings.py + # TODO + test/orm/test_versioning.py::ServerVersioningTest_sqlite+pysqlite_3_40_1::test_sql_expr_w_mods_bump + test/sql/test_resultset.py::CursorResultTest_sqlite+pysqlite_3_41_0::test_pickle_rows_other_process + ) + local sqlite_version=$(sqlite3 --version | cut -d' ' -f1) + [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=( + test/ext/test_associationproxy.py::ProxyHybridTest::test_msg_fails_on_cls_access + test/ext/test_associationproxy.py::DictOfTupleUpdateTest::test_update_multi_elem_varg + test/ext/test_associationproxy.py::DictOfTupleUpdateTest::test_update_one_elem_varg + test/engine/test_processors.py::PyDateProcessorTest::test_date_invalid_string + test/engine/test_processors.py::PyDateProcessorTest::test_datetime_invalid_string + test/engine/test_processors.py::PyDateProcessorTest::test_time_invalid_string + "test/dialect/test_sqlite.py::TestTypes_sqlite+pysqlite_${sqlite_version//./_}::test_cant_parse_datetime_message" + "test/dialect/test_suite.py::ReturningGuardsTest_sqlite+pysqlite_${sqlite_version//./_}"::test_{delete,insert,update}_single + test/base/test_utils.py::ImmutableDictTest::test_pep584 + ) + if ! has_version "dev-python/greenlet[${PYTHON_USEDEP}]"; then + EPYTEST_DESELECT+=( + test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_execution + test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_run_sync + "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[False-True]" + "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[True-True]" + "test/engine/test_pool.py::QueuePoolTest::test_userspace_disconnectionerror_weakref_finalizer[True-_exclusions0]" + ) + fi + + # upstream's test suite is horribly hacky; it relies on disabling + # the warnings plugin and turning warnings into errors; this also + # means that any DeprecationWarnings from third-party plugins cause + # everything to explode + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + local -x PYTEST_PLUGINS= + # upstream automagically depends on xdist when it is importable + if has_version "dev-python/pytest-xdist[${PYTHON_USEDEP}]"; then + PYTEST_PLUGINS+=xdist.plugin + fi + epytest +} + +python_install_all() { + if use examples; then + docompress -x "/usr/share/doc/${PF}/examples" + dodoc -r examples + fi + + distutils-r1_python_install_all +} + +pkg_postinst() { + optfeature "asyncio support" dev-python/greenlet + optfeature "MySQL support" \ + dev-python/mysqlclient \ + dev-python/pymysql \ + dev-python/mysql-connector-python + optfeature "postgresql support" dev-python/psycopg:2 +} diff --git a/dev-python/traitlets/traitlets-5.9.0.ebuild b/dev-python/traitlets/traitlets-5.9.0.ebuild index 7da693f25eae..c8c03b9c559f 100644 --- a/dev-python/traitlets/traitlets-5.9.0.ebuild +++ b/dev-python/traitlets/traitlets-5.9.0.ebuild @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" BDEPEND=" test? ( diff --git a/dev-python/trio-websocket/Manifest b/dev-python/trio-websocket/Manifest index 737e9c6f334e..6a2587b157a1 100644 --- a/dev-python/trio-websocket/Manifest +++ b/dev-python/trio-websocket/Manifest @@ -1 +1,3 @@ DIST trio-websocket-0.10.0.gh.tar.gz 43808 BLAKE2B fd89ab74c3844a14940ce07a0abc07a0392607b492fa4b6e1d81ba3aa2c37338706975cb800332751c9ea70e934c4169fdcd29dd047019096726164a2130daa9 SHA512 04d775a7c1a232b470a7f415b57debce4bd1c3732934a94d65e3c9f3bb45c5ffea7464557100e2e9f68a2aa6a7812bd686220de046f399a0d0242309d2d9be59 +DIST trio-websocket-0.10.1.gh.tar.gz 44657 BLAKE2B c7e895c5beccf40baa8603f1e3c62396e4d8c716d9a51b6977c0854f65b4c40a1edb40812f80d55f0530c2e59f10f27f2b62f72a6fb91c693ae0d67aeff3161c SHA512 bd26d72c5de70d8176b62c950e6c2bf6cf47ed5a55bb63f88e675a9d353076be45f45387da8fa9af71b8915d93914844f2a7a662351e4776c4714734512bdd7c +DIST trio-websocket-0.10.2.gh.tar.gz 45025 BLAKE2B cc80f7b8e06bb88bef69c6326dd899a27523ea70e0ea10c8b02a26498102638c569ffe21e2b4e355f9c635d60ae8ae34664d311bf5fe286456e43e0f9c2ba481 SHA512 ad8d4facb153b59597ca7dac14dabe60ac8ca4331aa72df8120e01ec726e1f392a8167d070f72534eb735b5dbf4afe46e385c0e3a2dd250afa2280c6a5a0c863 diff --git a/dev-python/trio-websocket/trio-websocket-0.10.1.ebuild b/dev-python/trio-websocket/trio-websocket-0.10.1.ebuild new file mode 100644 index 000000000000..b95a0f2797fc --- /dev/null +++ b/dev-python/trio-websocket/trio-websocket-0.10.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{9..11} ) + +inherit distutils-r1 + +DESCRIPTION="WebSocket client and server implementation for Python Trio" +HOMEPAGE=" + https://github.com/HyperionGray/trio-websocket/ + https://pypi.org/project/trio-websocket/ +" +SRC_URI=" + https://github.com/HyperionGray/trio-websocket/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~riscv ~sparc ~x86" + +RDEPEND=" + dev-python/exceptiongroup[${PYTHON_USEDEP}] + >=dev-python/trio-0.11[${PYTHON_USEDEP}] + >=dev-python/wsproto-0.14[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + >=dev-python/pytest-trio-0.5.0[${PYTHON_USEDEP}] + dev-python/trustme[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest -p trio +} diff --git a/dev-python/trio-websocket/trio-websocket-0.10.2.ebuild b/dev-python/trio-websocket/trio-websocket-0.10.2.ebuild new file mode 100644 index 000000000000..b95a0f2797fc --- /dev/null +++ b/dev-python/trio-websocket/trio-websocket-0.10.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{9..11} ) + +inherit distutils-r1 + +DESCRIPTION="WebSocket client and server implementation for Python Trio" +HOMEPAGE=" + https://github.com/HyperionGray/trio-websocket/ + https://pypi.org/project/trio-websocket/ +" +SRC_URI=" + https://github.com/HyperionGray/trio-websocket/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~riscv ~sparc ~x86" + +RDEPEND=" + dev-python/exceptiongroup[${PYTHON_USEDEP}] + >=dev-python/trio-0.11[${PYTHON_USEDEP}] + >=dev-python/wsproto-0.14[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + >=dev-python/pytest-trio-0.5.0[${PYTHON_USEDEP}] + dev-python/trustme[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest -p trio +} diff --git a/dev-python/tzlocal/Manifest b/dev-python/tzlocal/Manifest index 92426930bfc5..1393e87eefec 100644 --- a/dev-python/tzlocal/Manifest +++ b/dev-python/tzlocal/Manifest @@ -1 +1,2 @@ DIST tzlocal-4.2.gh.tar.gz 23649 BLAKE2B 8b50f13854543a3ba5506bf7562ef0f3a7e7b5a20c7af037dd6eece0af16ead2b762b652b9bee0aaeede73178137293773e428a347e78ae7df999be609a34e3b SHA512 574c2f886fa6d1f2973e1ce817bd3347a77bd3beb0535bf5ba93e028e31388987f3f55369bd5a4a4a86c72af226256cdd7803f5bbe3ca6ce891b5adefdce776e +DIST tzlocal-4.3.gh.tar.gz 24147 BLAKE2B 41ed6338b97f1f6c4a5cb64b82f6a93c4e68f275c2d593c774592998a7c63d1c8470fcd5babc13679092da4f92edeb798bfe80186628cb6c34b7fa595a21daf7 SHA512 b93541951c90ef59a0d9b224c75170a0857723ee0f50782980a78a003b1040b7ceef3bbadd2cabde2a8599cecdd7644ccd1431eb8e4d33cd9e4e9d980c048736 diff --git a/dev-python/tzlocal/tzlocal-4.3.ebuild b/dev-python/tzlocal/tzlocal-4.3.ebuild new file mode 100644 index 000000000000..710a1143a1b7 --- /dev/null +++ b/dev-python/tzlocal/tzlocal-4.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="tzinfo object for the local timezone" +HOMEPAGE=" + https://github.com/regebro/tzlocal/ + https://pypi.org/project/tzlocal/ +" +SRC_URI=" + https://github.com/regebro/tzlocal/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + dev-python/pytz_deprecation_shim[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/backports-zoneinfo[${PYTHON_USEDEP}] + ' 3.8) +" +BDEPEND=" + test? ( + dev-python/pytest-mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest diff --git a/dev-python/uc-micro-py/uc-micro-py-1.0.1.ebuild b/dev-python/uc-micro-py/uc-micro-py-1.0.1.ebuild index eb0cd29a214a..82164dd80e1b 100644 --- a/dev-python/uc-micro-py/uc-micro-py-1.0.1.ebuild +++ b/dev-python/uc-micro-py/uc-micro-py-1.0.1.ebuild @@ -22,6 +22,6 @@ S=${WORKDIR}/${MY_P} LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" distutils_enable_tests pytest diff --git a/dev-qt/Manifest.gz b/dev-qt/Manifest.gz index 77f9a9f26acf..85f97ceea986 100644 Binary files a/dev-qt/Manifest.gz and b/dev-qt/Manifest.gz differ diff --git a/dev-qt/qt5compat/Manifest b/dev-qt/qt5compat/Manifest index c717766a6504..6b72b7cfd09a 100644 --- a/dev-qt/qt5compat/Manifest +++ b/dev-qt/qt5compat/Manifest @@ -1 +1,2 @@ DIST qt5compat-everywhere-src-6.4.2.tar.xz 14638200 BLAKE2B 518d254012f65e2f73dbef362abaf5e2890f6b8a97a0e6211b65a92e2e64d149b0fafd39a7f7a9d2f87a6deda04286a0eb2ced56810fb894d5305da5a81f5edf SHA512 8aa49cbbe92e628be3b502bbf0a9668b7664829a12c8cf0eced816cda880d034d567f287d2a1bd1efb7d693b3de7e583d2c2d69e2437cdeda737c67d7949ca56 +DIST qt5compat-everywhere-src-6.4.3.tar.xz 14638428 BLAKE2B 70afd4ff347fc58a4b67ce15d7ccaa542084eeeda672c5f33feedd550cb21a7d93bab192b24ab9b8330aad2a9cfee9f9b47f908cde5667a444f44e0882ceab60 SHA512 22e3d6360afdb83b4bd122153cf3bba09d8593dbdd65ccf5b80e032b9de437f868b05c7170e636fd6bd8f42dd1eb56b07f21b73fd0c4a5437fcb72aa070d830b diff --git a/dev-qt/qt5compat/qt5compat-6.4.3.ebuild b/dev-qt/qt5compat/qt5compat-6.4.3.ebuild new file mode 100644 index 000000000000..e930872d0c3d --- /dev/null +++ b/dev-qt/qt5compat/qt5compat-6.4.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Qt module containing the unsupported Qt 5 APIs" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +DEPEND=" + =dev-qt/qtbase-${PV}*[gui,network] + =dev-qt/qtdeclarative-${PV}* +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtbase/Manifest b/dev-qt/qtbase/Manifest index e77cc5de7513..56fd88940d3e 100644 --- a/dev-qt/qtbase/Manifest +++ b/dev-qt/qtbase/Manifest @@ -1 +1,2 @@ DIST qtbase-everywhere-src-6.4.2.tar.xz 47987188 BLAKE2B 5d25d8b912ba775faa5855ad4326cbd19580cc7f98b997a9bbdb4a2216550a60b2c8a7a2ef1741a5dfd66ebde0d1cf5d0394215474c39c7779648b03c3892812 SHA512 b00cce7bfc29d3a34c9a2f08db147c4bfd962e178916d60033e1845b25eaeaa4fbd42f5c1d7e39453ddb412a4e91c22c8eae52745eda8a47e35a691054d5496e +DIST qtbase-everywhere-src-6.4.3.tar.xz 48078536 BLAKE2B 36d693535479677ca319485634c3eea9dc3c8e8870c8e3cab7693cab601f26c6f792ec056b66488db290defc771b65cdffdea16b420a24ea55e5c4f250119a70 SHA512 a2d0779ba7ee8b8b78f5dc8db06177d04d50463fea7cad0b7785721acfc33dbbbaa1a7bfc052edb90ba1d11b488c30004daa43b6924a97126b9b8f82ad1a7f43 diff --git a/dev-qt/qtbase/qtbase-6.4.3.ebuild b/dev-qt/qtbase/qtbase-6.4.3.ebuild new file mode 100644 index 000000000000..742bab1d9b5c --- /dev/null +++ b/dev-qt/qtbase/qtbase-6.4.3.ebuild @@ -0,0 +1,185 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Cross-platform application development framework" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +# Qt Modules +IUSE="+concurrent +dbus +gui +network +sql opengl +widgets +xml zstd" +REQUIRED_USE=" + opengl? ( gui ) + widgets? ( gui ) + X? ( || ( evdev libinput ) ) +" + +QTGUI_IUSE="accessibility egl eglfs evdev gles2-only +jpeg +libinput tslib tuio vulkan +X" +QTNETWORK_IUSE="brotli gssapi libproxy sctp +ssl vnc" +QTSQL_IUSE="freetds mysql oci8 odbc postgres +sqlite" +IUSE+=" ${QTGUI_IUSE} ${QTNETWORK_IUSE} ${QTSQL_IUSE} cups gtk icu systemd +udev" +# QtPrintSupport = QtGui + QtWidgets enabled. +# ibus = xkbcommon + dbus, and xkbcommon needs either libinput or X +REQUIRED_USE+=" + $(printf '%s? ( gui ) ' ${QTGUI_IUSE//+/}) + $(printf '%s? ( network ) ' ${QTNETWORK_IUSE//+/}) + $(printf '%s? ( sql ) ' ${QTSQL_IUSE//+/}) + accessibility? ( dbus X ) + cups? ( gui widgets ) + eglfs? ( egl ) + gtk? ( widgets ) + gui? ( || ( eglfs X ) || ( libinput X ) ) + libinput? ( udev ) + sql? ( || ( freetds mysql oci8 odbc postgres sqlite ) ) + vnc? ( gui ) + X? ( gles2-only? ( egl ) ) +" + +# TODO: +# qtimageformats: mng not done yet, qtimageformats.git upstream commit 9443239c +# qtnetwork: connman, networkmanager +DEPEND=" + app-crypt/libb2 + dev-libs/double-conversion:= + dev-libs/glib:2 + dev-libs/libpcre2:=[pcre16,unicode] + dev-util/gtk-update-icon-cache + media-libs/fontconfig + >=media-libs/freetype-2.6.1:2 + >=media-libs/harfbuzz-1.6.0:= + media-libs/tiff:= + >=sys-apps/dbus-1.4.20 + sys-libs/zlib:= + brotli? ( app-arch/brotli:= ) + evdev? ( sys-libs/mtdev ) + freetds? ( dev-db/freetds ) + gles2-only? ( media-libs/libglvnd ) + !gles2-only? ( media-libs/libglvnd[X] ) + gssapi? ( virtual/krb5 ) + gtk? ( + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/pango + ) + gui? ( media-libs/libpng:= ) + icu? ( dev-libs/icu:= ) + !icu? ( virtual/libiconv ) + jpeg? ( media-libs/libjpeg-turbo:= ) + libinput? ( + dev-libs/libinput:= + >=x11-libs/libxkbcommon-0.5.0 + ) + libproxy? ( net-libs/libproxy ) + mysql? ( dev-db/mysql-connector-c:= ) + oci8? ( dev-db/oracle-instantclient:=[sdk] ) + odbc? ( dev-db/unixODBC ) + postgres? ( dev-db/postgresql:* ) + sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) + sqlite? ( dev-db/sqlite:3 ) + ssl? ( dev-libs/openssl:= ) + systemd? ( sys-apps/systemd:= ) + tslib? ( >=x11-libs/tslib-1.21 ) + udev? ( virtual/libudev:= ) + vulkan? ( dev-util/vulkan-headers ) + X? ( + x11-libs/libdrm + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + >=x11-libs/libxcb-1.12:= + >=x11-libs/libxkbcommon-0.5.0[X] + x11-libs/xcb-util-image + x11-libs/xcb-util-keysyms + x11-libs/xcb-util-renderutil + x11-libs/xcb-util-wm + ) + zstd? ( app-arch/zstd:= ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DINSTALL_ARCHDATADIR=${QT6_ARCHDATADIR} + -DINSTALL_BINDIR=${QT6_BINDIR} + -DINSTALL_DATADIR=${QT6_DATADIR} + -DINSTALL_DOCDIR=${QT6_DOCDIR} + -DINSTALL_EXAMPLESDIR=${QT6_EXAMPLESDIR} + -DINSTALL_INCLUDEDIR=${QT6_HEADERDIR} + -DINSTALL_LIBDIR=${QT6_LIBDIR} + -DINSTALL_LIBEXECDIR=${QT6_LIBEXECDIR} + -DINSTALL_MKSPECSDIR=${QT6_ARCHDATADIR}/mkspecs + -DINSTALL_PLUGINSDIR=${QT6_PLUGINDIR} + -DINSTALL_QMLDIR=${QT6_QMLDIR} + -DINSTALL_SYSCONFDIR=${QT6_SYSCONFDIR} + -DINSTALL_TRANSLATIONSDIR=${QT6_TRANSLATIONDIR} + -DQT_FEATURE_androiddeployqt=OFF + $(qt_feature concurrent) + $(qt_feature dbus) + $(qt_feature gui) + $(qt_feature gui testlib) + $(qt_feature icu) + $(qt_feature network) + $(qt_feature sql) + $(qt_feature systemd journald) + $(qt_feature udev libudev) + $(qt_feature xml) + $(qt_feature zstd) + ) + use gui && mycmakeargs+=( + $(qt_feature accessibility accessibility_atspi_bridge) + $(qt_feature egl) + $(qt_feature eglfs eglfs_egldevice) + $(qt_feature eglfs eglfs_gbm) + $(qt_feature evdev) + $(qt_feature evdev mtdev) + -DQT_FEATURE_gif=ON + $(qt_feature jpeg) + $(qt_feature opengl) + $(qt_feature gles2-only opengles2) + $(qt_feature libinput) + $(qt_feature tslib) + $(qt_feature tuio tuiotouch) + $(qt_feature vulkan) + $(qt_feature widgets) + $(qt_feature X xcb) + $(qt_feature X xcb_xlib) + ) + use widgets && mycmakeargs+=( + $(qt_feature cups) + $(qt_feature gtk gtk3) + ) + if use libinput || use X; then + mycmakeargs+=( -DQT_FEATURE_xkbcommon=ON ) + fi + use network && mycmakeargs+=( + $(qt_feature brotli) + $(qt_feature gssapi) + $(qt_feature libproxy) + $(qt_feature sctp) + $(qt_feature ssl openssl) + $(qt_feature vnc) + ) + use sql && mycmakeargs+=( + $(qt_feature freetds sql_tds) + $(qt_feature mysql sql_mysql) + $(qt_feature oci8 sql_oci) + $(qt_feature odbc sql_odbc) + $(qt_feature postgres sql_psql) + $(qt_feature sqlite sql_sqlite) + $(qt_feature sqlite system_sqlite) + ) + + qt6-build_src_configure +} + +src_install() { + qt6-build_src_install + + # https://bugs.gentoo.org/863395 + qt6_symlink_binary_to_path qmake 6 +} diff --git a/dev-qt/qtcharts/Manifest b/dev-qt/qtcharts/Manifest index dc72f9a94c53..c9161e6382b5 100644 --- a/dev-qt/qtcharts/Manifest +++ b/dev-qt/qtcharts/Manifest @@ -1,2 +1,3 @@ DIST qtcharts-everywhere-opensource-src-5.15.8.tar.xz 4254148 BLAKE2B b47fbd092d30a9a18f31072c485e30bd25b3a88bcd3260ceb2e9fa3e3df04dc2a74775f5520cbb3f115956cc68ca44f7da3653138fa209e35256e1b6f108082b SHA512 1c57e2f92d33c038ddf17fa5f8863b474f229fb2d8f2eb16e8f48455c98b3f500d3a7d73423c0512b6c44ad33227fac3fca624bfcdbc4bbcf64da54f79b4ac7b DIST qtcharts-everywhere-src-6.4.2.tar.xz 4387080 BLAKE2B 5ea177f2c7cf121bfe1569e73898e812f23ac337e3567625e0d602715f95ea9eccc253369e693f206b7cbcc9a64d23a94a0467a2919be9755bcf2b7263fa3d0c SHA512 b3ee07e4a745d0bf657cc0b7419df3511446a2f7fbfa5cf98e7ae0af479214528bb19fea7b9f68f5a3f975b89b2df10cb0c7a6b709170b5d910bc38466c4b35e +DIST qtcharts-everywhere-src-6.4.3.tar.xz 4386856 BLAKE2B 6085c66dedd26c5712c462dfe4a55246b5d694a46f31afa72eabe1f47fe3d9834b782343dbe1166c7100732f085601688decab7de087e5b34b5522df368f198e SHA512 369e5e69596a0fc4be1c3ab936d32e3690d2efe5bf28344ef71022af209813a5f1435f11ad7ed42f3dd825471d2e2d38c33564bfa514ddf8dc173b708afa3994 diff --git a/dev-qt/qtcharts/qtcharts-6.4.3.ebuild b/dev-qt/qtcharts/qtcharts-6.4.3.ebuild new file mode 100644 index 000000000000..92c6cf414b07 --- /dev/null +++ b/dev-qt/qtcharts/qtcharts-6.4.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Chart component library for the Qt6 framework" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +DEPEND=" + =dev-qt/qtbase-${PV}*[gui,opengl,widgets] + =dev-qt/qtdeclarative-${PV}* +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtdeclarative/Manifest b/dev-qt/qtdeclarative/Manifest index d0025d538c89..3703fb8e2d9b 100644 --- a/dev-qt/qtdeclarative/Manifest +++ b/dev-qt/qtdeclarative/Manifest @@ -1,3 +1,4 @@ DIST qtdeclarative-5.15.8-gentoo-kde-1.tar.xz 19932 BLAKE2B e889597ce322d642f0a1a60fd47b23a34b7d40585ab34841cfbce2225c24a4c56075698a3c9b9b93eb8dce80f2a42140269b84538a6c2817997221404892c180 SHA512 88c9483fca6eb10ecf4810dac369260b7d85372a1b698ea9587201398f65d442b6f8bd87603a277acc71f94e6f7cff2cca750888261a3b31c2734c09415d1fd3 DIST qtdeclarative-everywhere-opensource-src-5.15.8.tar.xz 21592984 BLAKE2B 623264ffcca9f623896d73ce946cc0f621bdae50b520e454b59a1888a2c767f0ff089f69ed1c5e028d01fd28ae447add826fb09c615718af61e787fa1849b16e SHA512 c611cc1d25b7eea1da3e5932d253d024459044d8fff6a31066033ea5867dd20aeb183b2d2ba8a2ca71cf263fc1921126509212dd43ab680134e7a9df8d937d73 DIST qtdeclarative-everywhere-src-6.4.2.tar.xz 30564432 BLAKE2B b445672bfd91978855d11eac953c01902522ffe5c3bb48296f926be6234ee7dccfbb3386478633b81a44cbb067ef2078cf3c05a0b7358ae15e635c0d5ab9ccc6 SHA512 76742b8b0902802c1d7615c8b7948b245a535c5f9574893d0fc5f8e09cb914578c1243be23dee37f98bd037e9407f82bc71b22b688067aaa68efcec1db8f922a +DIST qtdeclarative-everywhere-src-6.4.3.tar.xz 30556972 BLAKE2B a8020e59f9195e83e211db2dbb6054e66e51349f278a4bc3a24719591764b78983fbf2ead40c80f58f1feddf1ff43033c6216bf9690910169bd54fa1d8473c96 SHA512 ba1a477d4e388e93cdbf76c594650b431fbea1212af110fda994fa1ebca0d6cf2dba699c995744deba71bad2a9c45d214b671ddef01a995d7c6c82c61ef82aa2 diff --git a/dev-qt/qtdeclarative/qtdeclarative-6.4.3.ebuild b/dev-qt/qtdeclarative/qtdeclarative-6.4.3.ebuild new file mode 100644 index 000000000000..8c9a771cc98e --- /dev/null +++ b/dev-qt/qtdeclarative/qtdeclarative-6.4.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Qt Declarative (Quick 2)" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +IUSE="opengl +sql +widgets" + +DEPEND=" + =dev-qt/qtbase-${PV}*[network,opengl=,sql=,widgets=] + =dev-qt/qtshadertools-${PV}* +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(qt_feature opengl) + $(qt_feature sql) + $(qt_feature widgets) + ) + + qt6-build_src_configure +} diff --git a/dev-qt/qtimageformats/Manifest b/dev-qt/qtimageformats/Manifest index 430562fe308d..f7b69bbfcb19 100644 --- a/dev-qt/qtimageformats/Manifest +++ b/dev-qt/qtimageformats/Manifest @@ -2,3 +2,4 @@ DIST qtimageformats-5.15.8-gentoo-kde-1.tar.xz 5000 BLAKE2B 1d1a5054267bf8e28051 DIST qtimageformats-5.15.8-gentoo-kde-2.tar.xz 6964 BLAKE2B 934e35ef39ba3e41d87842d5883cfef1e21f36fa3abbe20851cef33c4b652eab74b4dc704b926aaaecf6927183a36167c0879593511bf143749e51cea82feee9 SHA512 a5d1e3ef2706e4d28f0f72199f422c3c41b11836bbafee6800cfb498e242c3587c8d076ca1770e5b88e1b18590ef0a3e0bb98328aa87524c6f4c7ac385b995bb DIST qtimageformats-everywhere-opensource-src-5.15.8.tar.xz 1843016 BLAKE2B 55f4a0b212e63483d23a8a962ffafd826994088e00025291a502d371540e2d88217f5caeea03d40347ff756033b47ffa71e1e250673b977013b7dd5d190b0e7c SHA512 e601a1ebd0881e59c1f87df748faf63df12f552fe668d16af27a58421848ba4de822b4dc3fc54f23c17b818408b6af2edbfb0b59c29e7da8a272d25ac51d7cdd DIST qtimageformats-everywhere-src-6.4.2.tar.xz 1938812 BLAKE2B 65d1e5e7c415397cb411acc60fdb7ba316e986de30eb23a14c92f4fa6d3280bbb7aab2e592fd6d360052ba757472e8fd0aa35212fa3be545e07a4714bfe93ac7 SHA512 2bda0001295d1a27ee3018d7a7236525ee41f7de33d58805a71277b5a7d8f9506687a7bb9d6630e32cbcb89e340048591e9f9d29833a3bb4d8168c4779dc5320 +DIST qtimageformats-everywhere-src-6.4.3.tar.xz 1962440 BLAKE2B c03c82d8a2ec1608e61ba5ca09078fabe055e700ab8d9462f48c62b9e8e3ee6dc0b90edee2400a418bca96dd8037cce0e64a14701c4dc788f5400a56093f257d SHA512 8e165986394c184520412533fbe088577d3a5661fecee8ef7938467ad329da28aa2771721f7ed84c75f1878426d24a17812aee3c492da68618cf6bbcc5580a36 diff --git a/dev-qt/qtimageformats/qtimageformats-6.4.3.ebuild b/dev-qt/qtimageformats/qtimageformats-6.4.3.ebuild new file mode 100644 index 000000000000..ffa831e51aa5 --- /dev/null +++ b/dev-qt/qtimageformats/qtimageformats-6.4.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Additional format plugins for the Qt image I/O system" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +IUSE="mng" + +DEPEND=" + =dev-qt/qtbase-${PV}*[gui] + media-libs/libwebp:= + media-libs/tiff:= + mng? ( media-libs/libmng:= ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DQT_FEATURE_jasper=OFF + $(qt_feature mng) + -DQT_FEATURE_tiff=ON + -DQT_FEATURE_webp=ON + -DQT_FEATURE_system_tiff=ON + -DQT_FEATURE_system_webp=ON + ) + + qt6-build_src_configure +} diff --git a/dev-qt/qtmultimedia/Manifest b/dev-qt/qtmultimedia/Manifest index 1e0ce43a6312..bd7a2c59dc17 100644 --- a/dev-qt/qtmultimedia/Manifest +++ b/dev-qt/qtmultimedia/Manifest @@ -1,3 +1,4 @@ DIST qtmultimedia-5.15.8-gentoo-kde-1.tar.xz 1328 BLAKE2B ebebf55efbcb94a78fd93dd5312862a465a83bca2494bc04492595523a06afca1de050e12a08ac3a0ed437d7fdfed6223bda9d553de1c2fd7a148df9fc00ce7f SHA512 e83bbad3b46ecab048e97a0facc8374bedb3cf80b0b9eeb4151f9dddd9a79bd2292e49bc2942a5d060fe00f6cd497dc709975cd0451a49ac99beb6f6824fb835 DIST qtmultimedia-everywhere-opensource-src-5.15.8.tar.xz 3833148 BLAKE2B 3e418a9949517ee42dfda6b51e1e03cd7f4eda7321aed5894eef91562dc6a10caa4654a0c9578a70b74c093e8570488282349abd735b6a79f4b3caaf7f60e250 SHA512 d448a612845e0afb896d6d0292506a8fae7da0b735ee4d139ab69123c93e67723aa41280dea7e704df89e43b849e7f6da3eeea1de94eee167b43d7c35a1a39cd DIST qtmultimedia-everywhere-src-6.4.2.tar.xz 5938092 BLAKE2B e232f277160dad1a3b32eff284e05264be8dd0e8247a78873ad422f86167aaf20ea21f7c39d07eb2240b56a0a371e7d38dce95054ae9c840a5d948625583eb25 SHA512 3d89ef97e9c58e9e6de61d3410d382cd2427835d26993a79368790b2aeff572fe1924d4cf9468fe3b7be232f99acb24668fe4d42df654df04af8f3d03d18f851 +DIST qtmultimedia-everywhere-src-6.4.3.tar.xz 5941312 BLAKE2B 968dee6e258621b81d61c8fdc16ca069027d778b6d6c3ca5bd7590c8c7b72210df6217bf7cfc4c6520085b4bc3baf8edec003f9eb844191f90940897a3f25a87 SHA512 1e3d6d9d78acf10863fe2d4624ed044d86149fe8a72c8c47150975eff6f76edcb8a7d4dcdb73ab127ed3cc4414b7f7100b0e9e9c633e50c90ef3c0d36134d9b5 diff --git a/dev-qt/qtmultimedia/qtmultimedia-6.4.3.ebuild b/dev-qt/qtmultimedia/qtmultimedia-6.4.3.ebuild new file mode 100644 index 000000000000..07b0a8706fd5 --- /dev/null +++ b/dev-qt/qtmultimedia/qtmultimedia-6.4.3.ebuild @@ -0,0 +1,42 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Qt Multimedia" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +IUSE="gstreamer" + +RDEPEND=" + =dev-qt/qtbase-${PV}*[gui,network,widgets] + =dev-qt/qtdeclarative-${PV}* + =dev-qt/qtshadertools-${PV}* + =dev-qt/qtsvg-${PV}* + gstreamer? ( + dev-libs/glib:2 + media-libs/gstreamer:1.0 + media-libs/gst-plugins-bad:1.0 + media-libs/gst-plugins-base:1.0 + media-libs/libglvnd + ) +" +DEPEND="${RDEPEND} + gstreamer? ( x11-base/xorg-proto ) +" + +src_configure() { + # TODO: linux_v4l automagic + local mycmakeargs=( + -DQT_FEATURE_alsa=off + -DQT_FEATURE_pulseaudio=off + $(qt_feature gstreamer) + ) + + qt6-build_src_configure +} diff --git a/dev-qt/qtnetworkauth/Manifest b/dev-qt/qtnetworkauth/Manifest index d3f644272b23..54c44611284e 100644 --- a/dev-qt/qtnetworkauth/Manifest +++ b/dev-qt/qtnetworkauth/Manifest @@ -1,2 +1,3 @@ DIST qtnetworkauth-everywhere-opensource-src-5.15.8.tar.xz 143564 BLAKE2B d3fb7dd18714c4ef82a082df948c9b39aca4969751eec2c4a79257fe14bdb1e70d8ef829fa886935347e3b9a56febad24ff4b4dd4c3c0c35963c4939a787f118 SHA512 1680d6ec84b2fba24c837ff808c5b9e13b73a84c7353f6d533e10986f23f879e0d3ce9cc4ce84000b4cfbd5904e12d975210977f5376b070075c2ec814eb2baf DIST qtnetworkauth-everywhere-src-6.4.2.tar.xz 144784 BLAKE2B 45c0aea5880cc036038396fbd967ba03e05c5ad5273f801adc27cb699d526db59fdbab7a11fa00da1afe5a7847dff1cd83fe3c998034e433df80157300afa4f2 SHA512 2a5155cc98f710b5bdb6cb56fca79732dbe8ca37901b4148bc6273a48a7b48dbe846eb2559e8221d52a98723b6bbd5e87d725af22f215985677857fd50064bcc +DIST qtnetworkauth-everywhere-src-6.4.3.tar.xz 145000 BLAKE2B e6bc69987bb103a07707844c08cd2e0976e09340044a7eac44c1760e05ffbf9db1d12c03f1f476a3100d178fad35e781bddb6a20686afe242d8be4da1d3d957e SHA512 ccb488646f450541ce8546463c99d45d567339f676948e62c013fc0d7588af408c617bb0bec1d122b3fcb42e79d5ce04f5f779ad6d515fa9f223af70f06c84d9 diff --git a/dev-qt/qtnetworkauth/qtnetworkauth-6.4.3.ebuild b/dev-qt/qtnetworkauth/qtnetworkauth-6.4.3.ebuild new file mode 100644 index 000000000000..90c313132402 --- /dev/null +++ b/dev-qt/qtnetworkauth/qtnetworkauth-6.4.3.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Network authorization library for the Qt6 framework" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +DEPEND=" + =dev-qt/qtbase-${PV}*[network,widgets] +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtpositioning/Manifest b/dev-qt/qtpositioning/Manifest index f157d4d75411..d2fdcb35ccfd 100644 --- a/dev-qt/qtpositioning/Manifest +++ b/dev-qt/qtpositioning/Manifest @@ -1,2 +1,3 @@ DIST qtlocation-everywhere-opensource-src-5.15.8.tar.xz 6559180 BLAKE2B 1b8feb5da8d564a6605d9106ec6399aea23a4f0b43f495baf61e14266e90d2d73cd310fb6d8514730867acba1aa26efb3072c213f22f19f72c2f554d76ab281b SHA512 a337fade917150c13fa2ea22ad1949f41541cea4ceb1f732ab53c20c2f19a63dcfc6f9f544ca64fdb5703d3ac8d2ec6e832f1f199a32e73a2f6c51febf53f514 DIST qtpositioning-everywhere-src-6.4.2.tar.xz 1493780 BLAKE2B c3b287cea7c41e77228daffca45fa590abe7b242c02107ec5c2884fa95777c5d8a21cec26bcda9c5ef42b2b9eb5ce014a3ad9116269843499c4e107f65e7fd51 SHA512 3f45416c10b437572167374cf1450d8ff138f16028e2f338ea4458de4cd05ba71b7de286f7ffacd8b1808ee78b41afb975cb168a0d27077c981dc1bef1e4d412 +DIST qtpositioning-everywhere-src-6.4.3.tar.xz 1494352 BLAKE2B 07535cf8f53fb2d4a103ffb25f5d80343c01bf69eb7fb78debe6713ca5bbc6fdad760b4c97f4a3c394e3270f0e5345b03c87474e3aad183135cd0b8cd15301b1 SHA512 ad8fa75430ef94596673de15c1067bcf648c76a5e938348b26ee44dae97f17c3d36e5a283a9ee78760be57df3d1390f36f476e47f26928dd72e466e469c795a7 diff --git a/dev-qt/qtpositioning/qtpositioning-6.4.3.ebuild b/dev-qt/qtpositioning/qtpositioning-6.4.3.ebuild new file mode 100644 index 000000000000..60873b452acc --- /dev/null +++ b/dev-qt/qtpositioning/qtpositioning-6.4.3.ebuild @@ -0,0 +1,19 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Physical position determination library for the Qt6 framework" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +DEPEND=" + =dev-qt/qtbase-${PV}*[dbus,gui,widgets] + =dev-qt/qtdeclarative-${PV}* + =dev-qt/qtserialport-${PV}* +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtquick3d/Manifest b/dev-qt/qtquick3d/Manifest index 1e9df6318687..2c5b35cf545d 100644 --- a/dev-qt/qtquick3d/Manifest +++ b/dev-qt/qtquick3d/Manifest @@ -1 +1,2 @@ DIST qtquick3d-everywhere-src-6.4.2.tar.xz 42804964 BLAKE2B 6634b27675468887bb0f91e48405eb4dcf063f5f64848ce23af1c64a89a2a853666a9627c1f41dc5fad38916600fbefde3ca5fce1268ae6d6c1bf157709cc63d SHA512 286606571f45a0464a57893880f805a2510ebea9a3cfb92e5225eeb3f9435b2c4d4919ce53c45dcea6ed8f7a9e84dd4afa0a5f631dbc26b3723da637260bb6af +DIST qtquick3d-everywhere-src-6.4.3.tar.xz 44048520 BLAKE2B 1c93fe90c071323ccc77f18893d669c1abf63edaec442f710c61f358ed2440c8f4c54f037ceab232ce2cd6d3f1bc6f10748e8bf99634b422ce3d1b6aaa2e3ef0 SHA512 511c8585ea8686b1e1cf2e3dd47ac5650ba312d583da7e86dc86aaff6769a5751e3d75ff3fd07664098ba6488f75c9dab68d060b0394ad0182c35c44b5306970 diff --git a/dev-qt/qtquick3d/qtquick3d-6.4.3.ebuild b/dev-qt/qtquick3d/qtquick3d-6.4.3.ebuild new file mode 100644 index 000000000000..92a82e63dc8d --- /dev/null +++ b/dev-qt/qtquick3d/qtquick3d-6.4.3.ebuild @@ -0,0 +1,32 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Qt module and API for defining 3D content in Qt QuickTools" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +elif [[ ${QT6_BUILD_TYPE} == live ]]; then + # Don't clone qtquick3d-assimp. + EGIT_SUBMODULES=() +fi + +DEPEND=" + =dev-qt/qtbase-${PV}*[concurrent,network,widgets] + =dev-qt/qtdeclarative-${PV}* + =dev-qt/qtshadertools-${PV}* + =dev-qt/qtquicktimeline-${PV}* + media-libs/assimp:= +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DQT_FEATURE_system_assimp=ON + ) + + qt6-build_src_configure +} diff --git a/dev-qt/qtquicktimeline/Manifest b/dev-qt/qtquicktimeline/Manifest index f9057fc5bc16..7d0cf9253039 100644 --- a/dev-qt/qtquicktimeline/Manifest +++ b/dev-qt/qtquicktimeline/Manifest @@ -1,2 +1,3 @@ DIST qtquicktimeline-everywhere-opensource-src-5.15.8.tar.xz 104348 BLAKE2B 8b02c97e0c0c01c0e398d64d8dbeeeea8a47964c1d9b0ce1357b34d71553b3fb2401f545b1e1c161ed6ca198ed8105c6ac9528e9a46d44ea17d7d4489a97dbd1 SHA512 c05f94ac61613a46494f871d5b4fbbd184f9924dc66f4a82438fc9fb6248b4afb0936f925a033739215096efd6b4a240a34078216999d40c50846ea96cf9dc61 DIST qtquicktimeline-everywhere-src-6.4.2.tar.xz 113008 BLAKE2B 9352c836502ed57af049ff06fc8b0dc6be0a0ac05c8a0a5a84fad86e28a149ad3756534dbe48b994e10466e249575e6816d5b4d33a4a26990b39787ac273bf5b SHA512 dd7f9b09312f7f94e18aa127f49d389eac183cc03f80d01dcd0faa5db2852d0bb12a9f6070543ede93b986649f455e90c4288d992bcd024f82213782f9bfda5e +DIST qtquicktimeline-everywhere-src-6.4.3.tar.xz 113348 BLAKE2B 2b905923479646bced55ee939e7f090d46f708014a2e64e015566a403942f0a27e7bd20020c1055cfdf73d95f47e710d3a11d97ce035895fd068fece681441f0 SHA512 8310e0b360859e59157b5968647a5bb82bfd09f2f61c1b289669e551781e8fd1285f3efb8ed1324013ad14b192f0d9963c8584cfec98a136c82f5956ac1de9ae diff --git a/dev-qt/qtquicktimeline/qtquicktimeline-6.4.3.ebuild b/dev-qt/qtquicktimeline/qtquicktimeline-6.4.3.ebuild new file mode 100644 index 000000000000..3b0370aab04e --- /dev/null +++ b/dev-qt/qtquicktimeline/qtquicktimeline-6.4.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Qt module for keyframe-based timeline construction" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +DEPEND=" + =dev-qt/qtbase-${PV}* + =dev-qt/qtdeclarative-${PV}* +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtserialport/Manifest b/dev-qt/qtserialport/Manifest index 8c15cf908a3c..6a92504a435a 100644 --- a/dev-qt/qtserialport/Manifest +++ b/dev-qt/qtserialport/Manifest @@ -1,2 +1,3 @@ DIST qtserialport-everywhere-opensource-src-5.15.8.tar.xz 323200 BLAKE2B 30d0620c7101a38fe2253ee13845eec7a78dfad8d597d6798235c82ca2a916647b23e0ac9395530c53ab22dc9cdf5ee6a59bfe1a0b689152cf11602a131526fd SHA512 974ae97ec9bdbb4bcecc80a07c343efe4ed686c968810e76fb0e4cd62165949c30d57a37035ac08916850cc2d207fabc0aa09e593184e65fc6d74b36bfbdc444 DIST qtserialport-everywhere-src-6.4.2.tar.xz 319000 BLAKE2B b83869a762eceef9def1a1206343b7c3004ea84e274a8059a3872ba5416e30d7d2f494b49458eea855fa4c6a2163a1933e61eaa40c8377f14b369c9f3fad055f SHA512 d8b33d89e78abf34766f8d37d114641e2aec90ebe7d82dd1246f453b87b266545b1679450fd8f3ab7967a348fda098179b63a6d9ec34eb5ce56d8e8b242a251f +DIST qtserialport-everywhere-src-6.4.3.tar.xz 319400 BLAKE2B bfdaf61f1cd7dcb3d931a5c06e21575d38f5e265746998227459193638a4a285c6138ce78fa0766f84a9030fc807edb390de85d530980406d04ff083af8fa62a SHA512 4871035b714732e7a40579c9a31b0cd955ec9360a996bbffeb16781a89b8df55d9be4408947832f2c6c39646f4d3b64cfb0bf91a83fc73e1808defd108048cd4 diff --git a/dev-qt/qtserialport/qtserialport-6.4.3.ebuild b/dev-qt/qtserialport/qtserialport-6.4.3.ebuild new file mode 100644 index 000000000000..bf569254cd0a --- /dev/null +++ b/dev-qt/qtserialport/qtserialport-6.4.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Serial port abstraction library for the Qt6 framework" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +DEPEND=" + =dev-qt/qtbase-${PV}*[gui,widgets] + virtual/libudev:= +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtshadertools/Manifest b/dev-qt/qtshadertools/Manifest index a18bdb46b154..71987b7287a6 100644 --- a/dev-qt/qtshadertools/Manifest +++ b/dev-qt/qtshadertools/Manifest @@ -1 +1,2 @@ DIST qtshadertools-everywhere-src-6.4.2.tar.xz 1001392 BLAKE2B c284b1302debec2313151ac199f52c7e53f94a047a9141615eb42d8a54fb5a3ade8db5023021beffb024609fe1f7527eadd998a0407e170c52f6ad27dc1f7335 SHA512 ba35c07c253b0c009be297173996327c3bfc27711112d5190f4a7b7c4b5af2f0ee339ed35107139d65a751646a911b499afff2faa04ccd7802b3d7e7aa38ce10 +DIST qtshadertools-everywhere-src-6.4.3.tar.xz 1001780 BLAKE2B aae5cb54f219bc1868b002eef3417d1215dbfe55a357ce6143e4eb7b4bb38ba92eec9411d80f9f4aef2b43205243ba5b4733b76e36272478752dc0121f676604 SHA512 11d6111c4b645d2d31b19c6cf788726546f484bd9c6a3940bdb2ce82f76eecf56a47655065fb87bf488a12968ea26e48e4c0c8b3ff9d702339bd497bef31630e diff --git a/dev-qt/qtshadertools/qtshadertools-6.4.3.ebuild b/dev-qt/qtshadertools/qtshadertools-6.4.3.ebuild new file mode 100644 index 000000000000..88a20ffbb689 --- /dev/null +++ b/dev-qt/qtshadertools/qtshadertools-6.4.3.ebuild @@ -0,0 +1,17 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Qt APIs and Tools for Graphics Pipelines" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +DEPEND=" + =dev-qt/qtbase-${PV}*[gui] +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtsvg/Manifest b/dev-qt/qtsvg/Manifest index 9fec783f1f9f..ae8a7edc8bec 100644 --- a/dev-qt/qtsvg/Manifest +++ b/dev-qt/qtsvg/Manifest @@ -1,3 +1,4 @@ DIST qtsvg-5.15.8-gentoo-kde-1.tar.xz 4944 BLAKE2B c111addb333f09c32e247d63587cb90fa1b0f85fc26528d4e41b3bd5175715d775df422a2a2b8ae4f6ce2cf354212c48abf8e8c5831b01f66d9afb463d7cef07 SHA512 e3e08d6aa6fa57d4a521e84aac22611a4faab65d2609c7982ae5fd2da89a10a77a90049447168bb423030de9e41c3ecbd5fdc52cb3ecf60ba66d83372cf2d306 DIST qtsvg-everywhere-opensource-src-5.15.8.tar.xz 1888824 BLAKE2B a412b271bcf70407bec4eeb0e6ae2f5df716b7efc8ac3142e12a43209a92199bdf798288e39dcc05627ae043b10896b4bceaaebe1362da8d2f6d147073c9797a SHA512 a110a815e7399fc96b0197b96e9c6dec289b9a2c38393711ccfc536c087791009f8452e222f9364b5b133930fa4dea77d7bea2f250511c0511a1a76aa511dcda DIST qtsvg-everywhere-src-6.4.2.tar.xz 1726708 BLAKE2B 1194352d1956b5ad8817105f03a68d263466487e821a9e7741491c67eefeb215bcfacefec51f654fde747e8d534a398b248fc0c36638a629626fcdc6ca3feff6 SHA512 9b9de3f19a6c98d61ec1b4ba1883aada3b57db8e2ce56a493b6d7c639ed49a43f51c16b11f65cf8ee7ba8c8f4c61e1eedebb99c8645acfcc934048f2eb76fe64 +DIST qtsvg-everywhere-src-6.4.3.tar.xz 1726464 BLAKE2B 06a6911980abe0a756ca0901a1ca00145632b6ab724e8e8211bb9130e65d47f60bbb8732e437c197176ec9886b3b0003578508606feb956497a6089e94fd98d7 SHA512 75c20eff54f45e5a501ea965677b708e211a3fa435d3304868ca1b6e3cf0b4ef89e61631e4936b1ef789a06be1d3d43ec9db64be2498159eecfde1cce21e76c0 diff --git a/dev-qt/qtsvg/qtsvg-6.4.3.ebuild b/dev-qt/qtsvg/qtsvg-6.4.3.ebuild new file mode 100644 index 000000000000..960a981395e2 --- /dev/null +++ b/dev-qt/qtsvg/qtsvg-6.4.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="SVG rendering library for the Qt6 framework" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +DEPEND=" + =dev-qt/qtbase-${PV}*[gui,widgets] + sys-libs/zlib:= +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qttools/Manifest b/dev-qt/qttools/Manifest index f2c0952ad660..4580159b7314 100644 --- a/dev-qt/qttools/Manifest +++ b/dev-qt/qttools/Manifest @@ -1 +1,2 @@ DIST qttools-everywhere-src-6.4.2.tar.xz 8740276 BLAKE2B ea376587d3385afa620c917dbf06d3f9a8303f19388f001ae0e441ce392ae401f80893a788b3a4162575913046d922f7c9606cec85d6786860190c4b996ab201 SHA512 303da2e7d58d213b8a5d4f4e36c7903b57ea8011f711cfb598b79414a6da1e3cc5e47a26a34ff1bdf82e07cb4f5274bd45297b880c380e6a3de3df42837a2c2c +DIST qttools-everywhere-src-6.4.3.tar.xz 8738280 BLAKE2B 3da253fabc4025f36ef6a0a0a946b026288d5bc921794ecb9dd71a51113ca067ad7dc2b4f4ff85bb75f999d06639f8c9b85e3139d045ee46aaa05fc432285033 SHA512 24dc02b760d4b1640eac539c9d0dfff9fe516332e5932f43456140daa3044c1e748731a883cc4f80e94626602241d040341e2af27efd470e7d6f50a908660382 diff --git a/dev-qt/qttools/qttools-6.4.3.ebuild b/dev-qt/qttools/qttools-6.4.3.ebuild new file mode 100644 index 000000000000..197390961888 --- /dev/null +++ b/dev-qt/qttools/qttools-6.4.3.ebuild @@ -0,0 +1,66 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Qt Tools Collection" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +IUSE=" + assistant designer distancefieldgenerator +linguist pixeltool + qdbus qdoc qtattributionsscanner qtdiag qtplugininfo +" + +DEPEND=" + =dev-qt/qtbase-${PV}*[network] + assistant? ( =dev-qt/qtbase-${PV}*[sql,widgets] ) + designer? ( =dev-qt/qtbase-${PV}*[widgets] ) + distancefieldgenerator? ( + =dev-qt/qtbase-${PV}*[widgets] + =dev-qt/qtdeclarative-${PV}* + ) + pixeltool? ( =dev-qt/qtbase-${PV}*[widgets] ) + qdbus? ( =dev-qt/qtbase-${PV}*[widgets] ) + qdoc? ( sys-devel/clang:= ) + qtdiag? ( =dev-qt/qtbase-${PV}*[opengl,widgets] ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(qt_feature assistant) + -DQT_FEATURE_commandlineparser=ON + $(qt_feature designer) + $(qt_feature distancefieldgenerator) + $(qt_feature linguist) + $(qt_feature pixeltool) + $(qt_feature qdbus) + $(qt_feature qdoc clang) + $(qt_feature qtattributionsscanner) + $(qt_feature qtdiag) + $(qt_feature qtplugininfo) + -DQT_FEATURE_thread=ON + ) + + qt6-build_src_configure +} + +src_install() { + qt6-build_src_install + + use assistant && qt6_symlink_binary_to_path assistant 6 + use designer && qt6_symlink_binary_to_path designer 6 + use distancefieldgenerator && qt6_symlink_binary_to_path qdistancefieldgenerator 6 + use linguist && qt6_symlink_binary_to_path linguist 6 + use pixeltool && qt6_symlink_binary_to_path pixeltool 6 + use qdbus && qt6_symlink_binary_to_path qdbus 6 + use qdbus && qt6_symlink_binary_to_path qdbusviewer 6 + use qdoc && qt6_symlink_binary_to_path qdoc 6 + use qtdiag && qt6_symlink_binary_to_path qtdiag 6 + use qtplugininfo && qt6_symlink_binary_to_path qtplugininfo 6 +} diff --git a/dev-qt/qtwayland/Manifest b/dev-qt/qtwayland/Manifest index 57115a0b6826..53c056d0df4f 100644 --- a/dev-qt/qtwayland/Manifest +++ b/dev-qt/qtwayland/Manifest @@ -2,3 +2,4 @@ DIST qtwayland-5.15.8-gentoo-kde-1.tar.xz 44488 BLAKE2B bfdd7c2959eb99e115eaf01d DIST qtwayland-5.15.8-gentoo-kde-3.tar.xz 47636 BLAKE2B b57cef6d4ce70747b74062e26459e4957c8df2c1c588b00580e175982b09c8cf172968d4d0bc95576e0e76f2640188d3beef4986d33ef4b79d209bf4a4cdbb45 SHA512 bd23c644f6e957ce7c0aacbe08112deb992608f5546889f765b333fc6094e34bc7329859d66bfbdbd56ebb5d77b82958ff3fc6614780c80573e85bb96f59eae6 DIST qtwayland-everywhere-opensource-src-5.15.8.tar.xz 568268 BLAKE2B b4e982015e25104b3270b48a180b5726ba85e83fd9616422422d8729dc09bc94bbeecfe2096e388eadb0930e4abfdd3b0349eba2bd1d8f742f0c74b5e72aeac5 SHA512 6c6e9dc20f98d71abd7dba54ff278bf4535e70f86bfc4e6dd46c1af7c87777f045a6aba02bba3eb786f7cf383da5fb72b03e1e6ec636c8be0cde0e4e5b7b5b2d DIST qtwayland-everywhere-src-6.4.2.tar.xz 836720 BLAKE2B d8a6b84712081097775f083f3887c18eb001fd2beba32b2abc930ec3b932f6f19b347fe2fde3b98f35c1e7e31661974b13468fb176e73bdf557a330c80d847fd SHA512 29d3f3e7fade666bcd3145106f1d782122ac3fcf94811d25917c9f45af0dc8cddb3c2149545344d91e86f86490029555758ed2e180f241703251c22c7ec15122 +DIST qtwayland-everywhere-src-6.4.3.tar.xz 836240 BLAKE2B 30e3a3847328006eb580d043880556e7eeadd165fd599ab3921810360e2e2dffdea23e5aea4282cdf58b8d12f1392d70840016a187f561b3cbd6f704b1d7553d SHA512 15d74d057c09a734dd10617d018f4dc54e6be4fef5dc96d6eefd6b3f47952bbdb98bc39cbc9545c7ae1a9ec87a512a72d2f019ee47210bfab8cbae0cf01e4ae4 diff --git a/dev-qt/qtwayland/qtwayland-6.4.3.ebuild b/dev-qt/qtwayland/qtwayland-6.4.3.ebuild new file mode 100644 index 000000000000..b1250c60de99 --- /dev/null +++ b/dev-qt/qtwayland/qtwayland-6.4.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Wayland platform plugin for Qt" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +BDEPEND="dev-util/wayland-scanner" +DEPEND=" + dev-libs/wayland + =dev-qt/qtbase-${PV}*[gui,opengl] + =dev-qt/qtdeclarative-${PV}* + media-libs/libglvnd + x11-libs/libxkbcommon +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtwebchannel/Manifest b/dev-qt/qtwebchannel/Manifest index b29855dd3f40..d9c31afb7daa 100644 --- a/dev-qt/qtwebchannel/Manifest +++ b/dev-qt/qtwebchannel/Manifest @@ -1,3 +1,4 @@ DIST qtwebchannel-5.15.8-gentoo-kde-1.tar.xz 5800 BLAKE2B c10ff2974e4e6c30e268f0da752331871aa81bd5253c52c20a823e9556b358cb8e3e8bf33e220f32dd55c7ac1fe2cece879e2573bbaa1e0c196bf719f846246e SHA512 712382e78283c43ad2ef45f19951ed9bc27f9a76c1a3e5c163110289a2dbaca7853b24d910e0c3ed5c3a39cdeb055f89fd095fcd96c98549fcee9f1b762866d8 DIST qtwebchannel-everywhere-opensource-src-5.15.8.tar.xz 210788 BLAKE2B db577036db30d3334cf18f8e3e3c7d63ad0df2331fcf77f15e8f7f6c50470d29497098f5d13ef49d9cd5fb5c241297a45b864e698666c4246b6acfaef4a717ac SHA512 d607b74f6f433be874e42808259fdc6fa69e1ec754544e1f7d614b6a65ed266cdba76e0a7cd535d65045bc708045c8757c1b3826c7885bc08a787458b60ae1cc DIST qtwebchannel-everywhere-src-6.4.2.tar.xz 213124 BLAKE2B ddb51b69728624d88b6ba1952786a1797cc6b61544303d31d862042e87198a5cf0c02b6a5613c18a251b8e7597f34cb52729fdac0cb65c63e4f49c638ff6b333 SHA512 5cde582d77c55bdf4d69a31f04b293c267da00f6a18ab0d677ea1b9b6348cddca8fb9ad453128607f5dc191aeb5e685d8d8fbcade0affeb54ec2fd06035a5c75 +DIST qtwebchannel-everywhere-src-6.4.3.tar.xz 213316 BLAKE2B c026006d72d50a3f61dc20f8456a23eb2cdf4d3b1230b2495457d8fa985a861ff4161da0157f9150f7e044a49aeeba4d01c104e865e8b2c4a709bc5f7732b604 SHA512 6bab95a2df742c6ff023a72a3b192e7c5e56e23834dc7513aadc09d5ce0fadabf4b5590a9911b1dc8c83a7e1c984c4ac57c6957a3fa168de10af5d540d7d6af3 diff --git a/dev-qt/qtwebchannel/qtwebchannel-6.4.3.ebuild b/dev-qt/qtwebchannel/qtwebchannel-6.4.3.ebuild new file mode 100644 index 000000000000..e82c78f55aca --- /dev/null +++ b/dev-qt/qtwebchannel/qtwebchannel-6.4.3.ebuild @@ -0,0 +1,19 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Qt WebChannel" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +DEPEND=" + =dev-qt/qtbase-${PV}*[concurrent] + =dev-qt/qtdeclarative-${PV}* + =dev-qt/qtwebsockets-${PV}* +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtwebengine/Manifest b/dev-qt/qtwebengine/Manifest index 9c51541e07a1..ff91ecba4e92 100644 --- a/dev-qt/qtwebengine/Manifest +++ b/dev-qt/qtwebengine/Manifest @@ -3,3 +3,4 @@ DIST qtwebengine-5.15.2_p20211019-jumbo-build.patch.bz2 2930 BLAKE2B fca1d140687 DIST qtwebengine-5.15.3_p20220406-patchset.tar.xz 35480 BLAKE2B ce6aeebbb3255196611130d04ee7a3907ba45d6d2a283f2433e2176cf67e473e74137b180de0a9998762cc54439bb06825815e81e9f95f9413ce2956ac9308b7 SHA512 47e29a1429dce2db324929af91c8ef8421c75ae48f5a491db71b434f8017a5b1e7475e9938989e331e8e012220852848565242e09747892e1a8a8d3ab7386840 DIST qtwebengine-5.15.8_p20230112.tar.xz 320881876 BLAKE2B 681fb4e2c6dfb80f1f2839092bbbd891a0a0d68f6b31dbdfe8693b8ea9a0ecd9611ba692b0565f32fc2ad199de715cf61e333d796df618572f79d9ed88545ffb SHA512 1806e7a3134579a5cfc0c932cc95ffb15edc515c2ff32b01eee9de8245938f95301610cd7b57451a07a9e38451111973b88c1d64a03f1371e58106bf202b143e DIST qtwebengine-everywhere-src-6.4.2.tar.xz 440538956 BLAKE2B df94e0e8e22d11614d0d35002c0e404e6735d75e7b43bef1bfd3d5e1230a997625fe8471d8a9154798cc1f9b9c296c2b697ec70fba0428d509d1352d6d3fafee SHA512 47b184a690d4fa5ccccaa3533903068df7b28825aeb16b7c75e3c7cc29fe0cfdf07501c5f0311926c22852f626b0cd59c836d44527261dc7d5c1efbf7e15439b +DIST qtwebengine-everywhere-src-6.4.3.tar.xz 440562844 BLAKE2B 86155ffbb12bef9dad461c2bb0dc4fce53b269c6f9f61cd1ec49cc25bb0516dcfc903ce8b48751c9c47614d448c2cd290f3f313d5fdfe0a3643534fa7e2e9f3f SHA512 e9e8bdeac942350bf779a9fabfb59ffdfec366ec23cb1c58fa416a777c9399bfa9828107f6a1c079414a8aa52a35d0547e3bd673053d994e19308e11733e0d39 diff --git a/dev-qt/qtwebengine/qtwebengine-6.4.3.ebuild b/dev-qt/qtwebengine/qtwebengine-6.4.3.ebuild new file mode 100644 index 000000000000..99c9282be639 --- /dev/null +++ b/dev-qt/qtwebengine/qtwebengine-6.4.3.ebuild @@ -0,0 +1,252 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE="xml(+)" +CHROMIUM_VER="102.0.5005.177" +CHROMIUM_PATCHES_VER="110.0.5481.78" + +inherit check-reqs estack flag-o-matic multiprocessing python-any-r1 qt6-build + +DESCRIPTION="Library for rendering dynamic web content in Qt6 C++ and QML applications" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +IUSE=" + alsa bindist designer geolocation +jumbo-build kerberos pulseaudio screencast + +system-ffmpeg +system-icu widgets +" +REQUIRED_USE="designer? ( widgets )" + +BDEPEND=" + $(python_gen_any_dep 'dev-python/html5lib[${PYTHON_USEDEP}]') + dev-util/gperf + dev-util/ninja + dev-util/re2c + net-libs/nodejs[ssl] + sys-devel/bison + sys-devel/flex +" +RDEPEND=" + app-arch/snappy:= + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + dev-libs/expat + dev-libs/libevent:= + dev-libs/libxml2[icu] + dev-libs/libxslt + dev-libs/re2:= + =dev-qt/qtdeclarative-${PV}* + =dev-qt/qtwebchannel-${PV}* + media-libs/fontconfig + media-libs/freetype + media-libs/harfbuzz:= + media-libs/lcms:2 + media-libs/libjpeg-turbo:= + media-libs/libpng:= + >=media-libs/libvpx-1.5:=[svc(+)] + media-libs/libwebp:= + media-libs/opus + sys-apps/dbus + sys-apps/pciutils + sys-libs/zlib[minizip] + virtual/libudev + x11-libs/libdrm + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXcursor + x11-libs/libxcb:= + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libxkbcommon + x11-libs/libxkbfile + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libXScrnSaver + x11-libs/libxshmfence:= + x11-libs/libXtst + alsa? ( media-libs/alsa-lib ) + geolocation? ( =dev-qt/qtpositioning-${PV}* ) + kerberos? ( virtual/krb5 ) + pulseaudio? ( media-libs/libpulse:= ) + screencast? ( media-video/pipewire:= ) + system-ffmpeg? ( =dev-libs/icu-69.1:= ) + widgets? ( + =dev-qt/qtbase-${PV}*[widgets] + ) +" +DEPEND="${RDEPEND} + media-libs/libglvnd +" + +python_check_deps() { + python_has_version "dev-python/html5lib[${PYTHON_USEDEP}]" +} + +qtwebengine_check-reqs() { + # bug #307861 + eshopts_push -s extglob + if is-flagq '-g?(gdb)?([1-9])'; then + ewarn "You have enabled debug info (probably have -g or -ggdb in your CFLAGS/CXXFLAGS)." + ewarn "You may experience really long compilation times and/or increased memory usage." + ewarn "If compilation fails, please try removing -g/-ggdb before reporting a bug." + fi + eshopts_pop + + [[ ${MERGE_TYPE} == binary ]] && return + + # (check-reqs added for bug #570534) + # + # Estimate the amount of RAM required + # Multiplier is *10 because Bash doesn't do floating point maths. + # Let's crudely assume ~2GB per compiler job for GCC. + local multiplier=20 + + # And call it ~1.5GB for Clang. + if tc-is-clang ; then + multiplier=15 + fi + + local CHECKREQS_DISK_BUILD="7G" + local CHECKREQS_DISK_USR="150M" + if ! has "distcc" ${FEATURES} ; then + # bug #830661 + # Not super realistic to come up with good estimates for distcc right now + local CHECKREQS_MEMORY=$(($(makeopts_jobs)*multiplier/10))G + fi + + check-reqs_${EBUILD_PHASE_FUNC} +} + +pkg_pretend() { + qtwebengine_check-reqs +} + +pkg_setup() { + qtwebengine_check-reqs + python-any-r1_pkg_setup +} + +pkg_preinst() { + elog "This version of Qt WebEngine is based on Chromium version ${CHROMIUM_VER}, with" + elog "additional security fixes up to ${CHROMIUM_PATCHES_VER}. Extensive as it is, the" + elog "list of backports is impossible to evaluate, but always bound to be behind" + elog "Chromium's release schedule." + elog "In addition, various online services may deny service based on an outdated" + elog "user agent version (and/or other checks). Google is already known to do so." + elog + elog "tldr: Your web browsing experience will be compromised." +} + +src_unpack() { + # bug 307861 + eshopts_push -s extglob + if is-flagq '-g?(gdb)?([1-9])'; then + ewarn + ewarn "You have enabled debug info (probably have -g or -ggdb in your CFLAGS/CXXFLAGS)." + ewarn "You may experience really long compilation times and/or increased memory usage." + ewarn "If compilation fails, please try removing -g/-ggdb before reporting a bug." + ewarn + fi + eshopts_pop + + case ${QT6_BUILD_TYPE} in + live) git-r3_src_unpack ;& + release) default ;; + esac +} + +src_prepare() { + # bug 620444 - ensure local headers are used + find . -type f -name "*.pr[fio]" -exec \ + sed -i -e 's|INCLUDEPATH += |&$${QTWEBENGINE_ROOT}_build/include $${QTWEBENGINE_ROOT}/include |' {} + || die + + if use system-icu; then + # Sanity check to ensure that bundled copy of ICU is not used. + # Whole src/3rdparty/chromium/third_party/icu directory cannot be deleted because + # src/3rdparty/chromium/third_party/icu/BUILD.gn is used by build system. + # If usage of headers of bundled copy of ICU occurs, then lists of shim headers in + # shim_headers("icui18n_shim") and shim_headers("icuuc_shim") in + # src/3rdparty/chromium/third_party/icu/BUILD.gn should be updated. + local file + while read file; do + echo "#error This file should not be used!" > "${file}" || die + done < <(find src/3rdparty/chromium/third_party/icu -type f "(" -name "*.c" -o -name "*.cpp" -o -name "*.h" ")" 2>/dev/null) + fi + + qt6-build_src_prepare +} + +src_configure() { + export NINJA_PATH="${BROOT}"/usr/bin/ninja + export NINJAFLAGS="${NINJAFLAGS:--j$(makeopts_jobs) -l$(makeopts_loadavg "${MAKEOPTS}" 0) -v}" + + local mycmakeargs=( + #-DQT_FEATURE_accessibility=off + #-DQT_FEATURE_force_asserts=off + #-DQT_FEATURE_opengl=off + #-DQT_FEATURE_printer=off + -DQT_FEATURE_qtpdf_build=off + -DQT_FEATURE_qtpdf_quick_build=off + -DQT_FEATURE_qtpdf_widgets_build=off + -DQT_FEATURE_qtwebengine_build=on + -DQT_FEATURE_qtwebengine_quick_build=on + -DQT_FEATURE_qtwebengine_widgets_build=on + #-DQT_FEATURE_ssl=off + #-DQT_FEATURE_static=off + #-DQT_FEATURE_system_zlib=off + #-DQT_FEATURE_system_png=off + #-DQT_FEATURE_system_jpeg=off + #-DQT_FEATURE_system_freetype=off + #-DQT_FEATURE_system_harfbuzz=off + #-DQT_FEATURE_use_gold_linker=off + #-DQT_FEATURE_use_lld_linker=off + -DQT_FEATURE_webengine_embedded_build=off + -DQT_FEATURE_webengine_extensions=on + #-DQT_FEATURE_webengine_full_debug_info=$(usex debug) + -DQT_FEATURE_webengine_geolocation=$(usex geolocation on off) + -DQT_FEATURE_webengine_jumbo_build=$(usex jumbo-build) + #-DQT_FEATURE_webengine_jumbo_file_merge_limit + -DQT_FEATURE_webengine_kerberos=$(usex kerberos on off) + -DQT_FEATURE_webengine_native_spellchecker=off + -DQT_FEATURE_webengine_ozone_x11=on + -DQT_FEATURE_webengine_pepper_plugins=on + -DQT_FEATURE_webengine_proprietary_codecs=$(usex bindist off on) + -DQT_FEATURE_webengine_printing_and_pdf=on + -DQT_FEATURE_webengine_sanitizer=on + -DQT_FEATURE_webengine_spellchecker=on + -DQT_FEATURE_webengine_system_opus=on + -DQT_FEATURE_webengine_system_libwebp=on + -DQT_FEATURE_webengine_system_alsa=$(usex alsa on off) + -DQT_FEATURE_webengine_system_ffmpeg=$(usex system-ffmpeg) + -DQT_FEATURE_webengine_system_icu=$(usex system-icu) + -DQT_FEATURE_webengine_system_libevent=on + -DQT_FEATURE_webengine_system_libpci=on + -DQT_FEATURE_webengine_system_libpng=on + -DQT_FEATURE_webengine_system_pulseaudio=$(usex pulseaudio on off) + -DQT_FEATURE_webengine_system_zlib=on + -DQT_FEATURE_webengine_webchannel=on + -DQT_FEATURE_webengine_webrtc=on + -DQT_FEATURE_webengine_webrtc_pipewire=$(usex screencast on off) + #-DQT_FEATURE_xcb=off + ) + + qt6-build_src_configure +} + +src_install() { + qt6-build_src_install + + # bug 601472 + if [[ ! -f ${D}${QT6_LIBDIR}/libQt6WebEngineCore.so ]]; then + die "${CATEGORY}/${PF} failed to build anything. Please report to https://bugs.gentoo.org/" + fi +} diff --git a/dev-qt/qtwebsockets/Manifest b/dev-qt/qtwebsockets/Manifest index 0d1c42413a7a..77a3263cc31c 100644 --- a/dev-qt/qtwebsockets/Manifest +++ b/dev-qt/qtwebsockets/Manifest @@ -1,3 +1,4 @@ DIST qtwebsockets-5.15.8-gentoo-kde-2.tar.xz 2028 BLAKE2B 60e13ca18f5f32de3d344b293c4601fb83166c10f2d51e2fc19135dc54cb5cbbcfacff86ee4c630d5fd988ec40f9bbb20d3c67e485de1e0bacdbd68cbcaee092 SHA512 175326b9e193bd38da5ab0d45cf91121797f1d21a2a2a9ad72692af76c95d38b8ffbde2af845dbd9647ad38274e20b06c28d4dbc548bc7bf39be0724403c6e00 DIST qtwebsockets-everywhere-opensource-src-5.15.8.tar.xz 260804 BLAKE2B 256274508c9676f407826a04613c1d2e5d9f213aaef6853e2d873e6fb4ab5fc5d2aff762b0a74fb880ed581486c20d513e74ff6edb3358821c2bc663221b1498 SHA512 d44f8beab7536882cb4c8b9250a9e39a274b549b0ff6ea003f16c614a9e5f1bef7d0526acacd3d4382dea9ddc86be1631903df72a605b4cde06aa109320fe05f DIST qtwebsockets-everywhere-src-6.4.2.tar.xz 267456 BLAKE2B b0d3c7ace2007185486c81a8aff31ae6195aed165d7df0466e1e87775a721325fc337723923f8c1104fb52afaf75efa02ec5c9cfa5ce7597da9669993b52a5be SHA512 3d9b9a800151385e30a54289606ed430e322a8e8f4401b57a28fd194ccd0346b13151155b9c50780233dc89e6b3a639f1c30fe5fc7c71dc1d614398be4f9315c +DIST qtwebsockets-everywhere-src-6.4.3.tar.xz 267624 BLAKE2B 4b33f472b7ef3745fe7e85cb942203de6139d3e0e2a553e92bb3659473e9ae12d6f7460da78da925189b202a65df69788882c7bb3ab0fd9b432d376082774091 SHA512 231135ac75f704aeebe5286cd30640bacb6192f08785ac94fe848d6d5164597db314054c9d48a2300e9967c609681802b82055ab6bf806b3a351d891d3855bf3 diff --git a/dev-qt/qtwebsockets/qtwebsockets-6.4.3.ebuild b/dev-qt/qtwebsockets/qtwebsockets-6.4.3.ebuild new file mode 100644 index 000000000000..abdcffa9a067 --- /dev/null +++ b/dev-qt/qtwebsockets/qtwebsockets-6.4.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="Implementation of the WebSocket protocol for the Qt6 framework" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +DEPEND=" + =dev-qt/qtbase-${PV}*[network] + =dev-qt/qtdeclarative-${PV}* +" +RDEPEND="${DEPEND}" diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz index e86d8cd79d01..0ed7ed65857d 100644 Binary files a/dev-ruby/Manifest.gz and b/dev-ruby/Manifest.gz differ diff --git a/dev-ruby/asciidoctor/Manifest b/dev-ruby/asciidoctor/Manifest index 59c8639d5218..ef2598f9de00 100644 --- a/dev-ruby/asciidoctor/Manifest +++ b/dev-ruby/asciidoctor/Manifest @@ -1,3 +1,2 @@ -DIST asciidoctor-2.0.15.tar.gz 1633310 BLAKE2B 58029acdf3832459dde5df2835749bb781ccbaa547fa4a09dc10a69fbef36ed690fac7cd0e2b3da1a5de847be678d0ad410c17c6768e466fffc7ad30b5d9d4bf SHA512 4cd0ce922d5db5bc5b31ebc75707c2e9e2a94a2a28eeb68ed25f55c46c416c950d28b880c4b1ab52bbcdda9ee4ee7b1c297049754d214983b68eedf2d96492d8 DIST asciidoctor-2.0.16.tar.gz 1651396 BLAKE2B 6da2971c38e48497b482ca1bc22916a10c3505d7bd4fa802ffd4939a0c0986d650a30b5870fea7979046c4b61c6e97aec08d9ba345ce350de6721d545c2923b5 SHA512 95003640632cc99f1edd2447156135267ad78f24983418817f19256fab6e313b8faab9f676317e7cc610728abb8b047f2d2f481f4700009a2d6bdd3b9efcc463 DIST asciidoctor-2.0.18.tar.gz 1690964 BLAKE2B 5e14371c7201f83529fa28a63b031599ebf53fda62b4701942f134e7f1dae923a07676aafeac4c5e1fc3c25b6e9044b34b9b2e5b07491f1ca8e68076aa02301b SHA512 b47b377520046d95101fc9bcd3defdf7219714ebadc0d069cb108d39a349fcf1abd1e61178e1515f75bb69e9e3d0f8cb2de67de5a0f8aa75fdd139d693c0e437 diff --git a/dev-ruby/asciidoctor/asciidoctor-2.0.15.ebuild b/dev-ruby/asciidoctor/asciidoctor-2.0.15.ebuild deleted file mode 100644 index 76217435521e..000000000000 --- a/dev-ruby/asciidoctor/asciidoctor-2.0.15.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_TASK_TEST="test features" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc README.adoc" - -RUBY_FAKEGEM_EXTRAINSTALL="data" - -inherit ruby-fakegem - -DESCRIPTION="Processor for converting AsciiDoc into HTML 5, DocBook 4.5 and other formats" -HOMEPAGE="https://github.com/asciidoctor/asciidoctor" -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 x86" -IUSE="" - -ruby_add_bdepend "test? ( - dev-util/cucumber - dev-ruby/rspec-expectations:* - dev-ruby/asciimath - dev-ruby/coderay - dev-ruby/concurrent-ruby - dev-ruby/erubis - dev-ruby/haml - dev-ruby/nokogiri - dev-ruby/rouge - dev-ruby/slim - dev-ruby/tilt )" - -all_ruby_prepare() { - rm Gemfile || die -} - -all_ruby_install() { - all_fakegem_install - - doman man/asciidoctor.1 -} diff --git a/dev-ruby/aws-partitions/Manifest b/dev-ruby/aws-partitions/Manifest index 87a15755f86b..048ba6ae6267 100644 --- a/dev-ruby/aws-partitions/Manifest +++ b/dev-ruby/aws-partitions/Manifest @@ -1 +1,2 @@ DIST aws-partitions-1.370.0.gem 22528 BLAKE2B 504b25a41da2b948b00c3ea4b7e94a553ad77a471849d7e8d2d9a714860e9efce06c788dd22e6600b6885939987a1ea481dd0ef9f0e6c6ba9fa342ae24f4d627 SHA512 49bec442cad737c4781f759b7babef3d45daa49866135b4fb15aed9e248e737e95a589c0b17b86a6fe4e042c039fcdef7f2088e1eaf6738801fb314c71e0cc56 +DIST aws-partitions-1.722.0.gem 54784 BLAKE2B 5fd08e9b1e246e5690b25676ec32e87a058a8d48d7659036c64a469e25751660e1ee6ea278dfe1f07115f5ad691368c4712b3a3a2a897776b870cf5966a092ba SHA512 8a1ffe81077ba2eb26abfc10916dcdc78466f3081a871fea196e86107dff3f1bf7c74fe274eaaee077e09c1842997ae66ca1e6466d7169bbbaae36fa33d378df diff --git a/dev-ruby/aws-partitions/aws-partitions-1.722.0.ebuild b/dev-ruby/aws-partitions/aws-partitions-1.722.0.ebuild new file mode 100644 index 000000000000..dc5b40f61ae0 --- /dev/null +++ b/dev-ruby/aws-partitions/aws-partitions-1.722.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby27 ruby30 ruby31 ruby32" + +# Not packaged and upstream not tagged. +RUBY_FAKEGEM_RECIPE_TEST="none" + +RUBY_FAKEGEM_EXTRAINSTALL="partitions.json" + +inherit ruby-fakegem + +DESCRIPTION="Provides interfaces to enumerate AWS partitions, regions, and services" +HOMEPAGE="https://aws.amazon.com/sdk-for-ruby/" + +LICENSE="Apache-2.0" +SLOT="1" +KEYWORDS="~amd64 ~arm64" +IUSE="" diff --git a/dev-ruby/capistrano/Manifest b/dev-ruby/capistrano/Manifest index 85528c1a6bb2..aad11098d7c7 100644 --- a/dev-ruby/capistrano/Manifest +++ b/dev-ruby/capistrano/Manifest @@ -1,5 +1,3 @@ DIST capistrano-2.15.5.gem 132096 BLAKE2B bbaa6bd482cf9bbe7aa01540aa5dab3f32401ffa1476d9057bb8ad420194f1ab2c32d8e744d7c982ebece5c4b5369133dc8378b7adf54c78732f9cb249db2a9e SHA512 10168080c7481ec6fc6f918ac90a3b1ce8f2b36f77411375e33cc915b02d5196ab061ac47e767edd724c82cffd1c2ad0a23ba1f0519cf1f2aae5b429167b19ff -DIST capistrano-3.16.0.gem 69120 BLAKE2B 3e1c4f639c2d5cd36ae305746f53e68350d5eee39fbd5c5ec828ea5b69f47a3a5f8b4e6f4b65de2e24717f71cf4a9443879fc3d076474ab020e2023372085180 SHA512 ec5aa465065cd115f0a1b7db06b7c68f2034e81feb3b814b730a6aca464756e545fd5c065ea941a3076bb637448e2a0f04aeb56de2578cdf22a6f208d27a2219 -DIST capistrano-3.17.0.gem 69632 BLAKE2B 57430e8e73bddb11d170c579cae8b2fa6bd1390b5aaeb5e41a81a17ffb84d02623a4ca27c518b0d2ba16c78a639d34e05e68d1fad0d94afadecb846e7d515ea1 SHA512 d4298c1d71d51a3cb5216a23fb1181ba11f544a9572939b95f1f7fef80f64e6ebb2eb5cda4b22a77092ec0bb7d7aaa2d72eff88d715290cb989b78033d6053e5 DIST capistrano-3.17.1.gem 69632 BLAKE2B 7457f3e3dfc102f2612dda6c976ab05e14a86cdbd39df67a15e190a9998103b9dcc06db1f8d5bcab9bdd6c274f459f40de084a229c183362986dfc58ec07c44b SHA512 68882795d735870b1e5821c3583e2c9366ad5ecb2a413e9488e31010a321368bca3298af020010a0fe90b0c930fbff54bb6e85effdde106dbf92b09e3285721d DIST capistrano-3.17.2.gem 69632 BLAKE2B e2d1c16d7b4118593e5e8741dff0fdebd69af61db9c2796faeeadfdaabf04577775b2092917c60eba6d213680dba6d241b4b4ac1295e74da11c607fb54392ae3 SHA512 2c8943eda6dab2c4016c5eb86773040a4a0640e58405115f56c9c8c02dfd06bf2c7a98a0a0bee5d5c77dde16b262ab7131210bbba8ae1b5a8f5172cae76492a3 diff --git a/dev-ruby/capistrano/capistrano-3.16.0.ebuild b/dev-ruby/capistrano/capistrano-3.16.0.ebuild deleted file mode 100644 index c6f673eacd24..000000000000 --- a/dev-ruby/capistrano/capistrano-3.16.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_RECIPE_DOC="none" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -inherit ruby-fakegem - -DESCRIPTION="A distributed application deployment system" -HOMEPAGE="https://capistranorb.com/" - -LICENSE="MIT" -SLOT="3" -KEYWORDS="amd64" -IUSE="" - -ruby_add_rdepend " - >=dev-ruby/airbrussh-1.0.0 - >=dev-ruby/sshkit-1.9:0 - >=dev-ruby/rake-10.0.0 - dev-ruby/i18n:*" -ruby_add_bdepend " - test? ( dev-ruby/mocha )" - -all_ruby_prepare() { - # Avoid specs that depend on capistrano already being installed - rm -f spec/lib/capistrano/doctor/gems_doctor_spec.rb || die - - # Avoid specs that require a TTY - sed -i -e '/asking for a variable/,/^ end/ s:^:#:' spec/integration/dsl_spec.rb || die - rm -f spec/lib/capistrano/configuration/question_spec.rb || die -} diff --git a/dev-ruby/capistrano/capistrano-3.17.0.ebuild b/dev-ruby/capistrano/capistrano-3.17.0.ebuild deleted file mode 100644 index 687c83bef12a..000000000000 --- a/dev-ruby/capistrano/capistrano-3.17.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby26 ruby27 ruby30" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_RECIPE_DOC="none" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -inherit ruby-fakegem - -DESCRIPTION="A distributed application deployment system" -HOMEPAGE="https://capistranorb.com/" - -LICENSE="MIT" -SLOT="3" -KEYWORDS="~amd64" -IUSE="" - -ruby_add_rdepend " - >=dev-ruby/airbrussh-1.0.0 - >=dev-ruby/sshkit-1.9:0 - >=dev-ruby/rake-10.0.0 - dev-ruby/i18n:*" -ruby_add_bdepend " - test? ( dev-ruby/mocha )" - -all_ruby_prepare() { - # Avoid specs that depend on capistrano already being installed - rm -f spec/lib/capistrano/doctor/gems_doctor_spec.rb || die - - # Avoid specs that require a TTY - sed -i -e '/asking for a variable/,/^ end/ s:^:#:' spec/integration/dsl_spec.rb || die - rm -f spec/lib/capistrano/configuration/question_spec.rb || die -} diff --git a/dev-ruby/concurrent-ruby/Manifest b/dev-ruby/concurrent-ruby/Manifest index e4ce11afe701..28bd26e31236 100644 --- a/dev-ruby/concurrent-ruby/Manifest +++ b/dev-ruby/concurrent-ruby/Manifest @@ -1,3 +1,4 @@ DIST concurrent-ruby-1.1.10.tar.gz 6013684 BLAKE2B d271579a49ab52c9c41a7a0a31451775e1cba8ce19486b52a9eb3df7abbc66f7610d31284fc02747a8ee5f429983d8283b6fe92f22b911dcda5bc515da58b48f SHA512 cfb67ce806d1f2a5bae509806247bfefb05c56794741cedcaa7ab6ff708085e374d150e8f46ff8e04dcb0918fde8ab5a593c60550da9ff6dc00af116e123f064 DIST concurrent-ruby-1.1.9.tar.gz 4923746 BLAKE2B 2bfea989db31f17c69ee479091135516e2aeef7ac74234ccea91b2e4b3626395683a7b2ebba1d13cb527903d3d83c51e873bdb859f0ff1983062fea4fa90a1e4 SHA512 243fc20795bcd7399bdf77a9b0db9b0bccb1b05edacf4fbc8f5515f59502300b4033a2a59bfb6adea9befdb20759c9f58bbf0e7744e934c85738085bef714ea6 DIST concurrent-ruby-1.2.0.tar.gz 1160662 BLAKE2B e05df20596930d46781d718ebcd90c8326d78993ad15a7b7c804e0852bdfb66a955314769c8abdef9bc59c6fb249d81c6f48058751537a399da5846ded97dcbc SHA512 c6dc1a84ac4b176644481c2431d67b2b7e0a47fcb9e3fc3fa0b4ddd102ef65d1d02d5aff2784bb55a194f01a4a5294fc26944da16dea550934a6950caee54a31 +DIST concurrent-ruby-1.2.2.tar.gz 1161215 BLAKE2B 42f42022e469a1131d40e96a04dacb0ac49d94e96b6a8c58348d34402319ea0abff53b8b1312a274a34c332301ca17a007b685d8d9fe8c229350177abac0a285 SHA512 e2b26de147468b09403cd1727750922526ba240ad0cfe7889b722b357a3c71e709b12958cc4dad1a0d2d2c10d4dd2c67be1fe23053b98c35c7a50722fecb24b0 diff --git a/dev-ruby/concurrent-ruby/concurrent-ruby-1.2.2.ebuild b/dev-ruby/concurrent-ruby/concurrent-ruby-1.2.2.ebuild new file mode 100644 index 000000000000..450b66e2ec85 --- /dev/null +++ b/dev-ruby/concurrent-ruby/concurrent-ruby-1.2.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby27 ruby30 ruby31 ruby32" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_RECIPE_DOC="" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Modern concurrency tools including agents, futures, promises, thread pools, more" +HOMEPAGE="https://github.com/ruby-concurrency/concurrent-ruby" +SRC_URI="https://github.com/ruby-concurrency/concurrent-ruby/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="1" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +ruby_add_bdepend "test? ( >=dev-ruby/timecop-0.9 )" + +all_ruby_prepare() { + # Remove edge files as defined in support/file_map.rb + rm -rf spec/concurrent/{actor,cancellation,channel,edge,lazy_register,processing,promises,throttle}* || die + rm -r spec/concurrent/executor/wrapping_executor_spec.rb || die + sed -i -e '/concurrent-edge/ s:^:#:' spec/spec_helper.rb || die + sed -i -e 's:lib-edge:lib/concurrent-ruby:' .rspec || die + sed -i -e 's:../../../::' spec/concurrent/executor/executor_quits.rb || die + + # Remove specs for the ext gem + rm -rf spec/concurrent/atomic || die + + sed -i 's/git ls-files/find * -print/' ${RUBY_FAKEGEM_GEMSPEC} || die +} diff --git a/dev-ruby/database_cleaner/Manifest b/dev-ruby/database_cleaner/Manifest index 3dc6e40e5904..f606610b91eb 100644 --- a/dev-ruby/database_cleaner/Manifest +++ b/dev-ruby/database_cleaner/Manifest @@ -1,2 +1 @@ -DIST database_cleaner-1.7.0.gem 32256 BLAKE2B 496a1f02bb34aa2210e91367ade3575884e5c68ed18d1ba076fe8a5a7b0c5303a8acedec198a3de4adeb8f85cb2147d1c1d3c1f7badfb890ca1c7df8ecd7eae7 SHA512 4bdf6c66a0530a65ce2c746ff5190ef0aa42ab3d3ed787fbfe9c00de99d7ba816de3b6ad11cbaf4887760b9a19178f9968b8d604bc023dce83ec9ef748c0e336 DIST database_cleaner-2.0.1.gem 4608 BLAKE2B 9cd2d7028a95089aa7c1e6744305724977a395136de9f1672094ca5faf48dfe875cb23d68465b78a3a00798badb1dfeb14d7bdf00a637e2e8680da32286d67e6 SHA512 e1acbf853feecbd46ce1bf021b0b8cbc96c9697d5c61ab1a2f4f92005b779102cd1ffd9bb81eae94a94d0c4a50e0bd7f55d28f0b4fdd6596f677f37edb01ca38 diff --git a/dev-ruby/database_cleaner/database_cleaner-1.7.0.ebuild b/dev-ruby/database_cleaner/database_cleaner-1.7.0.ebuild deleted file mode 100644 index 78de140ccbb4..000000000000 --- a/dev-ruby/database_cleaner/database_cleaner-1.7.0.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_TASK_DOC="examples" - -RUBY_FAKEGEM_EXTRADOC="History.rdoc README.markdown TODO" - -# There are specs and features but they all require configured databases. -RUBY_FAKEGEM_RECIPE_TEST="none" - -inherit ruby-fakegem - -DESCRIPTION="Strategies for cleaning databases" -HOMEPAGE="https://github.com/bmabey/database_cleaner" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="" diff --git a/dev-ruby/duktape-rb/Manifest b/dev-ruby/duktape-rb/Manifest index a78c853e0a81..8680160526e3 100644 --- a/dev-ruby/duktape-rb/Manifest +++ b/dev-ruby/duktape-rb/Manifest @@ -1 +1,2 @@ DIST duktape-rb-2.3.0.0.tar.gz 1356464 BLAKE2B be7362ddbe6860bcb12c8f8909f66ae525585e628f7be2317b07eb07960f8f25e503dbc89e713e57144cc8108751ac856aa73a16cbd58502e928acf9e116247c SHA512 af4fd45387c3f40cd24bf3c879ef4e0d7efd43ca24f0cb866bf869db7fa9f4add9b60122c0dcfbce5491cdd7479b1414637fa1054078216b9f57fa426feb0154 +DIST duktape-rb-2.7.0.0.tar.gz 1385934 BLAKE2B 1a3a7ea2c1469ddf9ac482e4329726e0f96823e75153027cf83155cca796cd0380d816a23d617e4bc40e72215acdc524fcb9575711e585952aeb9c6ed85ede70 SHA512 e91f57c2789aeb26aecbd9759c0b8cda457f290fcbe431fee721d01c1987c64f307f0e042b50cf6b4fa468d41c6365adde8395e2a33a8c637f6524af1c7cf028 diff --git a/dev-ruby/duktape-rb/duktape-rb-2.7.0.0.ebuild b/dev-ruby/duktape-rb/duktape-rb-2.7.0.0.ebuild new file mode 100644 index 000000000000..9d2615cb4bfa --- /dev/null +++ b/dev-ruby/duktape-rb/duktape-rb-2.7.0.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_GEMSPEC="duktape.gemspec" +RUBY_FAKEGEM_NAME="duktape" + +RUBY_FAKEGEM_EXTENSIONS=(ext/duktape/extconf.rb) + +inherit ruby-fakegem + +MY_PN=${PN/-/\.} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Ruby bindings to the Duktape JavaScript interpeter" +HOMEPAGE="https://github.com/judofyr/duktape.rb" +SRC_URI="https://github.com/judofyr/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ppc ~riscv" + +COMMON_DEPEND="dev-lang/duktape:=" +DEPEND+="${COMMON_DEPEND}" +RDEPEND+="${COMMON_DEPEND}" + +ruby_add_bdepend " + dev-ruby/pkg-config + dev-ruby/rake-compiler + dev-ruby/sdoc +" + +PATCHES=( + "${FILESDIR}"/${PN}-2.3.0.0_use-system-duktape.patch +) + +RUBY_S=${MY_P} + +all_ruby_prepare() { + rm ext/duktape/duktape.{c,h} ext/duktape/duk_config.h || die "Failed to remove bundled duktape" +} + +each_ruby_test() { + ${RUBY} test/test_duktape.rb || die +} diff --git a/dev-ruby/faker/Manifest b/dev-ruby/faker/Manifest index 8223432b0d43..de50ffe95afd 100644 --- a/dev-ruby/faker/Manifest +++ b/dev-ruby/faker/Manifest @@ -1,2 +1,3 @@ DIST faker-2.23.0.tar.gz 1709736 BLAKE2B e3524dbecbd1a4825ef8b38801ae1fa30a4392a7d2eb6fe1c94c3da0b0a4f18db621a42423510bf2f9c4bba175d66e10808252a923c9703aaa8de5d5ed54dd44 SHA512 b037833b3a6d07adaa70c665af66343d90389f282a2faf8ca55a5a81988163263e3b3069744e67ede206512bb67cf53a104eed34c39d92feb10a282f411bde41 DIST faker-3.1.0.tar.gz 1726248 BLAKE2B 55e5ece86c262c91cc7b806f31fc852297158cbfa213e375173d6ed4956daf515f7b3e09273ed40c70b92c2de8e94fc8ff45f62d87b59a37ee097a2cb6bc6a9b SHA512 4fa1d1dc72ae0cb21cdf6fede999a6cbf43e20062306896cca5e2333da9423612ac11b5ecdfb033da46c1eb3141a0bcac47d25485666f126a35971acb4edfcb5 +DIST faker-3.1.1.tar.gz 1730104 BLAKE2B 131e017b48f4e270c616c33c824aeea827d654ecc6c68f8df5524d9b62950b0ca724b778b9075d00364a7133aa73eec4f2df656f0e828008bf17fe17ee0075de SHA512 43bb00a78520cff4168bcd0f63d07f524fa91588698a166492abf3547b1144ee4224022dd4b3004c779647d0902606788e12fb31735ccb2fb15fece326c5e08d diff --git a/dev-ruby/faker/faker-3.1.1.ebuild b/dev-ruby/faker/faker-3.1.1.ebuild new file mode 100644 index 000000000000..87391f4b74e7 --- /dev/null +++ b/dev-ruby/faker/faker-3.1.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_RECIPE_DOC="none" + +RUBY_FAKEGEM_GEMSPEC="faker.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="A library for generating fake data such as names, addresses, and phone numbers" +HOMEPAGE="https://github.com/stympy/faker" +SRC_URI="https://github.com/stympy/faker/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" + +ruby_add_rdepend ">=dev-ruby/i18n-1.8.11:1 !=dev-ruby/ruby2_keywords-0.0.4 +" +ruby_add_bdepend "test? ( + >=dev-ruby/test-unit-2.4 + >=dev-ruby/connection_pool-2.2.2 + dev-ruby/rack:2.2 + dev-ruby/webmock + )" + +all_ruby_prepare() { + # Remove bundler support. + rm Gemfile || die + sed -i -e '/[Bb]undler/d ; 1irequire "yaml"' Rakefile || die + # Avoid loading all lib files since some of them require unpackaged dependencies. + sed -e '/[Cc]overall/ s:^:#:' \ + -e '/lib\/\*\*/ s:^:#:' \ + -e '/simplecov/ s:^:#:' \ + -e '/SimpleCov/,/end/ s:^:#:' \ + -e '/pry/ s:^:#:' \ + -i spec/spec_helper.rb || die + + sed -e '/git ls-files/ s:^:#:' \ + -e "s:_relative ': './:" \ + -i ${RUBY_FAKEGEM_GEMSPEC} || die + + # Avoid multipart tests that require an unpackaged dependency + # that appears to be no longer maintained. + #rm -f spec/faraday/request/multipart_spec.rb || die + #sed -e '/multipart_parser/ s:^:#:' \ + # -i spec/support/helper_methods.rb || die +} + +each_ruby_test() { + MT_NO_PLUGINS=true each_fakegem_test +} diff --git a/dev-ruby/hoe/hoe-3.26.0.ebuild b/dev-ruby/hoe/hoe-3.26.0.ebuild index 8412695175a7..d351f5395efb 100644 --- a/dev-ruby/hoe/hoe-3.26.0.ebuild +++ b/dev-ruby/hoe/hoe-3.26.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby27 ruby30 ruby31" +USE_RUBY="ruby27 ruby30 ruby31 ruby32" RUBY_FAKEGEM_DOCDIR="doc" RUBY_FAKEGEM_EXTRADOC="History.rdoc Manifest.txt README.rdoc" diff --git a/dev-ruby/io-event/Manifest b/dev-ruby/io-event/Manifest index d615db96544f..f3036d27570a 100644 --- a/dev-ruby/io-event/Manifest +++ b/dev-ruby/io-event/Manifest @@ -1,4 +1,2 @@ -DIST io-event-1.1.2.tar.gz 34305 BLAKE2B 8e7814ada38c4a766f413373e0ef5b0c94a1b94342667a25c59bf8925fed791c3dc527bf63f02a9e40297abcdde730047a3a80104ac9d9f12ea648e5842ea851 SHA512 68a9c01f8075117767cdcacb095f9587118f86cc536d94a990b55e63e7f5213c350556486c45e2687db2ac810d48dc1d9aa28e994ef6ae0229f7b258d0b92aa2 -DIST io-event-1.1.3.tar.gz 34336 BLAKE2B bf0143c73e8d3f2929d3d86a740bb4c846558e3e605414087a5bb16b6e8d1c0b35494b9c761de8d57004b4b540b72d16916ec602a04f204f32fa5ba074a465a3 SHA512 9da7405e6d0d0b7aed30718bd52c15bd05061f73c4a1ed481bbfa037a11d75a034876e7470ad29523e8e16c5a3b69eaf8716d81b8e840fb01c6248ecab633495 -DIST io-event-1.1.4.tar.gz 34425 BLAKE2B 80af7c6234e44197c79c2b893aae02a05399c28a02daca900526e25bf3d0703d085b94dc231cf485028e8ce529b54a5a85b5adb6a720be87222be8d84302354a SHA512 8c8ae307879511099cbd5ceec775d408a5de28887e466a1fc62f4c1551c8e757875fcc7f12646c8d73f0fd9018a28cb8d6d0da1e4e6f0a0238812fe2674d1520 DIST io-event-1.1.6.tar.gz 34530 BLAKE2B 3b0e6e5ca781b61467daeb885ea22de639c2f3c68f96657c99e8257f0cb0028f8997e6aa0ab5c53b56e53a944c40944e701d57160faeb4273a5bc77ceb4c2dfc SHA512 65cc9a9de7037059a119f1ca6569414baacab234ac4e6ee91ac5c780ed789510d8691111890dbe19082867c5adbd50cc9a86e28b37460b8fb01ff53abde8d417 +DIST io-event-1.1.7.tar.gz 35211 BLAKE2B d288ec902c4d775b49315d4eeda8bb0582b7444e7adc60846283fbffbe8ecec6e13c1bc7ce898c4aaf3e78d5eeee2602045f9bde561f6f50c797b7aecb3d7b01 SHA512 f61d0eb7203b4bd4b38d1f42a23c67d4ae04dbbb4c7018149d52db440d769131581347198f4a6da6e99aaa1ac526ad1c1cb9d56ecf48c1fc70fbf1b62fb161e7 diff --git a/dev-ruby/io-event/io-event-1.1.3.ebuild b/dev-ruby/io-event/io-event-1.1.3.ebuild deleted file mode 100644 index 107271412ff8..000000000000 --- a/dev-ruby/io-event/io-event-1.1.3.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby30 ruby31" - -RUBY_FAKEGEM_EXTENSIONS=(ext/extconf.rb) -RUBY_FAKEGEM_EXTRADOC="readme.md" -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="An event loop" -HOMEPAGE="https://github.com/socketry/io-event" -SRC_URI="https://github.com/socketry/io-event/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="$(ver_cut 1-2)" -KEYWORDS="~amd64 ~sparc" -IUSE="" - -ruby_add_bdepend "test? ( >=dev-ruby/sus-0.6:0 )" - -all_ruby_prepare() { - sed -i -E 's/require_relative "(.+)"/require File.expand_path("\1")/g' "${RUBY_FAKEGEM_GEMSPEC}" || die - - # Avoid dependency on unpackaged covered package - rm -f config/sus.rb || die -} - -each_ruby_test() { - ${RUBY} -S sus-parallel || die -} diff --git a/dev-ruby/io-event/io-event-1.1.4.ebuild b/dev-ruby/io-event/io-event-1.1.4.ebuild deleted file mode 100644 index 107271412ff8..000000000000 --- a/dev-ruby/io-event/io-event-1.1.4.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby30 ruby31" - -RUBY_FAKEGEM_EXTENSIONS=(ext/extconf.rb) -RUBY_FAKEGEM_EXTRADOC="readme.md" -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="An event loop" -HOMEPAGE="https://github.com/socketry/io-event" -SRC_URI="https://github.com/socketry/io-event/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="$(ver_cut 1-2)" -KEYWORDS="~amd64 ~sparc" -IUSE="" - -ruby_add_bdepend "test? ( >=dev-ruby/sus-0.6:0 )" - -all_ruby_prepare() { - sed -i -E 's/require_relative "(.+)"/require File.expand_path("\1")/g' "${RUBY_FAKEGEM_GEMSPEC}" || die - - # Avoid dependency on unpackaged covered package - rm -f config/sus.rb || die -} - -each_ruby_test() { - ${RUBY} -S sus-parallel || die -} diff --git a/dev-ruby/io-event/io-event-1.1.2.ebuild b/dev-ruby/io-event/io-event-1.1.7.ebuild similarity index 91% rename from dev-ruby/io-event/io-event-1.1.2.ebuild rename to dev-ruby/io-event/io-event-1.1.7.ebuild index 107271412ff8..0c6fe7608048 100644 --- a/dev-ruby/io-event/io-event-1.1.2.ebuild +++ b/dev-ruby/io-event/io-event-1.1.7.ebuild @@ -1,9 +1,9 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby30 ruby31" +USE_RUBY="ruby30 ruby31 ruby32" RUBY_FAKEGEM_EXTENSIONS=(ext/extconf.rb) RUBY_FAKEGEM_EXTRADOC="readme.md" diff --git a/dev-ruby/msgpack/Manifest b/dev-ruby/msgpack/Manifest index 6435dee60795..459bee714f91 100644 --- a/dev-ruby/msgpack/Manifest +++ b/dev-ruby/msgpack/Manifest @@ -3,3 +3,4 @@ DIST msgpack-1.5.3.gem 90112 BLAKE2B 872f1365b01cdb9bad9486d66f7d7d1b31af758fbd2 DIST msgpack-1.5.4.gem 89088 BLAKE2B e95008fbeaf37f1aaff9476054be37c8377e7ea8a508b007391f957bfa96332fcea74db86b5204570e120481be95c4b0a5df97ce2db77f66bb452d299e1cfd3e SHA512 916537138bffa3c6045357cc979e8b90d79fd3940e195e9a6f7386f47fd5f2404e7095410271635f2510ef17b459a66050b3089dd73a88542b2b62634e7af813 DIST msgpack-1.5.6.gem 89600 BLAKE2B 99cb6b29e52f4e526bd7d0d6d23eca808d2ab277bb7cc9dca73b5b0bdd40fd074d094a59074fa69ff8f47e246545cfcf9f878c87b6b2c3893ed1a091e1fc39be SHA512 b07b6a1499747e2b6ce83751440092cd537c86ac4169fcf730bcb50aa030176018ca7a9961deb160951b193341d388efb26620afe3fff456e5567cafd0156209 DIST msgpack-1.6.0.gem 90624 BLAKE2B 03869d2725491edaf626515ced8113970f2e801fbbcfa692d91fd2fe6d0d006a51f0e0131b5028ae44befd82683a5fb3013e9a6f8fe22cd7e13767645a62ce71 SHA512 9aaa01a5ba3782cf8a6170b055c6d6914260ad4303a029d3fb0efe6a64eb415f3ff6bda34449444fe102c767ec892256fa9b568abc9c45f5713e94bbab86b92c +DIST msgpack-1.6.1.tar.gz 88601 BLAKE2B 2ddb84afde00240cf446b06d8e7445cfd14fa3dabe67b96035ff09629884523df049d42c4e5250e275648d2bcad0fa56179994c9ea096a1ffc6c86b594968eba SHA512 b8a268a9c357ad5d2fec3fcee3d1a3e818708a51e5035105f245ee0d7cbafc145c6cac5e8bc3bfd12efa967f8ed275e2dfacedb5f3556166ba8e2354260f51ee diff --git a/dev-ruby/msgpack/msgpack-1.6.1.ebuild b/dev-ruby/msgpack/msgpack-1.6.1.ebuild new file mode 100644 index 000000000000..b7184188713e --- /dev/null +++ b/dev-ruby/msgpack/msgpack-1.6.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby27 ruby30 ruby31 ruby32" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_EXTRADOC="ChangeLog README.md" +RUBY_FAKEGEM_BINWRAP="" +RUBY_FAKEGEM_EXTENSIONS=(ext/msgpack/extconf.rb) +RUBY_FAKEGEM_EXTENSION_LIBDIR="lib/msgpack" +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" +RUBY_S="${PN}-ruby-${PV}" +inherit ruby-fakegem + +DESCRIPTION="Binary-based efficient data interchange format for ruby binding" +HOMEPAGE="https://msgpack.org/" +# In 1.6.1, they stopped shipping the specs in the gem :( +# https://github.com/msgpack/msgpack-ruby/commit/9cbcd0b28527af5ca755f34dfb370e3f4474d129 (https://github.com/msgpack/msgpack-ruby/pull/311) +SRC_URI="https://github.com/msgpack/msgpack-ruby/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc64 ~sparc ~x86" +IUSE="doc" + +all_ruby_prepare() { + sed -i -e '/bundler/I s:^:#:' Rakefile || die + + # Remove jruby-specific specs that are run also for other rubies. + rm -rf spec/jruby || die + + sed -i -e 's/git ls-files/find * -print/' msgpack.gemspec || die +} diff --git a/dev-ruby/puppet-resource_api/Manifest b/dev-ruby/puppet-resource_api/Manifest new file mode 100644 index 000000000000..b8152ae5c105 --- /dev/null +++ b/dev-ruby/puppet-resource_api/Manifest @@ -0,0 +1 @@ +DIST puppet-resource_api-1.8.16.tar.gz 167691 BLAKE2B 58aad4a73ef76fbccab580c1500b4af6a472f9bc9b7b0b1c592626abb837af6b34697194b5da884f87ce306f00f23d6f17ff7926e88ca2df3b0cd5770c819e9c SHA512 b60575d0e4f87425d028429403dd5524e39cb5ffea338871f7c5296d7e632d4eebc6786bdb7005e5c1be5e962115903b11dc9645dacd4d040d3afa43606a3ea2 diff --git a/dev-ruby/puppet-resource_api/metadata.xml b/dev-ruby/puppet-resource_api/metadata.xml new file mode 100644 index 000000000000..706558282ad9 --- /dev/null +++ b/dev-ruby/puppet-resource_api/metadata.xml @@ -0,0 +1,15 @@ + + + + + robbat2@gentoo.org + Robin H. Johnson + + + ruby@gentoo.org + Gentoo Ruby Project + + + puppetlabs/puppet-resource_api + + diff --git a/dev-ruby/puppet-resource_api/puppet-resource_api-1.8.16.ebuild b/dev-ruby/puppet-resource_api/puppet-resource_api-1.8.16.ebuild new file mode 100644 index 000000000000..a8e6f8540789 --- /dev/null +++ b/dev-ruby/puppet-resource_api/puppet-resource_api-1.8.16.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby27 ruby30 ruby31" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md CONTRIBUTING.md HISTORY.md README.md" +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" +# rspec tests have dependencies not packaged in Gentoo at this time: +# puppetlabs_spec_helper +# CFPropertyList +# simplecov-console +# spec-puppet +# rubocop +# rubocop-rspec +# license_finder +RUBY_FAKEGEM_RECIPE_TEST="none" + +inherit ruby-fakegem + +DESCRIPTION="This library provides a simple way to write new native resources for puppet." +HOMEPAGE="https://rubygems.org/gems/puppet-resource_api https://github.com/puppetlabs/puppet-resource_api" +LICENSE="MIT" +# 2023/03/19: .gem does not contain specfiles, and lags behind GitHub releases. +SRC_URI="https://github.com/puppetlabs/puppet-resource_api/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +all_ruby_prepare() { + # the gemspec tries to system(git ls-files) but has a meaningful fallback, so just make it not run git. + sed -i -e '/git --help/s,git,false git,g' \ + "${RUBY_FAKEGEM_GEMSPEC}" \ + || die +} + +ruby_add_rdepend ">=dev-ruby/hocon-1.0" diff --git a/dev-ruby/rbs/Manifest b/dev-ruby/rbs/Manifest index 34f366726ec3..9c396029edc8 100644 --- a/dev-ruby/rbs/Manifest +++ b/dev-ruby/rbs/Manifest @@ -1,7 +1,5 @@ DIST rbs-1.5.1.tar.gz 672987 BLAKE2B acdaa88627ab79626cb391f5c7dd040da648c9c0cd2e7a7ed697075436d6215edd444dea6079c0319051b326e8823d8151376193f7aa34ab10b533560ecd5987 SHA512 2104eb5ae023fec317ed5cb498a283ac8d3831360822f8917d89ea522a3e5f3479da7d4c57e878a6be6064debd7f3818e1367d4b12f0cd487d7b019f80096d9e DIST rbs-2.3.2.tar.gz 977459 BLAKE2B d33984c03a962f4d72989b5b665e7e256f8928e86fa15162a8df549259a832b7898da62c949ae5bb06ed3da82d3179c3e350a392e6177d15a26600debea82539 SHA512 1ae9318265f47232bac77ca966fbf7c2b1b7a1eb3c1070258812f697c633026527c411d2e2319f3c16a3318307cf1cd0983967ba0cf2cae1f9f37a607b6aa92e DIST rbs-2.5.1.tar.gz 983686 BLAKE2B d0feb4f173e2d1dd76d93309279fc75f9ed992ead2c144d69905e6acd139c709535ae29d78e85787f082821734a6448446e746791922e4322c55dc446a38ec06 SHA512 079778ad36db8f096e33d04a460b03d03c6b3616a2066e40a3aa06615d51265d8bfa7669a31463ce46bbcb16dc74ed8a24ba280b46c24f25b2327f5c8a8ae891 -DIST rbs-2.8.0.tar.gz 1065757 BLAKE2B 136ba929d0b61c6b2625b49574ec45a28aa1de77a1a63d74bf5747ff4c88968ce28116472a97310e10846dec404dc2a4ccebb51c90f14f5713f3b1d21f18c9c6 SHA512 3a04026112bffef03a3e65c5d539ead7de353b4af279da6f4a7def854fe6c7f95d291663ab18bab678228ae4b26e87aec89fc1ed961ebc4cf83f38ef726ad407 -DIST rbs-2.8.2.tar.gz 1069304 BLAKE2B a05cdd12767ed47cb90a64ab9803523dfa11a2295ebf2be4f9087918bc74ef75a46e3ec95a78c6c272e65b7d0485db0697edc8c4e586f7ae2b4608cde638969e SHA512 02666374fa8a93f421916f62b6a101e602c5dc8996169b1fd618618ab76afb11bba0891aac3f48f70af080f5d73ede264728f93799b3a330cae3a43b9cab1cb4 -DIST rbs-2.8.3.tar.gz 1069360 BLAKE2B 7151346fadcfdb2e246dbd32c440c4e5fbfe0f6dbed67a100460b451f87432a5811d63269b612949b720d0a3234818e46d1e1f614886e92e0b75cb5814c3e24f SHA512 4e6ec348945171868752ff62704e2a64ced4a11288a96c03e837e508df235c0cf85f99469952a7b052662ee7bc16e0942aaa2bc448381d95d5603fefdacf6839 DIST rbs-2.8.4.tar.gz 1069703 BLAKE2B a7b97e2ba7b8bd5afca303d69262cd54169bfad8e716cb5c452a1f20c36708f62c36382d5d3111856aa130e5d198960117ad47ca444ac3e042e99e534b3c2204 SHA512 e698b64ffc5c5e53ed84ab9fb6a5d83cc17738ec2114f72cadd0d9e062d8017ee91dc4d1afe254646c30659f3af57d6606f555881951fae7cc399b1bbd428824 +DIST rbs-3.0.4.tar.gz 1123563 BLAKE2B 335ba5d438b74ef36a65c1bd5d41508bb4d89a5273d413899f96684e6d97a6911ab157ad5b8acde97e23b832ebd2bd04517c37a3edc2fd66703442333d3fa5b1 SHA512 17dff709693c2b554178a31580ed48e863490fc527c86a8d823928379483665076c498e402c1dcb85c0ba401e6754e9c2d8cb9a48655952136521e6e7b47025f diff --git a/dev-ruby/rbs/rbs-2.8.0.ebuild b/dev-ruby/rbs/rbs-2.8.0.ebuild deleted file mode 100644 index ce045f8d679c..000000000000 --- a/dev-ruby/rbs/rbs-2.8.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby27 ruby30 ruby31" - -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_BINDIR="exe" - -RUBY_FAKEGEM_EXTRAINSTALL="core schema sig stdlib" -RUBY_FAKEGEM_EXTENSIONS=(ext/rbs_extension/extconf.rb) - -RUBY_FAKEGEM_GEMSPEC="rbs.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="The language for type signatures for Ruby and standard library definitions" -HOMEPAGE="https://github.com/ruby/rbs" -SRC_URI="https://github.com/ruby/rbs/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( Ruby-BSD BSD-2 )" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -IUSE="test" - -ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/rdoc dev-ruby/test-unit )" - -all_ruby_prepare() { - sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die - - # We compile the extension directly - sed -i -e '/extensiontask/I s:^:#:' Rakefile || die - - # Avoid JSON schema validation tests due to a large dependency stack - # that would be needed. - rm -f test/rbs/schema_test.rb || die - - # Avoid setup tests since they require a lot of development dependencies. - rm -f test/rbs/test/runtime_test_test.rb || die - - # Avoid tests requiring a network connection - rm -f test/rbs/collection/installer_test.rb test/rbs/collection/collections_test.rb \ - test/rbs/collection/config_test.rb test/rbs/collection/sources/git_test.rb || die - sed -i -e '/def test_collection_/aomit "Requires network"' test/rbs/cli_test.rb || die - sed -i -e '/def test_loading_from_rbs_collection/aomit "Requires network"' test/rbs/environment_loader_test.rb || die - - sed -i -e '/def test_paths/aomit "Different paths in Gentoo test environment"' test/rbs/cli_test.rb || die -} diff --git a/dev-ruby/rbs/rbs-2.8.2.ebuild b/dev-ruby/rbs/rbs-2.8.2.ebuild deleted file mode 100644 index 4cc9d660b375..000000000000 --- a/dev-ruby/rbs/rbs-2.8.2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby27 ruby30 ruby31" - -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_BINDIR="exe" - -RUBY_FAKEGEM_EXTRAINSTALL="core schema sig stdlib" -RUBY_FAKEGEM_EXTENSIONS=(ext/rbs_extension/extconf.rb) - -RUBY_FAKEGEM_GEMSPEC="rbs.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="The language for type signatures for Ruby and standard library definitions" -HOMEPAGE="https://github.com/ruby/rbs" -SRC_URI="https://github.com/ruby/rbs/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( Ruby-BSD BSD-2 )" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -IUSE="test" - -ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/rdoc dev-ruby/test-unit )" - -all_ruby_prepare() { - sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die - - # We compile the extension directly - sed -i -e '/extensiontask/I s:^:#:' Rakefile || die - - # Avoid JSON schema validation tests due to a large dependency stack - # that would be needed. - rm -f test/rbs/schema_test.rb || die - - # Avoid setup tests since they require a lot of development dependencies. - rm -f test/rbs/test/runtime_test_test.rb || die - - # Avoid tests requiring a network connection - rm -f test/rbs/collection/installer_test.rb test/rbs/collection/collections_test.rb \ - test/rbs/collection/config_test.rb test/rbs/collection/sources/git_test.rb || die - sed -i -e '/def test_collection_/aomit "Requires network"' test/rbs/cli_test.rb || die - sed -i -e '/def test_loading_from_rbs_collection/aomit "Requires network"' test/rbs/environment_loader_test.rb || die - - sed -i -e '/def test_paths/aomit "Different paths in Gentoo test environment"' test/rbs/cli_test.rb || die -} diff --git a/dev-ruby/rbs/rbs-2.8.3.ebuild b/dev-ruby/rbs/rbs-3.0.4.ebuild similarity index 97% rename from dev-ruby/rbs/rbs-2.8.3.ebuild rename to dev-ruby/rbs/rbs-3.0.4.ebuild index c90ff55f9e70..b68cae61a1f9 100644 --- a/dev-ruby/rbs/rbs-2.8.3.ebuild +++ b/dev-ruby/rbs/rbs-3.0.4.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby27 ruby30 ruby31" +USE_RUBY="ruby27 ruby30 ruby31 ruby32" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" diff --git a/dev-ruby/recog/Manifest b/dev-ruby/recog/Manifest index bee1f2e6c21c..7c9ead7f3cd8 100644 --- a/dev-ruby/recog/Manifest +++ b/dev-ruby/recog/Manifest @@ -1,3 +1,4 @@ DIST recog-2.3.23.gem 392704 BLAKE2B 6b7ccfa2921fb7d643531c66970e757a01478b3990bbb2d05687a5364ed8b57317d16d0b116c2175cf0e667b12ea7a978c947b73d04db16fbd1a9db651ba4abf SHA512 34cb222dbc25f5da0581cb85aa92a3e6fa67b9af9d0b7b99cb3e358b1be5d71a25f582a669a06f4cadd4b6ac464c7f3d2b3856c24d5ecea0d1d6027758905774 DIST recog-3.0.2.gem 360960 BLAKE2B 725b6e1fa0ff3681783df986782d34053e8257fc65ed93dfb7a57be9205b6a1d5103288c9af78f29b17cb20dca6aeff697056a66a4f8ea39250c4bb35eca1d8d SHA512 9c636ad96cd41595c80d055c3acbe12e55c88a195f502042ca671032906e3b1f528720fe5f780cc3dfa24ca95ba4a54e89db207d30ab0db7f22913af2d706140 DIST recog-3.0.3.gem 365568 BLAKE2B ae5ef17c53f4be94710930308eff47e0330dcc5c45a31146a9555066e5986e713175ace560d9dcf6b326d4339ea88e45f6b42c29ef98887db5f5e98f5ffea48a SHA512 e7a67e2c32b173bf48517fd015d51d11a518ec8b3537b6ba68b8c3f013cdbc9a67d53c63e725dc456c3ed852da089d5d30ff15185e055a021f6d411b1762236e +DIST recog-3.1.1.gem 374272 BLAKE2B 119c2f3cfcb81896ee9151a3504b1c3a451e7ef0bf2ecb4c018c2a1cae85c05737a47fe755ddbc7dd67778deefc341b113659095dc0095a2bf720625ad5f497a SHA512 8110972a3942befac8be154ff83bf22d703ea21bbae60875c512d5e1c668df7dbf4acb00e2e6bc3cd2f9e163352ead24f3ffc80201c5cf376971560de233a6b5 diff --git a/dev-ruby/recog/recog-2.3.23.ebuild b/dev-ruby/recog/recog-2.3.23.ebuild index 5e29a01e4058..0e543ff7d55c 100644 --- a/dev-ruby/recog/recog-2.3.23.ebuild +++ b/dev-ruby/recog/recog-2.3.23.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -23,7 +23,7 @@ ruby_add_rdepend "dev-ruby/nokogiri" ruby_add_bdepend "test? ( dev-ruby/regexp_parser dev-ruby/rspec:3 - || ( dev-util/aruba:2 dev-util/aruba:1 ) + dev-util/aruba:2 dev-util/cucumber )" diff --git a/dev-ruby/recog/recog-3.1.1.ebuild b/dev-ruby/recog/recog-3.1.1.ebuild new file mode 100644 index 000000000000..5625684e1ad6 --- /dev/null +++ b/dev-ruby/recog/recog-3.1.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby27 ruby30 ruby31" +RUBY_FAKEGEM_BINWRAP="" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_EXTRAINSTALL="recog" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +inherit ruby-fakegem + +DESCRIPTION="Pattern recognition for hosts, services, and content" +HOMEPAGE="https://github.com/rapid7/recog" + +LICENSE="BSD-2" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +ruby_add_rdepend "dev-ruby/nokogiri" + +ruby_add_bdepend "test? ( + dev-ruby/regexp_parser +)" + +all_ruby_prepare() { + sed -i -e '/simplecov/I s:^:#:' spec/spec_helper.rb || die +} diff --git a/dev-ruby/ruby-gtk2/Manifest b/dev-ruby/ruby-gtk2/Manifest index 7f70af3b2295..c4c74d117a84 100644 --- a/dev-ruby/ruby-gtk2/Manifest +++ b/dev-ruby/ruby-gtk2/Manifest @@ -1 +1,2 @@ DIST ruby-gnome2-3.4.3.tar.gz 3136727 BLAKE2B 3b85136b90e7a9de14f38fbdb55d9c143719e697ff60fdd4c09921b5d0c6363cf27b7b2da55d93a95d302e62879c321df20e729d4a3d9d2e8d1f2a4afb8c6e49 SHA512 ac4614647c20080eb850d47938b00eb69730aef6672a35cf290619a5c3e01007ac59e75995e36398a0ddaed61db2f4ccdf9d26d2453fff9d5160073ee73081b8 +DIST ruby-gnome2-3.5.1.tar.gz 2613400 BLAKE2B ab9b7e3b6322b5b89a6bf4d529d5b5abdfbe50b1e099cfba67f089bab3abd39c2a96b57305b13311e9c34957c57107e31708cc76ffa4c20d84af2294f7bf7bb4 SHA512 9423c18587c11b6c317a58ec817e886c99ab37b29271b1684d7c793655a121c8b20c9630347d5f248e687843fd888e2137dca5d3d232121d87565ee2707f2f21 diff --git a/dev-ruby/ruby-gtk2/ruby-gtk2-3.5.1.ebuild b/dev-ruby/ruby-gtk2/ruby-gtk2-3.5.1.ebuild new file mode 100644 index 000000000000..7163f95e0dc2 --- /dev/null +++ b/dev-ruby/ruby-gtk2/ruby-gtk2-3.5.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby27 ruby30 ruby31" + +RUBY_GNOME2_NEED_VIRTX=yes + +inherit ruby-ng-gnome2 + +DESCRIPTION="Ruby Gtk2 bindings" +KEYWORDS="~amd64 ~ppc ~riscv ~x86" +IUSE="" + +DEPEND+=" dev-libs/glib + x11-libs/cairo + x11-libs/gdk-pixbuf[introspection] + x11-libs/gtk+:2[introspection] + x11-libs/libX11 + x11-libs/pango[introspection] + x11-themes/hicolor-icon-theme" +RDEPEND+=" dev-libs/glib + x11-libs/cairo + x11-libs/gdk-pixbuf[introspection] + x11-libs/gtk+:2[introspection] + x11-libs/libX11 + x11-libs/pango[introspection]" + +ruby_add_rdepend " + ~dev-ruby/ruby-gdkpixbuf2-${PV} + ~dev-ruby/ruby-atk-${PV} + ~dev-ruby/ruby-pango-${PV}" diff --git a/dev-ruby/ruby_smb/ruby_smb-1.1.0-r1.ebuild b/dev-ruby/ruby_smb/ruby_smb-1.1.0-r1.ebuild new file mode 100644 index 000000000000..8ccb50a1ddb9 --- /dev/null +++ b/dev-ruby/ruby_smb/ruby_smb-1.1.0-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +inherit ruby-fakegem + +DESCRIPTION="pure Ruby implementation of the SMB Protocol Family" +HOMEPAGE="https://github.com/rapid7/ruby_smb" + +LICENSE="BSD" +SLOT="1" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +ruby_add_rdepend "dev-ruby/bindata:* + dev-ruby/rubyntlm + dev-ruby/windows_error" + +all_ruby_prepare() { + sed -i -e '/simple[Cc]ov/d' -e '/coveralls/d' spec/spec_helper.rb + sed -i -e '/[Ss]imple[Cc]ov/,/end/d' \ + -e '/[Cc]overalls/,/end/d' spec/spec_helper.rb + sed -i '/TRAVIS/d' spec/spec_helper.rb + sed -i -e '1irequire "rubyntlm"; require "time"' spec/spec_helper.rb +} diff --git a/dev-ruby/rubyntlm/rubyntlm-0.6.3-r1.ebuild b/dev-ruby/rubyntlm/rubyntlm-0.6.3-r1.ebuild new file mode 100644 index 000000000000..fb43ef4fbf13 --- /dev/null +++ b/dev-ruby/rubyntlm/rubyntlm-0.6.3-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby27 ruby30 ruby31 ruby32" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" + +inherit ruby-fakegem + +DESCRIPTION="Ruby/NTLM provides message creator and parser for the NTLM authentication" +HOMEPAGE="https://github.com/winrb/rubyntlm" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc64 ~x86" +IUSE="" + +all_ruby_prepare() { + sed -i -e '/simplecov/ s:^:#:' spec/spec_helper.rb || die +} diff --git a/dev-ruby/sqlite3/Manifest b/dev-ruby/sqlite3/Manifest index 74777cc64196..70845acc90ed 100644 --- a/dev-ruby/sqlite3/Manifest +++ b/dev-ruby/sqlite3/Manifest @@ -1,3 +1,4 @@ DIST sqlite3-1.4.2.gem 70656 BLAKE2B ef7fa7667fd080a6f175bcfbd1fe8dfba00d3fdf1214cc3d776f0576dc29386b627db8d6c0dd06f07ab65fff877a6803a6dcacefd4fbc5bb0f7d2149e355c88d SHA512 c4630dd2fa13914e2fcc70092c35568103f61f976958b439fe205abdfcff61702ca176d10bea40ff0cfea3169644cdb9146b7be94dff883cad3b753e84629545 DIST sqlite3-1.4.4.gem 71168 BLAKE2B f49d055b0d040f12b00abaf5c3a245b4e018445f41d496ae0d27426970f208b066bdd5a1b562a8fbb575397bac132384111fa59d6079dd6f384a6b1d90d272b8 SHA512 48753652d2aec201dfeac37f284bfdbc1b39c208c4ef605a2b7073a8a56cf5edf2021a889d98e0939cc0fbc476ccfda1aa01a0d8848a6129cab3af68761fcf38 DIST sqlite3-1.5.3.gem 3134976 BLAKE2B feece4cb67e898b9dd1d77cf229632bf87a083ff894d854b6000dec69edaf677be4289104c25abf2e1dd246fa8f1391d9b579236b751f83acfdce544a39df3e9 SHA512 7d4a9c6c6998130b5ca725aabe8299668699aebd3813da088d62ca5d3013f31bffa9356d84d63164c98fe00f80c65dc467d70e725189a8b3fe233c348c5b4392 +DIST sqlite3-1.6.1.gem 3194368 BLAKE2B f06fc82454730ad136c0824258d4f0fba75d2e2e2aa160f3e2b928d128f0649292a42bacac19330d485695db7c833b3ab7396833ada427bbf35cc90120f54a78 SHA512 e0e25dd5b5d98cd1e8e1e7721d300ddb75138d68e9fd3d1a062d6eb1ee7ce580cf15585f086123027f11bd7325f41eba44e5a4bf20500ce14c0cd8d191577a79 diff --git a/dev-ruby/sqlite3/sqlite3-1.6.1.ebuild b/dev-ruby/sqlite3/sqlite3-1.6.1.ebuild new file mode 100644 index 000000000000..778eebd8854a --- /dev/null +++ b/dev-ruby/sqlite3/sqlite3-1.6.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_TASK_DOC="faq" +RUBY_FAKEGEM_DOCDIR="doc faq" +RUBY_FAKEGEM_EXTRADOC="API_CHANGES.md README.md ChangeLog.cvs CHANGELOG.md" + +RUBY_FAKEGEM_EXTENSIONS=(ext/sqlite3/extconf.rb) +RUBY_FAKEGEM_EXTENSION_LIBDIR=lib/sqlite3 + +inherit ruby-fakegem + +DESCRIPTION="An extension library to access a SQLite database from Ruby" +HOMEPAGE="https://github.com/sparklemotion/sqlite3-ruby" +LICENSE="BSD" + +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +SLOT="0" +IUSE="" + +RDEPEND+=" >=dev-db/sqlite-3.39.4:3" +DEPEND+=" >=dev-db/sqlite-3.39.4:3" + +# TODO: drop the mini_portile2 dep after 1.6.1 +ruby_add_bdepend " + dev-ruby/mini_portile2:2.8 + doc? ( dev-ruby/rdoc dev-ruby/redcloth ) + test? ( dev-ruby/minitest:5 )" + +all_ruby_prepare() { + sed -i -e 's/enable_config("system-libraries")/true/' ext/sqlite3/extconf.rb || die +} + +all_ruby_compile() { + all_fakegem_compile + + if use doc; then + rdoc --title "${P} Documentation" -o doc --main README.rdoc lib *.rdoc ext/*/*.c || die + rm -f doc/js/*.gz || die + fi +} + +each_ruby_test() { + ${RUBY} -Ilib:test:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die +} diff --git a/dev-ruby/text-hyphen/Manifest b/dev-ruby/text-hyphen/Manifest index 60c5601b1b0d..a58f959cf317 100644 --- a/dev-ruby/text-hyphen/Manifest +++ b/dev-ruby/text-hyphen/Manifest @@ -1 +1,2 @@ DIST text-hyphen-1.4.1.gem 751616 BLAKE2B 4a6d6a9b430c2dee2a486dde9f49405b98bc32fe8f96448c0cbe8d55f416c4e4e9bef5ae3adb57576dee6fa285680fc57b958cb279786872c8d95282cbf72e73 SHA512 4a6667aff01e56afce79302f46d0afdbf9c965ad80dbf9a7266a213143e6b6bc2cb00092d26900286bf72a700e47be6b0860cfdf87fa2856477db02261f9ef3d +DIST text-hyphen-1.5.0.gem 836096 BLAKE2B 702363b99c33e614dab5b2509d0b77e5f37ca2f401e2c13fab466aec5bbc4f24247fe306ed6f7ed16c3e3b8cad35ca5948725175759827ec9a1b45642a7399ea SHA512 7390b057f0fe4918aa98811adc3922bf6b959aedbf327a035324fc92935675f8016574519d0ff34e11c24bc4b8fe0d110b296344ed8a7cfae018ca5a7d6ce5c9 diff --git a/dev-ruby/text-hyphen/text-hyphen-1.5.0.ebuild b/dev-ruby/text-hyphen/text-hyphen-1.5.0.ebuild new file mode 100644 index 000000000000..f19b311a4a1b --- /dev/null +++ b/dev-ruby/text-hyphen/text-hyphen-1.5.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_EXTRADOC="README.md History.md" + +inherit ruby-fakegem + +DESCRIPTION="Hyphenates words according to the rules of the language the word is written in" +HOMEPAGE="https://rubygems.org/gems/text-hyphen" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" +IUSE="" + +ruby_add_bdepend " + test? ( + >=dev-ruby/hoe-2.8.0 + dev-ruby/test-unit:2 + )" + +all_ruby_prepare() { + sed -i -e '2igem "test-unit", ">= 2.0"' test/test_*.rb || die +} diff --git a/dev-ruby/thor/thor-1.2.1-r1.ebuild b/dev-ruby/thor/thor-1.2.1-r1.ebuild index 42cd077c6593..36f75056ec54 100644 --- a/dev-ruby/thor/thor-1.2.1-r1.ebuild +++ b/dev-ruby/thor/thor-1.2.1-r1.ebuild @@ -23,7 +23,7 @@ SLOT="$(ver_cut 1)" KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux" IUSE="doc" -USE_RUBY="ruby27" ruby_add_bdepend " +USE_RUBY="ruby27 ruby30 ruby31" ruby_add_bdepend " test? ( dev-ruby/childlabor dev-ruby/webmock @@ -64,7 +64,7 @@ all_ruby_prepare() { each_ruby_test() { case ${RUBY} in - *ruby30|*ruby31|*ruby32) + *ruby32) einfo "Skipping tests due to circular dependencies" ;; *) diff --git a/dev-ruby/timecop/timecop-0.9.5.ebuild b/dev-ruby/timecop/timecop-0.9.5.ebuild index 3f4ec824c9f8..af40e7129a40 100644 --- a/dev-ruby/timecop/timecop-0.9.5.ebuild +++ b/dev-ruby/timecop/timecop-0.9.5.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30 ruby31" +USE_RUBY="ruby27 ruby30 ruby31 ruby32" RUBY_FAKEGEM_TASK_TEST="test" diff --git a/dev-scheme/Manifest.gz b/dev-scheme/Manifest.gz index 3e9ee791a640..0abf2b88fb76 100644 Binary files a/dev-scheme/Manifest.gz and b/dev-scheme/Manifest.gz differ diff --git a/dev-scheme/skribilo/Manifest b/dev-scheme/skribilo/Manifest index 05c302b07b86..636037f62b4e 100644 --- a/dev-scheme/skribilo/Manifest +++ b/dev-scheme/skribilo/Manifest @@ -1 +1,2 @@ +DIST skribilo-0.10.0.tar.gz 1535043 BLAKE2B 4bfa666f942150aa3d44bfea4a6d9bebcee1a48b7b5b04e0c13ff6f34150e0b9d633d13df27b2aaa4497d51050cd4ab5b5ac0fb5ffe7c1e3fbd66dc9242e5916 SHA512 97c4a08c83fb47759e9c8b83e53438561a77c41bfc655083938546f65be7e8a647d38bc3bf231996822ed1200915fd0691102c1e0d4c02fef499a9b99b2b844e DIST skribilo-0.9.5.tar.gz 1520763 BLAKE2B c624174a29cb7eb7236b8de506ade00c58fdd895807bd3e052872b7d950be9106daef6015c34ff8b5e7888b43383cbfa5c29c62835d02121cac19062985c6032 SHA512 22dff4523039792bd3662f9f1302569bfb83d92b7106ae22b8926e264b00932ea50ab753bb83aed499d0aa651d0fe99fdfd28b83956ec3ad84b81078391fe014 diff --git a/dev-scheme/skribilo/skribilo-0.10.0.ebuild b/dev-scheme/skribilo/skribilo-0.10.0.ebuild new file mode 100644 index 000000000000..a0e2b7ae3df6 --- /dev/null +++ b/dev-scheme/skribilo/skribilo-0.10.0.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp-common + +DESCRIPTION="Document production tool written in Guile Scheme" +HOMEPAGE="https://www.nongnu.org/skribilo/" +SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="emacs" +RESTRICT="strip test" # tests fail, seem broken + +RDEPEND=" + app-text/ghostscript-gpl + media-gfx/imagemagick + + >=dev-scheme/guile-2.0.0:= + dev-scheme/guile-lib + dev-scheme/guile-reader +" +DEPEND="${RDEPEND}" +BDEPEND="emacs? ( >=app-editors/emacs-23.1:* )" + +# guile generates ELF files without use of C or machine code +# It's a portage's false positive. bug #677600 +QA_PREBUILT='*[.]go' + +SITEFILE="50${PN}-gentoo.el" + +src_prepare() { + default + + # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112 + find "${S}" -name "*.scm" -exec touch {} + || die +} + +src_configure() { + if ! use emacs ; then + export EMACS="no" + export EMACSLOADPATH="/dev/null" + fi + + econf +} + +src_compile() { + default + + use emacs && elisp-compile ./emacs/*.el +} + +src_install() { + default + + if use emacs ; then + elisp-install ${PN} ./emacs/*.el{,c} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + else + local emacsd="${D}"/usr/share/emacs + if [[ -d "${emacsd}" ]] ; then + echo "Building without Emacs support but ${emacsd} found! Removing." + rm -r "${emacsd}" || die + fi + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/dev-tex/Manifest.gz b/dev-tex/Manifest.gz index 26931edc6f5b..d10e9c612105 100644 Binary files a/dev-tex/Manifest.gz and b/dev-tex/Manifest.gz differ diff --git a/dev-tex/bibtexu/bibtexu-3.71_p20210325.ebuild b/dev-tex/bibtexu/bibtexu-3.71_p20210325.ebuild index a5817093cadb..4c31f2a38543 100644 --- a/dev-tex/bibtexu/bibtexu-3.71_p20210325.ebuild +++ b/dev-tex/bibtexu/bibtexu-3.71_p20210325.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DESCRIPTION="8-bit Implementation of BibTeX 0.99 with a Very Large Capacity" HOMEPAGE="http://tug.org/texlive/" -SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-${PV#*_p}-source.tar.xz" +SRC_URI="https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-${PV#*_p}-source.tar.xz" LICENSE="GPL-2" SLOT="0" @@ -24,12 +24,12 @@ EXTRA_TL_MODULES="bibtex8 bibtexu" EXTRA_TL_DOC_MODULES="bibtex8.doc bibtexu.doc" for i in ${EXTRA_TL_MODULES} ; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" done SRC_URI="${SRC_URI} doc? ( " for i in ${EXTRA_TL_DOC_MODULES} ; do - SRC_URI="${SRC_URI} https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" + SRC_URI="${SRC_URI} https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-${i}-${TL_VERSION}.tar.xz" done SRC_URI="${SRC_URI} ) " diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz index 0a03067a0fe5..727dafa66fd8 100644 Binary files a/dev-util/Manifest.gz and b/dev-util/Manifest.gz differ diff --git a/dev-util/ROPgadget/Manifest b/dev-util/ROPgadget/Manifest index 007198d377ec..33dff96845b8 100644 --- a/dev-util/ROPgadget/Manifest +++ b/dev-util/ROPgadget/Manifest @@ -1,2 +1,2 @@ -DIST ROPgadget-7.1.gh.tar.gz 10092729 BLAKE2B dc06e99347987d9eb8b346a6a55599013b7d90b996cbd59f27721f26ce6e59a1ead7c0e3824fdb4fa4d215256d6ad378b2e6eec210561a217b2fa65b2efda169 SHA512 f86956108ba5f131a609026087d4d952cb106ed03e72b04844ae551bdf5902ff70b917bc7c2bcd256591142d4f03e3aef0ceca7ad0d325fb5663f892e27b4b70 DIST ROPgadget-7.2.gh.tar.gz 10092747 BLAKE2B 1a1de7ce06115c8ffb377d3e7c77a268d3e9a158ed9255c02f954da4a0c32732f741e7ca081fa0b75b9a5dce2fa099b8548f26d248ed0285a2290f88dadc848d SHA512 cc3f87a4a331a3c7799f197b8a9056d1da85697a47c57d03cc080aa61d6c8a00775e7f972082f92451439c36ef9d820c982194464f02ec041b5bbeb97fa26f9a +DIST ROPgadget-7.3.gh.tar.gz 10105592 BLAKE2B b5bfa7bbac6875c2a417c65f3415603c07fda64f96416bba7fc4d6ea653c81b97b7dc4d8573ad53f3353862a218afb15aeaf238880d82a568b6cbe1bb276eb99 SHA512 58457f77c24a1cc4cc703c75aed9303f63ce3eba699210239603e274f134ec06d73b2c519b78176fcaaf6794a81c5a59bb9bafeaa429f7085443372e1087e173 diff --git a/dev-util/ROPgadget/ROPgadget-7.1.ebuild b/dev-util/ROPgadget/ROPgadget-7.3.ebuild similarity index 94% rename from dev-util/ROPgadget/ROPgadget-7.1.ebuild rename to dev-util/ROPgadget/ROPgadget-7.3.ebuild index ea1bc21225ed..ec2cad9d2931 100644 --- a/dev-util/ROPgadget/ROPgadget-7.1.ebuild +++ b/dev-util/ROPgadget/ROPgadget-7.3.ebuild @@ -17,7 +17,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/JonathanSalwan/ROPgadget" else SRC_URI="https://github.com/JonathanSalwan/ROPgadget/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" - KEYWORDS="amd64 ~arm64 x86" + KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" fi LICENSE="GPL-2" diff --git a/dev-util/bcc/bcc-0.26.0-r1.ebuild b/dev-util/bcc/bcc-0.26.0-r2.ebuild similarity index 99% rename from dev-util/bcc/bcc-0.26.0-r1.ebuild rename to dev-util/bcc/bcc-0.26.0-r2.ebuild index a051049c1742..fecf38786c21 100644 --- a/dev-util/bcc/bcc-0.26.0-r1.ebuild +++ b/dev-util/bcc/bcc-0.26.0-r2.ebuild @@ -5,7 +5,7 @@ EAPI=8 LUA_COMPAT=( luajit ) PYTHON_COMPAT=( python3_{9..11} ) -LLVM_MAX_SLOT=15 +LLVM_MAX_SLOT=16 inherit cmake linux-info llvm lua-single python-r1 toolchain-funcs diff --git a/dev-util/bitcoin-tx/bitcoin-tx-0.21.0-r1.ebuild b/dev-util/bitcoin-tx/bitcoin-tx-0.21.0-r2.ebuild similarity index 95% rename from dev-util/bitcoin-tx/bitcoin-tx-0.21.0-r1.ebuild rename to dev-util/bitcoin-tx/bitcoin-tx-0.21.0-r2.ebuild index 0d5b506d3da1..865fc9b4f6ab 100644 --- a/dev-util/bitcoin-tx/bitcoin-tx-0.21.0-r1.ebuild +++ b/dev-util/bitcoin-tx/bitcoin-tx-0.21.0-r2.ebuild @@ -23,7 +23,8 @@ IUSE="knots" DEPEND=" dev-libs/boost:= - ~dev-libs/libsecp256k1-0.1_pre20201028:=[recovery,schnorr] + >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] + !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= " RDEPEND="${DEPEND}" diff --git a/dev-util/bitcoin-tx/bitcoin-tx-22.0-r1.ebuild b/dev-util/bitcoin-tx/bitcoin-tx-22.0-r2.ebuild similarity index 96% rename from dev-util/bitcoin-tx/bitcoin-tx-22.0-r1.ebuild rename to dev-util/bitcoin-tx/bitcoin-tx-22.0-r2.ebuild index 7d8aa96f012e..cbf1068adebf 100644 --- a/dev-util/bitcoin-tx/bitcoin-tx-22.0-r1.ebuild +++ b/dev-util/bitcoin-tx/bitcoin-tx-22.0-r2.ebuild @@ -23,7 +23,8 @@ IUSE="knots" RDEPEND=" dev-libs/boost:= - ~dev-libs/libsecp256k1-0.1_pre20201028:=[recovery,schnorr] + >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] + !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= " DEPEND="${RDEPEND}" diff --git a/dev-util/bpftrace/bpftrace-0.17.0-r2.ebuild b/dev-util/bpftrace/bpftrace-0.17.0-r3.ebuild similarity index 94% rename from dev-util/bpftrace/bpftrace-0.17.0-r2.ebuild rename to dev-util/bpftrace/bpftrace-0.17.0-r3.ebuild index f976f34e8416..161c441420f7 100644 --- a/dev-util/bpftrace/bpftrace-0.17.0-r2.ebuild +++ b/dev-util/bpftrace/bpftrace-0.17.0-r3.ebuild @@ -55,6 +55,8 @@ PATCHES=( "${FILESDIR}/bpftrace-0.17.0-install-libs.patch" "${FILESDIR}/bpftrace-0.15.0-dont-compress-man.patch" "${FILESDIR}/bpftrace-0.11.4-old-kernels.patch" + "${FILESDIR}/bpftrace-0.17.0-llvm-16.patch" + "${FILESDIR}/bpftrace-0.17.0-use-std-optional.patch" ) pkg_pretend() { diff --git a/dev-util/bpftrace/files/bpftrace-0.17.0-llvm-16.patch b/dev-util/bpftrace/files/bpftrace-0.17.0-llvm-16.patch new file mode 100644 index 000000000000..5d845c134bea --- /dev/null +++ b/dev-util/bpftrace/files/bpftrace-0.17.0-llvm-16.patch @@ -0,0 +1,26 @@ + +From: https://github.com/iovisor/bpftrace/pull/2528 + +From a91064d7fb26626d79719c2e2a13cc2acab9549a Mon Sep 17 00:00:00 2001 +From: Khem Raj +Date: Fri, 10 Mar 2023 00:08:27 -0800 +Subject: [PATCH] cmake: Raise max llvm major version to 16 + +Signed-off-by: Khem Raj +--- + CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 0a7914f580d..341ac7e9c1f 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -165,7 +165,7 @@ else() + endif() + + set(MIN_LLVM_MAJOR 6) +- set(MAX_LLVM_MAJOR 15) ++ set(MAX_LLVM_MAJOR 16) + + if((${LLVM_VERSION_MAJOR} VERSION_LESS ${MIN_LLVM_MAJOR}) OR (${LLVM_VERSION_MAJOR} VERSION_GREATER ${MAX_LLVM_MAJOR})) + message(SEND_ERROR "Unsupported LLVM version found via ${LLVM_INCLUDE_DIRS}: ${LLVM_VERSION_MAJOR}") diff --git a/dev-util/bpftrace/files/bpftrace-0.17.0-use-std-optional.patch b/dev-util/bpftrace/files/bpftrace-0.17.0-use-std-optional.patch new file mode 100644 index 000000000000..21b4b7e6c267 --- /dev/null +++ b/dev-util/bpftrace/files/bpftrace-0.17.0-use-std-optional.patch @@ -0,0 +1,44 @@ + +From: https://github.com/iovisor/bpftrace/pull/2525 + +From a794397394aa836f776da17c8e08876a2f64d477 Mon Sep 17 00:00:00 2001 +From: Khem Raj +Date: Mon, 13 Mar 2023 21:30:27 -0700 +Subject: [PATCH] ast: Use std::optional in CodegenLLVM::CodegenLLVM call + +Fixes build with clang-16 + +src/ast/passes/codegen_llvm.cpp:63:53: error: use of undeclared identifier 'Optional'; did you mean 'std::optional'? + +Signed-off-by: Khem Raj +--- + src/ast/passes/codegen_llvm.cpp | 16 +++++++++++----- + 1 file changed, 11 insertions(+), 5 deletions(-) + +diff --git a/src/ast/passes/codegen_llvm.cpp b/src/ast/passes/codegen_llvm.cpp +index 616ff89ddbc..fe440adf373 100644 +--- a/src/ast/passes/codegen_llvm.cpp ++++ b/src/ast/passes/codegen_llvm.cpp +@@ -56,11 +56,17 @@ CodegenLLVM::CodegenLLVM(Node *root, BPFtrace &bpftrace) + throw std::runtime_error( + "Could not find bpf llvm target, does your llvm support it?"); + +- target_machine_.reset(target->createTargetMachine(LLVMTargetTriple, +- "generic", +- "", +- TargetOptions(), +- Optional())); ++ target_machine_.reset( ++ target->createTargetMachine(LLVMTargetTriple, ++ "generic", ++ "", ++ TargetOptions(), ++#if LLVM_VERSION_MAJOR >= 16 ++ std::optional() ++#else ++ Optional() ++#endif ++ )); + target_machine_->setOptLevel(llvm::CodeGenOpt::Aggressive); + + module_->setTargetTriple(LLVMTargetTriple); diff --git a/dev-util/cargo-nextest/Manifest b/dev-util/cargo-nextest/Manifest index efcd67d04ab0..8dbde54b0999 100644 --- a/dev-util/cargo-nextest/Manifest +++ b/dev-util/cargo-nextest/Manifest @@ -4,16 +4,23 @@ DIST ahash-0.7.6.crate 38030 BLAKE2B aca3661477fcd7822d6d10970151e05c28e1615f8cd DIST aho-corasick-0.7.20.crate 111440 BLAKE2B 3f5d54fea2793ce1c2c4d5b3049b910f45a5721e7538cb2557df63dc3069ab3f6b66aceb5e9a48f21c43ae29778fd045428ea103b2a6de81659e605e30e64ca6 SHA512 ad31f3d1b3fe41e593d4ca7e721bbad62936f2e6a17fd1e0997353edb6fc906d1bef2b79f0ac7c7676abe637bbabb23ff22059947be379a2441011f8178983c5 DIST android_system_properties-0.1.5.crate 5243 BLAKE2B 86f68ec3bdabf8c6ec47881d794970f08a9eefc7417fc8a2bf4fe9faf9bdd2a2024a94adb0cbf96673409f5fbbd4d0111a1ac371339e7a90a277b6cd5003524e SHA512 b09f51339f9772c0e2e4241b36cf51573c6b96b19ffc1fbbc94b1c1d1d2fdfe8eac3134af54174a675ab05d18ef4f6bcb2c7fcc20114bbeef6e17e3692202191 DIST anyhow-1.0.68.crate 43882 BLAKE2B 0ccd8fcb746344dfa85674fa7c95aa648aed8d40134b8c1c1c0852f6c7d22f5622ca1704ec65c254fc20946b1733299e1517364d74f726952d5a951ef89a2fe5 SHA512 b8cfc132ebeac823edf18cba7e335d1939fcbb095ed4ea859f4dc4cde5b1ff35fd68f0743577c69085f74f019768a3359936bf6dc1b2aceb7e2b28ace7f74a0f +DIST anyhow-1.0.69.crate 43576 BLAKE2B deb44b3110aee1314dd599b730df8c2f03b7d13c0d945d4ef00a0e30ca74257269e43107be19868adfea331a8c730e0aec2dff3abea704e56bc6a35b9581fe14 SHA512 d65e5c9404a70b1e0af90dd66af157f8c31ad0858f703765d5fc6c828f1fc8db690b17451c4108e3a52a7da2d6c2366e745d7b4bd7d19e6dba3485f7c3a43071 DIST arrayvec-0.5.2.crate 27838 BLAKE2B 51e2eacae0ef148f3f52d21ae00794e540e7ce4c013fb496dd1347ad91ffbbca199381fffbb064225f829216f6c5e915edfa64833f91fabdd13c3f011d86491f SHA512 1896b5f64b4dbdcff8ad234bda4ea8129bcacf87839347304717e94ee9f369cf5f4371755e453ff7d72817edb8f7fdbc726d77cc4f28ed05148dc89c7714b004 DIST async-scoped-0.7.1.crate 9163 BLAKE2B 474b21a85fb10183ee6b7e552c8fb174bf554aa0eef1e8bfd422e7ba918977906c99ffd725c829f2a221594a1465a9501985fef0dc07479be5d15026a86ddb13 SHA512 52112562f52216b238cff7a17353349a411df330640eabaefac61db875215103aec02922a737825e200a979d1039fc4d31efad7e6a643b06785f3292b91c5a29 DIST async-stream-0.3.3.crate 12142 BLAKE2B 982831c5161e4fe3fadd5cb62678ba6d17c08e8d00de6cdf67ea2fcfc99cb878f7a87ed6eb29474f38081e0236bcf8e98e1ca2ae7d14f72bae2a6443557f2382 SHA512 fcc1e2c4e845ef309ece18824dcb769d84bf2370427f339658c489909028daa5e86e9dd4150c62c4279f4f498d4a73a200d9036271107d16134f56713aa6a0d0 +DIST async-stream-0.3.4.crate 12419 BLAKE2B 82e756ab01ad148d5bb767622fc7173201a45bed0a7cb8e756ed3bf849768cdbdddd85b85dd7724b3883b00226b7da1f01d8edaf37ef29c37bab28a08f2af264 SHA512 387cbf40c18c6d0016f01e2a09a7550a0cc9c169c0324d99d1cca6b1ac4877ada4ad22c084e6680493fbf70b69cef3ee0e3061115ea8d186d06a0c03a93cb432 DIST async-stream-impl-0.3.3.crate 4072 BLAKE2B 33577ae90f52bf9c50e2b264b65ccf2fc999b97548be32e1e23907d645262b1e699d4992670cd1b7b65edab00eca53fba823d68f2534b98daff6bee02858e043 SHA512 d61bbd6d26eff8170a26fe98b1f8701d7e1082c27777108b059d8bfd166eafbe22172586d9e8e2a31c32cb7ea9e9ff9d689fcd070ce7ae5b526f7f3c68f1b212 +DIST async-stream-impl-0.3.4.crate 4097 BLAKE2B ec883ce8e7077ad194b1d5a8f902d7901737525f880977a062ac19c7534d1e8490d0ec54a9f3db031e7060993d6ab180bcd01e3afcc57264b55c7819b9d0c428 SHA512 70eb953ebd112c8d5cd15b7813c48bbe33518d05a957cf5b53bdbf514065557e64ab8ca85bdb3a098832cbb1025a94b316ceee0babda6dfecc6f830eb34e6b45 DIST async-trait-0.1.61.crate 27660 BLAKE2B 27fafd735c572eaa47a551d6235f679f264a561e4b2ab496550457d9c846d7a4a8c6303cc2a8adad0bef2cc41479ae066770ac0fd00522482162502fe190e4c9 SHA512 c84c3f9a822e737822c00bdd62ea427e316dab106085743ce462bfb457dcc06722ff914ad5af08e2b97790cbb67b66fb46786979ab49bf7af67b025eeb016732 +DIST async-trait-0.1.64.crate 29196 BLAKE2B 8cd25de53df989d7d5b79181e0ed5b6bd7cad71a2dee24b56eca9c7c9d6024f4fcce89764fda830168c093dc5e447455443b319491097171ef4c049eeb7199b2 SHA512 0487a688cddae7529def0645f6ef4440916eaa757b14e8e414f910b55e17e2c1fe3fe18c216c3a1916a21909c32cba7add8e461adeefaa4be5deaa3c7085fad7 DIST atomicwrites-0.3.1.crate 5574 BLAKE2B 2a3a43339caf71f3131015ca8e79709aa49f38b5a995493cc8165ef8782ce3c3209c30e899801407386168f9b1fa3e1cbf16e8482340d371e31bf91df49c2bec SHA512 9a76a140f6ffe8d3de97c57acfd532dbdba9eaee714be7f698dedb4433cb4e15ca4a739e222c8d40634eb2f602cef6143bee15e87addc7bdd713bfe6c1f30f6a +DIST atomicwrites-0.4.0.crate 6337 BLAKE2B 55d9bb44a6c941e9f1be21770478ae8de59e943e7d968f3cb1986ffbc23a102ecfbb316a1db7977069f97660e2efa6a8f5a79c0e5d16d98345c571d353fa823b SHA512 675c07097f3f93f4828851c393c5db2c1bbddd7d28f43946c8d74cf381a28a1aba99d1141be3bbee342c57889af96d1227cf7957add1c49b1ba42ac7772a39c7 DIST atty-0.2.14.crate 5470 BLAKE2B 2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab SHA512 d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9 DIST autocfg-1.1.0.crate 13272 BLAKE2B 7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203 SHA512 df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f DIST axum-0.6.2.crate 133629 BLAKE2B c252a16696cbd5b8198671fe57c0697bafa8958a5114c78942719b4ff891fc6098a8f1885df71c151480edae231fdb73a7ac6a20770f9a1f7da6f0942dfa45ec SHA512 e0db9381e858ecfed7634c6f08a7b22e2b185a3cfbc0df540151023234ccca3b00567bda0b8bc170f858e5fcc91e85599ab6d10771da56fb3f817d7f6d41f6a6 +DIST axum-0.6.9.crate 138601 BLAKE2B b6ba94c788ede343219f1800dcfe4c64f1be368ef829410dfbbfbf4c588c6c8e97765cb1e94d63fa9fb401c1240a21e378ba04fa9df408dbaf2b27a683ba77ea SHA512 100d0d858b85489c0c49381152501cc0f83647eb567d558f6e2b205488768e510fbddfffb16d5c2e117f84d9349ed093de28473d0fa5171f4ba26d22d66fd417 DIST axum-core-0.3.1.crate 20365 BLAKE2B 939b9f8bc59258033caa07437dcdd20fa073f0bbfc9b5aed2be6114cd321c924a3fcc2ada0ccd0ba768661c30ee4108e46a3dcc9f2cc5a171d90d137ed832d42 SHA512 b62061ff92867098354f04d0f4fa4546c1cf184a5c954dc83b52b90d1cb999b6f2d5ef52a38c4976af19763f1a7352ee590e30f589a82c4007f886747a82a30e +DIST axum-core-0.3.2.crate 20441 BLAKE2B 1677eccf33b87a98b5db8bc76d7d45fc8d62b3063e5d2a8a9909e7faca94275ff099386573114ffb884174a08bfb9a3f865396d63a95545b0578f14fd4838b28 SHA512 8a049c14914ad748ee312c9ee16080a7d4c2ebdf6ec21ce261a66c8d3c1e0ff90de6356ced82c1c3622438879cdeed2079fc8417cdbde4bfb8d174bcb2a37682 DIST backtrace-0.3.67.crate 78564 BLAKE2B 8c77d3d182c7e1ec3840fd6c7f4214322e473ba79a71b2d11d98696f8ae4440350f3c84a891b2ec79fffde107fb2ebb99fffca202d6ed235d3abd68215a1089b SHA512 8603a3b63f4f08be315176908134243680bf1a4b0e6cb26ed81f5fc1060279126ca0ef28f209a10289e1a85214b35db6b496affd71ad21524094f3ee3acd31b6 DIST base64-0.13.1.crate 61002 BLAKE2B 3b3a5b26e2ef18e9b4f1ede72b1bd160a1494751878e8441d463f8a514e6cb9ac859231536989e19fb1261fd864617fe31440df1b5855a0ec625521fc6fcef91 SHA512 1eb76aff9a84057f2ccb7082e9c57b015c2d71a28173089b02e7aacd09a7d311bedf0a943529611ada29f8d7b536d7ae4de256d98eee8450003a3a9a652bda4b DIST base64-0.21.0.crate 72180 BLAKE2B c7aeaf671bdeac67703f9c4ee1be003eb8d6f46fbaa0adf61a4da304458742938db04291d5f626115e3fcc901eb3abb3f9baf8247f6344b4d49f60a200fc6fd2 SHA512 60bcc157c6449a2160e083611e6d53e07bbff7db8cd550d9056cb804e99e990d4a20092ba4347306a3c6b6c42474a06d92cb3895125c50cef9b74cd3cbd83a2f @@ -22,78 +29,114 @@ DIST bit-vec-0.6.3.crate 19927 BLAKE2B f5bd3bb9c87fdf3b206739b74df20cab50a1a45af DIST bitflags-1.3.2.crate 23021 BLAKE2B eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda SHA512 3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62 DIST bstr-0.2.17.crate 330350 BLAKE2B 90c3a48d78b73d7e36a3da9fda0beae6e91ce534d17198ea8ceee0b613d03297f9dd8bca30e1ec5da01d1da359a1da72b2c2771b77c82bebab5006cafd665192 SHA512 883eac8210d14f89517b4dd5e25d02c97cf31602ec74498b5e186112ba0f154d47de8d1c41a8f4e5503f3b53c064e2c976b60bbfd63fc28b186bc006e00f20c2 DIST bumpalo-3.11.1.crate 81207 BLAKE2B ba76008fb5a975aca12b6f893779e18dd353a22a42cbbeecd5870622a7cbc0cd7e37036af600c570b8a55f26ea8d07f44a9aa1a8373d977b6f75bd4276730292 SHA512 70e90bee1fa4e783ff5a3b18f192b9347bafab7daaa907e74913a415a66c29acfb073fcfb46150801aa7649ab0d2ec8a610de239551565dd167bac72ab13a9bc +DIST bumpalo-3.12.0.crate 81604 BLAKE2B 2370094f0c23a3e9b75c8e523e54637189543d9df90ae7ddc349d316054d3d1abd1319e51cf1578f1630be0673fd7f65d130469b2729aa32617372e8bc5dd5f7 SHA512 37f2228f251340e82c27f2b34da2af6eb520077b3809331547cbe4887c0b4791b1a7d75a017decccef162cd02a088d504214b7a44b484a7d93eb6a278b329ee4 DIST bytecount-0.3.2.crate 11026 BLAKE2B 2a2a556e2cdead9c70ce1c69cc5c4a0cb3c11d34a078720d3847ffa8be54d34df9f8986a780331f5c80f71c998e12491b94795d3d3f59f9da949a6d9e7f301a0 SHA512 fa3453f220112f83280dd3a123b25cf3ec07d2487c89cb80dc383f12e9f4d759e316d1eb05bcb0633186dc3f26d2ed58d979ba4ca86404a7f6edc4c174ae0edc DIST bytecount-0.6.3.crate 12416 BLAKE2B 462e41d5a4ee23a6c9ff2bf350171e309cbc32f14bbdbde25a5743072a6511634d6c0429903edcfa8df4b9ef3c7bd95d73fff8a7b2018f3b4a8147de2bbfd3f4 SHA512 0c5f424329883726589e69842d2ac0767dc0b440d744a4452a14cbd449b8ca2e8117fa2978b4aa9b803a1a7cf79e9cf67e948057e8ee521e2422ca2e145ea670 DIST byteorder-1.4.3.crate 22512 BLAKE2B d39c546ba7346df315297fc53da4bfc77ecb1f38567ddb788549ee31cae2719a8bc0b7d1f1705abb3cff033aa57af004987d90748f5a31765273b3223a011c0d SHA512 8c8000eb8ecf40351c9ce36a3a8acd7a02f81786d1b11aab85adfeffa0f2267ed74df29b2ca5d1d38128484d1d3cad2b673aa0d0441dcd0620dfd3934bb888fa DIST bytes-1.3.0.crate 57563 BLAKE2B 29abe4d9fd8583c23c5229bd81eca3b41bef01bd11bb5337d5e4a87fa34ccc8989ad9cbeb52dc66a06c0570fb2f91ba0dacb079b957f5c77fca912202535cfeb SHA512 902c9af417f7aef25e47b15ed2256da5ae171fa866f2f511d6da5cb0a9271d7da214b10c774bff5d0ce186be1eb60c88f7aed848c264e1000bcbcfe0d25f9f76 +DIST bytes-1.4.0.crate 58080 BLAKE2B 99a9d343424e04649bd209bf2a6c3a089a6cc9fdb799968f8c3a711189328e4499df2e09cc6a2a8ce05d2cc668149b364cf30cb3b09e96e21d50a39519c2f49f SHA512 502c63b9fdcd36ed28ede55a63cd359dc7b28658ecd43020511d17d48d7c34e45aa8ff7e4b17770f12197451040c2b724fe68d2aa3ab4f81c9171d052f2aa000 DIST camino-1.1.2.crate 31121 BLAKE2B 0e5ce3c9ce728a55135198154a0833fc1a66d13789ea9bf5f58dcf4617990d0037394fd3bbd63c6d669e80584c04cdbfa479cea783d0c55923de28e5ad79af04 SHA512 3c2273fc797f2da970a0ae7a4e58be596cec6860a947b2fe0850e7597c9cb0fb8569282c3c1ccfa7bd473b802649b6288eb8de95e9bc1fbcc3246504ff98f304 +DIST camino-1.1.3.crate 32034 BLAKE2B d59523490c668ec03917c60a08a1c56cc74a96befa813c973826adfa918522c583eafe01481e4a886aac3047820b412aa342623bf496e614021cc92f2a3fbed0 SHA512 71af6050071c37b3634668d1f62d4abe1fe545aca2c03ca8040960f8d2a5567a3fb971bedc8de8bb66b710e974466a40bf83f329eced32008905aaceb5a709da DIST cargo-nextest-0.9.49.tar.gz 7619108 BLAKE2B b589f6c6eb00debf8e2fb8e465d991e2fb8145479e6a1b18e5375ba3c1079554e5dc09fd93fa80fddb59d2e863cf1ab2365afb70fda39521bacb7c16e0b31a95 SHA512 a01714a2ac21652faf645b5662545616c6ba3e9fcbb16177fb3117ec1c678218ba23345689a5c6e9b93390aaa86159e9c4c89bf773347b4264e77c9d677a1d1e +DIST cargo-nextest-0.9.50.tar.gz 7621983 BLAKE2B 90a2886f1c7e498395e7176c0d1fcb0fd0833177948e6b4c313055700c799b268fc1fe96dd700381e3505866ffc8558de6002aa89b60e973a5bf58bce778b46c SHA512 29312bddac639ce187023a5ee5dc525e8222402a01b13784b77f77d6876c625d85bcf9ba046e9743afe9f311142c839047c9dc4d3f76d1f0345735dd18e94d51 DIST cargo-platform-0.1.2.crate 11645 BLAKE2B 7770acb90e299f71c60bbadceaf894a3100916b7f7458f9c949b683b39157d3e1ec17d850f16dfb04017b01d7734d41872d48cf9f4e1ea7414439cd7031c2330 SHA512 c716bf3a4e0942160dbf7be114d1621e1fccc23511e7b0a2b99852b99a851910bfcf8640c2d0d0a03d5a324e1a59fb5d4264ca81bca24e3f1a1ca653bdf2956f DIST cargo_metadata-0.15.2.crate 18528 BLAKE2B cb80318d0cf7316fa57badcaa0502737232b28bc9efd17a71ef1afa8e1b61a597d7f36d6ecfb41a2859360ed7ed7c7ffa86b9184400c4646d3196fb895cf3e94 SHA512 f663676ac3e2182d67d1047164eddd24d1006f61f378003abb1d5f53f9dfee672202d33a530cac1bb749955edd142ca78169dc3412d78c8fe98d6121c4303fd3 +DIST cargo_metadata-0.15.3.crate 19738 BLAKE2B fee5834f3eb741704c2322d9035943b1e841c8043c18686ee0748b90facad535c715bb882b61dfadf9e027556927051fe816de15c5f4f11e89c8927ddf717583 SHA512 60c0e601c73f11a02da6a168ea80e7cfaa27b895ef6f869ecf5932126364cc23bb480457601edcc7d0bf8c8635e71c0d1dbdfe37ab3e95ddec41f797bbfbac7e DIST cc-1.0.78.crate 61375 BLAKE2B fd4765cf5ae0dc7018bc6b56298cd0fa9bf6fe23545e845670d98ce73baee55354e77c6d87cf047f10b074f3d742deca8b5631a250c69b347b4a1fc653965d43 SHA512 b85bec4c75cb1d1e252419052e9dd22b6892e54ea36195ff483a04f785b5b103e82b30b778459fd45324ffeb2463aa4f5696baeff2779c25ffe9f65eb99ae893 +DIST cc-1.0.79.crate 62624 BLAKE2B b3cbed3bd6fcac1c6ea258ec96cd107f859947a35dc89c3dc8f314741b0f668e61518f896ec32ce10c9a7eb20dd350bc177a71810d53ebea59fda062ed9d27db SHA512 cbf0a25f3a23fc540e9d638fabc23f761f1c240ebb4814e761e90437d71fc559cd155768ab9e78fc192220d8a605c66c3af342ed736b719181656170b98d7bf5 DIST cfg-expr-0.13.0.crate 40615 BLAKE2B 8ec304e7545d7e078259264fd862a563a30b69dbe86960501efddcc33cc6c07e54011a252698db12a2a1cda92d518d2839e21057bf025c2a0d8c8c8fd30faead SHA512 8fd1cfd0d0ae0c29ed1eb57a9f195fd624b7a12617f770a98b5f3786ce31bef26a4450065a94cf058c60cddc7dbe120edc3f978c0c619848cbe842237733e18f DIST cfg-if-1.0.0.crate 7934 BLAKE2B e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b SHA512 0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff DIST chrono-0.4.23.crate 187259 BLAKE2B b4a7cfb8d1921d396c9e2bf350e6c61d04480a78c170d153e525ff581e8298936583744b6c59769774fdb8ad433269d01ad792f967da96e6c19d33460de937f9 SHA512 697a78ee83eaf38d83011bdf2086b3149b830d3d270e8414828b98ed2426063df43ac6eb4324f2dd694662afb86e6e4f005dee6116dfdd97adaebedefffd43fa DIST clap-4.1.0.crate 206950 BLAKE2B 699e9824082e5a5d7c2977d69d2f097c6a2f8cf75509aa5a9158b1e109ba98546aedca4857b847843291855833b62d9130df6409f7cf1056b363aa4c3d1058de SHA512 78f4fc8f8d6e41cc776f20cea58c1faaf4f4156a65c82e24cd421712e89ea9f0a53bd05ee4f46a5421885f5bd33370b923c08f9c6a27d5bdfdaaccc3283a3d7f +DIST clap-4.1.8.crate 207175 BLAKE2B e25dd21c3ca3459082928a1e0d75af087186e7f69f1d729267dfdc73c84bd6a0d026f9500f566516c70f94910a3154617af6ea7930918d4fd81c59d3ce591dc3 SHA512 bb28317f4a1292fae35e7540e37d094c7064cebb009f24d9b781c7c26c49c9bf194221d5387a71e1757115f59ba42b28c995ccec7b10d34145e10cdf739df9ef DIST clap_derive-4.1.0.crate 27897 BLAKE2B e886be1db739d6a14ee5b049f3e991dad62ea884b1f885a357fa436916fc00d51315f7453b85ec7a18384d564f70380c58dfd2fdb862a20b510613b57173cd51 SHA512 dc191ccd0b596395d029e9ded5d1cb2cb86c8392a4de52ddb877b59dafe85369287b6ec2749d01f33372fcd4cb6a4e12a9cb02b394f50d65ebdc4693af062807 +DIST clap_derive-4.1.8.crate 27889 BLAKE2B 60aec769b44abfeea8034db5c13a9ac0b00ab5e78f43715eac4c70918bc3f06a71d91e6d4617dfab6d3c6672d9ccd7b9c483b6b2684d2dcd8f6eb4ff55844256 SHA512 e865e0dd4fd762c82d9c4e87add6a52ecfc38ccb4e24c400e743390057dc6fae16dbe7179cd9719991ff7dbe805e8b5c983b47b3292ea6c2fe71161bfcc8ad4a DIST clap_lex-0.3.1.crate 9653 BLAKE2B ec1261ed4f402c713c6324dda105d8e9eff95150c50b966096ca71f1c534f73e8bd3ba7ed9afe818ace8501aa35f505d21f040fff578565421710229321599b9 SHA512 2619ba0fb961d8ee86e42864b56511378ef837674aab6b1a21defee20f321e4f29b3b3fead0665b4385b0675d7bc63a7dd7df00dde51dee7ee99c7add6828b89 +DIST clap_lex-0.3.2.crate 9650 BLAKE2B c07d8a180cfb959a5c9a2a79ba5343aea2185fbd10052a8e1fdfe0bc8fc2e9433a762d117bfdbb6cef497eb79eb8c757227681559ee995753f1eec738c4c1510 SHA512 f7c55878d3b35e37af607a035b471aaf6c2b1d849c26fba1df6e5585c0af0b93abe0b6409c504d4ee122c9c653daa2e47a89b6d06f31559db760a88a73c42006 DIST codespan-reporting-0.11.1.crate 48963 BLAKE2B 39deb717a853ffbe3585e20a67fd7a75b62e2d796a66b5004876501fd7476acde9f126804f2ef6220ebab66821a3ccf058d544d689a2705eae44285f34b510cb SHA512 0869789f5c50d3523d3ee16a8fe64756498a13704efbe82bb0845eaa87c7b6b1d075b3b6b80567cd9fce6cb09c5179e9c07e485fd17ce56c8139ade0f8bc6844 DIST color-eyre-0.6.2.crate 635042 BLAKE2B ab35f335a29d5698322b44d144f307ae5968e56622dfa89c6d438071026c9bdd79f2033c8849acb3aef86d3590561386e02c7571b079abc4e928bc966fcbc233 SHA512 b7e83c8fc196d0c163b64d0165e10c70f15ff7e64fa8b1547f45d696f45f8a8ce7140e04901c4fa4caf15d868334253db64be2bd201ee964eb4dd5f494549435 DIST config-0.13.3.crate 67180 BLAKE2B ba7f6784e2bc15e55a2b47f354b9fbc502a34f979a3fb1710758d7432364cadca7ccc5a5a1eb51e8fc6c4e3f21bfc046598ebefbf09bc3bd82d62abc8e85d766 SHA512 299da2572ec817c6b162376e3e7f7b7824866425e84cad3afd893ff0adbfe29f35b964581f06269f7cbc41a0d24f7c031243c847713aef0fe6919d4cd7b87e3c DIST console-0.15.4.crate 34237 BLAKE2B edd1992b38a24a4c5a6cab42a1a1ae2483a2ec42231a9460b9a4d2701945d1bb1fdde181044976f76781348497303b035b9f9dcf5733c9a317fb32ff3252edfe SHA512 fc719a26f93fa28793379e77eb90a9144892b07ee7fa5c495d842c892f5a161607da83376d447950dc1b2be6b023b38f2f1d416b112c09ab2c84847e53055650 +DIST console-0.15.5.crate 34788 BLAKE2B 915818e2a5cc6776a3d40f51ac85ba178e738f5cf40e5e3c1450aa731a04d73a617341dead606e043fcf66d0701f625ccdb5c787978d784c3f22f9ec0524e89a SHA512 54dc15a0c0d7e1a96a368e5866e1e5ea9d11b0b7eafd0e086376085efd3f656bcf5ec86f4eb387b42dd8cd4258f9162c401914d519a175331d0c1873794f8d43 DIST console-api-0.4.0.crate 28170 BLAKE2B 3f95f642664c9718c02fac872f247e7955b85bbdc7f4b87d0b8b8bcec1abe29dd4407e41c77653f54b4947615fa20faaf0967f6284b686b621272a1b4351cbf5 SHA512 2e0c4e04c67086cecf8994f5deb9e0eb7e93a26c657ff01d08345f8b22fb49e71e460a714d7d0876d5efeefa5c0d5bc487851144778bece7003e3711b1baa12b DIST console-subscriber-0.1.8.crate 48558 BLAKE2B d6231e00768291c26880e6775427863cf0d1e75309555558c8fc2c17abf63562bd647eb2ca6aeb4c4fa37447013008ad9133b13173f905c6bc3d2bbf5a54f32c SHA512 fd16404d926f108421387c421330abbfefbfb5744f3bd847550bffdfec16dd4a056361b8e9693faf9c577134c10d3031bb5f0505c6655f8351677534fd3fa288 +DIST core-foundation-0.9.3.crate 27059 BLAKE2B d94fec51b1b1055c285609f4bba45c5169a8cc775e251eac7fbf0da7ef894e1be9ca9f4236b82b67be0610bdf811366e0c6fd3cdb671a1e83c49717e2c5b2d03 SHA512 de07967c4f5e2d2e730b6f21984c228dad2cb2f55187f13074a2200f4ce9f906763ee818267a9c67ea560229db7363473b230670a6dbd224fc335f32ba03d072 DIST core-foundation-sys-0.8.3.crate 17519 BLAKE2B 4ac3d9ab16753dd995abe82f158d460d0d22184ab55d260e73b20305cffe4e03427dabfe0c8be968b6c3ecd348be2e17154ded7c9bbd5a95334ff266fe83bbf7 SHA512 a3ba3184cef65dafe8318c4db7e59eb2749dcde7b2370ad20272b0735ded0032daf2de3fd0cf55eb48448a335f5b81e8e745f2a647f9a43bb85946ce714bfd82 DIST crc32fast-1.3.2.crate 38661 BLAKE2B ce3762b03d24d5367d89738991c060f4b3af7840e0a7ac7fc17d01ed438caf964bbaefad0fc4d0c438dafa5a578429ddd353c71197f8b54b1ec441395f2f7ee0 SHA512 a683943e252afdb1b9d626a07533ed11cf7a63af603c19640056c5d2b9c884ad9aff33ac54c0853ffca2f6cf94b0730eae6c05abf3e53e55e709d180c8152357 DIST crossbeam-channel-0.5.6.crate 90292 BLAKE2B 7da87ab15c384754d2493dd1a30e83550cd4b2b749b7f0c24de131f054e3a2e521e1bb4ba10094378c8f4c7bdf19218e35b10562c50b4ad1d2871bf6f821e488 SHA512 de6a42ffede95750a13e3b9af6ab26cbc498125860cd8e4d227c7361bd831e558254a48bdef5cf901585a915003071b0efa321f2011f282218c364780f62f44a DIST crossbeam-utils-0.8.14.crate 42127 BLAKE2B 3e31e6371e46aba6697501a34e1b737680dcb692c0d1ba7cc1ce7025ec70ee69f7595e3abd90fb52c11e42cb43fa5fae6103f97add35cf87b0a68ea83213d0d0 SHA512 fa00a57c41c9daa152f8a6c6f4d3c77986de1aa21585984adf577e244c2f121db014ba2beb92241590e1cf78710e77d9a703ce4a4d44d8854bc3e60690151393 DIST ctor-0.1.26.crate 10803 BLAKE2B 93627949b92651243b7a763d3d45a22fafcf2147a30661c4cc017e222bfc2bc12b4071054e3079adc431fc8a5dd8b86a8d11c53c401be6db846a3d0d2076b9b5 SHA512 3a3d60c976ec02a9edfe04470af4b04b02601c48e2a007393cedfef5c13e22bca58630e9e885e635a71aabc3e0ad8fb70995876551cdbc6a31029d8d2bc2e86d DIST cxx-1.0.86.crate 589122 BLAKE2B 22a18d62d7e2a4793b659d1ec330c7e5068715560f5a098946f1a59e8c76243cbfbcea42d5a9e68e81ea9f26949ab9d12997d7594832e8b670caa07f220d6087 SHA512 927fbc7ab0eae8c4a87c974ae0cf5a34dd291ca869f1476bb23cc7afca25e131f5f0417a3b901d424d25c870f2fc9bee5500169074ce3a040e08340c3a526e09 +DIST cxx-1.0.91.crate 195757 BLAKE2B 9e426cd0c04eb585fe40ece4bdb6a90615f1a81730e09e6b3e3f5f4ed4debf4f5dd0093f779bfe08e95580dc3c4c9ec095624ce5f40f5937a07c9d2c19b82844 SHA512 14fed0543dd81ecd5f07e20e159cd8694cda2f7ccb5fcecfd8b6ca1dada05d6f1f2b504bb3b6a1ef01cc15adf48187b08e032e668fb298e3f099cb4d49c1a3b5 DIST cxx-build-1.0.86.crate 84425 BLAKE2B 91a7181e795bcec54bf707f97f2f1e54ea4b53106675a06163920424781da4285cea381ad4bcf01304766fe4db494213b63f047da8595030e43eebf6d7e9e229 SHA512 0be6e1e0b2655dcb8995168394baf6a68be26f405d4797328251e7c53ba31de14c8e68a8eb83b9b3b3a0e10fe28a989de5fc97e783572982ebb5af28152851b9 +DIST cxx-build-1.0.91.crate 84433 BLAKE2B e66221929e433ac190cfae5e30ce5bfcab8ad807c183182efa001beb1a418ba39c2ccdfad09bd52aba99fce2cfc714e8878c374ddb59f040d5628a9d94b67852 SHA512 2bbc4aa8250a50887d62faafa391da366e5453ecbf0d93dd9b6769e09e996ebf00819b7631959285527cf8bc68f294a44cae35f91ac308a911f7cfaf78bcd5ca DIST cxxbridge-flags-1.0.86.crate 5251 BLAKE2B d614de85cbb6b2eed683295a64b9401496277da847577a876e9102735a5121619c8af8eb33a77aad15a80397161f3dd9a2a3f5b2d5afb91172211008819c0beb SHA512 1b2364c9651c4782fc7b05e55fb98873a48d9695bbba73c6d735113e25ebc6993bb9e945e954ff27d183b15949aa807a13c96683ec66bbfd822c7716c1ca18bf +DIST cxxbridge-flags-1.0.91.crate 5250 BLAKE2B a60a2210c411b042c8ca79c1a7cb93b0f46ad720907fb4d7958e37c092f41fd3effc404037d968c59e1ae95bdd5c6586a221590dc634d2df35be0871b0d287c4 SHA512 8f704be8ff3306d0e222dee4e3e43b78b5be40222a294004aaf02e80b27b194c0a5449c13b667a5dc4239e67600279086a08c1f081bbcb39c7e44f6ecbdb2e0f DIST cxxbridge-macro-1.0.86.crate 59474 BLAKE2B ac92736b9aab76dcd8cc63c65b8f143001dd1ee357bda5c4bd83ece5e02ddf95b84e99279267dff152e9689e77dbb6e37b3ad8aac04a83abc7d78e9c9d8cef72 SHA512 9fa823bd4a72408316ac6ba40020d07199c48d8ec635c515ad29f2c6700215a6f58b2e380a40122e2e8f0630db1cad3fdda3e6b3b249447450977b76f4804aa6 +DIST cxxbridge-macro-1.0.91.crate 59525 BLAKE2B f6d9956c1dc8fdacbefcda5aa35fd617bfbc267c68543460b3cda5bdcda26cc6194fa2ba86912da50a9640ed0f3bb9d4758e7081a6b1584e6f94a671635321f8 SHA512 820f6cdce0743d8e929f98e5b825e32b9913768c67db5c60cdbd94e681a1ed25b628abd9f3c02075753e7c4a3cce7e905e962b6bd71e392bd96dd00e6dd86aa0 DIST debug-ignore-1.0.5.crate 12016 BLAKE2B 708351be41f2d1017bd84ef9e5203cdbe036073d90a66c0307bf0ab28d42707ddeae2a1142f8442a1fd97f6b1826703ea197700d9f154a87d8badeff33d5a3db SHA512 4102696d1a380692e4a0cff5ebba410a8c70306c9ceaba69d90f441ddecec86a0450f46b6d21866daa962eb1a6deb6b46137b4ad5fc8e3c77474c6161f301be7 DIST dialoguer-0.10.2.crate 25304 BLAKE2B 12e7d1e1af1f97358c6abd8b27827ab6b528d3a5b3d7e49bb968ae59493a6a7c68e921589e41b50967ed2a09c691205bec957ef55a0591c33d7bc4ed26d5357a SHA512 e9297f78b0697aad45e8ab8b76ca4a9bf07dc2a8a699b0e49eed45ee1f55300cfd67fc884406cf48ef73bde39b5235a90555d3053075a8cc04c43c7c3ffe5f1f +DIST dialoguer-0.10.3.crate 28627 BLAKE2B b3c9b3f5c3b96cbd93202c17f756e9f525c6d3525045d3fb87dcba7ef4b32e3fcb2e06a25a2d991de08ccd95370cfec0d3df6a91b6b24b8b8e9b81bdfc7fc653 SHA512 c95659395560e8fd0f4c232ecef89f38039ae096a822c85eae07c92e78d17a9be98c995af415ba43d43e12c245641a17f10d54b96512fdc16c2d34d13542ae2b DIST diff-0.1.13.crate 46216 BLAKE2B 27ceeafb7afd45eabbbe22d1f05667f513a6062762e6b77122e267282a8f2a0bf96384989508bf10c9e13af4856bc9f58f09b10055d6fc2c32681e288ffa9f9e SHA512 45e259c9fe7c23bd9e9454891b42d4aef6d681d35ee039d21fdb05ae9ed5856161a40f29889e7880ac2a2daf85f1b7d752d213b4a99a1a74ed2682c18a3ae7fb DIST duct-0.13.6.crate 29320 BLAKE2B 11a7502f89ed7e2cbe787b131275b135c36273d074aa689c6a1d6184248d6a9667518b75c4884e1504b925e62a1e589c3822bf0ab316a21d5320a9c73471962a SHA512 bf6a69fc2eda5dbf79dd785eea131d5c9ee38ffa3c99e7ffb9fcd47ef0beae8b3e5e75ef78172e54ef076531a38c4598880694a7b93573ffeffd3861e7776369 DIST dunce-1.0.3.crate 8035 BLAKE2B 77e560f0b9d28dd51865b8a49fea832e0b530724c6f6fce9ac981240ab247c8fc564d951cfc236ae68b04daa966e59f23208fc1c768d5c42afbc5cec0bf4dbd6 SHA512 3d775fd99d74462d5bd7dbec65c196868c20befb52f04c37ea93f3f67d33cee6062534342abe20c01577a517ad4b16bf15b08a09bbb2d310fdb731db5b1511dd DIST either-1.8.0.crate 15992 BLAKE2B 5b9254d54ced1f23447cc78fca74f12085c37e3c2da441b30521819025ebb808e8cbd9cbcec811f8b3951030914c1736b8bda61744d1323af8c5b8b0a3ef3ee9 SHA512 5089b218af067b51ee39c085568a1a6f542e8f68b362207bd7126cbcd2b76783cd21cc1517a1d088ce4dad1714be03a3660f50e9498a0bb43a8676cd7ec490d2 +DIST either-1.8.1.crate 16027 BLAKE2B 2fad54b5f20bb8540fff5959ca7b2f9021c814ee610895d770f7081b12ebe2c93ce754c462df9d81824d479ca75e07f4a9e398c07a655f4abe2740b9c9de9c62 SHA512 5e4da301a605e0bc1ee3a269fe449aef044df05b5e833940c7f79bed61bbff4fc248e9c82b45dab92b2688d578ada000b271aaf67f2f4f7c82b35f05663cfe7e DIST enable-ansi-support-0.2.1.crate 5666 BLAKE2B 0d6af0aef2547cd3baf47777c9a968462379834b6395f157e33edc4cbd882134cc75fce177ad940a89d647f67deb7169a981d9b648529ce794d7fee3d25399df SHA512 acf6f8c1685eef6a7c353c995bbe722159351020b80779bf149771167d8e7e2e78b048311c2c77c097403a31a66ec42519ea5461a5219d8b7f9e5ae4e3af412b DIST encode_unicode-0.3.6.crate 45741 BLAKE2B e1e3792bc2bf9db7df33a516d0d755eef5eff1249aa9b2fd7f0dfcb155786c566fb619c9b2d73425a8625c8593988b117e9676c341f65e8795ddc838bf9881c4 SHA512 64193d6ac75f66d58ed864169b5d6228ede36dcf100614395e086bc8e847a3ddd287734d88e8ed50f38c679a99c80ec68449175a67d8ee03b02ec1cfa9d55e77 DIST encoding_rs-0.8.31.crate 1370113 BLAKE2B aedcc32bafb95c54a034c6ab082d722834c744c33b525b176ad00ca2ede4157de6765f41e52678fb05a8a1271ed234933ac26a1bfb2cf08096420384ba88e0d1 SHA512 a9e582ab63d00bfd17c9f813f886c5908279fe4d23cdd70f79580931f3a0479162b78210a27b113a7bf6fbc4f8d62bbf098ef645d598fe0eaa428639c35cec31 +DIST encoding_rs-0.8.32.crate 1370046 BLAKE2B ca9c15eb521434daef94de5eecefb487e2b4053ac002f0fa24e3ad101b89fd4a19cbc05b2e52a85599a45d50869a5671dca0786254138b7a5e9d5dddd2be712e SHA512 8a695aedf388dc90b039277fb8a88cd0fe157002554ef478b820e962b6fb19f3fecd5940d0720cc820d07c77e64f7415271a119c87b72c740e6e370ee8cc418a DIST env_logger-0.10.0.crate 36574 BLAKE2B d2f387682059fe9b4566ab995be449c58c57b8df5e5d8bd5ffd153aec1648721d8a9606d3f9aa034263651f5182043e08b6cc08d2d29d0a10f6cc61df9949a06 SHA512 4dd02f9d333a1f15657167ef4bd403eda5426cad17e0a4a43fa20cc65449345eb4d3fae2d6b10a3480016b9e23497fac13ed7e70b40c9450ef430be9f910d3e4 DIST errno-0.2.8.crate 9276 BLAKE2B b73738deb47d1f76ec91ffd15558126d32312647b82677290725669edb01b8f34a503172fad6518ebf0ffb1633ef0afaf0750982b9384a9fb87833d31721c9a8 SHA512 1f513743224cd9a9b7e4caaf33dab075a4a79efa90c9f46c9edfb0c8600daccd3ad2677ba2116621e19fcf8be456954da5d611cbcea4b6f1410f7731828b50d1 DIST errno-dragonfly-0.1.2.crate 1810 BLAKE2B 781fc26dce5c33d83b9a1fd9be2b2ce9ac2559aaa858957ba6777e143b1e44cdfee48e1b47e3c91a95075a51921d1a421d0b45eb3d8de827cf4dd0ad744a7d8c SHA512 f853f1e1b8dd0f359a8f9a0399b3384c1103cd090d96e2b2204f91a40d40a9eb99383d4aa6a11e5470c51557afacf452d4be2049600d4235d27f59870fa3b916 DIST eyre-0.6.8.crate 41587 BLAKE2B 3ffaf2e55b55212ef60b440b4ceb9a4500e91d59ecbf7f477ba0b6ae601a73db95956adeef0279483fed6514335826f21c3538efb14ee8c30277cfbb1693b705 SHA512 0a54e2ce9d58e80596ab7d55f0f913fe3d9bad6cdc5f56b9aa4683732e2d409e288a579e89b300e35a822f56017524b2ebbc0e60860b9dd6e479080f7cb14324 DIST fastrand-1.8.0.crate 11369 BLAKE2B 93e911ffcec559e30b2fefa44c4d74d1ffa9b8ef1904ace608b8576210bcd41a2b4c7adffc00cd3bb40996110d07316cf8068f4754a879c6cb47e3d41304d406 SHA512 82cbc2b29b97fa3fa2c9372d3e8c390586a7b39f6c7d8c45f9b779bdfdaa2e8a3b44bc7bfcb3367c18120726facc753c9827cf63a8fb4ddc2667509b16333cb1 +DIST fastrand-1.9.0.crate 11910 BLAKE2B 570c66ec1d4ace08b9790299759e3b6f0394aca52c4ec2e02258229c198846cba7c0627807548bac3ef1f86c7e512c4bd105f1e18e35ac0ea6934f76a6838e1f SHA512 321567b5fad8552c0efc4393b1e77d1bce288b0a88c475d432f79e91b3457ee6eb5db9e4d65ac6381b9990c9916f4651b6a76250df44d51ea3e25bd8184bdc52 DIST filetime-0.2.19.crate 15028 BLAKE2B f157d08993d74c7cf2051de416d5904237a4af38040fb362caf3a150511bc31d95245c892ed51da2f7269c3a43bf9cb3a8d6aab8c39a8c517627a085d5088f55 SHA512 9a30f078ceab0f24ff63cb6b80e76f357fd15aab9ec206186ddda950370b9ed738a6817b942cfc01baf518f9eb749e3b9c749718b4581ba74f65424bc226c34d +DIST filetime-0.2.20.crate 15027 BLAKE2B 393bf9696992ebd17a8319f23d660a8c841b536109d8216103ba163ef50c78dafe35f640c8996a707a43fc523d24becf38ced2cada9cf072445b13bc3138ae38 SHA512 71b2705acb0aed833b8c5da8f07384aeb0e290be78c68f4bfc044bcb7e8285740186b74b0e37c619d93bc05b9022a83cb0edb75c688b106cdc844f843d0e8a0d DIST fixedbitset-0.4.2.crate 15954 BLAKE2B 91270883db5ad0e999ebbca1123d8729d3040eb936034ab8da3cda72a830e45fcb977b3fe3c2b94e870c1fbc366ee8602357bb77e8b9a40cc41a04afad1b266b SHA512 57c5d756b0a202b2506270f0d5e890f7617a1e0c015b6059ea23fab49cf7af47fd06927eb56feb03b37cb2b6c467e326b3f0da1e32cfcb6339cf11a130a3ccab DIST flate2-1.0.25.crate 70210 BLAKE2B 992525ffeeb4433a222487cdfb0c3927ad77f914e1db94f612d80e81faef4a2c955c755c2b800251e3416d0b22726d5f7d7e432a81c3582c54b7de95ab7a324e SHA512 d81a463360ee2778f609ff297e04548120d1fda1f9e020fb2f429ea51189b8fe6cae57252fcd924d71fb65ad0f93ff7cdc7235913f8b78fa82925939cf884af7 DIST fnv-1.0.7.crate 11266 BLAKE2B 81da85889c91b6567e0f555e37dd915f1bd919719d1ca10c31a6861d7aec29a49ae9c1e8bc500791bf9d6b8dbb318c096d04872c5872a4b1f7d45fbd8e12842d SHA512 2195a4b34a78e2dd9838caf0ee556bf87cbb4a8ef5505aac663b614eb59dcfc0c40f432463ede41ecca57bfe7711f72673d39a85fe03d426f1324097d5628334 +DIST foreign-types-0.3.2.crate 7504 BLAKE2B 520818b702d990d296ecd31a8646850202509ccfa18edd0e1b260289619a6c351e758f317ec0824bd76eccb209b6f087057c25f1bd01a47897715013dd834867 SHA512 bf27b8243ed482c202d120383374f19ff09422535e24b9c1aebccc66529bf300ca17b8bbc76d67f98ac092e614497afe3add9dc68aa69c93074df05762f91232 +DIST foreign-types-shared-0.1.1.crate 5672 BLAKE2B d2e42e04b6657e7a69fe0bd20c672176629c743e49a55fd007bb30e289710b70045d445ae9cae0eeaa747ee708c90e8abd9b5fc39bad8ec0666befe1b696d4f1 SHA512 bafdb2143e136fb0818e2ffd90b5c862b7181647d6568947d4e4531012bbf7a57b597221ec7056c1b562dfc0c3b5dead26d1a4111ebc15e7863737a873518a4a DIST form_urlencoded-1.1.0.crate 8734 BLAKE2B eaca73d73d16242f3fa3e38e23531c67c01404697bc7b7eb7c64fa04167dcb403a41818487fc46c5d9118842818472d549a2f5fcef5e4d962461e1c103d895d1 SHA512 9e245495dbf235b147e4216b313f2e6a96357d2782a66d71c08c2902c6a065701ca8ecdbb6b2035983a83c44cf36c921b5c71d63af0e02dd39bf5f8347117e11 DIST future-queue-0.2.2.crate 21764 BLAKE2B c07c0759711dfbf314bcc9d60ba025806e301a1e5234a09d0a0a566ce6336203d5f79efb7c41f2b240ce88a1746be431fc694f68d893e5973f86ed6218a4a3f7 SHA512 c212be6a2760d463f33a22f2fc83eb8356b39d3308ca198326e148fe7be7fb8026667654469c0902fa7515a419a2d6db27151c81e2d093131d702dd355fdcb6c DIST futures-0.3.25.crate 51664 BLAKE2B 8324abc819143df0f11e76ec19a50a9d6df87dd243610ca756d54f519058ddc25ce72a7652698dd3dbd00631eb50f05c7b4567cd87a65858fcb4ed89e2d51fe6 SHA512 1b41edee2927cc68da7101fd9ce8616a61b4102bc378429b8b53adbabda584a5e1df98bcdb2b0ec73466c5a51e996dead7b2d286c7025fcafaffe5e64d715997 +DIST futures-0.3.26.crate 52163 BLAKE2B 0edbbac4e56d29bf910b1802163c40c9b11b8bbe657a67bedfab4feb539fcb998a2bb532ad78f01d70be172d8a9e7fb4f21b57307ea4342f1ff85197ed5a72e0 SHA512 21ef0cc46e5a2954d396f705a71e5f5e12164f84ea8e79dc1f0efd4955bb5d3c857e5c9694f3d16c4b5ce6aed9d58ac136892ec0e69d2ee5f461c5b93a85b553 DIST futures-channel-0.3.25.crate 31974 BLAKE2B b0c8f2b3ac8b0b010aab83c6e8d2d7329d49b1c9727393f81f9af8c80b232508ff475fea86448540d2e9016d645ad8afb5bbf746e618078db78631a9b3616481 SHA512 1275e91c90a060a01922747d160435c04bba4686990912e5ba0a4fbbd91ebdbf4f5abbf3530e5f842445f7482e60afdcdbd836586b42f0277e5fdb1a2fcb7239 +DIST futures-channel-0.3.26.crate 32283 BLAKE2B f963366ec1a8127fb4be28104bf9c871d51951be9036cfe52d4ca66b0ba9e94f37a9b24c11e620da035be1b9a1ad0844737f7a755516f465ff03675f8c99a7d6 SHA512 c270276fa0ba9ebfdf5b575c8b2c31c21efe0c55310738aaf548126e1db004134141639c7486f8b3d5edf2ef7d712df45ca505f0150c2ad7fbadbef07b75044c DIST futures-core-0.3.25.crate 14623 BLAKE2B efc97e52dd0aeee34402018897a276a68cf94bf13fe37b4c0e4d971cc2dbc8cdf54d0744f0846049ff75192c0fcba906b3556f000fa8657f89a54d9356f8f578 SHA512 3b3c758c493255024df26a763023a5d403fcf1a9fd105b08c518bdd5891ada4fddfcbfc8cde6101157a209ab6d1555831bfeb49372b17e902b4fdd8a83cded4b +DIST futures-core-0.3.26.crate 14708 BLAKE2B d9bbd208b274efd44add6b49a3dd5344d9462e4340e646586d59adc5c33949f9d7582fb8fbb609a79546bc66258718b26615e94555f3534ed787c2f0151b6362 SHA512 0362f98019f745d2eb3bc19e504813b262342a511c403d4bfc89ff750d7488d48da476a49183c2ddc9862850c5bedcd29ff82ffdd2033d971ece68984cededcb DIST futures-executor-0.3.25.crate 17744 BLAKE2B 3ae27b7f4cca071c7f411e783781f2ba774da2d6ecfc9b8b9ae7cd9a4d81a58be3e9c967c1dfd24ab339b09d8d0f8cb10e5c3a7e34b5d1e9a96e28d2bc575869 SHA512 66b9bdce86c41d5574734a6878562fee45182a3a6ad3b5cf57895aabafa5ae610f440dd226887e547c3aabee792628a5f7b4406c4ddd909501afb66dcb26b64b +DIST futures-executor-0.3.26.crate 17747 BLAKE2B d82193267181a9cf931275314e7fd411771bb491b483da5b073e7e140bddaebba14e3c5f01db3fd9622e88441cb4dae2dc7b1d29187512c29c95adae5dd47723 SHA512 34a0c024ace1eb40f42804cd554f050261bb5dbeb3da236879236483303dba015c21ba54690f428e2fcb41a43a263cd811626bd2acd86836fab524a44648f002 DIST futures-io-0.3.25.crate 8911 BLAKE2B 4100c46b7ac6908e849d3c50bce6d563419a2eea7d05d27844408287cd41bc29310754012031e3068c0d6b90307c9de36261400d438046af74d6a86b0e60f31f SHA512 ad19dc9de5e3559ac453478aa5d154c28a174a9d6492c028cf4d7c6d9e2ec1ce3ba80aa79c0035f82a1bbf86e55e4a65c9eae488bc5dabd399419cfa8cf652e0 +DIST futures-io-0.3.26.crate 8913 BLAKE2B 68f0fa5197b006b353700f0e92c26008fbce0c0732f3c6a1b0e642f9d7c19d0b261ea80992eb33138b4d6ae3aaffacc47a70ceeca5300e8ad0a222620645550e SHA512 e3334e6ba43bf21b82ff79bd042efcc7b8004c965d3de5df1c60e98a6891c67b0b22fc82b692fb3eda0c8d6caa388ad64ecc90b1c2b58940d787f827069d7b4e DIST futures-macro-0.3.25.crate 11256 BLAKE2B 310fe02b66c014c00dac0c4795ced9ca9bf46dc48f964f50d6300009df2db8505987849823faaa3a0dc312cac7cedfea0cb892d2b0f2c4445bbdd5471953115f SHA512 603863a3249df6dea4ed249b71236526ad506faa5cdc430b3a0c96845e21ffcf800407eb31ca7f0cd45c989bdc1ea68884233ab0fd0abd1d61700830293e968e +DIST futures-macro-0.3.26.crate 11257 BLAKE2B 592cffe2fb16b9ce361774a3c6fd5f248fa54d307fd1b9d92890ff862df4f2a91150605bd857a01288506a0bcd6f7d4d251f955a04fa62a07e64acd88d474570 SHA512 f5eff68d441cd4d88c636d0492a177dcad6015a9ec6f90705c4125bc827c4e3718cf3f060456e4602818c75566cced2f2da8f6e70df8194e5c2219bb76c95112 DIST futures-sink-0.3.25.crate 7854 BLAKE2B af109917de26c608b21d2fd1be304428a6d78095168a0b14eb709136789acda0a6bee4332802c3fa3f1e65ad9057e765b43728b8aa6ebd6bebeb2f25d5f96adc SHA512 fc318461bcec3344c0658135944ce7ebf6756c9d1950c2c5e3ab3ddc7d4ef5b0f0858d09f14d7bbc9a9fec7da19236a10dec0e125e5550c965bae95255eb0089 +DIST futures-sink-0.3.26.crate 7853 BLAKE2B 8bd044ee7bf46417b8b52be3cd688776ddb2469e4459a5f202da224a173dac6eb95dab3b93399f0b4451f1c747d9be58b7759f7c820ec6873880913b23467e69 SHA512 cf7d926ffd47abedff3b9ef9dc0a1b6e2bea9fbf435a009e48d2d453b8ddbeafd770300f009c379e88550acae1e1dd71a680e459a98be1dc21e439fe7572a0e7 DIST futures-task-0.3.25.crate 11844 BLAKE2B 60635ba309e978f1b4ba72b29b9d5cce1d870d8398986eb1845d8194080ffd9845d8d2cde19ad0333843bc642cd08a8e5aa44b8c85763ef459c39de4a5cd5042 SHA512 d2278d52397390d7cc1028bcccf1aec009b16ffc33873b8a96cc4f456d7cf501b86660507489d8b284e0798e7fe68c04796471050b6fd2d0529c761d89f9efed +DIST futures-task-0.3.26.crate 11855 BLAKE2B 1d03a9f838308948e7703a20f9e123fc49f64b31419c6d617d0e23b0f8c635d0dca4840e8e50892bcfa3560a5029fa96f971ef3e0645a624742e4c026964d136 SHA512 82ea13f96b039d0c0c209cb728c055dc81622f5f2a0a670e9e1ea409124d3c7f0e9a4eac2cf23c4e6875ee6f3a917dfd37f90326c217df136c79d8eae058e9f4 DIST futures-util-0.3.25.crate 155866 BLAKE2B 574e7cddaae172827179c1d012c8088ea84141d453b154b4358350f53f94d13b776339b0fe16b6e18429e2f83cf5fa35bd5079537a044f240c1471014e3b6a2a SHA512 3e233a3093f3889af6bb5adf661c1cc32f821b00975bea05eee14c2b38e25974b65c10234eb060c52dea4c665ebd09895df666f8583559b7f7d7636070ea51a8 +DIST futures-util-0.3.26.crate 156709 BLAKE2B 6fa7db7676869b9d68ae6349d7cbf70062442fb8333177b6829b1d290b426ab9efeedd9dc49a6783c3f6511b6a3efcc9479ed9b5a10c4d28b7ff57daf280f006 SHA512 7e00e4221f3864cb8d66017258e0ce284ce730c49713aa37bff4f317934fddf1def70c47c8f120a5469766004d1a774e969d99631954a813461cf41c9e2c6d13 DIST getrandom-0.2.8.crate 30553 BLAKE2B 30211bc6a8ceb5ba765cbf068405cfc08842b2521c5850647971f4cb4bc9a5b0a9195ccfbc1461de019eeb7744ee69f934922ff21677259d7b815800516df4dc SHA512 cd7aea29f79a33a0de2a52a0a82f2b57ea8f27908ccfe00a5f42248766df88b225023603ec56d6fc634ef9c1eb67ad0135c90d4c695f6f659db0767e7fda44c5 DIST gimli-0.27.0.crate 720457 BLAKE2B 0a4fdb66844f3370203dc696a2f826135630b29d3aa78f378a162f5c74763565792c900174d859f4e15b32c951333fc35e46ae7c2fa293a70e3bcfde4cbb6183 SHA512 71563f0b086ec7e22475db77b4f18f05c706dd39dee37fd5df47e636e010c6ab1dae0f6759c6b90a0b2d7937a85878d9b8d62bbf7b5b7e2390335895c6ef2905 +DIST gimli-0.27.2.crate 721636 BLAKE2B 61a202545529618b44035450c696b52559d5aa8af091dccc613d62b21733dadde0da467d40595aab71f4532d1fc2f2a6b3744e0aefe89f244e54b9eebf422d99 SHA512 1c0bf53754db2503033c17988e1cfa824af4e01f43c874b02fa61a475467185b13657c7ddf891e06f5984db3ef6b1e37586b184443716dbe45db1aa8bd082ba2 DIST goldenfile-1.4.5.crate 5918 BLAKE2B ab8d1bb34d625ccffeeed54081e9b9ac5a06aae31b6c90492955c4a0a6144978a1715faca2f29a2f7b8ddadf6a8523379c84369f59a0c813adc0cee46afe7a8f SHA512 29f563839d71c5a3d7069e409f48b9a9a0fd2b443ced83f345808dd617ae2685d9486414319ec0bf4fda22af3344060466420af5dba5f50d43e1261fbdd651a3 DIST guppy-0.15.2.crate 127814 BLAKE2B 8f5d2a56f1628c398d4030a047c6b93d31fb4b9b1fd1b691436cf88b263eba6a9d6b3e58d94a7966514e58fad4a3ad554b03c5a5b0037778c35ff2a9fef203a4 SHA512 ad47c376020dec3e1127cb19801dfc5d2f6a181cb5a783fa424261c808f5c272f366ac44873c73d037f281b5614a3380fea2add1d2bfc1f6ac3b7261b146c3f7 DIST guppy-workspace-hack-0.1.0.crate 1031 BLAKE2B 2f172564e38673780aa6a45b4e0d1f9d9c7a38948d7e0bbbf1465eb99aae25fe2db3c25544f0b6d6c418d2d511515188b2ab1ad3366da9d946b1b93e39d16ac6 SHA512 5a30482283cb2dcb868ed9c2dfbb73b2e8632efcb3de0b33eacf3fea1a7ba5dea9b1ae796000c1744f8431dc24309e75e0a5f29f746fd1603aebd7cc8024ded2 DIST h2-0.3.15.crate 162238 BLAKE2B 67f4ec2210e83e16d8a931e4c83c21b3404d826278262174da6cd034de588b944fd6f8c2a416930870b7c8c9200ee9f2b0cfbdb42a94ae2b83f29b3e50455776 SHA512 54e006a0e70448386a8a8ce57434e75352e09e2a6f4457035fad47dc793b5ed69ef9cfb31dbc91b7d0d9a58ab5c2dd18e78190410356f871c14165186d40e6c8 +DIST h2-0.3.16.crate 162883 BLAKE2B 2465ba9f5c34313c7b07258bfb1eafd9b14f09340ab4b0d2189cd2404656088b6ae0a048ff9216adaa81bc32fbbb29f9167dfa6788021bf245850bc122dce17c SHA512 2a34cee510d39291cc8b5264a96201ae4cf78a1fa3a6f4cffbe42e0205315db5397668f7ce8a304c45c8ace51120037b567b5a40ca8451d5d2a87ad7e0fbc86e DIST hashbrown-0.12.3.crate 102968 BLAKE2B 492072f27eaec45abd2c5d7405c614c0c6a8221425e901bb6174bfa1688ee524408a618650126d6c683b7285b9bf0a21dcdbff7347e4d8f97bf7111defa1b7e5 SHA512 b3700fcd659a21a6b9b3777c18b37a83bf25542b4e8f2b963779a122f5d22e1742c064cfc03e649583e7dd5c6e90ca8407f8c51a0e8755f6a108682853022f76 DIST hdrhistogram-7.5.2.crate 316864 BLAKE2B 30e084cc658f42c9b29fcea5d0363045b25042a0a6d0faa3ad8140b70fad03242e4f1854a7bdc513c2046e93ad489128e75b4eee2cc8fafaf6d48480125d23c3 SHA512 3c039a26aa0af1dea71ea211cca16c0d86433d7fdcf5c7e5804df9ce46b09a0e6d5f5b123d5664cb5b88e16356a2ea410631a4d6c84a3f9a4ce970c3669740b6 DIST heck-0.4.0.crate 11161 BLAKE2B 13b8bc39cf3ab90e71433e3c7b3e5f1c19404bec58dc4298dca05d94d5c14c2fc97350de737cb78aa45196b1241aa8f1ccf3a11ca309da5fe0f6a657673412b3 SHA512 33bdbf4ff9ecc4f4d74cf06590e056f4d96bf0d990d5381b9da5b65682b2495ed74e27b45419c2afa986c1f6200909d5175b137ae73ced5cc8ac869e4e1bce8f +DIST heck-0.4.1.crate 11567 BLAKE2B 520aeea740cfa30b0cca12f73594ffa655f32959673b1c9caaca1ea0162e455546ae3033881394c0ba0516bcd5c9a997da02162e1585522d665813b9096eabd9 SHA512 8c80e959d2f10a2893f9a71994720f90747742bb5b61fc0a539eed3ea5679b140c48fd7f7690d7122cd6af5f7f20a19d412e3569fe741c6d31f6b2ce1e0b80e8 DIST hermit-abi-0.1.19.crate 9979 BLAKE2B 801e8052b85341cca388ada9db4b06bb1bd7b64474185b2ad06c0256b9e597639bd3dd4ba0053ea010f922e53969a4ab47b90d451fd9b94c8f2324055d151ea1 SHA512 1c877fcd562b15d2de9c151fd6c5f3ea4bf48abcb799e6139a180ffad5d64b632f0000d5707bbd92ff23a0e5f349157b9e0f5be8b50f03680b0fa47315dbb78a DIST hermit-abi-0.2.6.crate 13027 BLAKE2B 4df5306639511a5f69594e903f8ce62482cbbfbfe272a91a12f407483dbac4e87c2d7e5668cc06ca5c0fc149ca93a3152fe6ad4bb3b96cacf56a22cb635e5b7f SHA512 bad8442bb822a9c99f6536db16523c80f5139af6a139bcc359c03725c59ff935816e2ecc5c491dc362ac75ab2dff41ab1e9dd29431f5e9a109b60eb9b7a8dc28 +DIST hermit-abi-0.3.1.crate 13793 BLAKE2B ece7865a09f566a95bfba5f1fba380bf12836c3761fc6d5a3d5543d3e50ca0eac81bb567d50b5643849cf1a752aa651a0db4c053c60faa8f1c74fe2f12819d71 SHA512 a55fe9230e4e8fef63284befff74108f206e76067257439d334d33068875368902dc690926a1feea15611f14123073867d7e9cd21397bc484cef849d6e1dfbf9 DIST home-0.5.4.crate 8538 BLAKE2B 1512afc063cc31104e24a744aefc2a28f07d4ded12b4500480610124289e5b7c7f2fa3f1e66da36832cc45874c4bd2d08c1a584fed25aab4ecc962abc6675e33 SHA512 2494111301bd1281c89dc77f4f78d3bc6e3a04d1969938cf4584d465c01af12ad85022832b4a99a5c0ce6adc31a83c00820df2d513a09bf5c0d4fe44c53812a4 DIST http-0.2.8.crate 105591 BLAKE2B 254dff38c4d7dff28e4ddee0769a2f5e2e9e4abc6aab38e965cb7efa4069d1b59d422f30fdc73b5db5bb6c3fd02633dbfdbefd59bfd6ba352c3e5c9241d39d97 SHA512 8e8d01803552299807b07a9fddb45d92af089e43344eecacf2bee07b0e745f33558d26a5cde987ac0dd50f939fdac2de6855c8b44f7362e86d05efdde8a7d956 +DIST http-0.2.9.crate 100146 BLAKE2B a720a5ea6e59d1bd4e7b422fdaa30b3b9d72a7533c5e91d1c8ee2b1dcd899309b490479ec578aa3b51f1dddeb5c6510f28136e9fd1f04d2af12d2418261f6c03 SHA512 17bbc886d34f5aa4b56d82a605a54e920a244988085d06e70bc416f8e0edfa3356544f29082b3fbf3dcea18e741ade374375dd82ebe2276fd9a9508735a1e03a DIST http-body-0.4.5.crate 9242 BLAKE2B decb7a27f123c38afc1f7f36ad570bac6d5513e57334870621477c17e0363a8abe4d6a3360bb1c87707d188be66ff100f42237727304e07d8515c1faaa179d48 SHA512 d01de0747155283331086f2849d1dccc0387feda576f60d84cdd1bc8817ac82ae131c294b5cf9ddabb7ac91bfdef67bc2ea5fcbbb04f41b473d4c5f5b2ac13d5 DIST http-range-header-0.3.0.crate 7120 BLAKE2B 56099f75bdd71a87aa2950146f4d9012e16319f0ae2599ca951f6a19c75da419fbeea37f738d6ad6878da996692b4fa8f45da112c10d64583315ce45bb99ccd1 SHA512 8b2fe5341a2a9e988dbce9b9d0dd8673c68aa247fe0d2c2b1ac8b87886837a86622b03346e4f991420c53f3fc33d4829aeff7580da0f82dadd8eb7dbeab74af9 DIST httparse-1.8.0.crate 29954 BLAKE2B 82c48fdd6d28e94c42df180415ea3e30d471ace2fee09d7d8d33aff0a8e9a15d3029c90f3bb036b4f587c8902094a2ec21e4ca6ca7b654a82562bd84fe208ef9 SHA512 849159d9876e0474c71f3c7aa3a7271699b807b293832d88d52e4326ed410b25f9d7b9ad75a143a51fb5c8ea5016c2513348edbc050d3b62dc9a6737ae98ee8f @@ -101,8 +144,10 @@ DIST httpdate-1.0.2.crate 10673 BLAKE2B fbe2230262cd041e1ea8d6f9782376c25b0e841d DIST humantime-2.1.0.crate 16749 BLAKE2B e2ae8325b037fb175b9200cc5c1944ce579056c6662cce307beb6701894552362a25e371aad65f8fb9384945b48815ca74bb8b544a32e0a5845b7edd30b918c9 SHA512 3bf29ddd1391d82897c22baa0ff3ed58ef6d6959859f1f8ed54d324caba5b6fb4422e56790511ce82f902cd11467f93c8ab7fc7b0e0bdb719308a4d0a446ae0c DIST humantime-serde-1.1.1.crate 7886 BLAKE2B 4c66a483276e0cc5f4bd82fd49cfa0ee40c8ceda753919cfb7a8c794d098e9e4e851643fbc42a209d6ab00c5c62d9edc81c3bb1f6da218a09eafc96da9b566f6 SHA512 0bd72554e700f89506d2d1c8191832aed0065ea02aacb99e27139a60c883d3dbabb1fc3d60f499f5aeb20bd155fdcf21dc671aec1ca68d4041bf98ddf324248d DIST hyper-0.14.23.crate 186136 BLAKE2B 2f1d5a5175911e07f12bfb0f1e12f88bf2b5f895b766b2d5b483d7d60926d1e11f6ea59dde6a941f68846242f608f3b619cef004eb7b8b890718ea7b59d9d2f8 SHA512 aa2eee244461d82dd56efa1ac30f25fffe2ba881ce0623d02097237582eafd9313bbb52ee72d0c509cd1b43a10f715e9dc84dfb13c838cd7b834db565fb4c09e +DIST hyper-0.14.24.crate 186392 BLAKE2B a68f2eae7da3445c795662d239ba7010ae70cbf725fc1909d49feafa0129dfc473be05dded91e80982cd86fcb56621ddae45a97090a36a26726d4bbf82a73b8e SHA512 666f181badd8e1d440b1e650dddc7e370eca2baf628b89f5f579702b3d8f60b5e5e9b2e03f36cd64de67a6acc3567d1b1e629a82206fb31870d5d50238fbd18a DIST hyper-rustls-0.23.2.crate 30993 BLAKE2B 21ae6f0a8fee2ea2b21ad402ef42ce660da77e341bfe136bc36e6cd9a57789fd390a85baba476a78f5a7d21b06ad642984013b6af4d17ddc83c035ea629d883d SHA512 4a2982a43f98ce7335d5fa1575d35ed4e190efdc6f489a8dfddf4c0f185563f76f2067c262240161c4a0baaeb8fb3d8e21f8ad50e2f7978e3ae570e3e0e205cd DIST hyper-timeout-0.4.1.crate 13805 BLAKE2B 3ef4ba5ed9f9b8187c50a3af20bd88ca2608403ad668252a9db3bf6b0dee7a13c6905c4e9172e0b1b38a72998e03ff933f991b3bf2af161e8789574f7a5b7816 SHA512 dc0b989b4be7e250ebe92856c800117b666c83b93d8217c4e92c63cc84a617b30f1bc5754a071fccc4b03fbb160b9df758f72d87abb5ad59354c6e0a2563e10f +DIST hyper-tls-0.5.0.crate 13257 BLAKE2B 50cbe4ca7c1862fd3fff192de070341dd32bfb9f108b516e1e261ec8da7c4f7972b7b66e3d45c1497733a913b0281bef706994270ec8bd03eba7368612127aa4 SHA512 45dc16cc9ce48706e0b3575dca35ba1b6b3084dda8c2cc489d126e1c4f0bb96a9b2baa860d09f68c5e0a48c2a69e3eaf62f4f0406fffc4efefcd79d26c82896e DIST iana-time-zone-0.1.53.crate 20176 BLAKE2B 842c3c2a9f5b753363668af5162edb6f2734a51fa6c6fc8bafc3981f5f287451258f5ab31d5ea6c2a1df75934233849bba8dde4ee5aa9fcc456fbafa93d8b51b SHA512 a3f899fe9ebc7501bd22e75b2df34c3b26ad5a53afbff4fa552672d0185d8a291736c48ac2fa76dab36a6621e689b5584a2d7bd0334055994bb21077765aa7cb DIST iana-time-zone-haiku-0.1.1.crate 7200 BLAKE2B 9e748694423cadd6edebc1daef2aa4126904f5597202874d68066a15580cade77f48f1e6f2a77e17c7de0fae5204ef1262ad5b6f30bd95f4faec77748aa2ae0a SHA512 daa7570aaf5a07c990b07fdc2153b63d947598ed35aa9c35c4773772a6c67997143b120a18ff4c7c13474d296e81a92975ebf5b9aa9d204c1820e9629cb2e369 DIST idna-0.3.0.crate 271128 BLAKE2B cf8a2c43760f03e94953c6692423a12f28fe763aabea8785b93cd247b3aedd2aeef2cd99978a027186290016ed924db39d19fe7d397da1ab570be9646bbb630a SHA512 9b7cee27811ee52ed9bb39fe82f724742eef2e5370642b6c756bd134c8cbc20bb6faa9f296053672dba8a66f7356a08b2ca99f176407b173e2d566d85d066441 @@ -110,20 +155,28 @@ DIST indent_write-2.2.0.crate 11090 BLAKE2B f6a2fe0f5a05763da915e4cf7519d1c5ba4b DIST indenter-0.3.3.crate 6587 BLAKE2B dc4a73eb90bf05ec939634d3f1543f57c8b612e44e0fb3b38329ed2b9bdedcaedce84eb3f542f71c726b00c7cd273c3c390f827da170b5ba361cf669de4d1d3f SHA512 6585964939ee84739cdd19576faef467703415777e159ab2ff8b0f2a371fb2cd6c7a83dff4df954e9bea35844a43b72d93131dd4d23d328e9f365950ad831a71 DIST indexmap-1.9.2.crate 54627 BLAKE2B dbfa551d33305db06b59d07c1b4bf8d4596a67ff1caa03062d07f6d78b4604ac0533d1c1fe3c371702dd7e65a012bfb960d79c76db37e264d0b44be576969285 SHA512 946c54881a347892dfcb55648a2b881d3a4d113424b8c76d8957980a834895318d11336dc438a04601916cca787420708ad7e271f965c38bfeae511ec1dedf85 DIST indicatif-0.17.2.crate 54306 BLAKE2B 3658b633e00f889bb303c8dc09158de98b4e4984ca22d82c286725fed26b0513bf46f1c140b3797753064f18993511bda6f4a49f617b552fa497266ccbea2d42 SHA512 f4bdd668bc7e67641d67fcd7d7d3e826982856c8f4a035056dd36d516decefafc365fe1edc2f35a155b9d4a70d45944ab2da53774f09cece9aef6272ed765a89 +DIST indicatif-0.17.3.crate 53584 BLAKE2B cb65be2e4de6d2d6fc636ccbdb07b415314464eee2d51a88471bd0e4601e9a9f2f540d6d7dd81ac8ef2b693e3cf9ccef1184c8f32d213d6b31e35f2601d1b2db SHA512 9d536106cb5435f6944ad78fbbcad2dd15763f7efbd78a21da452ab6fe939bed8fa565909aa6db12f738035cd1417ddfbfba2c2a10ec14b8fb464acaf7356c39 DIST indoc-1.0.8.crate 13748 BLAKE2B 785203ebe8a6fae2a5c898d2c42264014e424c48fdf80a232069eafa207833d9613df499e60305e8ab5eeca9591e11e3305f4554eb28f208294ecc66bcd259bd SHA512 50f932fd16228e06f6049a685f1e0a8bb849fc1b8c0d72a1c68a9581efcb00dbb8534c7ee2421e2b9b3827402ee8dffb62a3858b5c5727aee4ba43fb3d50a9dc +DIST indoc-2.0.0.crate 13989 BLAKE2B 61d6a8e3133ec2f471e93f1a3ad5ebe0bb4eb5a49b88ddf14ed95ee5b6026db8d9df208d644a274eded14991b734110b1379fb2704180d25db60d02bbb1930e4 SHA512 92677b9b399d61a04f35cd603a8c39d184706630dc7459ee24d8938782351ccef94bed4dc16a45823b3cf1563b4fba50175b3599832ebd5346abefda6d016e70 DIST insta-1.26.0.crate 540203 BLAKE2B 8e700fc39b44ff5ef8467efc5b609481fe5ae5e3cf5f1705d4a0305c4a8c0299b05fed0f7c95d70d3000d5c0a826c0111f563d3fd1ff2efafbb386a794e95842 SHA512 7c992885bda2ca72919abe16415c8906b1d823ae8981ba1e40ab0ae5ca7f09829c9a3d79d22997aa744ff79acf5300eaa15eaa8416c09472092725e3b6d9f5c5 +DIST insta-1.28.0.crate 543398 BLAKE2B aafcc57523247f617b7267428d62b8a401098acc082dd77732e7f6741b220a6cf4fe612b78bd98f6c69f9e7d960d32dca1c259bfa9f5fb438ce4a99f6dbe8a33 SHA512 0195f32e4e47c03ec1c56951f671a5f16c72e1c2c847d39e4c3bfa90139209b1c1f5b7acb7966cf36fa66e4691cfab344ce7cd02443e8521b5c3d2bc77c703ba DIST instant-0.1.12.crate 6128 BLAKE2B 728923f757c1ee4e4a7afb90e460eed81392068961240a538e5c6468e15a0b6491f590fb5f6cc46e6d78901ca232351f65abb9f2f230d8f4983c5e58c4011902 SHA512 fae494c00111c51c840f9dd6a10febe403e27ebb933dd16633a213e9c20f2bc11adeb431c71f8a6713bf88f270a010941e15d83df294e658791934f83a5d2407 DIST io-lifetimes-1.0.4.crate 35815 BLAKE2B 82485bfd13189e0762f7ee501626df0dc741e152ceed875b91a3eed6608686b6d454939d557a0bc29d6bf210dfbe56d35131beb141fc95250544ab8ea992482b SHA512 1b2b151561dc79d1467b699590b2cb5d4acb39f75f38c05a94edb6d1543acca541b5a083fe7b606bc37cb2812692b7acb46996d0b096b96b0b085d31b1336775 +DIST io-lifetimes-1.0.5.crate 35939 BLAKE2B e52a66b90464bc799889c5fe32d8269fa125d5eddec709e2daeb9a0b5db20c5fa5b5f51dcca2b130b75b1980e42e2aa5e892e6133b9d7f8f0b3172856e6808f8 SHA512 73b884426e26c19e65e25bb44c6255f1c46178d946306d39088350151253c2b96760ac9df84a01609f50bbfc79680a58e9a2490a14f2bef2ca7d4c11f4faba2a DIST ipnet-2.7.1.crate 26989 BLAKE2B 9f581d9e849e332af2c70eca34e85e6d40bcc46ccda3b420058aac315cdfadb90abd08dc926195cd0c4e01027c4d35868b15e4ed1f5aa9579ead012cbb81c232 SHA512 c6ee9002f0500dc1a4820d3f135018694798808354bd4f89f983fe495a27f4d14c538c95c7d8b5e4d17ae6ea1cef3f424e87d80f83f6ea6dad92039e1a3166b4 DIST is-terminal-0.4.2.crate 7577 BLAKE2B 4ef84768184203b58e2b155256e35fd7a74169a8ccd52c3c74aec7fb1d6aeefe6232d049bbdbc40ede2acaf0be453caac19f758cf1abfd04cd1efdf4022c4996 SHA512 ce4997ce1b9f529a7d1b875985cde02440de288a0e823f2f5a9647e3a34658c5f56d254e85dd7f152a987f08f428bd82ce7e2af626c4b3c76cde50e8ae1e9374 +DIST is-terminal-0.4.4.crate 7744 BLAKE2B 051334469f476582dc6443b432bd476e497dcf26ee9d6ed9bd8ab4521ef87184615a5acd2d912ad8ff0cb552ba31c27a706d009c32b62cece180414ddfe27c9a SHA512 7b5906277f65876a6ef66b25b0ad44358a8823c1f69e4700b31418b78ed37398d37bd3e074e82d9fb4dc18863bc316064dbab70b542849fe3c5a079a7334c9c5 DIST is_ci-1.1.1.crate 4143 BLAKE2B f594a9c7b58927c8e1c8f53d3bb5ad2e6497ff72980938c9a7a521fea4b891e9eef6897088f3694e4eb5c9ddb090b9c4d01cc185fbf68d018381d3e3629a1008 SHA512 89341da9fe86cf4aa5a107f8dfab21020c581e661ea551e4f2e33e39efa21dc0c2e46b2fef08fbe75d16fb1028118971561b1a4e0c351ab7de6125b7102372b6 DIST itertools-0.10.5.crate 115354 BLAKE2B f24734bdfedf1dba48554e39b43669efcd4a43656eeb2c511096060daeaf049e1ad3eab232e757057750ce94aabad9fc8a0cf29a997edc6c4b167301c3443391 SHA512 d03c3cfba9841776913bbb6daad0c8945830c155f32ae4b48872e0f937c75a443f0ac9a0355f43b359ff75232f38b15f4f6d446b4be30b00b4209cf66ef770c3 DIST itoa-1.0.5.crate 10622 BLAKE2B 0d08db487ee791a252389e40e08e47a649d9eb90faad16bfbdfdfde46366082d2e3561fb8a62da80b122e7771052c50a0483e9618260d094820e20748d99882e SHA512 b90841e3a016a9a68cb090e4bf78959bbadecb3391cba71e0deeb5ac2723379ccd3251ec18a0bd055fba7cb6e71608ab1d7db990ad4d03cf2fd1289bd5834540 DIST jobserver-0.1.25.crate 21888 BLAKE2B 2ecd417446f9eb975119af4ec74c9b3463d061f5348ebca380f0ab9963ccce6dcea8c1671c7701f3f867c7e49d0ec130809a37bff466261a2fc75e80cc01d15c SHA512 0c014e7c72a070e3332463cfa6e9c9095d542a68f8631150bad0efa3706a2d6de0347bf7d1221cc3bc0f3d5f9840fe7188aad949559375403b929d43b4a524b7 +DIST jobserver-0.1.26.crate 22645 BLAKE2B 44bcc15330268ea29650e58605c7f21c35108eb64b790c005968955238e948d27b3d12e6bb06bfc0eb4a3fe5f9e5322bc0657200212bf87e08d9e043e008a5a8 SHA512 ad3ebb693018928daf399e918ce35ed0d4e643cfb5c78bde04697e41dc8adf2861023ea1cf2c5033a3026048ca0ebeb7f2f57a966ba8e420558e42dde8d494f7 DIST js-sys-0.3.60.crate 79257 BLAKE2B 714facdab00d567d074de4a25b69487400c23194d0f58ca784159483f9e02289acadce084b1514d8816cc9e0597800de82a5298b071b7df19a24df93541f23c1 SHA512 543dfd444539fad27bafcbbf112366f53d4ccf4bc63f8bb17820d818c3e1804656697ed6268a793f383ddf6b6227f7e9b3a11fb6fbb24e10732fdbd971801665 +DIST js-sys-0.3.61.crate 80158 BLAKE2B 07980db627a1f4f385586ad0609b5daf30d590931d2ca0c123f2d84f6c97be0ea935aaae3ccd082440c7e7da1adb4eccfd054a3598d99351fafdfa748f567b5b SHA512 f97bb546af2111fe072a23cbdc71e4fbfd39fbfc6be37132b306853d5737175d4c9c0c4661096012f7fce3612f81509e62a97df8bcb21d7cc796a8084e5b2e16 DIST lazy_static-1.4.0.crate 10443 BLAKE2B 25b2e61bbac48f0dcbc79c81d7bf01f2403d8269ecb6be3ea6147bd00f7a588df15a91f44dfc18ada19b21faa71de4637c7d493a8628cbecd0e547d74e616a23 SHA512 e124c0521ec7c950f3c4a066821918da7a9c6e711115d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8 DIST lexical-core-0.7.6.crate 494385 BLAKE2B 417644e5e33a70aa4165cba77bad45c540aaf7bb2037a5461c691b646a5470c7ad68a60029ac50f1cf25de3b6928b3f491e9b7ef5cf5a7d3281d83fd33a173f2 SHA512 fcd7e4e073e6440183284f20a6305bbe4aafb5513a20b8ed793439e4b5a5519532a0605f31e42539f3e6236003254812b459a9b9c47b3c449f5c582dd62c3172 DIST libc-0.2.139.crate 638983 BLAKE2B e92b296cf8c916e10e859722ed75f4790401662ff7aa2fe8ed84ef9b94a00538768be33c272f0881e42da887c8c43e1fd44d061343386216492a76fe5d308598 SHA512 ff5fae517c49c382dee9b1d7479b65b0a818780453e5c00c416847d02f42186e2fcf19a8a8dc5e9cc2611300690c6ad324f9c0f0e8172e913a1b781fb7c0b5b4 +DIST libm-0.2.6.crate 113690 BLAKE2B 5828bf7a14fc62b28da148284988292646909bba60b2d82bbc6ee482fe0791576133d9666edb1b57bd5208469c78f2b2560223631fad4dc74b7e0d42627ca5d2 SHA512 6ba263c95f1c555e66fbc5a5f7d0f2aca4e20f6aaeca27c3baa4d17aa00b88830334736fc58d268d98e50bcab65220507b0d8e7973fcdbf14600ab3f20c34a56 DIST link-cplusplus-1.0.8.crate 7674 BLAKE2B cbb93184d9deadd4912f6e03dfb7bb9d37f01b6d8d47dc9744724c848f297adb9cafb1599c2bbaffbff336f883e9a24c3cb4f11745ec4716a9a2c8cfa05f6305 SHA512 690afe063eb9726faa03443bfd01789a559aa10ded4bb3714ef7b13095005c817ad019fcc62b5f7b286c974a81e387ca3342d238e60ed7ab237c3628383a661e DIST linked-hash-map-0.5.6.crate 15049 BLAKE2B 0f30e388633c60433dcbee353507f1c6857bd210f0b61a4d166a9b95067bdadaebe49d5fca4fa6ce13072e26037c6f75d46cc30cf8dc3c9cfcb3f33b33630093 SHA512 031a87645381c96beff33572e4bac1a9877e52fd2f99d39918fbede17d72291b35e2eb69e07edec20c3058554c35cc38fe85b8f175c2a3c69366136fcc71f707 DIST linux-raw-sys-0.1.4.crate 878981 BLAKE2B b8708b06e48ef4e32d820b5a0e25ce12d3d985d729a2d7fef46d0b3b4518b4ad40d037d4689fb2270f9c2583dc031d0f4daa26500197e6c32bffd1400357934c SHA512 ee6d5a7a08b183681ae00890784c9e6b72e4c987b2ce2d7de6e7308b7a10d4a2b532db3d5121523bf5d4a262407f3033af4f4c1fd9f09be091523366fa30d768 @@ -138,29 +191,42 @@ DIST mime-0.3.16.crate 15206 BLAKE2B 9a599ca82fd0dd6d3d2dea68a47b8441b1024d016ee DIST minimal-lexical-0.2.1.crate 94841 BLAKE2B e6b8919b80d938d0b98d60d4f5f29ce43d77ebfcf8b18bde08909141915c6ef4f0d07a543538d4f3ba8527a9f55926d4a8e83473248469d087e80b274d701d61 SHA512 385fab51884bdcc7b0f2728a219ab164d0dc8efe42160b918f2c09f79ecf853fb12bda006d11e649f097bae1499dcd41ddf2a8784ee7d178cf2c28059e46078c DIST miniz_oxide-0.6.2.crate 54536 BLAKE2B 8127ebec5a2cee1c2101d9533da573e01ef1a0fcb169bb0fb1419973ddd2e6953d8dfe85f9509a5d1226643ad290f0ee1479fc68f1788ade7ddf9633d90bfe1e SHA512 250782e214572acdd11df87c2788cd5f78e8388d9b285d0a850918219678e262e8b9905cc88728f5b70d13920ef9d19c43d243dad8fbcc18f8c8462662ce1419 DIST mio-0.8.5.crate 93993 BLAKE2B 6c20d66c3b5753234c0ab0461642b63e84383128db775c6e01d50bade5a69081f7da1626f87244c2c45c2451690e8cdca02e2d1ca20f279ba6f8401fb006c7cc SHA512 e92bbc1d06ad8d4311d76f878d514d0c91e47de2c511c54bb53096ad689012c3d1ffeec18e2de05a5f66c03ad83150cd45d31edd203e9b9522ece13be00bcede +DIST mio-0.8.6.crate 93658 BLAKE2B 32b10be05ef5d1ed44da41cd03c1624ccec78b6a89b5104ab7a1a3b84dfd299bc7bf7f3671aaae0a2759a56120740915d380aff05af5f5f8b9e8e22fbcfa8203 SHA512 45b3d2a911b66be556dfb79d87ffcc57ee5f33a03fb30f319631796090caf8779e94cda37fc7a76685c69483f1cc7616c15440b71bfcc51239928d8879873f6e DIST mukti-metadata-0.1.0.crate 4146 BLAKE2B 5460e4bcc2eb2ddaafbb86512d8d103c7cce15baaf3ed58cf971c160c458a0c771382e795d522f724dc0d5a7baa64180d229de3fe6aabd97f0471cef7fab7256 SHA512 45bd7af3d22c703e06d9cd59c621862d985d710c88ba4ce1cdaa40d25c173f1b934d3ad607baba22d81170661a70d4fa4b2c05e71f1190d9893fb0d7058169ce +DIST native-tls-0.2.11.crate 29008 BLAKE2B 594511c364e639e309f32f37ae20ecfc5ddeeb39c3f7180c5f3f2cf304d8c323b977af933ffe70cce696a5a63e17c5fa7ddb119d46fc3db819a28e31a388640b SHA512 7e77959932f2859757f1aeb37b78fdd459b7b6fd02424f4b7399525b94c21d1f499a718775503b8f3dfe3b4b740e1cfbee77052a2ebd0994468addb3fa665e6c DIST nested-0.1.1.crate 6191 BLAKE2B 9d8e614294898df73bb88e3e73a406288ea7629551912dc4c78c940d01a928f69600a717d696faf860ec5bd50ccc7559f2138aaf2b2ec09f7518e244ef927002 SHA512 a2e0fcaa4069a116b1b904b0920f52b8d8e01eeb365152f6711b9e555057ca1c4a4cc821e43fd2248723fb40f3f8c8c804da76e3dc34af04391143e4400e0317 DIST nix-0.26.1.crate 277805 BLAKE2B 7ba6efa24a5ab399184623fd019643a132a803cf72a9b8b4d0070caf839e123fb4394773e0b816c0d024494d657eae9b05b56b0b4cc6ace6d07db03a3d1c461b SHA512 4d75ccc1a8c4627dc14b4a2080aeda721d22dd6d7c78e448131f7589d0ddb58fd5649eedd80816153a978571fc843f078256a6c09ceaf34b95fd3caa3e6b73e4 +DIST nix-0.26.2.crate 277973 BLAKE2B 86adcbeda37edda784593196c390e92ee069761d283f706c0390bf8983ba8841a51486a98a1869f910fe4d518afba5572490e9c69a021e12c598d094b41361ad SHA512 abf2d0a4eb83cd4bd43836e8b533f0f07f07979619c86c11302a2df0800d569f33f0dda0bc2c4136d36c79789d175eaf5d3928ecf16286319aabf93c720a1704 DIST nom-5.1.2.crate 136174 BLAKE2B 32387d6ded0fbcdee8a1a0d0a08cd36bf92c38906cd199b574b6b9b24f6c245f2287e04374f7d84e2867d2785aa16d8c01ae3bd3bc811829770232681e2d33a5 SHA512 53b8ddab62475588efae46c78b5fd086a14c0fa505c84e625fbedd6dc74d4ac047e9fbed7312b797f126e9ca1f056458d8ffe0ab13f0117de685ef8b43f86aca DIST nom-7.1.2.crate 117341 BLAKE2B c7956334c92b7f7d427e1eb7618785bc240217a398e6a5bbe58454af99d06ac997c58ce239355f5f8ce4fd29b54ccbdfd7a07d289810fd46cb83554efb02715b SHA512 7fdec020468d6a16fa1d2602478bf07324605f37ef6e2ea9dfc6aaa3a772fd6d54b5facf6b5f717368e39f269fc9218ffb6d1854db60cf2d45ae83e5991d75fa +DIST nom-7.1.3.crate 117570 BLAKE2B 5643b67990b7305e101b16b8cd27c447e162a7adc6d0dfac00920b0cb50fea98c9d4edca63c34f6845cba05f8d0acb407cf3045cf64a4cb28e53c8b6bc9090cf SHA512 1ffce08dde299bc0e0367ad59c7b6a83e23decfa11115ee076ab91ec53cdd9ef37e4c2103c96eff23a7b6b8b5c3f67c83ce1917928c7d4c6462083bdfa0c9cad DIST nom-tracable-0.8.0.crate 7589 BLAKE2B cd99e73a5ba50237085774767975ff74d4a4267d02ab3d296496c39e27e103e9f80d84bad0f1df122f6152421760298d11bf362ac01a21e1e7453120a8dec821 SHA512 7ac8c69e5512e323f746d2cd1ad30f654bcd72f3551ec1d5175a3d977927bde8552e56de3422fa1d18ebc72e5b1dff04386fa006380982d58c1c3dde9db78f8a DIST nom-tracable-macros-0.8.0.crate 1543 BLAKE2B df5a582644fb417743c6aa973af276627a0c02573488afd6fc405f9ad16c838cc1aca55013f9d7a291af63919657524e05fd5b431cfc2adbff276f0d6b8d5d54 SHA512 f37c694748d536eb1e6a772c45972a910ad0572852fd58759550c1a9269a0d028b8d66dc343c1aad40369d6907e6d9ab9eae5af05ac0fe9104dd0ba3677d9901 DIST nom8-0.2.0.crate 162020 BLAKE2B e196fb349cdbb263d4fc754f922cd3b819f85bd323672f2f23ad465eea5352fdd631a7e411381f19447ff3b1f2780186fbb738d6f04fff33d97ca060ab94c2c2 SHA512 0d4cca8f13978e9101cc2eb9fb65ad879929a5361353c9a04e9850061e788e942948a6ea064c6986440a2576c10ce84daa8aa21d75214f322691da5f63668454 DIST nom_locate-1.0.0.crate 14149 BLAKE2B 9eb142d9ca63282a3fa759229e77a71f3157c0a0e657fcc20e1d16a47c64ba55a9becfc8a25677a9afffe7e532f1753f96128aca16ecace1eb0fba5b93cfc079 SHA512 468c587685e73d5db8ae11f02d054423a82fd821b88c87e47fd3567d54946dd80a4a88666e728deb5c7580d9c16c078899027450ce5b3b210f1184918f043cca DIST nom_locate-4.0.0.crate 18230 BLAKE2B b04a77bf04356e5283d278e7176a4db1a704c0299ea527093d5f90724d7e7b50c2067614589f27592afaa4f4279b8af96a51f137088ba44c36b5d8b2a5e55b59 SHA512 671a694093cf8789f4e689957556781bb27c450791f30fcd4a53b1535d6592b2f9b5eeccdec3b7f29db749bc20a16fd5a556fa1a9adbd2c7d64b30a7f1853ef9 +DIST nom_locate-4.1.0.crate 19022 BLAKE2B 88494e7c4968dbe977dd92563ab623a3dde73331bff3de260e63c8d81b2bfde7c0dca29db7a4a69259856d68e4548dc494a99ea7b0733337fed42450185825d4 SHA512 15b2ca9f96445ee8def8659aa565b17b34222c434ef9b269e7c82c1e93c7e2e0b8d03e50561ac92a563b23684d7b3ea91cc4112862c0ed34029dbe4b8f1dc484 DIST num-integer-0.1.45.crate 22529 BLAKE2B 4da3e801f71ba8f92c692497e200bfc8d32183c94eaad91260683b09f4697c03175fec7cff5a9ff3782d5db5d514d74f22f7a61a102c0f0d2e67a7a4b4f29222 SHA512 731bdc09c3af7f9d8b171041f2957aa60facef93b06886000d8ba60d410aabbbee358d700bf31b2588b2e077464f290f24a0b712df7bb7f12972675b6c9bd735 DIST num-traits-0.2.15.crate 49262 BLAKE2B 942ab170b2acce1cb40e6847f766bf810a79edd293d34f3a27864f464c16fe2b99fb13171ba429cc6d584248de879434beaadf1b231a4001b0e8389ed6c1be04 SHA512 5228498af0f15daeac3c9210f3e6e71cfaaeb30beea81dd37f8eb06b9592c8bf3226a47597cd8592ad4c513964a9a40f1ab2c33102ef3dfe3800d22c8d4528e8 DIST num_cpus-1.15.0.crate 15680 BLAKE2B a4d98b29ad534de9bc262f58f615ec06bde5d5a2f5252f09b5a0a6ecb06a9daf9709ad9045eb08f7cb744d8a838854b9095aa73918e06624a84efbc11a9a5c1d SHA512 fd4772868def9460a6ee17ef6fc00b0bc74115eec891bb3fdb07ba5b5fe4057a2ac69eb31ba8beddbd3189c7be4545888e5724879f3a89132fbc9b32aa7bb10f DIST number_prefix-0.4.0.crate 6922 BLAKE2B 81bd3b588c788e6865104e5ce87119b5e0c5a526042963d52cd582ff23c2f8c9f32b4c445ef0397fc402b6d047e031d8e2c67ac97e191bde22e17662eec3a554 SHA512 a43b668d7314218b86ca7451daa9dfef71f6c9f6616bc34c12d94ae6030f182bcca9da83905cb46f3d49d0aa81385a787e92e4f3ae239658067adc249f8174df DIST object-0.30.2.crate 258743 BLAKE2B 1826b2bc4f2196337c71859df0ec0f7b08f877955c40a507a5f6d7712b3a1d251e2552e1768a99d057f49766c01bdb1b983d4d86487a7577d606b15b659a4f5e SHA512 a9ffd2667bd6239d130619d4984fa28a719b857f6dc72a987536b5097e574e7847b6f376e568bc30606c1376a484a060418ab69a06ba7acf9ac8deb4409ef637 +DIST object-0.30.3.crate 258901 BLAKE2B 73e190fcbf7c47950ac036306ca8e6e03bd1772466cd580fc51e246868cc69c4e49c712601759533ea650c806a8363d0d77582e1363ce2b5f92d4b7439fde91b SHA512 61414475d3fcc7c4c3ad8c1316f6ada7801e28590d98bd425fa246f091d464de4eff7eba7cd74904517dee95ae0673e3d581400adb971306955a0aefa814172c DIST once_cell-1.17.0.crate 32736 BLAKE2B 767fc8f362ce5ed7a9eafceb2f0764a2a1c7f4070e22d1e6e2498b3c841c5f761e77fb66a34b899a75d48f1563f6b9b73b90aa9431055d4e0269c47a1b043c1f SHA512 291d87380c0ea17fb3ffc9fdff8620d2ff55601c06ef65b2f0c54254fecd5b488645c6e94c6026b82071893f4d420491ff712399a782e14efa1e323e5c299c46 +DIST once_cell-1.17.1.crate 32856 BLAKE2B 8bde2aaaf9ef45d1f6b8458686179f1fe9295ee8faea269e9b49779583ce26ab9dafe988c3584e841a9e5d05e28430ca967ef3b25e755f48f0120d9c99cdb7bc SHA512 1302d51801e38bfee23e74c0046f1ecb1d3c27309b5fe11c2b6c99553b357db502ce1718695602f9d8b10429e8ff03f91c016d5d604957083728293824c05904 +DIST openssl-0.10.45.crate 234763 BLAKE2B adae6de12bb2f044c091c2899dba4e45d4f329d018b09943aac5e18e5d91d6a7667e47a33ed9e20a0e41554c2a372ab1d5a4a3ab54dec343596850dac505badf SHA512 bf67effbaf5ccf576a062ebf75ca14579db3da5ca456d85b60d47415cdc52fcac0c0309dfa55a909a452cb9cbcec9f132274187596f040339239e1e15f4f98c7 +DIST openssl-macros-0.1.0.crate 5566 BLAKE2B 51116df0f86274435f41b8bfd2b385d5a6464560a05c214445dde5cb414999d200c55e5529fa98e95abfbf26bdfe31c88708ddfa2a81671341792059ea703c07 SHA512 7e37a0c05781da13bbaf4c056c19d032a93820cc324f9f6e5743bfcbfb30e057501af1bc7cbf5f07e3a05191678cd5ae5bc4d6832f02ce75bfb03c027d18abfd +DIST openssl-probe-0.1.5.crate 7227 BLAKE2B d1fd6a9498b3ab7f25b228f19043067604bf20790530fd0ab6fe3d4d3bc27f13e6e94d1e7ef49314c3663477d8916b8790b90427f74976143b54b95350895165 SHA512 7e560314150709a34520472698060c4f29689d4e608dc4dde146140aa690350d3603279c693367deeb0f21ab34ef61956143a3447827a2b7a3d578b9ccd6552c +DIST openssl-sys-0.9.80.crate 61687 BLAKE2B afe13340a51b5f7c6242085a0861c02ca20de7ec24e12efadb4eafd55b769f45d0ec4866799bf64bc383e68933277503639f148dc600f8036ecf6c325b745f5d SHA512 e141423f7a7c72d9062616b87163d2e1ded028ec165b3758c52a2e5f8519cd517fb1a89fa0ab3da27e0b47a1f5973772673d8233e98cf4ef79ded56e0363a072 DIST os_pipe-1.1.2.crate 11375 BLAKE2B 076382ac0ae63fa10073341f6a61a3749baf18ed3a7fa78b3fe4b9ad4bc146e53a1820f61de7390b5d181b4311b159ff6e4801a900f7d3fa18cc771b46c60163 SHA512 daff52e9f78695a964b7d9c0253ea9f9d97418a66875c01af161148b3189e88f7cd23e794106e8780ea99d8a57efa3b01a9f9ccce32c16187be99eee7e1832a4 +DIST os_pipe-1.1.3.crate 11438 BLAKE2B e3127b18b079da295ddc9b3887afead1ce0b6ac28dd9e3ef8a2e0a454842c70d2cea60d5b7db5a44ae6557a60825655a937c2c126080f19af925a1f829232bdf SHA512 08ebca25a9364e476a87327212b67460eae383d0429e63ca85e361fdd1b69c382eb2a0de4a7ceafb1916029d219dc4e6eb183ae621eadb98db629e8eff5bba0d DIST os_str_bytes-6.4.1.crate 23101 BLAKE2B 252fc826f646bbb999fa80b47f58ac9a77e409b10a99284c7b669304c0cd701a3d20e690350018f5d7de8c6c7d38521f3413ac81d08067dc26f76b7c0e5b056b SHA512 2199502ad24449e08370686a596f905325f5b145e105e8c7bf90ed7729bbc405e065fce62c98eada40f77f0665ca041db41f16cc8e62473501eca32c24e56f43 DIST output_vt100-0.1.3.crate 4473 BLAKE2B 8c75dbcd413e1273ddf077f3b57996953d70376be6e438ee1a4de83a8c3c535d4cc866849aed91df74aa9b22d41d428b1142cefe035dab7404ec89af9efaa832 SHA512 ccca3b4c582e860b0643dea78302fbcb96f8f86b356041ae9c685e7c48f1721fd3366dd1bea39afc1bcef03b298d0f6c87918a1ba92a56e6b06bc8b4123c0d89 DIST owo-colors-3.5.0.crate 30310 BLAKE2B 6fa9d00cd72d149748e5280360e1f0b0ad8c78c5678dde6e72daeb7975a182b4d06d835cba1ac307428e0e638456cf219b8d979c24649623bcb7403095cadccc SHA512 1718f03d9f3296ffe3145161e038ebdb8dc40b69c0e2cb80a51866b519cf857b6573aedb7704895401e10cea11ca422a384c3594b8762be29eaa90908e24f7aa DIST pathdiff-0.2.1.crate 7142 BLAKE2B 7f9a162c2add4acd69a81171fdb31aa9a67beb4e1be0fe93d76dc46b320729257240fca5d65dee38901f6b6ed1e536e3fff09c93cf3482859e6ba27e7206fc5b SHA512 a646f271ce81d5f6d4a8e0d98a2c802a8796a961cf8fe8177911e7757bdaecd8b156ff22046f1663a9efcd5fef1e6f000e5509d3949dbaeb494126b7e8a546b7 DIST percent-encoding-2.2.0.crate 10075 BLAKE2B 397e59acc3953868c709244b89a2e0db3304c0b574ecba761026b570a485f2cb5b0b2a0159586d1f342ec395ef02ace536da3bc1c72093e1cf93f8b37b26b0ec SHA512 890a5256d2b4290e12e04a02c3529f3a017faa2b6016a4dd0f08b36509f0b1107eacfcb4702024d6a21ff8852a11f263c1adc096b16ef8d12c45a734c087fe68 DIST petgraph-0.6.2.crate 182513 BLAKE2B 553dc5c95ad38c52a014b20b10b7138f6eb105f11772c4852cafc9930dcdb159847c87202211a780888d81997efc38e18255c784a71f3fefe5c1177461df1c74 SHA512 6a4ad4bc630e486ac2db107a9ee3e0d6116e76788d2d182a086649eb00321cedbb7c9165012a3957aa276c0eb29e0b2b25210311ea3c662f2467d3ef1afb3fd9 +DIST petgraph-0.6.3.crate 185740 BLAKE2B dc3d4a0c29662f761bfc107d9654619a3443b07890e0caea5851a6dfab2f071181ab94c521d641197e159098885363d7ed4e1c9c34333fd1339c7484c2237c4e SHA512 9b624ab93ebd06fcda716b1e79dd82c5594a11c71ea0ad806b6b708fee3f432ee174ac292c5af3bb0c84b411c26564ad11436624a52ac4e74ed40432778c21e8 DIST pin-project-1.0.12.crate 56972 BLAKE2B 1f6b106cd55b9692bb1d671bfd51011d9f89cfe8bbbe030c64e7ea57b6efb0765838b03812708a7aa38c197d3b43328a9d88fdf93abb51f4d1a3061301b74414 SHA512 434ce0a0e16441c7aa6f12dc98584a0e7986e9491eb08d5143e3f64e1f73dfa4db9d0fb2098f16e5a36f3653201aff735437d2d1d366c11160c09534c75fbfe7 DIST pin-project-internal-1.0.12.crate 27956 BLAKE2B ac5cf33b5981e32ecf802a9de1576f696006ffc035b33173b1606a1d12c7b12c53a217f5723e8ebd622a121345f440b200ab3972410a2f161a5ed83fa8769ed6 SHA512 f3f4839c5fa7e3232a323283ad9636cd03e1bab79b439cc2d2ea954d60a3dfd417aa4680b7a34a3baa48d7e02266cf16e56b719a905f04157c708c90c02e45a9 DIST pin-project-lite-0.2.9.crate 27713 BLAKE2B d6985b5add432fb6287d1b0c9fb0cc91a195f82c5a748a9ea430e4ba884717ec7b16d730b5ea62de5b2bfead1771da2d115b3776e12e605f70f2538f374a28fa SHA512 cef0b77233adca712db1183f780732ea577cf1b27c2643de221d54c837c75ce749f907e24a967be7474812c7682cba613a3fc5d553a9578a1b80569da0e562e4 @@ -173,14 +239,20 @@ DIST proc-macro-error-1.0.4.crate 25293 BLAKE2B ef918c5efaf2545ab38787c8d0c07315 DIST proc-macro-error-attr-1.0.4.crate 7971 BLAKE2B 98e2925881c2be186e22c2c439697e91d43f807eb61a5d13e3b0b4321ed50a74f3d699942c04b89b6fea0f156bb5d19ebcf22f9cd4b98a7e6917c437600ed823 SHA512 2606afa9ec78d7dad4500c98d3a5ecbd02c6b53ab829c742bed7f57b322a95238ab4e01cf268746815f1424fd9b02eddfa30e72f98c66106f57765f3d3116495 DIST proc-macro2-0.4.30.crate 34731 BLAKE2B 0a27a06151b54e4ba50f08803a5de44d9c7702ed72cab1b775408696057246e3336dee3a61560886cb24fc4cf582339c8bde7d9211e4e0524f2c719b774339be SHA512 73a8de3f1d76a8baf2d45afc1497bba8c0cbf231bf9b6750b9cee2473f492d5f3957ac149998da720acc8287c96d604971b51dcdfa629523bbdd97c297856ac0 DIST proc-macro2-1.0.49.crate 41977 BLAKE2B e31c81d3b836404bd2c28363eb0cf2637cb7fb1ff5fb39333158be2b40b15f6f8f582edaec51cabd32d7b215df39c08a9632208fe4da36fc435dc32a48483a6b SHA512 b490d5cbaa790163aaa49c1595e694dfaded61c59fc23f9b6d359f4b774ee6eb20ae8efc5f5ebd59c8ca75da85baad61c065451c1cde03b3b6148e2aaa2c9e1b +DIST proc-macro2-1.0.51.crate 41804 BLAKE2B 579e5a157da81cd8350a6407603e5f8102bb9b6618ea8e81ced1692a6a6f4b57bec35aeb965b643f2542f65a3b9965fbbcf7e0ade35cf159270583d34665a628 SHA512 10ad77a5d05437c1b2c40a8f82389d081e64993171aa6259e8dca98d9afb04f5fb870f2037ad626a280d59c1a89fd4482bead701d744d6fb7c893bd9e78dfc1f DIST proptest-1.0.0.crate 189237 BLAKE2B 52c7768f092677b947b8d04fb30ecfb556f5514ed29bf98c0a5ea773ab0b4433c3a04d1df8d30e4b5afb174b8c9bfc13656c75ed3ff16150d3ad3dc0924f1e12 SHA512 c8a45bdace0e836db5ec0113f3794bbcee2b75fa5b06caf84808df7a052ef117f22b48fe12413f86750da710d5e5c88457a77ecfce04e1e8fc5a76dbba3d79af +DIST proptest-1.1.0.crate 194125 BLAKE2B 756cdd87a2982848237d6d0dda5b7e34c8a55a4161c43ed701cc383e31fe522fa4e5b729f7a0bdce86226f94d0435fb5c46b6fd2745c522345bccdf0373f2c37 SHA512 ba7eda462db51b7202db2ec53f52e1fc9c2cd92dde588f155fe30524e25569e05ae558cb7076744cd2165e72dc5be7b883f4dd7dc1e8d80a6e791f989d9f4e35 DIST proptest-derive-0.3.0.crate 51526 BLAKE2B f1519b385691d90af74f1a10b3a2e06eb4c3200513046feac5451ec55ff213811651a669c7a0830eacd5df02d1b9ad5c1f0c49225e463faa78013d175d80cb9a SHA512 9d7a6fe68e5e35e560a73127aacd034951c378271608dc57325ce7166f3880c1e700c7c37130002cc50acc1169c746455aebf6b53bcc8ba4cedcb51d6c1af264 DIST prost-0.11.6.crate 27507 BLAKE2B ac7ecc890aa56ff1096278f22d868f80e6c5e120dcd3c16f5e9daf43e11f097b6c505908d4c6a046a45c2b4a0dea02c8c6c5b82b0b4e14191d4d13496b18ffc9 SHA512 f726a064ac136a653b11ae20aec354a606b21e91a76cf62d0878bac91745b4f2c6417642255b709efec2d95ae0f2385ea18151aa84f6beb8fd53b7f6ff173522 +DIST prost-0.11.8.crate 28958 BLAKE2B 6399535112bd777786a539511b5a6eeaa2a381d1e8bca4970dba2000d6fe4c7dae3a8e71c7a90640e38387cbdd7ef5a4bff40485792296b560edcb8dae86356c SHA512 1b9aac3cfc878d1322560a08fdd5ae26a683175e608d4a784ff55b625481ec61705eb148494f5a95b5880c05f45fe67a026085651ebadb1e05b8ac69d3ed14c6 DIST prost-derive-0.11.6.crate 19513 BLAKE2B 5056fea26e4fc45836bcc5165d74fc97c9d74a43a52cdcbcaf1278af18858c043e59afc4aeb71c8bfc58a8e0cb7d9f2d8b56b39b93ab0ab36bc85e42b26fb8a1 SHA512 5716641e326b17313ec817e6a8dd84c1bc3545c0a0607e1a2fd6d3945e701e4660773da84d857f0682881cc031e8a014e877e6028ce8e4cc3a3343501677b787 +DIST prost-derive-0.11.8.crate 19510 BLAKE2B 06fa9ff3042ed9c52a342e195513790fb236b25e30b9b8a0ee060e46ae18abe8172b597c8506c0308d0bf445d434b41b51b003c6cbf6f499f2f88097925b54da SHA512 2a4359aef42290a8a9f118d6b5907c9fc34b3538349c8c813f341bc0cfce8819178ac8ec09ba7a6953d72281bc013ccd745515d93ba24198148a2c2206a8a982 DIST prost-types-0.11.6.crate 40556 BLAKE2B b8d3591918a869416cc7e6590b0c9afba21169c97e8b000fd4a11cbe962a8018340aad7110dd08aefc1ac047b07f3d05926d82f816f423c06bafc1d491eb39ec SHA512 ef01d97d90c14dae180045b261a3f9c94ef17df219b7af4c58fac0d348b54cf0ee66729270db8bd8b136b2025643baf78475a7c56177ebf15a9306197136868b +DIST prost-types-0.11.8.crate 40806 BLAKE2B 8a7c528571b96d257088740bc346a61ebec67f882bfbb0a9e80748d6de38e5c64dd6fec328c70385e585357d79590d606127eb922749ffd196a094c7dd798361 SHA512 fa52c5c4fd5244eba62adb5e2c6a39082dc8f0891c46402404377b064ea73918c90efa061417fb784488df8ffb77b23ed641a97ecf42567208a5402ef783da94 DIST quick-error-1.2.3.crate 15066 BLAKE2B 1c61525d383f3588c1c5017f016f60b484bbf2035e7f63c553bd9a49b638ab0c6106ac3676a41072b24da4e13dde78706e0f99fd1ec9ee329d5be81d45a85866 SHA512 f8aaf9024d20ccd42b706c756eed8320aee339f8776392b47a41cc82ca06b03df1a5b1f00854cea96689c5af261b4d8c5d2b1a242d10f2755e7e33dc41be35b9 DIST quick-error-2.0.1.crate 14265 BLAKE2B 3815c89e960923bfe0abc962c38714b953fa1d5af991f3de22d1d084a8cd1ba1761fc961ba97e06ead3992ed1b61f525d04bcce459599e5546315932281c1dfd SHA512 e028deb598466ae91663e5d090606be4f117662d0fa6e0c0b0043c7261f26787057e84e644cae72a45b1a0a7b1fb03fc9712faa3abee94b97ce2c8d25c365c32 DIST quick-xml-0.22.0.crate 132066 BLAKE2B 1c1d71fdaa022e430e6265530f3e40924c13457fe422e4355eedfcb5ebe8c75d0205f73ffea0968d8196d74804d7d0fbf61954852c98831d510af6c45dcf6923 SHA512 15e56fafc84e62b219977c5ab0f07a021bb71216d7cbb673a7ffec4ec6bda36f97d7b7034751b0b7d745df7c17c1a591a281cf2c97aa4fada7327979711ae3dd +DIST quick-xml-0.23.1.crate 161488 BLAKE2B b347b9309fe0da813ae1e9ff6de100bb99f7e7b08ac46252dc305653a827087bb1fa003bbf86d1d5a6c8fad3250df3d43fa602752d57d538a4dacb25f86ce95a SHA512 885477b984ba86d4d42c563a4a0af4c5b5a272f75289e45e5ab891ed44b0bfb4d5bf5e15553e245473c115f648fafbb86ca2b96897260c0ec14910aea537d688 DIST quick-xml-0.27.1.crate 146699 BLAKE2B 96926ddfd676113854bec7731acb7e775cbce4fddec2bda497a3a65cb06c3aa1c0566101305c59dd64978eaa5b100602b02fc9ccff79da75c74e609a9b1a67e4 SHA512 0b9fb9c7ce65ba00d756fe61183596912e326fe09ef83afb9d64be0b9f16e1b5a74c5bbb181f8f32c2d7fb3a7e4406ff814b3abcf481ad81acb5cdd4922d8787 DIST quote-0.6.13.crate 17475 BLAKE2B 985287f3e619c46b052e704c6da78565fe5d8e4f9a0d503aa0e8818f595fbef32a437d67228c35cd02d817ee3e19efc03e75239013a87a79553bb252f15c8ac5 SHA512 bafa9ba42ea6ff2d6df652384485c58327de6eaea2832423eedd8ef8b4aace673c23b70f1f22106515ac13d7f625cb8b1a5e8c4388c1701ea3cd86fb9ac3056e DIST quote-1.0.23.crate 28058 BLAKE2B 81c483fa26b36b5c4dbe85b386a74f5bfeaa854a99c0d678374507613da916a60e3f5b14d4a4d295e1c9ef0413fa1f16447df8f19a9db8cb0485b7a5c327fdc1 SHA512 3bce6846dda94d285de15771549099e60df39c8395c498b372c90a240f77df31d6d9048127913ec1c7ed8f3a189470ade1db2bede406bb00fa715ea641ec87c2 @@ -195,34 +267,46 @@ DIST regex-automata-0.1.10.crate 114533 BLAKE2B 0e357229f6825f14339b1d7c40730b83 DIST regex-syntax-0.6.28.crate 299288 BLAKE2B 8554370e269e888e603c403089aa6eb4a087ae65fec016a428e424289990a07826e37a2e51cd353c7d530d5b3421e2db6a8f9d50e62379867bb5b6cbc57f2436 SHA512 ba5fb1622a330b67a4eb820551c7f20dbfdc6b38eb697b9bfddea4cf0060b473472045e93aaf6cb9727ae609e06ed285e1e42f06f34ac730ac39fb90425bbe85 DIST remove_dir_all-0.5.3.crate 9184 BLAKE2B ab7ef94e0230ddc9b363f038254a180881bbc20eb04a254f97e6f71ed491c99ba1c88f5e85632d450243882a4a0df63f3b8b183bc1fbca9caf30ec23d577b1d7 SHA512 50417d6d8a33912193a1ed37eb72b47431b12ae65d2780cdb7080c3d141e63819da13751c3fb737685cea322f70b36d413389c3dc01aa12b4dce615aefed0e2c DIST reqwest-0.11.13.crate 144263 BLAKE2B b5391b87f751ad38a29879d0d6d746eb50dbebf07155a7f9af11ff2a5f7db438ae0e7c987150da0d708c0c299ae012b1fa328d979d60090d2f11ffd28be3a806 SHA512 8648ab7581efd412ce5b728fc456ad2a99feaf0d41c1345c89a65731ed762cfce1dd667a220e5f30f24266ddf78303bc167265588dd3cf6c6adb715e5e15e166 +DIST reqwest-0.11.14.crate 145216 BLAKE2B e7ae6b489acc2b8a8eff2f6d34db7817ac811998bc6c6c565f93b99746b3e03e823ae55c8867cf39844c4e6ec412c9248bcca9725bdeae91928d37f670177cd6 SHA512 b853212d8495e98295e861b900e73ce80be1135ec9904b57dd75de2102fc465c3e3dee93c70c07dc46ac67b56affbc0f88a7b65c706521564a7c1ac5f6e62115 DIST ring-0.16.20.crate 5082615 BLAKE2B 6011eb7148c2d2ab410e564a06604f4350e07ea030e4d7dcb30574b977f0b0c7e53e09f6e6dbb2d068cdf110262876c48dfaeeef1b691932a056fe149916d934 SHA512 d97d1b08eb796d4c107426ff2c015ab1f221612500c8a57fca8e3f064e8c0f5ae2a5e6071d013313cd9f4be8fed4ba03beae84bd446f56b2b2ca5d483c328191 DIST rustc-demangle-0.1.21.crate 27920 BLAKE2B 73ada923b9b293c5a9893f86fda0586139afbb7d56894cabbd70612d1fb0330a9e491d5143fe3498a0c8d3e1a3f8e63c14b20865926e4c831915592486ae32d0 SHA512 4031b26863a726cc6d3398b48682e0f0f9e5665abf20a5d35343a904ebd7c0d3752dcdd3a049b2bfa3e2a303214dc39a2980700bcc64464f7029be3c7f34727c DIST rustix-0.36.6.crate 288718 BLAKE2B 5b1a09f8af9bc4b7ae045d038734f3568896c75ac0e77d9d1d74aef63e461f14a2934129cce36bb2d450fa94046770f6d394b0469b072b16f82977de92fa1e50 SHA512 d18e44d7546024d96a0ab6256c0913d9647a3290a60a5c8ed66611ab5983e7e22e05bddd61b12cd5b3d864ab9f1a2ed604e48a1336aea9e95907c2fc0cbfc4c4 +DIST rustix-0.36.9.crate 293797 BLAKE2B 8313a1eb006c5b3fcfdd3b72b18720a4db8687be2d4bbf866897cbe22e71d4e8980561cf657cebe1ebab3c041f2e412539ef3f0da3e18fd13ae6a2577053911b SHA512 b6e3011805910333315d139d7dbfb28ab4a35d7e0fabc6ff8ca2d8394334f0587a4c26c069550f27c67f3e2823499e6183adb2aff504523249d65acf11d2c02b DIST rustls-0.20.8.crate 270142 BLAKE2B 0d9563e302eac78871eb8346c72fde2a05618dc8a966198cb4d607b41930dd54487d9f4d9c8ebbdf943b4593d4cbb75543c3aea9dddc61a06500b4b322aa726f SHA512 4f56494987cd3a56f47dd07d31c7f73d262a4d003cf9cc11e0bce5fa85c87f18124b1c364186501736f0d40a1f193a24d5d73f37a491ff81ca8eff568559e547 DIST rustls-pemfile-1.0.2.crate 19347 BLAKE2B 3bbbd44a3cf1a414ea536af3b208aff1303229b9b38d57f39b3b164235da06fe9222a4947d6f26168d13539c59ea8a6d00defa515391fab286dfc01225d95cba SHA512 a70f30b23fd73d49527642d050ca6857edceb703e6a202bf80ecf47dd1c6923a9883e1cca8d5be0c7740dd1a43c60e045fe69c43aae9b2865bf11b455953bd10 DIST rustversion-1.0.11.crate 17485 BLAKE2B 940646bc3783dfc663b179e4624ed03d3726bc745517581fd3d6eef607fea2b2c75e636f1e1dd2d9e30cded59e2b9fb64b964f47693baf2928b515eba0e89f09 SHA512 60b94f8378cb1d0ee61dad768e14f50bd043d4c0e4a4e0ef4979d7366886909e1b186abe2c65cd36ef077bc2663f1610f3bc4328ab2f078b94405384a07dcd76 DIST rusty-fork-0.3.0.crate 19881 BLAKE2B 01bae755c66d7e4f72789b7140de35573d82961adadcc9febb841e332fc2730b405d4f1dc8aff1db6eba3ca03ee24d5dcd9a9c9a914fd2a94428c796dc9bfcd0 SHA512 8e41e12971c36ae1d4439943e55204e32fb4e62717355a2bf79152825eef7dac305c2fe22468957cb3b7af0b27004ceb18eee2d2fa0a6f8822b28b711f64ccd7 DIST ryu-1.0.12.crate 47070 BLAKE2B 02b0eec6bf266b7c482aea15ff83de4bf3cd6f607f8cd6f17f1c3ffc60cc64b62b15738907b4069f5816dd81669ed4f5b00c4bbc8705abaebe3a0846f56e8e29 SHA512 070f0b2b52e47cc9a6d8f003439d257c27aec15ffb030a92481ac22d5052436156e25127ea3ea7986cc514d2a7a924f9328710d743c216d7b1379beacae79829 +DIST schannel-0.1.21.crate 41719 BLAKE2B 8e3ce88c460b44839a46304c5ce6c02ec518a1f094165ae8589107cd32b79553e1c7aab581cb07fed4ef5935822ae4af8141f63d70e1f898a10e75377b1a057c SHA512 7457d4accd0096c791240aa19970307c6448486a22303e3b20b7fb25c326e50edb8564781e3d81ecb4a7626796ef78233c224f9baccc0de03f0eae2086624880 DIST scratch-1.0.3.crate 8198 BLAKE2B 804af80d09da85a88221c7aed7740a25a327bece99eeda0d7adceb3e5111917b70fb4a4e4e39c83b041d57baad2e3582e877356d58386e05ccd65e0a5334f86d SHA512 8fb3c0d36adbcd915e3adad108e35665ddd6e5622b252833349f89448a620bac6eaf1c212ffc172ec015e5af46e5637901c3442083b17ed29a2bdd9c0c48d595 DIST sct-0.7.0.crate 27502 BLAKE2B 93912044e47473d72d7415e01cbe2545f84d7d087e7a7fb210be7524d44f69daaa58edf487ea6f8e5f06cbe25ec02062b1b55978e7cb4761b8bfd79a32d4fcc7 SHA512 175d2a912e3f35dcb110991a066d7d9b0d47a0febe4e92ab7d92a27c886a7eb9abf203c9080b3e2cbda9bedbc816bd138476363c2a0c7367d3abc7e6bce83046 +DIST security-framework-2.8.2.crate 77045 BLAKE2B 8581e0056fc0422aef0122e4948d6244eebdad0935c73ac1b01fe31de19f730325f11446dc3dbf5f1ec4400de099eed1d61caef5b8e318365c4dbf9dabab3be3 SHA512 6abaf2129cff62220f152786a36fd4728c72fb2b55f3f75b396ffdf4344902077c8c0784eaaf07e2a4d9311f833298b46372a968b798dd838ea495668fde1be3 +DIST security-framework-sys-2.8.0.crate 17911 BLAKE2B ed066e2cb8986930bdcf55060fcb5a34f826aa27d51ba4236f8a8e56de8fe3a2b33be8da14c64c0809f46c0dce02a20729e6863af2261a04006ac65a291ddea7 SHA512 5e670f5f5d54f2bc11e05435b975d5d26d990d6f7446613dcd5be88c3cd52baeb702931cfc663fd5018c8c99f4619c23e57f31eea60b15d3a5e7ce01a291886c DIST self_update-0.34.0.crate 36631 BLAKE2B d0ec3bfebbdcb78ebc0cf147fd20d51f3619390b0838a22f7e8f791a8ae13fdf7a28e36d1eb0bb2af42d0027bdc13ce2747aab2855f64e19d2d5fe9f7a06afb7 SHA512 6e46c60b4dbc3f4e80f384c7324e62c94a2c9e445e12743bbc83fe5becc96bf281263a5f3070693e2b9180a70d2c82af382de832e5c5fa49ee150d5f24f5d667 +DIST self_update-0.36.0.crate 37058 BLAKE2B 416f38e8d521076c8ed0ac206543e863ae33fd6727e006a461fe81192539a0063559cb23567459d061448c77ff8072f6f9d835e71c783508cbd77358b7f9377f SHA512 fa2839cc969c2e5d2d5f1addaea071d3a1d742ab27717584eadd2f4b7ba31d1f26eb005c576a5a0a25874d0700e064185200e67cb15a82c320557a6daa0b9dfd DIST semver-1.0.16.crate 29850 BLAKE2B 6a6a680e55b6e98e5d0d466cae2f144531d3019988a7a241e7f0e54ebf2ebfbef27eb7af5ac59a618fdaa5546bb84c65e4616734b775fb2e90d87c1ac0b07317 SHA512 4fac06eb9ea475f8a31dd85e4d28c70a351656914e8e61518ad69274e93f1b6f14cc32a5b0c0e5a7d9ba0c74d4a16d502518dfdf2756e8df5e45869886db8c2d DIST serde-1.0.152.crate 77091 BLAKE2B 89c01ce359042ebe6b1b64ea710580886f965a98e1d6085c58a75269a9b43401e2cace080c4c93ee51982855fb7e2f09fdefe9bd237bbf30c5537f3a4258283b SHA512 b47bd58fdc1a81d96cc0c9d14c8b19153b6689e893851975b1d7c7010c4448750e7fa09056dd4f13ed475a4aea2a3950952ff528832976919a6e78504a37bea7 DIST serde_derive-1.0.152.crate 55586 BLAKE2B f133c6cdb87d435ea0c05144e685047fec22b93df7c61df4aa139358c2732326c98d0f62fda629da0f648aaacfc9d6f312813940238f45b359546dd435e7a516 SHA512 2f4dffb5671b4758f0b7dc0939f6b5cfe3b3ba02a53c62c75b5a0ec89d2db26bdd95f3e269d1fd4b07ec921bc0ca5f0741c26fdfcd25bd6532ac698c6c701e91 DIST serde_ignored-0.1.7.crate 11570 BLAKE2B d8acb99584ddc3768dd7e92873a6911933a0b91e6517a25d7c0bc9b82bdaff82a830a6bac0a9be5803d198c0bb59dd0c495c7f61c6221db3a84c0ff4d480a58f SHA512 72380c8fa12d953c8186ebcc7610bcfcef3481729785eab080c106cd906a0c4f2ddc8e4aac23c17e55fd5485976a09ddb3db86b4b69898f14b0038bf2f9b8598 DIST serde_json-1.0.91.crate 144654 BLAKE2B 857f25cb43f8153ed4266fdc38b0a426ea04edd9e7954ceeab384729abb51ead1378a819eca6ced5cf20ed0cf237548b4c81ad507e3f4684aeb9bfd7e4958684 SHA512 b0bfa3d64fe9fb0d09ec8dcb6e41eba75ad0f0c4e34e0ffd5e2a3230057d7499a57ffda8c1615bea5195ef398afe414f3b0a143a39865123c1c5f976ea1a0337 +DIST serde_json-1.0.94.crate 144406 BLAKE2B cb4098da36ae5792e8c8e129e3148f27a4c646a57f3e59fde75febe252de79c8e1b310d947c2fb5ed7ec75e68b146f61b0b1d31dcc6f510ac61a37f64a47afc9 SHA512 0c85ccfce884a12dc7d57c110de4c96994f84e6a23ed28b9d38c9ac53ad6be506ad414735bfbd4d90fb49ea087460bb9da1929bb3aad7bbfc518b812ce92516a +DIST serde_path_to_error-0.1.10.crate 16420 BLAKE2B 910f92af26ceca69c0bbeac243704a5d4bedacdace869e00dd56510dd406c0bdbea4d13fa98e5d05e2427726237d637a0ad53837c04b4a052e3a0e898be9c094 SHA512 8097adf470996ccf948cde357b4bf0a4fb9dbc4b857055de503d68b61c6b6afdbe8e1d08823dfb9d3af07a485ac1bcdb322eecd24907f50428b11ffa8bfb9196 DIST serde_path_to_error-0.1.9.crate 16545 BLAKE2B 14e6cc3befc50c0c57bb389abe118487bb0266a5cfe921fa27b284a19caefc835277ee677f2f1e91b83892f7688ad9c1186b75ae6e7115b2b4441809a36d7744 SHA512 dc434640cd7c90635585c2a3c2d6452c558824cd8f05ba2f94230609bd98075f0af8c4546713a43b0dac0231001d79c46b98c6426b975d92d6931babb5fc1806 +DIST serde_spanned-0.6.1.crate 7828 BLAKE2B 78d39bca0850b78f0835167ca7786c0bf356d668389aaaf3ace946e91d9a7db8dcba895e833d87e88502b2ba969cac9aad6c1a053c5ecb37f845ebb3b0bb5b32 SHA512 6271aa2af243021002a10cdbd16cb081bf10ab53a61cace104182eb4f28e0c0d7c447b7dcedb350ce78debf5ed6ce6502cb823ae9177d98c5288310094eb22d9 DIST serde_urlencoded-0.7.1.crate 12822 BLAKE2B 38c74ea862f041828467dfa586bad9b8e1d1d64a9f82fb7f98727e3965377d00e59f2dbf20955a9dce976b6911c0a619d2a6e4cc9dfc73cf0f6c449d873fd072 SHA512 b209ad01b6565e95c1d5b431a3f4f8a0df3d11c2a06a44123048bfa4b34ebb6807eec593f0c1c89de3a06ac3786a14747df9c70b4f4d5e4b72b4feb53084eb60 DIST sharded-slab-0.1.4.crate 52479 BLAKE2B 766d81761909006ac740cce13e8361734c3c7072cd07c8c8f611f09772e16f11aa93cabdc5273b9446f5da391b26b7e7d619be523488d8b3558c64c18f20d591 SHA512 123a9ddb126d1adf41a30a632604264d66a06bacc497db6373e9dd36164197f8321f2fc826a16247674f0f69d9f6e30aca37810f787693c4a5c2cee8c5887c55 DIST shared_child-1.0.0.crate 8939 BLAKE2B dd7aa5bc4f87cab26cd0cd382fa00f42ae45ab6944e3367e355d19fd1007ded068642a35941e0cecc100120bcb1ea7d07d91bc36227261e8207b87c53de87a17 SHA512 d0e16cc7253271e6468659db0d7344c2d75772dd3428f686c49ce34bfea6ba8fa010b1ba83375241bf019e77c842001c6e1ab5096af54af03586e05c3f8fc476 DIST shell-words-1.1.0.crate 9871 BLAKE2B 7923b36f0ba50c17ac4eebfdda34566b615291253b7b41879b3f64b3fc1325e63948d3d44801e40748b11ddd2ab201b81d238af2a2007c7a57d71f5dcd0667f6 SHA512 05c280a8e1f65b205746560a82e397689a3b5ec934219b558ece3a25efbfdefe903f9172319240e96039b38fb2c4be6e070805aedbdfd10344d9144b9c93de00 DIST signal-hook-registry-1.4.0.crate 17912 BLAKE2B c50ade90e580e5f009832d812299b33529e53f68e6f1b7f5f9b5ac9ee0de502825c7bbd66199a65d4494152809eaf3dcfb676152c5b4f66c7a38b33551fcdd30 SHA512 b564379e5df1061739734179a69897badf9e2e6b469e091954428b05c3c7143885396df4bd008d77e08dae53729d2267d50fc8563121b086e25d8a5adabf6d6d +DIST signal-hook-registry-1.4.1.crate 17987 BLAKE2B f1df8bba55c72a506b9210347f9dcac4d158948e73f6d1e60f43340ddfae368aff1bbb6a109af326af47246d9738d49f76d380c52208efc3c6f79ea0acd31f0b SHA512 e83acec2b0083967555f6c659dfaacc32d851a9485c9f6f4b4cf257742ae3ffba8c14708c75f1a5520e9d132ea9e21d6eb65aba492eec481e8492af8b798c5d1 DIST similar-2.2.1.crate 51147 BLAKE2B c86005ff69a14980db2cb90b13ed908448a711f09d1ee20a109d1dab2cc5bd839274f3803082721f1d81003c9011efdadcd190f4cb46eb09b26e338107546f45 SHA512 9a353bfbe495bab83e401314bb97c6605fa6283af06e03bad50bc429388c7abf44bb9cc68db781ef2b786840eb444907f35b70b17343b2cb993800536b4e36a2 DIST similar-asserts-1.4.2.crate 13558 BLAKE2B def5bbaa20d377e49cb023943dab97c90c38df17f2e08ec0b957214db0c51d688a67e18cae12032d57941c2fe9e5171fb5de634ec9ee57730d995bddb91487be SHA512 388a8e8463bad68c12c64d8d4cb121376948849c929d70656f4b574fba58cad7675f5e09cb149992d7b93d2efdda9dacbc4132d790c5d3bcad06b017d2d54c66 DIST slab-0.4.7.crate 16647 BLAKE2B f567cc822e7b84f64a0b0372c22a0463d260871455a33df025808a0476dcbbd4e051a117d8896d96d6d3d0655b7c296cd691ca22edc54486440f4e2e0f5d1e1b SHA512 659a9ca3323fc2cd236f6cb9eb6feeae8a1f5fa046fa239a34cd7a5ab8a7eadb9e5977e8d5cc41e9138900dd7c75ebc0601480771c5fdd2e084ee76619b82521 +DIST slab-0.4.8.crate 16928 BLAKE2B f20603e1331a767c3f55b56d58bbdb9fc126794a116db128fce6d204122c420e9a65478f9f10a26f86c045dbd55a62556862f4339f3a41419f810bcfa9fd145d SHA512 1d713a217b3816a1e6c230d4bb52c32c90f600e64520f0c339ea8255ee8aefd887d969fa23497f1bd8b2b1f7dcb4b220957889746f04dc3453240b5f28517192 DIST smallvec-1.10.0.crate 31564 BLAKE2B e3e46a0781d3a7892a739b001592d462d0704f010363984c439e3fe4f75aecb9720648aa1e9bcc56bb3be848dd40cee578212439f78f07a807c9441c3c3e0147 SHA512 a09110184582dcc01d7a0d3fa8f74c17bf726935126d3654667b8e9c4bc43ad16ccfd8fa94feae7d9b31913aa7ee030fe5936e4b44a36302b6ce5fe37372a7ae DIST smawk-0.3.1.crate 12840 BLAKE2B 937471e3ec3431f174264ce41e7a9c8ac781f5ce3638afe6219173730f5a0d0cec2b482ca72eeee34d5765c75db1707433b2c5b5004cd6d6fa4809f606b26813 SHA512 d6a050e873da5c90de3ff9fd02166de3be4c03931de9cac5307e6c16a71b8db1db6e8309eaa38ad408b20e0cc98eb4133595ad7aea96f62ebdcea579a643b65f DIST smol_str-0.1.23.crate 13208 BLAKE2B 3ee60b98fec9c8ed6ec765ea47863cecd83cb921b6b0f738b65afbfe8227efe9bbfea6e1e8556cc38fa10e0af92a671fd67039ce547afb58d660a8f251dc817d SHA512 73bd2c20717bc1960021aced0c98654123dbd9b171aff5890374efedb20e4e1e2273f35f6a8d8b584ea6f31ac9da2734f0656a8da0830af0b6a4f45b7b8faba1 +DIST smol_str-0.1.24.crate 13351 BLAKE2B 19ea2c1c34eecfb8d2b761a25db4a87c62be619f109e1797ffeab8417606955a6285386558ad2e603532019e4d4f38e1d9c813bba3529e9790325e2ebf56d1ea SHA512 db5f468e15d7c19f751f626b8b91f56532c9fca833f5c8686e778bee5ba85087684521c6d68522ab76caa4eede931065d25fed05ae8ff1dba3608947eecd0391 DIST socket2-0.4.7.crate 44619 BLAKE2B 9bf2560812db2c91498d12274e02d17c279efe5817d882faabc465de71b1cb8045f6eab3c8e6031f6fd18e0e77913f42daab07f01e8d83bfa5ea44cc6966466f SHA512 44487f2de30cd327cad1af31ad36aaaa0bf10c33b5c23b024ada8d7e41d064fb2adbc9edb14aa8aa1eba679d8530c373c7187fc68d9709ae736a5c1a2cf37088 DIST spin-0.5.2.crate 12004 BLAKE2B d67d9156ca6dbcf4022711cce797cd423a4977115abac4cafaa507aa2e1071b637275637a20934d4d0d6d2bf82c98c74a4506720326d1804952aa0fd5fc4895c SHA512 fc57f7906da2b7a298c5f89215e881e8827b4d9f934dbf138338e0ee30122d8459483be566268fa374b41d63d8dbf65d42e0b322535ba35c827d7edb2176f267 DIST static_assertions-1.1.0.crate 18480 BLAKE2B 358dd5ac413d06f62da0388e2016c5fcb8ec68fd7dceb0dbbcb97665c032b7509b7e083c20701648b6a9174485f117c02682ae4bde7ef037e80a85cdf6a0c86e SHA512 46d0e35f77941dee6f60f574c130472248063dc38494c1c4f84f7c048244cc2a58a86fe17c0990e3f0f01406b75ed385a13d00058612b27cf0e867c8d31c92ee @@ -236,36 +320,56 @@ DIST supports-hyperlinks-1.2.0.crate 7564 BLAKE2B 59fed82a0713957e25fd54e5760806 DIST supports-unicode-1.0.2.crate 7241 BLAKE2B b93c7bd5922082a65ff28e5b2c3bf2d3b95cdf1da987df42d20bfbcefac46d706396620faeb96e323604e60f055656e9c916be67791d435bef2be03f02f8cb6f SHA512 b73716a2f66fa2ee765080281fd4c5b2e05f050dc300b1b32bd5c0fd1bad4d5e15d0a599a5fcc4c5d25f10577802e89900e6e3a05f64b1da6611d68369ff4875 DIST syn-0.15.44.crate 184212 BLAKE2B b735040d69d10b30c94de2e8f776d25ff5ec427e79a7371345a9bb694d50c4f3ab848ed30166c683aa88f5f73f7361dda2a74880d21882975485fabe5bf65d33 SHA512 c6c9b5887425e1e5fab905e477fcea41bba191693c471cf26922a9dfdd59ed957155a399406cc3723933a869565e7295183dabedfc34e3e2a20874ba94c7ead7 DIST syn-1.0.107.crate 237539 BLAKE2B 5a65968806c72fedf69638661f827a0426b9e49c2f9a5e5208f986105f8facca2bdf241f92f74bde790e9a0dd68240d4827a345a939c087364360e19a5cbeff3 SHA512 58132adb76643521a6a9cbc0316431318ac25f8517bba3cbb98e7e28ed536f9e24f643e898fa21a2f74cc8c1aeafaecf9b4199b23048c7be8c0bab2fe3aa7623 +DIST syn-1.0.109.crate 237611 BLAKE2B e827445d00c79a8eeb91eacde472f1987addd6ce9e1df95d7abf6446a77ff4173a8006845f3ae71c1da47193cfb72e0ead9a6d6bad2573be12c17e90735d9ad9 SHA512 12816b9e8cf984024b2fbce9f0ae14cf94d4d2c06f08cc54fb793ce78770bb4cc1288eb7df0ba5e8e937756e1e8e295c53fe07a0c5dde1ea8ddba03b6203b37d DIST sync_wrapper-0.1.1.crate 6556 BLAKE2B bbc909e458b182a7bbe6ae69b964db1c3ce4b5864625bf8029a17eb1846d0bbedc7488b69f560d70413f4cb22ec75c3eedaede8a14efd105c708159df90566ff SHA512 e43bd83a70feba54ecd41513b64902e0411e893a1e3d24dc1e303c402f6cdcf2a5afaaa1bc423b3e88f9be68617b95a2a5a7ec339cd793b22a7516782bf4b8ae +DIST sync_wrapper-0.1.2.crate 6933 BLAKE2B 0ec797ddead298a95bde0a508ae942a4e90943948d3c1e4833fb3ad1cefd3566b7fd1aa0b133d614839707e3f416e3e739099ac73441527213da81b6d1c47d50 SHA512 ca7cd7a6dd242fa420e8dba820117d85b1b11ea6a9fd99c92a5a260f12263cac0c034c9f9fe10090d5830fb5bf5eefc8a5a0d0b5a40f3f809d69e5393693d5c8 DIST tar-0.4.38.crate 49158 BLAKE2B a344a65951c5c39212ffa3cfdc7dc68c40a85dbc5e4aa08cfe7cf22f0216443fa081ddba5e8fadc48968cc8e70e08d23391a6caefdf359310e5880741c9d6730 SHA512 4b6458734811e1913cb7e348f32db16f9402fd0e0027ae867db81aecac250b35d07d9478cdae4e27a609ce0f29c9d61683934296cfc3b371119df9f2c380a84f DIST target-lexicon-0.12.5.crate 23224 BLAKE2B b1d31ec4ca5a529882b76a6a6bc8bbf978cfe8d7c9da0227879898ce1f2180e4d43225360bb4b4a7e9f3229ad1f4297b57c77d285c471c9c724759b0e987f6f0 SHA512 6df675ab1ebab2ff2844c3dfdaf58de3c340868ad9cd7b8c0d63d4fc9fa25e78027643d34c19b4634913c5294de7b330fb5a100984df58e4c943b3ab21ebfaca +DIST target-lexicon-0.12.6.crate 24357 BLAKE2B 5d9aef958155bdc1b546b9940083cf81ba4c638525e2d46340e50c4274764b39ac19a12214f3ff64a6830524a2ecea9d555db3f07d5d7dbccd7dd809255c4499 SHA512 63ccc047d10ebff55c3b9be400e2deafcaba7beb28ee67bae6d5df58e7c08362b2c4e0004f6daa582928850701969015ad43714c7ad46df665474667ff4db58f DIST target-spec-1.3.1.crate 15651 BLAKE2B e86ae3383ea3300511053ce8e5257e7c56aee6135da19ecc32eb56b623090779ce630f51c99c5a22522763440933a3880d545f2fa4ecbe57566ae6ef0ef393f7 SHA512 25edc8e7f18e06c9394400400eea849d751c41f861605448054df964b99181c6e68df22bf755f49267cee857525f0c06f885ee000a27312db4476c554fa0f7c9 DIST target-spec-miette-0.1.0.crate 2879 BLAKE2B 5a53ab588da7a3aa77ac5ea86dc1e72aa13feaabe2cc9768f532b7824108058fc8ffd9acd6b2a30b4f135bda92f016c56b34325bd963306210314459fe855bac SHA512 e94210e547d11c2e6ea67c064459a9090f975a649f22e1394018cd48ecb5df96efa1bcfeddfee7541684d1780a661f0a3c79005029b3c41f4c38645765e48b54 DIST tempfile-3.3.0.crate 27578 BLAKE2B e98c5ed4c59b6ff411e89ad4eb529bbe15264d6744edca8675c89bfb4397fbbb8da60bbc582da24bf9953afd9bb17cdb22654d933468697e9fa9e9903e6a7c77 SHA512 ba6faafb2dd56d694efe424752099a2efb50316afc0a4db9fdb7620ae3f1a31dfbb2a7b41724878cb977fa11f7568a406bd3b6a4f7cfc0b88b86b2cc616b953e +DIST tempfile-3.4.0.crate 30591 BLAKE2B 5dd7c2e28e9713751e2816e4264100b98795b26aca3d8619cbaed79de7de8af180aa3bba888babed1a1a644161a5a8ef08b4ecdc898e7c583070387cbc3fa357 SHA512 4c7f8b517282f7db295d649d038f0dbd065397abbf9546ed2d9ad19a6eccbc2a189d4601a7a93299cb412e7aa1c2d5bb409f11fe94162889a715303779ee42fc DIST termcolor-1.1.3.crate 17242 BLAKE2B 5aef69c0004081bd3cc4d531d13d63627cc02313868c0faab62358d13abfa7b4ba82f142c2801d25a6ae46ecbc8b7bdbeaa21c9105ea3b8950ab6a38cdb88513 SHA512 5838fcbfd70f300cb4b62aab50565db52074c56b152ccc8ac1173e4676c0d5a636271bf5a645a77da6e1d4edbf0091af2cd4dd6d73b85c3d198c760898c06f3a +DIST termcolor-1.2.0.crate 17917 BLAKE2B 5ca7802b0bd29495bcd2deaddcdb4c3ff964073a373eaf39964a24ed91a48c5c33e192d676099e2837064df3149fdd73aba7d241e9aeaad9887bf1bcae9d38f0 SHA512 cf1896523353390b2f90b2a8bf30f47da5fc7c2daa635bd0cd8059bdc73feb243e46e4279562fe45d5726f2840833b1e967c7de19ffc0c853592d9f86c0c1be7 DIST terminal_size-0.1.17.crate 9141 BLAKE2B 048d8e8e9dad08aecde12323681d428b9182afb737136cd6699e13d231f7882091c9167cb10a08e5151df912421a6f89132645627e42ccc73d07553cadb1c8cd SHA512 96ec1bc8abd597f01ae59da567036d5d40b422764a4da662e2030c3ef4ce80a983c8b6a4ef1f34d88e649e0b1ea27b206d56a31924bcd2d31ff7e5a2e96d4201 DIST test-case-2.2.2.crate 7593 BLAKE2B d45f9918c5cad0ce7d1e371456383e6dceef8a859b3fa094c9c41e40dffb388371d4806e8ce9b03c3c85f0c371415181aa85a5c3c42ee780f13670724cefb70a SHA512 505a417877f5e94e79ae14cce7ad003e1d10873d25fe71296110b6ad971a8f604cb5bea69109f0ddf641f7ca7ffb40203bb491b29d3d5e656c66f46dff470f41 +DIST test-case-3.0.0.crate 7711 BLAKE2B bbff11e04dbb741f33aadd4bc93fda2c322d109db84e5b099c1a4ac9dcc975b3d6e9e76030955f40c0b45efd27861ec5377daad87bf20e419a976604f965500f SHA512 6891090277fd057cb2d0e3d0f25f59c6e723b577d3a728e4d713ba89d07648ba4e19dc69b9e6852538a13bc68b1af5b88e9d0b5a82dec51d6e4dec467ee10bea +DIST test-case-core-3.0.0.crate 9383 BLAKE2B a4c568511ea5c6461721574334ca559fe32608dd7bd65a538a81ee4860851d618a3259e5787b9fe5688c516b6ab29b946767101391fb901fb8b2656e173ca44d SHA512 299b19458dc94795e54fe23937a3d2f5f2b3ae81335753024753f5d8b0136714a2e58ece05e3f9d4555a1c7f7fbef6c1dd9bde7251e5f36525c85221754105ae DIST test-case-macros-2.2.2.crate 10108 BLAKE2B fb289937869ddc7a88ccc67846c933f3d29d428e1e55fdb28fd15a1a29ebc82e63420cd497d0b8dd9c4981c2201116fe3cd418d959ccfab0985a5dcc45910010 SHA512 3133c53043834a007d1d60ba2593a4e5b1311a86986010d0144380f970c1ec62389313107822a018e86172a3eec48f2022314cb1489a06a913aaad3cd7723203 +DIST test-case-macros-3.0.0.crate 3413 BLAKE2B fc9bec1391901d9d344efe6710c54f4778945f68943ab473ee26ce30f3afcd28951e641ccc9c149775791ec271c97201990051d7b6adc525d1211299d06a86bb SHA512 cff894d0ad4788af1ab629c708b714970d1a619749247ecdffdafa7066438555b3f6d77e39dea8937cf02050b2d4f2a687b2f87c4e4a9577d386d2401e59cf11 DIST test-strategy-0.2.1.crate 29784 BLAKE2B e377478e5b1f401b4d28c3619374828e22c86f8204f259abf54b6275ed1dc031cdaed8d95ff796f019b1f506d9ccdbd11dd4d7789f791868c24073a3ba6ebd2b SHA512 8d3be55f3b0cd88b44bc35010074757d3658edae9d8f45e35e772f6aabee63ded21df3aa086125fa97b87f1fc1469184c4ee3ffaa4ffa9c64565c68b60818a7a +DIST test-strategy-0.3.0.crate 34745 BLAKE2B 535e9d378c72a07805dc53d607a4a470940b18c4eb4659883d986441693a0fe0800eccd275a0acef6ad04aa437bbb3e980897d7e811ac2a4ac72a5df0498b22b SHA512 3efbcf7f67a18588de1b123eddfcf1feef473ed4f77b751a97326acd871ac6f9492b4d72b5ea7420cbe0a70c725c14df0bb29c1543d441b222217abb26ac82e9 DIST textwrap-0.15.2.crate 53191 BLAKE2B 6f9488a5d44e8bcdb63eefe6b7d95772ef84196b0002dc12257fcc0ea79c50225478af865551617f2346005cfe73bd0604aa18e9996ec076f27569054f41776a SHA512 1c5190d136fc9fdab1fca36dbfd3ce9228c0bc2a10780d1a7fa64cf5c6ff30d4c0e3827c2253c50e8a5c980a15441679edf65f024f2b997dcd61e32f2acc624a DIST thiserror-1.0.38.crate 18947 BLAKE2B fb81df34dba2958395ae360cbb14e2708e5a3cfa5cd0bd03c58f29c146d8afd8595a7ca1b30f1ed2a75ba140a55ba450fd4fd040aa1a1dccb0baf393b0e98d60 SHA512 95b8ca682b579834a04058f03ed0c994ccef426d75e0fcc28ee47151d343da25e8fe31f8157744d942aa54652115f477fc6037f91c581dbc127b829cc96476ce DIST thiserror-impl-1.0.38.crate 15429 BLAKE2B 96202c256e970fe23f07b461d71430889e36d9f0e83608d001c6feb4e86f4a34047ce93617b27f89c6e2a5d6ad8702b9f64ac7e59bfee221677261fdfcb06e69 SHA512 628aa28404a181b384ac6a11a433829a5481d97face5bc1704349414f36e93440738122fca716fdf878719870d10e0cf8d495df6b1d40913e985c2824cbc3aba DIST thread_local-1.1.4.crate 13106 BLAKE2B 64c19368f8cec46f23b3052759c4c4ef0de50748432790e6ea11b12477239b177d54e60b9046fdcb2f495b8e0b37ad82809d03602edab9fc85cf814e3bd94fe2 SHA512 db7ff3eb88a73d9313dd58d72397614c5aae6be1d64ead7f16535cae2857be3b27d189e7955308591ec64a0d67777fd2a62a2b124ca73facb9a2d8e0458bdbb5 +DIST thread_local-1.1.7.crate 13585 BLAKE2B f497dbcdfaf7dbc8b4b0dd97f77ba93df15b63303e7894c9032c9822a5b8111e0a21db2fa8cfdce5a503f70959ac9cdf48c840b925bdd850dc15e8436ba72379 SHA512 3772452c2a349fb564d29bb06e13c8ae64807db27c3ee217fa04fd0e9847e94adeea582b82ffc2d9116f31ff478eb088550caf1346c263de49b55fa17b431c31 DIST time-0.1.45.crate 28911 BLAKE2B d43e2431752881f6885d572017f461b304d07ee5ef0d8b4898e62b47c8154268839c3bf69b141159090cfc0d90bd0113d6084fe99ea1f2b1e20668528ce21112 SHA512 e643fb8649f3efdaa1b0b6abc6a140d55ac550a55cad99d0cce9415dc51e155fb1ea240953eeaba5dc47ec73c49ab7f2962af79c693436289de0eb3ff60985ee DIST tinyvec-1.6.0.crate 45991 BLAKE2B e9699d4d80a78978f0ebfd049f5b33d7f23d401cf4f4439ccb168e8c0e322473ad0ea7e2ff0ff69e9aac3e5c4c9ae5a7102185533bfbf96dbe77b3526e700bc9 SHA512 e5acaf353c58c60ae5556130a934f1048abb79cf6668ae467d308bac44b689d8a9997227ea879f4b5fe50f29cde8761801b088d7149bcd063b973056c381921c DIST tinyvec_macros-0.1.0.crate 1817 BLAKE2B a3d1966bf57c11afcd026269135a6189f149f905bb70b47537c0a7bcaef0bfc6c89bdcbdb0f6cb8e5255632855134631c683fc90606a254ec8ba818fd5ef0794 SHA512 d6afc83a3c70cde916a6ff599e2772588e4bbfa7a5b1c7e5c8aa0f4a8a5c9426182497a644e4a88194ece986d38fa64b6c8eda9eb1630441c8e65a8741a45873 +DIST tinyvec_macros-0.1.1.crate 5865 BLAKE2B 2bf4f68ca11dc19c72232951605a4c809b34ff38ee365ee4f592a3c41360e23c9330cfba961e2692a0ad568fef4aaaac51c40808d491178cf7a0c4b5a1c5d484 SHA512 10008c7b3a3d50c94b9c370015b76ee082f5dfb6dcacf014dc2f2dbe92f903618d10d0202b21f48fcf98a94ae76fb712db55a5e8ad353645d378cf0e6ec74f7e DIST tokio-1.24.1.crate 625490 BLAKE2B e83d992e08392136016d832a92a69cef0dcd19e2c66d87a21fb4f49fccd6ac973af70e60dd4487546762f2489bf2e2d3e0a02fee219505c94d0a69c90c0de803 SHA512 6b423a36ab8eb27ad05eb059833da5399c9d3e0a9e90c1d2b8263538764ac839d5fb61b2b515e9ebd1692b7defe84e0321e0b552091e488f1ec5b5e0117787c2 +DIST tokio-1.26.0.crate 646327 BLAKE2B a66233eecb00bfb0a0a4adf9f7ccad3b5912ae18f4a39d4613863702da5fcc95da368edcac3674d7345e182c74801916d5d206edc7ece64ce33102473272fbf1 SHA512 cad40d89b80db193919271f46f32e64c1f5f49ef2defa658273dc27f6d0f76747bdc1ea7ebb2ef3c040ce04441cd41bfbf0176474b336c9c3c71901836b31570 DIST tokio-io-timeout-1.2.0.crate 8993 BLAKE2B 52d5c5564c55c8450eef53cb60676d671c2225b2842bcd65380d2aa544d20698f138b5498521862d726e57fde97f6914541b5edeb226a197020205c2acec8cd5 SHA512 861b8b2c7af6ace78ae223fa567f26fd347de92b3e67c788a140a7cf5bc6320926387ec633ac5bf32fc2b0b28b4f3be450b7c4cdc755eba4412eac7c390dcfd8 DIST tokio-macros-1.8.2.crate 10071 BLAKE2B c35e8043195b61bdf3e863f2224c41e3fc5ae0b32b02e53c2bebd36ad9f486e573cdd0e15b7a49e640696edc050e0d8dbfb5b33f1d12887a8ce418edb80abc53 SHA512 753888eed2d7a39e616851918b707c7634d30a54d8d276414b17ce310a2a6fa586bdce4f29b4fbc23f175654caeaa4b0589e571e2a346d99e948297a80f24994 +DIST tokio-native-tls-0.3.1.crate 20676 BLAKE2B 4c752179aab8b4beaa6aa212dc8d9e4a2b7c12be0dbf80406f20f92fd12844a3390e88a1536875596ab44774a67ce35115ca4622f9faa977c80c4261ab4c06ea SHA512 bda2e77671e030a021f628ad760b3fbdc26e7483a5f9ef6c6892ae0fc38b538d52d527805c020d578079896d50fff0bbc036a87cc91604904840d5b7dc181914 DIST tokio-rustls-0.23.4.crate 27024 BLAKE2B 7aae9f78ccf056824b477345876edb62f2387a48d7a0f5f80386fae60c851e1e0251ed37956e826c7a1ed48e424769cce2074907a8700486ff7eb95395304bbc SHA512 92d9f5f94f8a81bb12e5923e08e9e185340351342ed167f23a9855d0c2e77089ae882c0c24faccfbf3c8f1033589a76281da42824e8447ce1b56c7a383f38b13 DIST tokio-stream-0.1.11.crate 33918 BLAKE2B a20fb1618faa8e652c5bdf5222f04f939a932f0cfd2b734fd71bbd299914f42cc0e7d22545d524ccf0c661ad4b05662bac8b8df6dd250ac3ba07164621a9c619 SHA512 4fffb2be939c91a2ae935ad4b2f53bb0e94cd94397a261852ca7bd8b5e334b55c6dfe25277f855015bbac9219e4ad1005eaa0531ce62740bdd694e1a07615c98 +DIST tokio-stream-0.1.12.crate 33839 BLAKE2B bdc1f52fd605b261cb888f4b976161a4b14d0c0e617cb674b4e66e5badc989b010672ce4c292c26f85353d7aa519abd0961a1fc52afe6490eb3c9c88b13eec8e SHA512 201252df891be78401185a3e43b474efd289a33fab043d22418b436516db7d7011493b2a3246c46957ddad7dd7359196a17f720ffa01b2b23f6a3fb506fdfc48 DIST tokio-util-0.7.4.crate 93424 BLAKE2B d7a894c95fc5c974ce0194eccf46461769c8db15f7222fa792c7777f9ef266dccb09424dbbfea5ed2d99faa5e375ca23a8f541c16689585cacfc38fe2f4dc9a9 SHA512 910b997574a4ef8a638c5483146b4b39ab9cfeaec5fa41812f4c6835d9dcc648adf77ad8f6d914b58d435e0127d9f162beb396bf97fb74e34256ee1857f118db +DIST tokio-util-0.7.7.crate 100405 BLAKE2B 97b701985cce390acf3fcfdf4bb761901e8e64ba29fa285a822b97668b4f9a56e13dde3085f7b63025ff58f9ed3726c29a0f8dc412100fa76d7ac5ba75ff24b6 SHA512 d33edfc594dff40a7f76ce84a740eb8901eaa95aa6cb6e2308aaf23b4543dae2ce7f7c8df5f027292777b65aa8b00618ef45dddb34b53b1981ccf1650c01609e DIST toml-0.5.10.crate 55193 BLAKE2B e718f93b865c4e8d17e625a753776bc62a50f98d6f83e4323268d65547b6bedaa90bdfef8b0ab9ce42df62c5552939ff020402bee9aeeb7d883caf583438995a SHA512 0d438b1752b815445db647d7bceb620ba7e393a29dd5154f4f20e0357e7744c69e72ea3a797f8190bdbb72f413053621de7c8de88d30926a489526de440af2df +DIST toml-0.5.11.crate 54910 BLAKE2B 9ecd5103b33ab47d4be23c897c7095ca381cb79bedcaac4918cddc36fc7cf5d34ab664da52c2273d935f04486e9325241d6b66785d50aac78453c219aab49e1e SHA512 eddb82aeb8fdeb5436579292c6f7a64a90a2c7bb54070beb437bc7890b99795d0505faa8d6451a99e8bcf440f78db8a1b273a697c8ad44275cc4163a9ee49317 +DIST toml-0.7.2.crate 47107 BLAKE2B 9f9e608668b431f7e16056ccfa5ea70e79405f8f98756042aa235df0dc9b4cc9dc0f09f249171ee698b26c00ac88eb43a5d68dd8e2bc9515ad9143a8b1079c89 SHA512 23d7d3276d7a1aec9e757d7fbf0c7147c90a8259498a11bb7f1a600193e0124e0828635d0cf7b59ed63ed906e39bbe078d91a33dc62d7f48e15ff797ef5866a8 DIST toml_datetime-0.5.0.crate 10594 BLAKE2B f8bc6a450feb0b6f63336122b2c4560e6c58db1ab23d1aa8f63866782bbc4e7f8ca2674c701d4a8a85cb2b8f567934657b2fd4f84d26be6ab41bd7d077db4331 SHA512 53638f65cb8fd94b09a5d320692ea34071f222d1c620bbd84e70e58da0ab71c8bdb9140d8a6613a912bd73fd4d5ac9aea26b23cdc730ef73dbb33d13edaab337 +DIST toml_datetime-0.6.1.crate 10765 BLAKE2B d31627732a1a70dce5142ecf6dafa2b52e56b7df7d865b64dc477affbb2cdf148fe4acdba84373c4fa1b8bb8de06380e2a105c10fe34e7591683697d78b17c78 SHA512 024fc32f5c3b8efa764bc3fc59af710627513ba2e536f01f227d36661eaee099ed78320ea65b15a15e39c0fc30ff2b44c501f96d5a2618034daeb290524694e0 DIST toml_edit-0.17.1.crate 104668 BLAKE2B a61a89a80cd770e48dce429c9c10c39bd1cb2a24b97ed8b4724cce2d6b481a2c5f4706c3d64548fdabe3287cf2f891d132323b2bf7d66e0c80eb2dba1afff291 SHA512 9c0e698e94de1e12f9968fd486e1d5af47ae2095c49c3dfd99da22477d5aee9dbcbafbdeeb4f0e19e0ba2b834c22a20cf12eb61cf825552b7ab32c26c69ecb51 +DIST toml_edit-0.19.4.crate 94210 BLAKE2B ea6e6cac0a095b8d62a247e226301bff071932056bcb2eacb2cbe125a1f5d4ba931823c01dbddf496d405f2ea32a520b33ada5ac2fd70e371a595a5a52887a71 SHA512 c12b953470bb255829872660a2075a71b60f1428805fef85fdbc1d4faf962adecebbcc9d2a6917ce3a1f1e6f4c3149b6989727844c5d267259850dacef0f9a66 DIST tonic-0.8.3.crate 88259 BLAKE2B ba0f10f2a4024fa29d891d2f6b129face1734fb135989932726f6932f9953357abee606b9860f0663b3f3709c538e11c3bf4d92081fa213d220bf4af6819167b SHA512 9fbf740716c9aa8201b38a001bb9704d86530c45c3a941078aae4eeafeb3370ceec73aab2ead5a6fdfc0e9e8c307af68287d2bfe2bc501de63d611d907151279 DIST tower-0.4.13.crate 106906 BLAKE2B 6a8f4455dcc69f6c03af703fcfb0e6b214c2ce599611ef78fd41cf411ccf06bdce241e03a1d85d36cfeadc72db9f3d9b7ed94c4fcec466c070f2357ff6e27360 SHA512 592f23eee5efa6a4f0d2ffb0d965da7e0f75a90a4320a0d0dacdd5add66513ae40902d21af2bf683573133ee984866987df2ae8eb8e632cba7a9d196985aff8c DIST tower-http-0.3.5.crate 107116 BLAKE2B 949d3af681b33f1c8de93075c603d14cf6db80600b4cfbeff425856ab06d684228b4660b809a301bef57e66b304175450a7c7d5c9dbfec5fef52116fa230b256 SHA512 9dc84734881997d8bffefb6268dfa1607423e996ed70582d2c44e3c3c07758caf650c14c7323dd0644ce653ca0b51ca1f01d12d6075f4b94b505e2c69c0c2117 +DIST tower-http-0.4.0.crate 112332 BLAKE2B ba36f9f54dff24be17d361cb2b7588ff96269070619b06a2ac5bc129aaa62c7684af5923850e656eb38fae76a2e7ab21cb83368900324af576af9c1cd54f6d60 SHA512 5712d96a19c445992e5bc881dca2a4423f656c21bb01993dcd1b80e5be0fa205bd674aca959e8315b7a4e08a77fda1a193c4a10d9518135c26c28f1c78d64fee DIST tower-layer-0.3.2.crate 6023 BLAKE2B 3450211e07a40419526cf1afe063c56357dd5add53470a4146ced3d294edeb95dbd645ab46ae0e42e4877dde63b1577adb21d9cf50116c4cfe4165e115d54ea9 SHA512 d5429b40569f67937e752c2d61c39a474af32bea5ba3940dbdf5a4037fde1ef7173cbd8fcdb87d0ea15c01bf84f2d55abd51fefbab2f27aa54e656eb1748c43e DIST tower-service-0.3.2.crate 6847 BLAKE2B d4571704eb4bf7f729f4535a04b7eb94f644d71ba8c5604297843351adf4bcce7ff64ec4e5435783ee6ada1b0a5c97726cfaade391525c6b2bca933cd5e8ec19 SHA512 f4578421603067fa708c4ad9eca5ca096b5262b6d51a404f37d9fbb6c64f027cec6114991e4b7f8324cb756c033971a384f1804add28e00d0cd6b2ee01d9e005 DIST tracing-0.1.37.crate 73888 BLAKE2B 60c74379bf84d7b152f0b4d5b4d4669a1227dce0f3b5c10210338193853ca332de7eed3cc3b6160ee3719da7fdfe565665a887f2f82fb1e1c716c421048a2e87 SHA512 2116045f51b35e90fc933cc136d045d09c0aaa33400a9056051d887fea2d2982b394830e4d4c3bcb4b831e62b9c19f6c751c2d216169f663aa18c4067aed7d75 @@ -275,18 +379,25 @@ DIST tracing-futures-0.2.5.crate 11637 BLAKE2B 2b23233705674cadf5dc8092d3990f375 DIST tracing-subscriber-0.3.16.crate 193572 BLAKE2B 55e582a5989b68ba9fd44defda52a8ec6e85322cb6d629b35c20e75b0852252f97bd21ea5d7587a1712b02e795e534948549e867277caef28592d0e6a50e9aed SHA512 e7e2c00c027cf36e3e97a6779a2ce97bc8b094eed608e940fa0b994188103632c75e565c76944d5f6ddfa2fc6e3b44049c10d35d9e3f3a639eb5249d675e4c45 DIST try-lock-0.2.4.crate 4467 BLAKE2B 7afbe36d02ccf31351c7c7ca4415578383bb4d0fbf89ba2c5c7835dbf410326fb0f6cb302baf7c1edccc4b193a2ab8079545fd67f26a74457d116204f3c6e745 SHA512 fbd989589eb0a1fb226de65537d51eceab632603e69710b37708d6109ed09c07333189675d5e560e35cc836e5cd211c726d8ce247186b5ea4529328d46c22632 DIST twox-hash-1.6.3.crate 21842 BLAKE2B 67c261b2b0a93293717a4e2e07dc11df2abde09da6fe713b9d04917ace73de1b59b8d4fd9449ab46cb7cf496fad1e440effdfa1fae6f5cae4ca78af8cd019c42 SHA512 f7ce63e6e5ca79ce9330caf40b32578a5d2088c5d8ed371604268760d6e212d447d9e3a95378378a283024155bccdaea47597902c488a94c5d5f79770baec8fc +DIST unarray-0.1.4.crate 12895 BLAKE2B 20fab4ce218941bad9ae341d24e92469b01f46523adf9d6c80cf2418b79dc529011f357e3c96a66ad96bf822358581a150f75c4d3ca67043e01814c59f1a9bd1 SHA512 373d16e9688938762c61cc9056a50badfde417f64385de1949678333cf9465cc496a357707989da83ee5e4ab041a89688fcd3ab9dfb9c6ec66446c9f5b56b630 +DIST unicode-bidi-0.3.10.crate 43530 BLAKE2B 2bd5ffea133793ed7588ea95b0848adea16e79fc3ce9a159c33c73929a1af90e0578c44980fe114aeec1d6424d294552bcbf4089e3c196c2ed3d0751d992c216 SHA512 70f81dcf3fb3ada1eb503cfda548e083cae6e7001dc445c0a481b8f467025f17dc26ac14e487edcdc2aba8b67f94a35eb4b5083a62d5b954dafca7b734edd3e3 DIST unicode-bidi-0.3.8.crate 36575 BLAKE2B c0442dd47a8ee81f575b28e34c9781ccf507b53ea96d1d4df2e8117231e8e67579031e4244a2dacfd6f4c24ec01fbbd4da7c9ab72ad50af51ef56d7d813b6444 SHA512 810b5be48159ecbca542c715496f279518285c3b09f7c39451986f94e6c259fab1057512a2148bf99ba9abf76e861a24456b547cc2273f0b45ed5d3ce9dfe3d5 DIST unicode-ident-1.0.6.crate 42158 BLAKE2B 6e4ef61fcac69b4ccbf743a2c2f857a6ea9fcbac9b9890f5b7208cc0732c6892aa5889b3030e87c8c29ce4ce24ddb7adec6bcf47b7aefe9cb5d19f920f12cfbd SHA512 ee1dc78fe535f46bdaf3e19dd8dfc859bf3133d9271026cadf626a07ba586c39caca4e45d905156a6276cf852f9cebef196b2229c3ba4b5e2b26c956fd6cff86 +DIST unicode-ident-1.0.7.crate 41935 BLAKE2B b4df3cda2005a7570ed9da8dd108c53b5a0742959eb385840afe7475a32a12c7a25f5279d012e6b8e69fcf6eaeec64687c31bb6b50ea1f1a59451e8e54c93ee9 SHA512 eeacf691cd1c38cfb3fc707feae119ce65b727f62d16577861dd5de2847f01e91c25c21d1654030123227e7040f8a5f4811b91599647985249e258bce5d02f3e DIST unicode-linebreak-0.1.4.crate 74962 BLAKE2B 2b6b1f262da1100a06552ae24588a6a1f6d34cd9cf398ff182da48116644807cdfbd703770659d70a375102f9526c77ea3e7fc80e7fe5405ccf93bd8153af518 SHA512 4c4a1cb4d8d9563740a6a5bc8ea5db8bab88b1cfbd751fdf33dbdb3923478a4bb716e3ce7441aca0d84426894834959cbc845f3cc2bc1379c5935019dc3f703d DIST unicode-normalization-0.1.22.crate 122604 BLAKE2B 3f3430b279cc0ce1595392c869442ce676ab097154c688779ebcf726e10c497df59be2cd7bb2f84f99499a9df0654760a10ac92224c17d74775aeebe291241e1 SHA512 a5810d5e9cd93dbb80e013997aa9d38e60834619483a6623eb2859ec5d59a5aec3fc4db123dc7f4e2fe9f2b8799cf6af48bdff22d69a00a23707240e8bf3bb3c DIST unicode-segmentation-1.10.0.crate 93893 BLAKE2B f0604ca03586726b878f7884a639554037816ae01965fbb97b4998fbbd12e614f2af50065a59c834448413418a56b198b016e685ef9509513e8994a5c063da40 SHA512 e6a1baacb557a5a7ed7ff780c542c5947eb473763eb2a6018cb1e0a1abb9f4bf3f8073610e4897393f15df076f6657a0f162a5c5bb7ed5f3b3fd832e533a522c +DIST unicode-segmentation-1.10.1.crate 98416 BLAKE2B 4c391ad34c5f8a00096ce89793b15212555f2d8a367f3ae78f26a36c5897b69f3efcd280a1bd3eb3f61c87b8a26061804b1cd56e1c1500cbcd62e8bc74520014 SHA512 e96224bba73fe9a167bbf226bb13fe5bea085765a90f7232cb20b42f3c584242b7291aeba1eb8edbe2ae40e5bee2f4714f434324f79316b22e8437c77a50e86b DIST unicode-width-0.1.10.crate 18968 BLAKE2B 6174e307fd3ee290d0a5d1d31233baaa5315cdb73f19b8580718e9f9eb04cfd3aeaeb474af1e50c4b9fecc6fc777937dedc527c9dc9ed14ccf42af099e591f31 SHA512 9836a8d489d18ea1ecfe1957ed6d5da7dce825e138cd1848aef093fa8d2eb83fcf01eabb1a2446df4f5ede4e67316e9e81b5d58b59d4e8c5d67870e8fa5dca3b DIST unicode-xid-0.1.0.crate 16000 BLAKE2B 159004a7bbb7476b39e982b51dbf615717095fd5946536e757653aa941bbf1b774f331db744ecc33bb2ead4b0a6d254fde86cfd6cd8b83ab9983fa89928eddbe SHA512 cc5343e2166938322cfd7c73f1f918f2a9c46846ac0ef55933d1e44cdfaf6f7da2b7ff18b68e356c47b6d8ba5565eda0db42c347dcbde830683f341ac2b1849d DIST untrusted-0.7.1.crate 7924 BLAKE2B e0152791e781a4805120e3437b7e0219db3aa0282af4faaf2cfb15718421ff26abc56021c546f6aebb411f5abd27020273ba0f785e012a4b0089e96c2db4faa6 SHA512 5ebe3266912e4e78fdfdd13f9fcc07e9cf489d19d5e9ff346486f47aa58a0aca35278d561612c49eb3cab5a6759ac974d3b92bfabc399e1bc0808428dc347be0 DIST url-2.3.1.crate 72777 BLAKE2B 6ca0e537baf373b92269b2531945c1cdf360f1566cae4734dfb96f05a605e5c6c82e3192a1b9dde0ff22b92b87aba2d56e32a1bf17882b4de15efd7cdf52bc76 SHA512 8224010bef067574481e5d84100d944782d52b49db7c396ae2b4dfc145ed58769c15440d97a0fed4d2f9857592a8601417cc5b1bdea959c47a3e7a1f7182ed0d +DIST urlencoding-2.1.2.crate 6422 BLAKE2B 134c4c3f80bb13c2d8ce831c64f7fd1347926baeabca8b4f7438d7cad33cdd21bd3f6a9d5d1c216391c10850cb4f8fc3f02d87be49f23a55f3205eb2fe4fef63 SHA512 b06d2261cdd5da76530340e6b91f5b15783017123f142f6964a6f9d3768d164c2005be914c44cc4aaa9fabcc2165c1d94b8acb8f3c5fed5c9b07aebe01e5ad2d DIST utf8parse-0.2.0.crate 13392 BLAKE2B 05296f48fe429a871f42e729e3540ec3a974a69892c6bc9da95e23c0aee2163c9b115a9614eb1943363076793e17ac4c89e28066a9816cab30c451524a5832c0 SHA512 1f6a2eca32e42c8e4b53d28c4fea54c426ed66fc01447b3cf8fc0fd75694453eadbe3ba000ac8ee0347d16dbfec47681254117949109081798eab5370886827c DIST uuid-1.2.2.crate 53669 BLAKE2B ce31d21677cbdaec4d2265ee62896c978e8c38e706579e78efd184248f55a04d775654e0839b3a4ab313ec1269014f95ddbe134192b96c3a370a1c6c881f6d63 SHA512 6036d9e115a99b4359ae52c00bd194639d0e37afb86713cf8cec21ba67c71b89b0b10e3c08d9603f948023b532a75f869bee4d11e6ba8a9ef844f7464b028037 +DIST uuid-1.3.0.crate 53736 BLAKE2B 1618c1f43db7673019d804b7419390a4acb62fd234dfe2a36d22cbc33f526f3a7e213e3c98160fb35a713f15e146b0ef89eac9e4e397532073c01229026cce12 SHA512 0914998dc2d516c215b1309a2527af557cecfbbd57f793d416d7ce6520b75dac60951d7e0951d10f251e8bb66733615e502c946acdaa503aba2fc0e3d4a874da DIST valuable-0.1.0.crate 27718 BLAKE2B ef5ded994c9a6dd302bed27f0d757447b0c86dfefa499c1ef0d25c3a6745ce61cfa2c926826534c9f605f9b89b4a19f91f06f94ae7c03f1ddc4c58fab3ae58bb SHA512 a97f65db1f1c5049a276dbb0e45e25c6fc6ce9d27ac1fcd77c945324cd8216ef60344065c79799ca04e338455e4f7422c44078eea32d5fc359dd0211ee7eb387 +DIST vcpkg-0.2.15.crate 228735 BLAKE2B 6b6bacd9a7fa38919241f45a97f58cae957e58d3aac99df208a26aa718e4f1644f4ccefa31b09151e5c1952288e0e5837c363918b98c7f55079a948a952c1c50 SHA512 7322a21e8811b2fe4e79e09dc321458068ecdf1953f05d36233f3278ecc0b1dfc64194db7010dd46fcf692285f42475beb090c6c6cac0c8f9fe0eb5c770e3172 DIST version_check-0.9.4.crate 14895 BLAKE2B fa1fa4008af165bfc1fdbe560488afd9d232cfafee94104fbcc4cbc52f234849bff9ddfa88109a1ac682f6d9c1d86b0459893d223f64e65adc08966aaf93dc89 SHA512 b172dc9a3759a4a683ffc39b9a40b03b9974b626a088217de87090466cef695226557c226cf3e469b2b25ee7297b7eb0d7719878cab42457f80146a81943c0c8 DIST vte-0.10.1.crate 24947 BLAKE2B c7e94b7bba2423d14e5aa85f94dba856a6c984261551f204f029c55ef923c0012b259e5b229974b54b4eb5da1e85bae3c8cdb680372b5f9dc6caf51d1075b0ba SHA512 0c8fed2cfca5ad07d2a146e1e26979d390347a409cdc2b960246fc2fadd85019b9febf2dfd618f7a144493084b55f285c58ef5204e613bd9013af26faa9f2033 DIST vte_generate_state_changes-0.1.1.crate 2422 BLAKE2B 6e8fb4ce0ca0fd6b9a4dcccdfb02445babbc13d47de5fae9bbb81e8c67ada8a40e8dc5e57c120c36876293b111ccc71e1069ea3fdabade6f9ba5ea2d44ff4632 SHA512 ba09352e037cbd279cbf5641c9783a24f76e54f1f09e13f0ab1ca99c9646c1e3c958e8e302d7cc88431073bad2e2d5619410f2f93f96f1db25f0f0ded0236f7e @@ -295,12 +406,19 @@ DIST want-0.3.0.crate 6550 BLAKE2B d97ac51dd5e49bec27cd196711110679013bb7aca5202 DIST wasi-0.10.0+wasi-snapshot-preview1.crate 26964 BLAKE2B 525db01649a5981ee82ad80a1a4bab9baffd235262452675619f36a1b454017a74593c53c129f8c30b865994bbe30ef19cebaad9d245ccf54b9b07ef70d5d8ec SHA512 88e2da617f50d9ebfb1e0c5857321fb86b5ee88ae8a8d199d3cc092e0f39688a2cb68503f7c6bb09dd6bc50a9a03597a1eb2e032150fbd0d0b8afa02ad771c88 DIST wasi-0.11.0+wasi-snapshot-preview1.crate 28131 BLAKE2B fe501889f25d65e2d032f885cc50c4f8bf7dd70fd5cbc438de349838370d8699e9627b0a4fc76030ea9fe6d508f41d0c9928a875fdbc47e73bfb17241cf7b155 SHA512 043500ab28cd9cb779475255da5d109ebab7fccca72b64873dc28d77bc5a157ba8d96b9e8f05223b5b36c7089bb7b4ba87657fc69bac16b78972f897294a865f DIST wasm-bindgen-0.2.83.crate 169618 BLAKE2B f6158596c80a0385bee0a05bd9cf0b3beee83a7958efb40244956b4fec2c83baa1a1b4605eb604f313db3508a7911c78f645acbb19f6fc93eef27e9f7f0ac109 SHA512 ec93d1334417d0329e113d5f2da7f16c0f1209d71e5cbd21a2dc9278d877e70ca2327ff7863b40505504883ed51d6bf20dda98c22ef44011a47c604a7b44e82d +DIST wasm-bindgen-0.2.84.crate 172947 BLAKE2B 90c9b846bcea9d099a394b42f126990db82d1dcbe247f8b63f8c91cdfbb5e2d184d36daedaf8fcee58c34afe89bf9a30454063693d64806ead3427680a87e7af SHA512 20f8c9e4f8d81c66e34d9ca2b266fabaae30da9015d139cd4eba3f314c67c17cb562c6eec5127c41302c11c2f314237add2524a8b9a4d5346b8822a37e467b2d DIST wasm-bindgen-backend-0.2.83.crate 25620 BLAKE2B 3cbba20a2f5344c0ed2791de7b04ee294746606289ba83a9c139b53b56edf31eab8d3b3802cec309d5395e2404bbd75b7fab5d748a9961b36906fabeb0e66493 SHA512 dd1b65733e4d0a198d61a5287bb75db3e03ef738d2c2dcd3ce3e873c27d41c90cfcbb775ad40b2a546190db8d7213e5866f8e3f9913c28fe4b43a49054bfea44 +DIST wasm-bindgen-backend-0.2.84.crate 26344 BLAKE2B 5686a252082afe128ded295584d972fe4af11a30fe37a80e142d213eb2e4bca567182bfc5addf1571696bd12e68e029148cffaa9af088d1269a1201af72e64d1 SHA512 afb06e21d916cf1af137159ac86924fbee3a958ef73725bdf6bf205e15465857791070c721e0fc0164eb6e37d195bbb6a3f03661c81e1e5a9ab8502bc3704058 DIST wasm-bindgen-futures-0.4.33.crate 15216 BLAKE2B e49b87bdca11ecb6dc529af2694b9ce260be42f7cae655143ae54d79c49fdcda978186e09aed8b0dd77f5ac658b8573e064e3a9341ee369bc9390427685c0845 SHA512 b682435f184d7c4ee2485e1a9b5d6ea0d2ed21b84143e7ad334075446ac0db0584b46d67b7fa499b46feeabed2b0652dcddbfac82813bda765cf534829b009aa +DIST wasm-bindgen-futures-0.4.34.crate 15117 BLAKE2B 7a6a70d07e021680dad6ae9d4b800d153baa0ff51a2bb7bec59b4c7878335ec3dd9cd4bec1cb7826683e3d91d115671274d45da5148979623dd9e1736a1c7d1c SHA512 6b822fadaadd4b0edd2c9ca264bbc611f67e6d3eccce7034c3ed1a960dc673c591ef1f8407e58ae740dd173a1f1f82d206840f35a10b1f088630b79bcd0dff74 DIST wasm-bindgen-macro-0.2.83.crate 12075 BLAKE2B 3b358ba7c2a3563840f54f11170cde78044a8f087659daa7c784fa252f5dd4b7f6200eba425d95b568e50fd43c04c32a509994ddaf5248120feaa67586402150 SHA512 eb83e06f998e858cf25494c1d171984269e72db798147d4d1d8aeeb25ea7a35c5986b882011e131968621742ceecff976430856b4e8b7d7fd7f1237767cf01b4 +DIST wasm-bindgen-macro-0.2.84.crate 12857 BLAKE2B 23ae9963cc2cf9bc589f5d77c8d3819aeb9d671f0bddd17093b2df096cc800d2130bd2a994b786a5f446e9194947199b3f0cdf1c16f15e7283a4ae319ca849a1 SHA512 23b69ff601c149909d81200bc2902018ec71efad8aec9cd84a0653025aaf852cc86d93e28c5f60144ba6ce5aeff04b90d23761e263e3783d45097316525d6f43 DIST wasm-bindgen-macro-support-0.2.83.crate 18530 BLAKE2B f305c9fc1f7bba5bee65a1c76fc2216c98aa306a072286e1ced048ab191f49e7e4436bf2f67d4c1fff558f59b2cef5e9b40e9e940268128ab1ebeb3c64696107 SHA512 804014c75ae5f8c1c7f0fad3f3209887fa346d74029e5f6e1830e44f7318719e65c4a643c71d87cf388f131fd370af40d536bbc15fc11c25b91cb785f56a908b +DIST wasm-bindgen-macro-support-0.2.84.crate 19076 BLAKE2B 4f779d7d0a406f376092ea8193851dbc86e9dbb822464db66a2022274665b03b9bf6552f79263014510cfaf4284847e98e8173263a6565f1af0c29054bd33fff SHA512 f2a8b6e0170dcea0d2f4a50361f036ad6604c499a89f0cf602578d0958d47c193aecebbd98e63310f592b08f8fe53da6c3d7a124b433ee384aa22371d9c963e5 DIST wasm-bindgen-shared-0.2.83.crate 7194 BLAKE2B 4dd1cffea1edc98dcd4993bf6fdde8100fe00d1e97322ce8bc0bdefd0c659047c8c726e5da27b59fd7a6621c1e5385c18204e834c6c6fd1fb9de52f95b40e40d SHA512 2bfc1a068fa41a9ecacce7bda494fc0485c57ccb102c1d76c87a42e00ad30b944b0cb788642e8339d050a0e831ce8306844a77292ab9f79ed765b65cdb4765e7 +DIST wasm-bindgen-shared-0.2.84.crate 7219 BLAKE2B 4910158ed884dd9dbb32b1539b0c89a583f98df05cb29654487a26db063c973d44cb086dad4b466f9bc63104e3d4da72fe9feed32618f8243151dfb9ccfaff29 SHA512 fc4bf134a33c71852b91d09fbf1e1801e2b97b5c2756e2680d0c1f8701da30b22b56777d8e806e13602beb040775824966e378f7b9805e131a385e7816ddd010 DIST web-sys-0.3.60.crate 700485 BLAKE2B 13942a583dd8462b0591a19759a41f41fb17d2356b3bcd78402e420fdf5726782e5b4ed211c3716a81c1cdf64ce9b8adecaa3fa22756a3ec84eb7c3e12e3018c SHA512 d883363f99300e2d50bc5bf198f0fb8d6c53e5a778217e340573560ac07db26a71c98419fa2ced32820472126d6f97ad5773ad082521be0a1c9a374af9d61df9 +DIST web-sys-0.3.61.crate 706333 BLAKE2B f57cb14032e2ea01b5e0ffcef0988ee3e8227c1da7d27ef8799583f64cddb4bcfbbb145f5ea1889006fc9ff61d42b1c02d4b278d67371c9d914827113f5e4128 SHA512 dd8c93a92295a9cd94a4a4cac4a81d9fa41c2c0bc885c1861eae5cc317a0d55e1a9d34b97b91999bf617a071f7f8acc39bb0d4a684b40543519f0cad6b82a25c DIST webpki-0.22.0.crate 58663 BLAKE2B 4fff91a8ce3d46a9daa9e39c50755f79574c91faddead2f6c879f6e9bc2189b76c4951cbc36e607e099ab8a870b422e1afcd4bcbecc14e96555c26c8cbefeb84 SHA512 7c2916d47f2232587e3ccaa8fefc8b576addaf84b55166011032e471f91ce54a79d2fca7fcc1144552c254f5baead708fba2b0ce76a1c34286838a8744b0f570 DIST webpki-roots-0.22.6.crate 242386 BLAKE2B b7c4ca7b372effa1cab48d890e468a272e0bfb7109900c4077906d088e85448c058a6be420eca24ed42bc9c0a0f1922c08c5ae6b0cfd85aa71662a5f7157791a SHA512 00413a8354e2277f50c29851ed49a97f76bacb2017d61b10333981d15bcee13eceef8711e87d2aef1ed4f8a85763c6b1e7e21d61a57e7f689fe4aa6e67f4c140 DIST win32job-1.0.2.crate 10701 BLAKE2B 5fa4ab27b7fe9852db2aa5d30b6230f7577c95bbcc9dcbc9f392c3c981be7cbc2d9f378f102c3f4839ff52bb42cde500f9cb6d98703dfc40734e80973af3d8e5 SHA512 32ef38ab0aba881323d1963cb02691490f585a1999c98019ccfbb1c23c8919a4d2ced6f03084b00a038cb1c644bc9d396c4242e72b58281decdedc68269e54fb @@ -309,7 +427,10 @@ DIST winapi-i686-pc-windows-gnu-0.4.0.crate 2918815 BLAKE2B 4d357e4d30f955297217 DIST winapi-util-0.1.5.crate 10164 BLAKE2B fc800aceae5249a858c806c3e969ef2545766099872d856ebee51c883d9acf1122278db9607d50ca53eac351502b700fd2463900932d342240f97f683d517963 SHA512 7baeb661f397c4693dfa001fdc774b323c51a7c55caad40f2de5112a1cefd1d6151e3df41fa4ee193460a5905917c83d2b1de5fa10b4bd014ad96690af95c0fd DIST winapi-x86_64-pc-windows-gnu-0.4.0.crate 2947998 BLAKE2B 2ad1ea8b5fa07d544e910ccba043ae925269b76b26c9da356305b34b86741dd8b9aff0b9ffe3d562db4fcd7d7c46a11ce9e3168b782b1d89ae6881742b7ede82 SHA512 4a654af6a5d649dc87e00497245096b35a2894ae66f155cb62389902c3b93ddcc5cf7d0d8b9dd97b291d2d80bc686af2298e80abef6ac69883f4a54e79712513 DIST windows-0.42.0.crate 11983675 BLAKE2B 1c751571bcf8991646c400de7e17799a38510d8d2dbc0c36eb5cd756490578c35d72d479e93125131a9dffdecf22c438bcf08a0fe0ebfa0e7c45f544758b9ee7 SHA512 e289d5c3335cad29a27ade20258b47cd7f28a1fb85060f74b8ab163a1ca938530c9040eb90e60e542d400ee38a0b7773d8e2ffca297485d488e59e22d7f3a809 +DIST windows-0.44.0.crate 11502336 BLAKE2B 4b0ea7db7cf38938edbbd7597b5f355a94ce1a39f58c9d51f280628b787b4f6da98fc6d14379b6cf6ce735e88704b0ee4b78b5e5f7ee90d3ba47fe58980f8e72 SHA512 846d870eafb43997bcc546eeb2859d1a53eb3a2e3b0a5bd21f33e9880a786fc6790912cc0eb0d121e18a8f80fc90b8670f022d18aca47b3407377a4bcccfbd2b DIST windows-sys-0.42.0.crate 3006791 BLAKE2B 7a0962364ecc416cf0ae7e49cce1298a12d819003e488f6e77aff1a52710f00378638b6a05db5557a031e1b75659587657971ddc63eaab35495133762f99a7b2 SHA512 b07b119688f3e3ad234d36979947f34e8e19988fb62101afbe18ec8afc9c8a4261128939df8bbb849d5c5982422cb4c50dbcba70f2bf401fbb7c605df1b2b354 +DIST windows-sys-0.45.0.crate 2568659 BLAKE2B 6f2d634d121a9bf41e2887e277a73f33aee69b04c7fcfc6ff973d21902787997f1e186f530e9226cddc003ffc3f85a179c069c8a8688de459f617df92d33f94f SHA512 f239346c0141b95aa76e0771e2f4e38b9a592f3cd92c6001de353637cd65cd73b94cbf9917a4eaa9b0c0b2e6e2af920b9cf6b3fccb52770df5160254cffc1c47 +DIST windows-targets-0.42.1.crate 5524 BLAKE2B 755cb6184733417763bb650fb0bd84bc757503aacbf0d91b811d42e9e8efda05434bbe5518006a88937a82a2a607605a9b609df4f34eb58674d09564667d95f3 SHA512 940c85f6214aa4da17787d3bbfe8d6107a9a7fe4f2e2fcf2b1634facf4619620ac2a7a835ebdd0f57970c992c459ba0a780e64e89945005b240c92563c42711a DIST windows_aarch64_gnullvm-0.42.1.crate 362795 BLAKE2B 722b45789bcd1d973803b327d44072fbf9c904d448e29ae9e56d2f9d1a3e9b64e06883e4bf5ebf141f1e924235858fd1472e07a744cc5b16a0a3a4fc8ec8f6d4 SHA512 51eb9fa7ea441a9fef590c12576a8bbef74932d40fafde8f9e3a28f2734ce5aee6dd5fa478fb3847443241c8c392bb4abbc6014c71260bf924431779f7184f73 DIST windows_aarch64_msvc-0.42.1.crate 664655 BLAKE2B f4a060b802016a6d77a8ea6ac44c35dfec384acef9c45f932e2b6aca9d3ac48ae031f99e5b58f270d6020b8796e9dd06f7e8ffa7cc5610ea3f69181c2be7adc8 SHA512 f6412bae4b041201ef94e5a159ce90fd6b09816350204d4f573c1afdfb0a6d62d7887fbc2e416b40ec1d4478db521be492edf4703d87482d6d0006a51b827538 DIST windows_i686_gnu-0.42.1.crate 733428 BLAKE2B c1ca24973aca06b255d9317735cca7a13f7f69293da52dad41df43a5cdf48aac3d40d8b6765cf564905fb71cb548308d757f01167efe7a61da7bd2e2a7080f0a SHA512 61c3271b07df1d4585c875d27cf1686c8f595dcbb79626e8d15ff47228f7b7a4556d3d994566ccceee0d6795a4c76767f85f4579282fc9eed731e04c7e193a57 @@ -317,11 +438,15 @@ DIST windows_i686_msvc-0.42.1.crate 722583 BLAKE2B e03978daa0ac95d7bd9f594b28360 DIST windows_x86_64_gnu-0.42.1.crate 697614 BLAKE2B 3cef0a3da3ce142bbdf932dbb54eb6473070c5722c9ec791dc4077efe2d774d51f8b3d06b3321f8f21cc49764f44d54b3432ee7a0d9376925b422b197f5d557e SHA512 f4c16b587fe407dee1f39df029c52302a0fbd5f519816a8d974fe9c2f928043b14037c701c0f3c9cf2e5c765e82430fd4b71615fe63a66a88159f7b15506f892 DIST windows_x86_64_gnullvm-0.42.1.crate 362788 BLAKE2B fff81e63b86ad04ce22ad3e05ec4cc02c0b791384c93bafb50832f6db9cb7fd9301ad3845339a08dd8cadac1d59f3e8dc9d5f56d7a987989dbfc16b9131af67b SHA512 8cc988b5995a4726bb7518b7fccff528274ad9b2b0160fe247eb240f9ced10db95afe7bff91bfc5a08ebd8237b6821e4a4abad1ff9da45022f1ce7e7586bcf05 DIST windows_x86_64_msvc-0.42.1.crate 664606 BLAKE2B 6c460cfa392aad0d11add200d652a42ee1a60052570527c4e85405f765255375729d4e26287f5246dcad65fa89ccadea23c5135171b311e6da5027e33149c547 SHA512 a651b1a34f101125f929c1d1f5e933691c7a5c19d0bb0c501fb6812236d2771805428e3bd5e05be7d72715595f5fc9e7978dd7934e5d92e9b78a41c2ece695b2 +DIST winnow-0.3.4.crate 176626 BLAKE2B 9e1a247b36054002695f40eae7126dada092889bfb4b69aca81cd209418d6dd97f54cd260765f3e52a36b58a4dc86212d75366621e6c727088a71afabf0b4c92 SHA512 edfcaaa3229c51bb0837c4cc1a989c521dac6bebad0a8dba4aa6a60ee26272a8d88789c731a9b31a0800333dc372d87e6438ae76457359a34a184700d9ea728d DIST winreg-0.10.1.crate 25725 BLAKE2B db536f2a098e4ff6ae4ff80a19bd2029030d68007c3d6100f5135da1a7c223463fc17640f533bc1d4e8c53e9becb186d98351719b3b6276802c68cc755b9ba4e SHA512 09f2d18f62c3c427ebed40d667b672bb778629502ad3c39541f324b2d5ac41f0822c98b7e5320314144130580da46f1e8e51928941850e7d4af28455a564360c DIST xattr-0.2.3.crate 11959 BLAKE2B e67cc186c3a86c3019cb5832aa515267671b8f11f88ba6253a3217eaf06d70b72a0367e9c8fb42a584b5b57113f8788c67f4e3d70db6427dd4e4a6efff59ac44 SHA512 55b99a9a9440463050b672dcacb7e1d1cc78f2b6f40ea7bff2134ee3a1c787d64972a1e00d2e06cf5a341bf76eff32f68e17a0c939a23f2c9a892715722afcac DIST yaml-rust-0.4.5.crate 47783 BLAKE2B 3e888c5cc7afb43eaf3aaab2b6f47b86df164a66eb54d4e166b965cc84b1e06cd17bd992a0d6ee175d9a73a76e2b44a13167246383ed054afcf3cc1710b309cb SHA512 7621dc8dfd5e7d4a7a8805b2a7e8319b63b852367655f2359d4e3e8fec6c4fad52d75c46ce1161e4c674eac0780b757ce9d34e664e304d8d2beec7afa0363ea0 DIST yansi-0.5.1.crate 16525 BLAKE2B 3b5a93b98293daae72f53bf3f13bfc05feba8d5b27921f79595f7448fbcb9a0dfa6cd70f467c5735b914c46b7d3592e6cce080c540a458a904308525eb3aa839 SHA512 7b33005a066cc612408a65df6533e8718d1de43efc0fd57416a19dc2b811497570e6e18f100fb26073565e395e711518c27de7d644ae64777713f1a102eb16d2 DIST zeroize-1.5.7.crate 18861 BLAKE2B 5f203d91aae732b928e2acd02656a486f0f930b8daea96b927552f5790862489d83c7bd48b0c7c62a3273e7a04833a16149ce489847f17fbb037e88922d359a2 SHA512 e0688681bceba324d36ea4dc552791801dc93b5882d106b79dd317af99cb718b711899bfd09917a811d23096693448801e64f0651bd9eeae7895618821d88fa9 DIST zstd-0.12.2+zstd.1.5.2.crate 29604 BLAKE2B e9667e4feac5b08b7f500cdd000e1dbb2cc9a27ead756ec1018945adf1cb824c395dac9caea6335d2e1789558a161ee4f105b6cb93f975a23281461e43204de5 SHA512 11b5f28ec6515d32c7dacdf83b95db40af73789413676419346140de5b583c68b247d072acd61cc8c5367beea3294cd6a9cf26b434091a4c9dd91d5f5297502c +DIST zstd-0.12.3+zstd.1.5.2.crate 29693 BLAKE2B 57789ec212f12d3416784d7d8830a197437fd5a7c90ed62dd4b5add87f84039fe7afebb1c37f0973644845129868c0c6009bd39163b6afcc8b218653d2491b98 SHA512 1ee79370e2a7517638e51ea3c5c2f7f9d3f42364eefc5b10e909f52e50bffd141ecf2ac4d3701bd7655c965dd03a608ca5b69743fc2ed877f4dbfcb79715b70f DIST zstd-safe-6.0.2+zstd.1.5.2.crate 20107 BLAKE2B 07e4a06b89646502badc9b72c759b049e9bbaec74060702f3c2463cdcc328bff8c517b747aae39de1173fb314db77c01ac57702dba1f0442e3f7a1bc07f3420b SHA512 eaf27578d593e5d1b67b9a4e733c8bab2882e385529390ffa0fe202940ac0e955efa57f04c672f0a3a63fd207fc935e9824b286132b8e8a1779c859af68244f9 +DIST zstd-safe-6.0.4+zstd.1.5.4.crate 20856 BLAKE2B 05ef99fecb0d49c47dda75c23e89b7c5193ea00cee153be1856818ce3cbb97171b631ad27c01bde6fb02cc532a4aa8115ad9c6f2359ae6917e86062d833b75e4 SHA512 db03385ae800053ddb1bb6a2089712f284c21e43a99deeed6367ca8dabbb3f96b12066dfb57f484172a386fc9576c28e38d1a7bbf838debc05877bc68cd5c9cf DIST zstd-sys-2.0.5+zstd.1.5.2.crate 713791 BLAKE2B 050a745aa72fb2f58d637844e89f2ee5268268d9817f6d48134935390e0fc6f373bc4257f828e3ba926de807cd6c42dc0ade1d51916099895b256bddb6871fcc SHA512 bc9435bf84b4d5ef5f65dc6e4097ca57a03da7e7c4018c087a41ea8c4b6eec08820a6682161793241d0237477f67c807f2adf1bf676556449345bc9d75f5414b +DIST zstd-sys-2.0.7+zstd.1.5.4.crate 732100 BLAKE2B 1859d1feb7c31d53df56b198b88a391bf09e221d09d449878043dc780ae6e3b3a0ad05fe3fb4980e849ab914f68d281d41f51f7bbceec6e1403d9b4e25572b4c SHA512 dcddc4f0d7486ee144df4e2173536dc02c9714b6f702edb9a9e04b4c02f4d347b5a70fbc020c1d08c079d38a423c4dc8b6b86e7e43ec3ccfcc8e3ff9861be11b diff --git a/dev-util/cargo-nextest/cargo-nextest-0.9.50.ebuild b/dev-util/cargo-nextest/cargo-nextest-0.9.50.ebuild new file mode 100644 index 000000000000..456d57045f7e --- /dev/null +++ b/dev-util/cargo-nextest/cargo-nextest-0.9.50.ebuild @@ -0,0 +1,377 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Autogenerated by pycargoebuild 0.6.1 + +EAPI=8 + +CRATES=" + addr2line-0.19.0 + adler-1.0.2 + ahash-0.7.6 + aho-corasick-0.7.20 + android_system_properties-0.1.5 + anyhow-1.0.69 + arrayvec-0.5.2 + async-scoped-0.7.1 + async-stream-0.3.4 + async-stream-impl-0.3.4 + async-trait-0.1.64 + atomicwrites-0.4.0 + atty-0.2.14 + autocfg-1.1.0 + axum-0.6.9 + axum-core-0.3.2 + backtrace-0.3.67 + base64-0.13.1 + base64-0.21.0 + bit-set-0.5.3 + bit-vec-0.6.3 + bitflags-1.3.2 + bstr-0.2.17 + bumpalo-3.12.0 + bytecount-0.3.2 + bytecount-0.6.3 + byteorder-1.4.3 + bytes-1.4.0 + camino-1.1.3 + cargo-platform-0.1.2 + cargo_metadata-0.15.3 + cc-1.0.79 + cfg-expr-0.13.0 + cfg-if-1.0.0 + chrono-0.4.23 + clap-4.1.8 + clap_derive-4.1.8 + clap_lex-0.3.2 + codespan-reporting-0.11.1 + color-eyre-0.6.2 + config-0.13.3 + console-0.15.5 + console-api-0.4.0 + console-subscriber-0.1.8 + core-foundation-0.9.3 + core-foundation-sys-0.8.3 + crc32fast-1.3.2 + crossbeam-channel-0.5.6 + crossbeam-utils-0.8.14 + ctor-0.1.26 + cxx-1.0.91 + cxx-build-1.0.91 + cxxbridge-flags-1.0.91 + cxxbridge-macro-1.0.91 + debug-ignore-1.0.5 + dialoguer-0.10.3 + diff-0.1.13 + duct-0.13.6 + dunce-1.0.3 + either-1.8.1 + enable-ansi-support-0.2.1 + encode_unicode-0.3.6 + encoding_rs-0.8.32 + env_logger-0.10.0 + errno-0.2.8 + errno-dragonfly-0.1.2 + eyre-0.6.8 + fastrand-1.9.0 + filetime-0.2.20 + fixedbitset-0.4.2 + flate2-1.0.25 + fnv-1.0.7 + foreign-types-0.3.2 + foreign-types-shared-0.1.1 + form_urlencoded-1.1.0 + future-queue-0.2.2 + futures-0.3.26 + futures-channel-0.3.26 + futures-core-0.3.26 + futures-executor-0.3.26 + futures-io-0.3.26 + futures-macro-0.3.26 + futures-sink-0.3.26 + futures-task-0.3.26 + futures-util-0.3.26 + getrandom-0.2.8 + gimli-0.27.2 + goldenfile-1.4.5 + guppy-0.15.2 + guppy-workspace-hack-0.1.0 + h2-0.3.16 + hashbrown-0.12.3 + hdrhistogram-7.5.2 + heck-0.4.1 + hermit-abi-0.1.19 + hermit-abi-0.2.6 + hermit-abi-0.3.1 + home-0.5.4 + http-0.2.9 + http-body-0.4.5 + http-range-header-0.3.0 + httparse-1.8.0 + httpdate-1.0.2 + humantime-2.1.0 + humantime-serde-1.1.1 + hyper-0.14.24 + hyper-rustls-0.23.2 + hyper-timeout-0.4.1 + hyper-tls-0.5.0 + iana-time-zone-0.1.53 + iana-time-zone-haiku-0.1.1 + idna-0.3.0 + indent_write-2.2.0 + indenter-0.3.3 + indexmap-1.9.2 + indicatif-0.17.3 + indoc-2.0.0 + insta-1.28.0 + instant-0.1.12 + io-lifetimes-1.0.5 + ipnet-2.7.1 + is-terminal-0.4.4 + is_ci-1.1.1 + itertools-0.10.5 + itoa-1.0.5 + jobserver-0.1.26 + js-sys-0.3.61 + lazy_static-1.4.0 + lexical-core-0.7.6 + libc-0.2.139 + libm-0.2.6 + link-cplusplus-1.0.8 + linked-hash-map-0.5.6 + linux-raw-sys-0.1.4 + log-0.4.17 + maplit-1.0.2 + matchers-0.1.0 + matchit-0.7.0 + memchr-2.5.0 + miette-5.5.0 + miette-derive-5.5.0 + mime-0.3.16 + minimal-lexical-0.2.1 + miniz_oxide-0.6.2 + mio-0.8.6 + mukti-metadata-0.1.0 + native-tls-0.2.11 + nested-0.1.1 + nix-0.26.2 + nom-5.1.2 + nom-7.1.3 + nom-tracable-0.8.0 + nom-tracable-macros-0.8.0 + nom_locate-1.0.0 + nom_locate-4.1.0 + num-integer-0.1.45 + num-traits-0.2.15 + num_cpus-1.15.0 + number_prefix-0.4.0 + object-0.30.3 + once_cell-1.17.1 + openssl-0.10.45 + openssl-macros-0.1.0 + openssl-probe-0.1.5 + openssl-sys-0.9.80 + os_pipe-1.1.3 + os_str_bytes-6.4.1 + output_vt100-0.1.3 + owo-colors-3.5.0 + pathdiff-0.2.1 + percent-encoding-2.2.0 + petgraph-0.6.3 + pin-project-1.0.12 + pin-project-internal-1.0.12 + pin-project-lite-0.2.9 + pin-utils-0.1.0 + pkg-config-0.3.26 + portable-atomic-0.3.19 + ppv-lite86-0.2.17 + pretty_assertions-1.3.0 + proc-macro-error-1.0.4 + proc-macro-error-attr-1.0.4 + proc-macro2-0.4.30 + proc-macro2-1.0.51 + proptest-1.1.0 + proptest-derive-0.3.0 + prost-0.11.8 + prost-derive-0.11.8 + prost-types-0.11.8 + quick-error-1.2.3 + quick-error-2.0.1 + quick-xml-0.23.1 + quick-xml-0.27.1 + quote-0.6.13 + quote-1.0.23 + rand-0.8.5 + rand_chacha-0.3.1 + rand_core-0.6.4 + rand_xorshift-0.3.0 + recursion-0.4.0 + redox_syscall-0.2.16 + regex-1.7.1 + regex-automata-0.1.10 + regex-syntax-0.6.28 + reqwest-0.11.14 + ring-0.16.20 + rustc-demangle-0.1.21 + rustix-0.36.9 + rustls-0.20.8 + rustls-pemfile-1.0.2 + rustversion-1.0.11 + rusty-fork-0.3.0 + ryu-1.0.12 + schannel-0.1.21 + scratch-1.0.3 + sct-0.7.0 + security-framework-2.8.2 + security-framework-sys-2.8.0 + self_update-0.36.0 + semver-1.0.16 + serde-1.0.152 + serde_derive-1.0.152 + serde_ignored-0.1.7 + serde_json-1.0.94 + serde_path_to_error-0.1.10 + serde_spanned-0.6.1 + serde_urlencoded-0.7.1 + sharded-slab-0.1.4 + shared_child-1.0.0 + shell-words-1.1.0 + signal-hook-registry-1.4.1 + similar-2.2.1 + similar-asserts-1.4.2 + slab-0.4.8 + smallvec-1.10.0 + smawk-0.3.1 + smol_str-0.1.24 + socket2-0.4.7 + spin-0.5.2 + static_assertions-1.1.0 + strip-ansi-escapes-0.1.1 + strsim-0.10.0 + structmeta-0.1.5 + structmeta-derive-0.1.5 + supports-color-1.3.1 + supports-color-2.0.0 + supports-hyperlinks-1.2.0 + supports-unicode-1.0.2 + syn-0.15.44 + syn-1.0.109 + sync_wrapper-0.1.2 + tar-0.4.38 + target-lexicon-0.12.6 + target-spec-1.3.1 + target-spec-miette-0.1.0 + tempfile-3.4.0 + termcolor-1.2.0 + terminal_size-0.1.17 + test-case-3.0.0 + test-case-core-3.0.0 + test-case-macros-3.0.0 + test-strategy-0.3.0 + textwrap-0.15.2 + thiserror-1.0.38 + thiserror-impl-1.0.38 + thread_local-1.1.7 + time-0.1.45 + tinyvec-1.6.0 + tinyvec_macros-0.1.1 + tokio-1.26.0 + tokio-io-timeout-1.2.0 + tokio-macros-1.8.2 + tokio-native-tls-0.3.1 + tokio-rustls-0.23.4 + tokio-stream-0.1.12 + tokio-util-0.7.7 + toml-0.5.11 + toml-0.7.2 + toml_datetime-0.6.1 + toml_edit-0.19.4 + tonic-0.8.3 + tower-0.4.13 + tower-http-0.4.0 + tower-layer-0.3.2 + tower-service-0.3.2 + tracing-0.1.37 + tracing-attributes-0.1.23 + tracing-core-0.1.30 + tracing-futures-0.2.5 + tracing-subscriber-0.3.16 + try-lock-0.2.4 + twox-hash-1.6.3 + unarray-0.1.4 + unicode-bidi-0.3.10 + unicode-ident-1.0.7 + unicode-linebreak-0.1.4 + unicode-normalization-0.1.22 + unicode-segmentation-1.10.1 + unicode-width-0.1.10 + unicode-xid-0.1.0 + untrusted-0.7.1 + url-2.3.1 + urlencoding-2.1.2 + utf8parse-0.2.0 + uuid-1.3.0 + valuable-0.1.0 + vcpkg-0.2.15 + version_check-0.9.4 + vte-0.10.1 + vte_generate_state_changes-0.1.1 + wait-timeout-0.2.0 + want-0.3.0 + wasi-0.10.0+wasi-snapshot-preview1 + wasi-0.11.0+wasi-snapshot-preview1 + wasm-bindgen-0.2.84 + wasm-bindgen-backend-0.2.84 + wasm-bindgen-futures-0.4.34 + wasm-bindgen-macro-0.2.84 + wasm-bindgen-macro-support-0.2.84 + wasm-bindgen-shared-0.2.84 + web-sys-0.3.61 + webpki-0.22.0 + webpki-roots-0.22.6 + win32job-1.0.2 + winapi-0.3.9 + winapi-i686-pc-windows-gnu-0.4.0 + winapi-util-0.1.5 + winapi-x86_64-pc-windows-gnu-0.4.0 + windows-0.44.0 + windows-sys-0.42.0 + windows-sys-0.45.0 + windows-targets-0.42.1 + windows_aarch64_gnullvm-0.42.1 + windows_aarch64_msvc-0.42.1 + windows_i686_gnu-0.42.1 + windows_i686_msvc-0.42.1 + windows_x86_64_gnu-0.42.1 + windows_x86_64_gnullvm-0.42.1 + windows_x86_64_msvc-0.42.1 + winnow-0.3.4 + winreg-0.10.1 + xattr-0.2.3 + yaml-rust-0.4.5 + yansi-0.5.1 + zeroize-1.5.7 + zstd-0.12.3+zstd.1.5.2 + zstd-safe-6.0.4+zstd.1.5.4 + zstd-sys-2.0.7+zstd.1.5.4 +" + +inherit cargo + +DESCRIPTION="A next-generation test runner for Rust" +HOMEPAGE="https://nexte.st/" +SRC_URI=" https://github.com/nextest-rs/nextest/archive/refs/tags/${P}.tar.gz" +SRC_URI+=" $(cargo_crate_uris)" +S="${WORKDIR}"/nextest-${P}/${PN} + +LICENSE="|| ( Apache-2.0 MIT )" +# Dependent crate licenses +LICENSE+=" + Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT MPL-2.0 + Unicode-DFS-2016 + || ( CC0-1.0 MIT-0 ) +" +SLOT="0" +KEYWORDS="~amd64" + +QA_FLAGS_IGNORED="usr/bin/cargo-nextest" diff --git a/dev-util/cmake/cmake-3.25.2.ebuild b/dev-util/cmake/cmake-3.25.2.ebuild index decf97199034..d9689aa41b2d 100644 --- a/dev-util/cmake/cmake-3.25.2.ebuild +++ b/dev-util/cmake/cmake-3.25.2.ebuild @@ -47,7 +47,7 @@ else https://github.com/Kitware/CMake/releases/download/v$(ver_cut 1-3)/${MY_P}-SHA-256.txt.asc )" - KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" BDEPEND="verify-sig? ( sec-keys/openpgp-keys-bradking )" fi diff --git a/dev-util/diffoscope/Manifest b/dev-util/diffoscope/Manifest index 8118a8cca231..a6b5fbc57cc0 100644 --- a/dev-util/diffoscope/Manifest +++ b/dev-util/diffoscope/Manifest @@ -1,2 +1,3 @@ DIST diffoscope-229.tar.gz 3164192 BLAKE2B bee9fa1561ddcfde98cfa44cd6d66a28c636dbc7f3ec1f4895e91dfd3b66c039b68d53be0528b94c112552069886c3c81de4d9b9bc9038d183afdc9fdde6ddb9 SHA512 825c9c33f3088ba082ea3b998594445987558ee62b8b1fbfcded9b72a739faaa73908f8753b8772b3b1a8a43dbcfd52978265a18bdd92605defcd174884ccb23 DIST diffoscope-238.tar.gz 3287285 BLAKE2B d745c0b279ce6e29cbe9c6655c48d2fb4c8d230c5d4931048be83b4d97f6b45bff5424409b559988c2efba2dcbb80778c97e3f726174ae154c479ec24b557c34 SHA512 8600a3a29f7d4a80f0a0b37e6277e46e377c6f056cf111356f80723f0e4a309e9bae087643019fe1c46f99430b35389083e1156911fa8d3375993b550342b25f +DIST diffoscope-239.tar.gz 3167714 BLAKE2B 8d03039ba434422c7ec02a9d1d50977811e3ad15a0cf7a6eeeeec5642b94032f0eb5737a2232789421a00a4b6df2550ffaafc8a15201b62e2796d8168300bca5 SHA512 0a8c9286385748adbdc0a42dbdbba7201571cadf05690a7c2e67238026211ccea5d1b8c3bb9d11dad711fae267f3b7701145551453e901ea677f4433fd408730 diff --git a/dev-util/diffoscope/diffoscope-239.ebuild b/dev-util/diffoscope/diffoscope-239.ebuild new file mode 100644 index 000000000000..d598e5340b57 --- /dev/null +++ b/dev-util/diffoscope/diffoscope-239.ebuild @@ -0,0 +1,120 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE="ncurses" +inherit distutils-r1 pypi + +DESCRIPTION="Will try to get to the bottom of what makes files or directories different" +HOMEPAGE="https://diffoscope.org/ https://pypi.org/project/diffoscope/" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~x86" +IUSE="acl binutils bzip2 libcaca colord cpio +diff docx dtc e2fsprogs file +find gettext gif gpg haskell hdf5 hex imagemagick iso java llvm lzma +mono opendocument pascal pdf postscript R rpm sqlite squashfs +ssh tar test tcpdump zip zlib zstd" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/python-magic[${PYTHON_USEDEP}] + dev-python/libarchive-c[${PYTHON_USEDEP}] + dev-python/distro[${PYTHON_USEDEP}] + dev-python/tlsh[${PYTHON_USEDEP}] + acl? ( sys-apps/acl ) + binutils? ( sys-devel/binutils ) + bzip2? ( app-arch/bzip2 ) + libcaca? ( media-libs/libcaca ) + colord? ( x11-misc/colord ) + cpio? ( app-arch/cpio ) + diff? ( sys-apps/diffutils ) + docx? ( app-text/docx2txt ) + dtc? ( sys-apps/dtc ) + e2fsprogs? ( sys-fs/e2fsprogs ) + file? ( sys-apps/file ) + find? ( sys-apps/findutils ) + gettext? ( sys-devel/gettext ) + gif? ( media-libs/giflib ) + gpg? ( app-crypt/gnupg ) + haskell? ( dev-lang/ghc ) + hdf5? ( sci-libs/hdf5 ) + hex? ( app-editors/vim-core ) + imagemagick? ( media-gfx/imagemagick ) + iso? ( app-cdr/cdrtools ) + java? ( virtual/jdk ) + llvm? ( sys-devel/llvm ) + lzma? ( app-arch/xz-utils ) + mono? ( dev-lang/mono ) + opendocument? ( app-text/odt2txt ) + pascal? ( dev-lang/fpc ) + pdf? ( + app-text/pdftk + app-text/poppler + dev-python/pypdf[${PYTHON_USEDEP}] + ) + postscript? ( app-text/ghostscript-gpl ) + R? ( dev-lang/R ) + rpm? ( app-arch/rpm ) + sqlite? ( dev-db/sqlite:3 ) + squashfs? ( sys-fs/squashfs-tools ) + ssh? ( net-misc/openssh ) + tar? ( app-arch/tar ) + tcpdump? ( net-analyzer/tcpdump ) + zip? ( app-arch/unzip ) + zlib? ( app-arch/gzip ) + zstd? ( app-arch/zstd ) +" +# Presence of filemagic's magic.py breaks imports +# of dev-python/python-magic: bug #716482 +RDEPEND+=" !dev-python/filemagic" + +# pull in optional tools for tests: +# img2txt: bug #797688 +# docx2txt: bug #797688 +BDEPEND=" + test? ( + app-text/docx2txt + app-text/html2text + media-libs/libcaca + virtual/imagemagick-tools[jpeg] + ) +" + +EPYTEST_DESELECT=( + # Test seems to use different tarball + tests/test_presenters.py::test_text_proper_indentation + + # Needs triage + tests/comparators/test_binary.py::test_with_compare_details_and_tool_not_found + tests/comparators/test_rlib.py::test_item3_deflate_llvm_bitcode + tests/comparators/test_gif.py::test_has_visuals + + # img2txt based failures, bug #797688 + tests/comparators/test_ico_image.py::test_diff + tests/comparators/test_ico_image.py::test_diff_meta + tests/comparators/test_ico_image.py::test_diff_meta2 + tests/comparators/test_ico_image.py::test_has_visuals + tests/comparators/test_jpeg_image.py::test_diff + tests/comparators/test_jpeg_image.py::test_compare_non_existing + tests/comparators/test_jpeg_image.py::test_diff_meta + tests/comparators/test_jpeg_image.py::test_has_visuals + + # docx2txt based falures, bug #797688 + tests/comparators/test_docx.py::test_diff + + # Formatting + tests/test_source.py::test_code_is_black_clean + + # Fails on ZFS + tests/test_main.py::test_non_unicode_filename + + # Fails on (unreleased) LLVM 16 with minor difference + tests/comparators/test_macho.py::test_llvm_diff + tests/comparators/test_elf.py::test_libmix_differences +) + +distutils_enable_tests pytest diff --git a/dev-util/gnome-builder/Manifest b/dev-util/gnome-builder/Manifest index c38e35504f85..9d7c70010963 100644 --- a/dev-util/gnome-builder/Manifest +++ b/dev-util/gnome-builder/Manifest @@ -1,2 +1,3 @@ DIST gnome-builder-43.4.tar.xz 10284936 BLAKE2B 50af653566b35525a751d1ab0698c42e205aa8ab3205b390d10625f67a984986f24e5c0a5512629d81c082265435d5f39380de2c675d64e9f0b6d47c2fc62451 SHA512 c8600aea7bd01fb8a75baf321d8670600aa0ac77f7a42cccc7107fd9d2addd0264f132a4e36c2ae66ad7dbd8dc94dfc52421655254eee93d0a3298aa2cc224db DIST gnome-builder-43.6.tar.xz 10289396 BLAKE2B e9b8c98f5463906e0ec522307f0ec07c130045288db5b1295b56320ac36814019ee3350f73543c8a1655812dcd8b26da4cbe9d1b5bd3bda8cc7a943f308a91ee SHA512 e444843e1eae2a901048dc6f2ff7683c3693fcbceeb113ebd28e7a51d1ea9c3b7e317e28ceae9b659dc89cf3b75cabd526fff9483b81c623d809ca268a2c9a45 +DIST gnome-builder-44.1.tar.xz 9785408 BLAKE2B 43a41aa4856f3bbd84b6bab6686cd128d697d54e539d6b88e668a088eb256d11459d058046428564a706bf6e3766e3f61f9ff503151f16647f82bbbe400ab3fa SHA512 92653392fcd6c3a83f78c500037e8b8be05663cc8918e5521baacfbf5d251896358a284e7b37e4c49428c921b7f0cc2a96afa029cd00589b48f40b365e4decbc diff --git a/dev-util/gnome-builder/gnome-builder-44.1.ebuild b/dev-util/gnome-builder/gnome-builder-44.1.ebuild new file mode 100644 index 000000000000..1961588e03a8 --- /dev/null +++ b/dev-util/gnome-builder/gnome-builder-44.1.ebuild @@ -0,0 +1,275 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) +DISABLE_AUTOFORMATTING=1 +FORCE_PRINT_ELOG=1 + +inherit gnome.org gnome2-utils llvm meson optfeature python-single-r1 readme.gentoo-r1 virtualx xdg + +DESCRIPTION="An IDE for writing GNOME-based software" +HOMEPAGE="https://wiki.gnome.org/Apps/Builder https://gitlab.gnome.org/GNOME/gnome-builder" + +# FIXME: Review licenses at some point +LICENSE="GPL-3+ GPL-2+ LGPL-3+ LGPL-2+ MIT CC-BY-SA-3.0 CC0-1.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="clang doc +d-spy flatpak +git gtk-doc spell +sysprof test +webkit" +REQUIRED_USE=" + ${PYTHON_REQUIRED_USE} + flatpak? ( git ) +" + +# When bumping, pay attention to all the included plugins/*/meson.build (and other) build files and the requirements within. +# `grep -rI dependency * --include='meson.build'` can give a good initial idea for external deps and their double checking. +# The listed RDEPEND order should roughly match that output as well, with toplevel one first then sorted by file path. +# Most plugins have no extra requirements and default to enabled; we need to handle the ones with extra requirements. Many of +# them have optional runtime dependencies, for which we try to at least notify the user via DOC_CONTENTS (but not all small +# things); `grep -rI -e 'command-pattern.*=' -e 'push_arg'` can give a (spammy) idea, plus python imports in try/except. + +# Editorconfig needs old pcre, with vte migrating away, might want it optional or ported to pcre2? +# An introspection USE flag of a dep is required if any introspection based language plugin wants to use it (grep for gi.repository). Last full check at 3.28.4 + +# TODO: Handle llvm slots via llvm.eclass; see plugins/clang/meson.build +RDEPEND=" + >=dev-libs/glib-2.75.0:2 + >=gui-libs/gtk-4.8:4[introspection] + >=gui-libs/libadwaita-1.3.0:1 + >=gui-libs/libpanel-1.1.2:1 + >=gui-libs/gtksourceview-5.7.2:5[introspection] + >=dev-libs/json-glib-1.2.0 + >=dev-libs/jsonrpc-glib-3.43.0:= + >=dev-libs/libdex-0.1.1:= + >=dev-libs/libpeas-1.34.0[python,${PYTHON_SINGLE_USEDEP}] + dev-libs/libportal:=[gtk,introspection] + >=dev-libs/template-glib-3.36.1:=[introspection] + >=gui-libs/vte-0.70.0:2.91-gtk4[introspection] + >=dev-libs/libxml2-2.9.0 + webkit? ( >=net-libs/webkit-gtk-2.38.0:6=[introspection] ) + >=app-text/cmark-0.29.0:0= + d-spy? ( >=dev-util/d-spy-1.4.0:1 ) + app-text/editorconfig-core-c + flatpak? ( + dev-util/ostree + >=net-libs/libsoup-3:3.0 + >=sys-apps/flatpak-1.10.2 + ) + git? ( + dev-libs/libgit2:=[ssh,threads] + >=dev-libs/libgit2-glib-1.1.0[ssh] + ) + + >=dev-libs/gobject-introspection-1.54.0:= + $(python_gen_cond_dep ' + >=dev-python/pygobject-3.22.0:3[${PYTHON_USEDEP}] + ') + ${PYTHON_DEPS} + clang? ( sys-devel/clang:= ) + spell? ( + app-text/enchant:2 + dev-libs/icu:= + ) + sysprof? ( + >=dev-util/sysprof-capture-3.46.0:4 + >=dev-util/sysprof-3.46.0:0/4 + ) +" +DEPEND="${RDEPEND}" +# TODO: runtime ctags path finding.. + +# desktop-file-utils required for tests, but we have it in deptree for xdg update-desktop-database anyway, so be explicit and unconditional +# appstream-glib needed for validation with appstream-util with FEATURES=test +BDEPEND=" + doc? ( + $(python_gen_cond_dep ' + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}] + ') + ) + gtk-doc? ( + dev-util/gi-docgen + app-text/docbook-xml-dtd:4.3 + ) + test? ( + dev-libs/appstream-glib + sys-apps/dbus + ) + dev-util/desktop-file-utils + dev-util/glib-utils + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +DOC_CONTENTS='gnome-builder can use various other dependencies on runtime to provide +extra capabilities beyond these expressed via USE flags. Some of these +that are currently available with packages include: + +* dev-util/ctags with exuberant-ctags selected via "eselect ctags" for + C, C++, Python, JavaScript, CSS, HTML and Ruby autocompletion, semantic + highlighting and symbol resolving support. +* dev-python/python-lsp-server for more accurate Python + autocompletion support. +* dev-util/valgrind for integration with valgrind. +* dev-util/meson for integration with the Meson build system. +* virtual/rust for integration with the Rust Cargo build system. +* dev-util/cmake for integration with the CMake build system. +* net-libs/nodejs[npm] for integration with the NPM package system. +' +# FIXME: Package codespell and mention here +# FIXME: Package gnome-code-assistance and mention here, or maybe USE flag and default enable because it's rather important +# eslint for additional diagnostics in JavaScript files (what package has this? At least something via NPM..) +# jhbuild support +# rust support via rust-analyzer; Go via go-langserver +# autotools stuff for autotools plugin; gtkmm/autoconf-archive for C++ template +# gjs/gettext/mono/PHPize stuff, but most of these are probably installed for other reasons anyways, when needed inside IDE +# stylelint for stylesheet (CSS and co) linting +# gvls for vala language-server integration + +llvm_check_deps() { + has_version "sys-devel/clang:${LLVM_SLOT}" +} + +pkg_setup() { + python-single-r1_pkg_setup + use clang && llvm_pkg_setup +} + +src_configure() { + local emesonargs=( + -Dchannel=other + + -Ddevelopment=false + -Dtracing=false + -Dprofiling=false # not passing -pg to CFLAGS + -Dtcmalloc=false + -Dwith_safe_path='' + -Dgnome_sdk_version=master + $(meson_use doc help) + $(meson_use gtk-doc docs) + -Dnetwork_tests=false + -Dctags_path='' + $(meson_feature webkit) + + -Dplugin_autotools=true + -Dplugin_bash_language_server=true + -Dplugin_blueprint=true + -Dplugin_buildstream=true + -Dplugin_c_pack=true + -Dplugin_cargo=true + $(meson_use clang plugin_clang) + $(meson_use clang plugin_clangd) + $(meson_use clang plugin_clang_format) + -Dplugin_cmake=true + -Dplugin_codesearch=true + -Dplugin_codeshot=true + -Dplugin_codespell=true + -Dplugin_code_index=true + -Dplugin_copyright=true + -Dplugin_ctags=true + -Dplugin_deviced=false # libdeviced not packaged? + $(meson_use d-spy plugin_dspy) + -Dplugin_dub=true + -Dplugin_editorconfig=true + -Dplugin_eslint=true + -Dplugin_file_search=true + $(meson_use flatpak plugin_flatpak) + -Dplugin_gdb=true + -Dplugin_gdiagnose=true + -Dplugin_gettext=true + $(meson_use git plugin_git) + -Dplugin_glsl_language_server=true + -Dplugin_golang=true + -Dplugin_gopls=true + -Dplugin_gradle=true + -Dplugin_grep=true + -Dplugin_hadolint=true + -Dplugin_html_completion=true + $(meson_use webkit plugin_html_preview) + -Dplugin_intelephense=true + -Dplugin_jdtls=true + -Dplugin_jedi_language_server=false + -Dplugin_jhbuild=true + -Dplugin_lua_language_server=true + -Dplugin_make=true + -Dplugin_make_templates=true + $(meson_use webkit plugin_markdown_preview) + $(meson_use webkit plugin_markdown_indenter) + -Dplugin_maven=true + -Dplugin_meson=true + -Dplugin_meson_templates=true + -Dplugin_modelines=true + -Dplugin_mono=true + -Dplugin_newcomers=true + -Dplugin_notification=true + -Dplugin_npm=true + -Dplugin_phpize=true + -Dplugin_podman=true + -Dplugin_pygi=true + -Dplugin_python_lsp_server=true + -Dplugin_qemu=true + -Dplugin_quick_highlight=true + -Dplugin_retab=true + -Dplugin_rstcheck=true + -Dplugin_rubocop=true + -Dplugin_rust_analyzer=false # rust-analyzer not packaged + -Dplugin_serve_d=true + -Dplugin_shellcheck=true + -Dplugin_shellcmd=true + -Dplugin_sourcekit_lsp=true + $(meson_use spell plugin_spellcheck) + $(meson_use webkit plugin_sphinx_preview) + -Dplugin_stylelint=true + -Dplugin_swift=true + -Dplugin_swiftformat=true + -Dplugin_swiftlint=true + $(meson_use sysprof plugin_sysprof) + -Dplugin_todo=true + -Dplugin_ts_language_server=true + -Dplugin_update_manager=true + -Dplugin_valac=true + -Dplugin_vala_indenter=true + -Dplugin_vala_language_server=true + -Dplugin_valgrind=true + -Dplugin_waf=true + -Dplugin_words=true + -Dplugin_xml_pack=true + -Dplugin_zls=true + ) + meson_src_configure +} + +src_install() { + meson_src_install + python_optimize + if use doc; then + rm "${ED}"/usr/share/doc/gnome-builder/en/.buildinfo || die + rm "${ED}"/usr/share/doc/gnome-builder/en/objects.inv || die + # custom docdir in build system, blocked by https://github.com/mesonbuild/meson/issues/825 + mv "${ED}"/usr/share/doc/gnome-builder/en "${ED}"/usr/share/doc/${PF}/html || die + # _sources subdir left in on purpose, as HTML links to the rst files as "View page source". Additionally default docompress exclusion of /html/ already ensures they aren't compressed, thus linkable as-is. + rmdir "${ED}"/usr/share/doc/gnome-builder/ || die + fi + readme.gentoo_create_doc +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update + readme.gentoo_print_elog + + optfeature_header "Language support" + optfeature "Rust's Cargo build system" virtual/rust + optfeature "CMake" dev-util/cmake + optfeature "Java Maven build system" dev-java/maven-bin + optfeature "Meson Build system" dev-util/meson +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} + +src_test() { + virtx dbus-run-session meson test -C "${BUILD_DIR}" +} diff --git a/dev-util/lldb/Manifest b/dev-util/lldb/Manifest index b1c047b45e06..52a376db7b69 100644 --- a/dev-util/lldb/Manifest +++ b/dev-util/lldb/Manifest @@ -4,9 +4,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/dev-util/lldb/lldb-16.0.0_rc3.ebuild b/dev-util/lldb/lldb-16.0.0_rc3.ebuild deleted file mode 100644 index 2fda5f613de4..000000000000 --- a/dev-util/lldb/lldb-16.0.0_rc3.ebuild +++ /dev/null @@ -1,115 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org python-single-r1 - -DESCRIPTION="The LLVM debugger" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0/${LLVM_SOABI}" -KEYWORDS="~loong" -IUSE="debug +libedit lzma ncurses +python test +xml" -RESTRICT="test" -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -DEPEND=" - libedit? ( dev-libs/libedit:0= ) - lzma? ( app-arch/xz-utils:= ) - ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) - xml? ( dev-libs/libxml2:= ) - ~sys-devel/clang-${PV} - ~sys-devel/llvm-${PV} -" -RDEPEND=" - ${DEPEND} - python? ( - $(python_gen_cond_dep ' - dev-python/six[${PYTHON_USEDEP}] - ') - ${PYTHON_DEPS} - ) -" -BDEPEND=" - ${PYTHON_DEPS} - >=dev-util/cmake-3.16 - python? ( - >=dev-lang/swig-3.0.11 - $(python_gen_cond_dep ' - dev-python/six[${PYTHON_USEDEP}] - ') - ) - test? ( - $(python_gen_cond_dep " - ~dev-python/lit-${PV}[\${PYTHON_USEDEP}] - dev-python/psutil[\${PYTHON_USEDEP}] - ") - sys-devel/lld - ) -" - -LLVM_COMPONENTS=( lldb cmake llvm/utils ) -LLVM_TEST_COMPONENTS=( llvm/lib/Testing/Support third-party ) -llvm.org_set_globals - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-single-r1_pkg_setup -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - local mycmakeargs=( - -DLLDB_ENABLE_CURSES=$(usex ncurses) - -DLLDB_ENABLE_LIBEDIT=$(usex libedit) - -DLLDB_ENABLE_PYTHON=$(usex python) - -DLLDB_ENABLE_LUA=OFF - -DLLDB_ENABLE_LZMA=$(usex lzma) - -DLLDB_ENABLE_LIBXML2=$(usex xml) - -DLLDB_USE_SYSTEM_SIX=1 - -DLLVM_ENABLE_TERMINFO=$(usex ncurses) - - -DLLDB_INCLUDE_TESTS=$(usex test) - - -DCLANG_LINK_CLANG_DYLIB=ON - # TODO: fix upstream to detect this properly - -DHAVE_LIBDL=ON - -DHAVE_LIBPTHREAD=ON - - # normally we'd have to set LLVM_ENABLE_TERMINFO, HAVE_TERMINFO - # and TERMINFO_LIBS... so just force FindCurses.cmake to use - # ncurses with complete library set (including autodetection - # of -ltinfo) - -DCURSES_NEED_NCURSES=ON - - -DLLDB_EXTERNAL_CLANG_RESOURCE_DIR="${BROOT}/usr/lib/clang/${LLVM_MAJOR}" - - -DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" - -DPython3_EXECUTABLE="${PYTHON}" - ) - use test && mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - cmake_src_configure -} - -src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-lldb-{shell,unit} - # failures + hangs - #use python && cmake_build check-lldb-api -} - -src_install() { - cmake_src_install - find "${D}" -name '*.a' -delete || die - - use python && python_optimize -} diff --git a/dev-util/lldb/lldb-16.0.0_rc4.ebuild b/dev-util/lldb/lldb-16.0.0_rc4.ebuild deleted file mode 100644 index 0b5d5db1f84d..000000000000 --- a/dev-util/lldb/lldb-16.0.0_rc4.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org python-single-r1 - -DESCRIPTION="The LLVM debugger" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0/${LLVM_SOABI}" -KEYWORDS="~loong" -IUSE="debug +libedit lzma ncurses +python test +xml" -RESTRICT="test" -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -DEPEND=" - libedit? ( dev-libs/libedit:0= ) - lzma? ( app-arch/xz-utils:= ) - ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) - xml? ( dev-libs/libxml2:= ) - ~sys-devel/clang-${PV} - ~sys-devel/llvm-${PV} -" -RDEPEND=" - ${DEPEND} - python? ( - $(python_gen_cond_dep ' - dev-python/six[${PYTHON_USEDEP}] - ') - ${PYTHON_DEPS} - ) -" -BDEPEND=" - ${PYTHON_DEPS} - >=dev-util/cmake-3.16 - python? ( - >=dev-lang/swig-3.0.11 - $(python_gen_cond_dep ' - dev-python/six[${PYTHON_USEDEP}] - ') - ) - test? ( - $(python_gen_cond_dep " - ~dev-python/lit-${PV}[\${PYTHON_USEDEP}] - dev-python/psutil[\${PYTHON_USEDEP}] - ") - sys-devel/lld - ) -" - -LLVM_COMPONENTS=( lldb cmake llvm/utils ) -LLVM_TEST_COMPONENTS=( llvm/lib/Testing/Support third-party ) -llvm.org_set_globals - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-single-r1_pkg_setup -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - local mycmakeargs=( - -DLLDB_ENABLE_CURSES=$(usex ncurses) - -DLLDB_ENABLE_LIBEDIT=$(usex libedit) - -DLLDB_ENABLE_PYTHON=$(usex python) - -DLLDB_ENABLE_LUA=OFF - -DLLDB_ENABLE_LZMA=$(usex lzma) - -DLLDB_ENABLE_LIBXML2=$(usex xml) - -DLLVM_ENABLE_TERMINFO=$(usex ncurses) - - -DLLDB_INCLUDE_TESTS=$(usex test) - - -DCLANG_LINK_CLANG_DYLIB=ON - # TODO: fix upstream to detect this properly - -DHAVE_LIBDL=ON - -DHAVE_LIBPTHREAD=ON - - # normally we'd have to set LLVM_ENABLE_TERMINFO, HAVE_TERMINFO - # and TERMINFO_LIBS... so just force FindCurses.cmake to use - # ncurses with complete library set (including autodetection - # of -ltinfo) - -DCURSES_NEED_NCURSES=ON - - -DLLDB_EXTERNAL_CLANG_RESOURCE_DIR="${BROOT}/usr/lib/clang/${LLVM_MAJOR}" - - -DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" - -DPython3_EXECUTABLE="${PYTHON}" - ) - use test && mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - cmake_src_configure -} - -src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-lldb-{shell,unit} - # failures + hangs - #use python && cmake_build check-lldb-api -} - -src_install() { - cmake_src_install - find "${D}" -name '*.a' -delete || die - - use python && python_optimize -} diff --git a/dev-util/lldb/lldb-17.0.0_pre20230304.ebuild b/dev-util/lldb/lldb-17.0.0_pre20230304.ebuild deleted file mode 100644 index 1d8c4b56e83c..000000000000 --- a/dev-util/lldb/lldb-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org python-single-r1 - -DESCRIPTION="The LLVM debugger" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0/${LLVM_SOABI}" -KEYWORDS="" -IUSE="debug +libedit lzma ncurses +python test +xml" -RESTRICT="test" -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -DEPEND=" - libedit? ( dev-libs/libedit:0= ) - lzma? ( app-arch/xz-utils:= ) - ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) - xml? ( dev-libs/libxml2:= ) - ~sys-devel/clang-${PV} - ~sys-devel/llvm-${PV} -" -RDEPEND=" - ${DEPEND} - python? ( - $(python_gen_cond_dep ' - dev-python/six[${PYTHON_USEDEP}] - ') - ${PYTHON_DEPS} - ) -" -BDEPEND=" - ${PYTHON_DEPS} - >=dev-util/cmake-3.16 - python? ( - >=dev-lang/swig-3.0.11 - $(python_gen_cond_dep ' - dev-python/six[${PYTHON_USEDEP}] - ') - ) - test? ( - $(python_gen_cond_dep " - ~dev-python/lit-${PV}[\${PYTHON_USEDEP}] - dev-python/psutil[\${PYTHON_USEDEP}] - ") - sys-devel/lld - ) -" - -LLVM_COMPONENTS=( lldb cmake llvm/utils ) -LLVM_TEST_COMPONENTS=( llvm/lib/Testing/Support third-party ) -llvm.org_set_globals - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-single-r1_pkg_setup -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - local mycmakeargs=( - -DLLDB_ENABLE_CURSES=$(usex ncurses) - -DLLDB_ENABLE_LIBEDIT=$(usex libedit) - -DLLDB_ENABLE_PYTHON=$(usex python) - -DLLDB_ENABLE_LUA=OFF - -DLLDB_ENABLE_LZMA=$(usex lzma) - -DLLDB_ENABLE_LIBXML2=$(usex xml) - -DLLVM_ENABLE_TERMINFO=$(usex ncurses) - - -DLLDB_INCLUDE_TESTS=$(usex test) - - -DCLANG_LINK_CLANG_DYLIB=ON - # TODO: fix upstream to detect this properly - -DHAVE_LIBDL=ON - -DHAVE_LIBPTHREAD=ON - - # normally we'd have to set LLVM_ENABLE_TERMINFO, HAVE_TERMINFO - # and TERMINFO_LIBS... so just force FindCurses.cmake to use - # ncurses with complete library set (including autodetection - # of -ltinfo) - -DCURSES_NEED_NCURSES=ON - - -DLLDB_EXTERNAL_CLANG_RESOURCE_DIR="${BROOT}/usr/lib/clang/${LLVM_MAJOR}" - - -DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" - -DPython3_EXECUTABLE="${PYTHON}" - ) - use test && mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - cmake_src_configure -} - -src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-lldb-{shell,unit} - # failures + hangs - #use python && cmake_build check-lldb-api -} - -src_install() { - cmake_src_install - find "${D}" -name '*.a' -delete || die - - use python && python_optimize -} diff --git a/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild b/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild index da53b8a61108..858c34bbaa90 100644 --- a/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild +++ b/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,7 +12,7 @@ SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0/${MY_SLOT}" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="+ust" DEPEND="dev-libs/userspace-rcu:= @@ -21,6 +21,7 @@ DEPEND="dev-libs/userspace-rcu:= ust? ( >=dev-util/lttng-ust-2.13.0:= ) " RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" S="${WORKDIR}/${MY_P}" diff --git a/dev-util/premake/Manifest b/dev-util/premake/Manifest index 7ed7cd054ada..2ba271bb4632 100644 --- a/dev-util/premake/Manifest +++ b/dev-util/premake/Manifest @@ -1,4 +1,2 @@ DIST premake-4.3-src.zip 514366 BLAKE2B 5079f9d7c5dbe46d60149ec7c01523eaca5ab3cccce9f2f66d05905152ceb0b8bddaf181624288b722dd1534da6aef256ed5bb997db448f1499c8ab989277bc6 SHA512 df3a4f1e04afb6ae9acf06c063b084a4bcc7c48a98eebeb242eafef40de4097c6a6fe549369d9538b93efea35244222b9d26c15824f126a67b8f80abaecdf001 -DIST premake-4.4-beta5-src.zip 596883 BLAKE2B f4bf2b75946b6a442aced79f1f29b08e61bfa34c1e30c64aa59a6fed9c4c35aaca996fd0e8b728e839c24e74eae9f23ac3c99406361a061f0fa5dc04ce3ce9aa SHA512 47a2c26d3c45578cb2cbae96ec1b647298824d08584e2610aacd038e21069297a1f5b3366340cf781d29827555ff4d955651f70cdc2d36b99808fddf52e7a242 -DIST premake-5.0.0_alpha16.tar.gz 6462956 BLAKE2B 27c27eeef77986f6e8244ecd1a08e19d753dafcd0292d593ac758e04c2cb2307e05aaf325d2afc6ad8936ab2bbd97af6269841b9b7489b50dd4ce56e39120f05 SHA512 7ddb5ffe48484157336c7309fb611d34ff670fb20f92da309af3a4ae6f664a4b8abd2c0575036abbed1e346b155a03bf6fbac0587b47d5c97d9a22f08dd2deea -DIST premake-src-3.7.zip 427727 BLAKE2B 2f9cc7b045f75ceb52a8e71507cb5576f042a93be4f6c097e8bc1166e3bbb9e271a02f5fbd648f79e0d24867a09bba9ac72a268fdc47140219c5d6a36cda1a16 SHA512 351b26b9ee738e97b1828e7c26fe1538fb1509fbdc030da3d87fc28b1daa7966bc50ba8043062d35b37fa3929d909533b723241e1f98e438a039c6f9d61a46f4 +DIST premake-5.0.0_beta2.tar.gz 6491805 BLAKE2B 1e5245ded3c36b61afd9339351ae2250cebd488a3723c1844b98a8bcf257a3a33102483d5b830a264aff7371b40edcac7dca18dbaacb0dffeb6e43d69e5d6a4c SHA512 0385e2859ed8873f78e2e8e4a57112c9ec5ff5ef6c456caa7a96b9fc372f148cec9c745e19cac7daee6c55820e86e55224737aa172e2134c169303829c1080eb diff --git a/dev-util/premake/files/premake-5.0.0-remove-hardcoded-libpath.patch b/dev-util/premake/files/premake-5.0.0-remove-hardcoded-libpath.patch new file mode 100644 index 000000000000..4c7a377ba6c7 --- /dev/null +++ b/dev-util/premake/files/premake-5.0.0-remove-hardcoded-libpath.patch @@ -0,0 +1,113 @@ +Remove the hardcoded -L/usr/lib and -L/usr/lib64 +This is not needed, and will cause issues: +https://github.com/gentoo/gentoo/pull/25825#issuecomment-1179497476 +Index: premake-core-5.0.0-beta2/modules/d/tools/dmd.lua +=================================================================== +--- premake-core-5.0.0-beta2.orig/modules/d/tools/dmd.lua ++++ premake-core-5.0.0-beta2/modules/d/tools/dmd.lua +@@ -52,8 +52,8 @@ + + tdmd.gcc.libraryDirectories = { + architecture = { +- x86 = "-L-L/usr/lib", +- x86_64 = "-L-L/usr/lib64", ++ x86 = "", ++ x86_64 = "", + } + } + +Index: premake-core-5.0.0-beta2/modules/d/tools/gdc.lua +=================================================================== +--- premake-core-5.0.0-beta2.orig/modules/d/tools/gdc.lua ++++ premake-core-5.0.0-beta2/modules/d/tools/gdc.lua +@@ -228,8 +228,8 @@ + + gdc.libraryDirectories = { + architecture = { +- x86 = "-L/usr/lib", +- x86_64 = "-L/usr/lib64", ++ x86 = "", ++ x86_64 = "", + } + } + +Index: premake-core-5.0.0-beta2/modules/d/tools/ldc.lua +=================================================================== +--- premake-core-5.0.0-beta2.orig/modules/d/tools/ldc.lua ++++ premake-core-5.0.0-beta2/modules/d/tools/ldc.lua +@@ -323,8 +323,8 @@ + + ldc.libraryDirectories = { + architecture = { +- x86 = "-L=-L/usr/lib", +- x86_64 = "-L=-L/usr/lib64", ++ x86 = "", ++ x86_64 = "", + } + } + +Index: premake-core-5.0.0-beta2/modules/gmake/tests/cpp/test_ldflags.lua +=================================================================== +--- premake-core-5.0.0-beta2.orig/modules/gmake/tests/cpp/test_ldflags.lua ++++ premake-core-5.0.0-beta2/modules/gmake/tests/cpp/test_ldflags.lua +@@ -55,7 +55,7 @@ + system (p.LINUX) + prepare() + test.capture [[ +- ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib64 -m64 ++ ALL_LDFLAGS += $(LDFLAGS) -m64 + ]] + end + +@@ -64,7 +64,7 @@ + system (p.LINUX) + prepare() + test.capture [[ +- ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32 ++ ALL_LDFLAGS += $(LDFLAGS) -m32 + ]] + end + +Index: premake-core-5.0.0-beta2/modules/gmake2/tests/test_gmake2_ldflags.lua +=================================================================== +--- premake-core-5.0.0-beta2.orig/modules/gmake2/tests/test_gmake2_ldflags.lua ++++ premake-core-5.0.0-beta2/modules/gmake2/tests/test_gmake2_ldflags.lua +@@ -56,7 +56,7 @@ ALL_LDFLAGS += $(LDFLAGS) -L../libs -Lli + system (p.LINUX) + prepare() + test.capture [[ +-ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib64 -m64 ++ALL_LDFLAGS += $(LDFLAGS) -m64 + ]] + end + +@@ -65,7 +65,7 @@ ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib64 - + system (p.LINUX) + prepare() + test.capture [[ +-ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32 ++ALL_LDFLAGS += $(LDFLAGS) -m32 + ]] + end + +Index: premake-core-5.0.0-beta2/src/tools/gcc.lua +=================================================================== +--- premake-core-5.0.0-beta2.orig/src/tools/gcc.lua ++++ premake-core-5.0.0-beta2/src/tools/gcc.lua +@@ -477,16 +477,10 @@ + architecture = { + x86 = function (cfg) + local r = {} +- if not table.contains(os.getSystemTags(cfg.system), "darwin") then +- table.insert (r, "-L/usr/lib32") +- end + return r + end, + x86_64 = function (cfg) + local r = {} +- if not table.contains(os.getSystemTags(cfg.system), "darwin") then +- table.insert (r, "-L/usr/lib64") +- end + return r + end, + }, diff --git a/dev-util/premake/files/premake-5.0.0_alpha16-respect-MAKEOPTS-jobs.patch b/dev-util/premake/files/premake-5.0.0_alpha16-respect-MAKEOPTS-jobs.patch deleted file mode 100644 index 766d2aea71b4..000000000000 --- a/dev-util/premake/files/premake-5.0.0_alpha16-respect-MAKEOPTS-jobs.patch +++ /dev/null @@ -1,63 +0,0 @@ -https://bugs.gentoo.org/773505 - -From 89d8c74f0c9ba77aaa12799a9d2dc397eac4ece6 Mon Sep 17 00:00:00 2001 -From: Sam James -Date: Sun, 15 Aug 2021 21:47:20 +0100 -Subject: [PATCH] Respect MAKEOPTS jobs - ---- - Bootstrap.mak | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -diff --git a/Bootstrap.mak b/Bootstrap.mak -index 06e0f20..2d59068 100644 ---- a/Bootstrap.mak -+++ b/Bootstrap.mak -@@ -101,7 +101,7 @@ osx: osx-clean - $(CC) -o build/bootstrap/premake_bootstrap -DPREMAKE_NO_BUILTIN_SCRIPTS -DLUA_USE_MACOSX -I"$(LUA_DIR)" -I"$(LUASHIM_DIR)" -framework CoreServices -framework Foundation -framework Security -lreadline $(SRC) - ./build/bootstrap/premake_bootstrap embed - ./build/bootstrap/premake_bootstrap --to=build/bootstrap gmake2 -- $(MAKE) -C build/bootstrap -j`getconf _NPROCESSORS_ONLN` config=$(CONFIG) -+ $(MAKE) -C build/bootstrap config=$(CONFIG) - - linux-clean: nix-clean - -@@ -110,7 +110,7 @@ linux: linux-clean - $(CC) -o build/bootstrap/premake_bootstrap -DPREMAKE_NO_BUILTIN_SCRIPTS -DLUA_USE_POSIX -DLUA_USE_DLOPEN -I"$(LUA_DIR)" -I"$(LUASHIM_DIR)" $(SRC) -lm -ldl -lrt - ./build/bootstrap/premake_bootstrap embed - ./build/bootstrap/premake_bootstrap --to=build/bootstrap gmake2 -- $(MAKE) -C build/bootstrap -j`getconf _NPROCESSORS_ONLN` config=$(CONFIG) -+ $(MAKE) -C build/bootstrap config=$(CONFIG) - - bsd-clean: nix-clean - -@@ -119,7 +119,7 @@ bsd: bsd-clean - $(CC) -o build/bootstrap/premake_bootstrap -DPREMAKE_NO_BUILTIN_SCRIPTS -DLUA_USE_POSIX -DLUA_USE_DLOPEN -I"$(LUA_DIR)" -I"$(LUASHIM_DIR)" $(SRC) -lm - ./build/bootstrap/premake_bootstrap embed - ./build/bootstrap/premake_bootstrap --to=build/bootstrap gmake2 -- $(MAKE) -C build/bootstrap -j`getconf NPROCESSORS_ONLN` config=$(CONFIG) -+ $(MAKE) -C build/bootstrap config=$(CONFIG) - - solaris-clean: nix-clean - -@@ -128,7 +128,7 @@ solaris: solaris-clean - $(CC) -o build/bootstrap/premake_bootstrap -DPREMAKE_NO_BUILTIN_SCRIPTS -DLUA_USE_POSIX -DLUA_USE_DLOPEN -I"$(LUA_DIR)" -I"$(LUASHIM_DIR)" $(SRC) -lm - ./build/bootstrap/premake_bootstrap embed - ./build/bootstrap/premake_bootstrap --to=build/bootstrap gmake2 -- $(MAKE) -C build/bootstrap -j`getconf NPROCESSORS_ONLN` config=$(CONFIG) -+ $(MAKE) -C build/bootstrap config=$(CONFIG) - - haiku-clean: nix-clean - -@@ -137,7 +137,7 @@ haiku: haiku-clean - $(CC) -o build/bootstrap/premake_bootstrap -DPREMAKE_NO_BUILTIN_SCRIPTS -DLUA_USE_POSIX -DLUA_USE_DLOPEN -D_BSD_SOURCE -I"$(LUA_DIR)" -I"$(LUASHIM_DIR)" $(SRC) -lbsd - ./build/bootstrap/premake_bootstrap embed - ./build/bootstrap/premake_bootstrap --to=build/bootstrap gmake2 -- $(MAKE) -C build/bootstrap -j`getconf _NPROCESSORS_ONLN` config=$(CONFIG) -+ $(MAKE) -C build/bootstrap config=$(CONFIG) - - windows-base: windows-clean - if not exist build\bootstrap (mkdir build\bootstrap) --- -2.32.0 - diff --git a/dev-util/premake/premake-3.7-r1.ebuild b/dev-util/premake/premake-3.7-r1.ebuild deleted file mode 100644 index ae7f896f0a9c..000000000000 --- a/dev-util/premake/premake-3.7-r1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="A makefile generation tool" -HOMEPAGE="http://industriousone.com/premake" -SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.zip" -S="${WORKDIR}/${P/p/P}" - -LICENSE="GPL-2" -SLOT="3" -KEYWORDS="amd64 x86" - -BDEPEND="app-arch/unzip" - -src_install() { - dobin bin/${PN} -} diff --git a/dev-util/premake/premake-4.4_beta5.ebuild b/dev-util/premake/premake-4.4_beta5.ebuild deleted file mode 100644 index 68325bfb5d3b..000000000000 --- a/dev-util/premake/premake-4.4_beta5.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_P=${P/_/-} - -inherit versionator - -DESCRIPTION="A makefile generation tool" -HOMEPAGE="https://premake.github.io/" -SRC_URI="mirror://sourceforge/premake/${MY_P}-src.zip" - -LICENSE="BSD" -SLOT=$(get_major_version) -KEYWORDS="~amd64 ~ppc ~x86" - -DEPEND="app-arch/unzip" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - default - - sed 's/$(ARCH) //g' -i build/gmake.unix/Premake4.make || die -} - -src_compile() { - emake -C build/gmake.unix/ -} - -src_install() { - dobin bin/release/premake${SLOT} - - einstalldocs -} diff --git a/dev-util/premake/premake-5.0.0_alpha16.ebuild b/dev-util/premake/premake-5.0.0_beta2.ebuild similarity index 83% rename from dev-util/premake/premake-5.0.0_alpha16.ebuild rename to dev-util/premake/premake-5.0.0_beta2.ebuild index eea76fb7ca0e..56b499a53419 100644 --- a/dev-util/premake/premake-5.0.0_alpha16.ebuild +++ b/dev-util/premake/premake-5.0.0_beta2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,9 +16,7 @@ LICENSE="BSD" SLOT="5" KEYWORDS="~amd64 ~arm64 ~ppc ~x86" -PATCHES=( - "${FILESDIR}"/${PN}-5.0.0_alpha16-respect-MAKEOPTS-jobs.patch -) +PATCHES=( "${FILESDIR}/${PN}-5.0.0-remove-hardcoded-libpath.patch" ) src_compile() { # bug #773505 diff --git a/dev-util/pwndbg/Manifest b/dev-util/pwndbg/Manifest index f5e465a172af..41795fe22d25 100644 --- a/dev-util/pwndbg/Manifest +++ b/dev-util/pwndbg/Manifest @@ -1,2 +1,3 @@ DIST gdb-pt-dump-ebdc24573a4bf075cf3ab6016add9db6baacf977.tar.gz 385989 BLAKE2B b7582289f83fd0c76b8ef2a04540db979b0f599b6b711e17541e2804b93bcffe6fd611d43101c96644a7324398eea5df02326267b4e201564929de956849b719 SHA512 57701b5fdd4c69be79a451f08fa6d7cbd43a0963cfd7689443676b68ece96154ccb61121d4a770d6e519d3142f99c589df1143b0ff8308547c06fb0e87e187db DIST pwndbg-20221219.tar.gz 8344938 BLAKE2B 1ecda02573ef03b569f8a46c390f5388e6db9cfbb0df84410f245e4f043e89be16b6581d0e07fe840d50cab875943dd5a30dab1c2fc40fb93c5982cecc33e490 SHA512 1578ea834d7aa1d574e559844dae1991eddc9575c4e445ae02d05f0024900c550253293cba7277ed651df613cb2a2e2028486c2b8bc52adc0dedb9d9796c58d8 +DIST pwndbg-20230319.tar.gz 8363103 BLAKE2B 9ad84450116b4e8e3e82107fea6d33505c61e81cde52a209865d4fea1620dd8db2e7f395e2764f9ed38e10311ea9bb77e08fb4c087bd3307ad06d3ea3489ec42 SHA512 aa84908f1dee97e04b72d4f789d78c861507a3a842ecfe00a0ab8a073d63652b8319094a28d910c916131dec3d8fd1eced00c9dc4b97220e1dd76da89baaf695 diff --git a/dev-util/pwndbg/pwndbg-20221219-r1.ebuild b/dev-util/pwndbg/pwndbg-20230319.ebuild similarity index 79% rename from dev-util/pwndbg/pwndbg-20221219-r1.ebuild rename to dev-util/pwndbg/pwndbg-20230319.ebuild index 84259afcf501..bd3b1a48231a 100644 --- a/dev-util/pwndbg/pwndbg-20221219-r1.ebuild +++ b/dev-util/pwndbg/pwndbg-20230319.ebuild @@ -20,7 +20,7 @@ else https://github.com/pwndbg/pwndbg/archive/${MY_PV}.tar.gz -> ${P}.tar.gz https://github.com/martinradev/gdb-pt-dump/archive/${GDB_PT_DUMP_COMMIT}.tar.gz -> gdb-pt-dump-${GDB_PT_DUMP_COMMIT}.tar.gz " - KEYWORDS="amd64 x86" + KEYWORDS="~amd64 ~x86" S="${WORKDIR}/${PN}-${MY_PV}" fi @@ -32,15 +32,16 @@ RDEPEND=" ${PYTHON_DEPS} sys-devel/gdb[python,${PYTHON_SINGLE_USEDEP}] $(python_gen_cond_dep ' - dev-libs/capstone[python,${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pycparser[${PYTHON_USEDEP}] - dev-python/pyelftools[${PYTHON_USEDEP}] - dev-python/python-ptrace[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - dev-util/ROPgadget[${PYTHON_USEDEP}] - dev-util/unicorn[python,${PYTHON_USEDEP}] + >=dev-libs/capstone-4.0.2[python,${PYTHON_USEDEP}] + >=dev-python/psutil-5.9.4[${PYTHON_USEDEP}] + >=dev-python/pycparser-2.21[${PYTHON_USEDEP}] + >=dev-python/pyelftools-0.29[${PYTHON_USEDEP}] + >=dev-python/pygments-2.13.0[${PYTHON_USEDEP}] + >=dev-python/tabulate-0.8.10[${PYTHON_USEDEP}] + >=dev-python/typing-extensions-4.3.0[${PYTHON_USEDEP}] + >=dev-util/pwntools-4.9.0[${PYTHON_USEDEP}] + >=dev-util/ROPgadget-7.2[${PYTHON_USEDEP}] + >=dev-util/unicorn-2.0.1[python,${PYTHON_USEDEP}] ')" src_prepare() { diff --git a/dev-util/scons/Manifest b/dev-util/scons/Manifest index b4cb22f2c203..e5ddc6240844 100644 --- a/dev-util/scons/Manifest +++ b/dev-util/scons/Manifest @@ -3,6 +3,7 @@ DIST SCons-4.5.1.tar.gz 3194371 BLAKE2B 830e3365be99e38aec0f3b99d406bb7547d3d8b7 DIST scons-4.4.0-user.html 1608381 BLAKE2B ff4eb1e0f9c5e8ea7ca44cc00dc37e3e2dd38c24cb09a857c691e6a48f11e5fc86a55740037cc295e6b23df2a1c1b600adf0462320ec87cc26d4bcf919b07342 SHA512 8c1d6578270054efba34c56ddc07b4314bf62630f6a445f5b9f865cc48d593f6c92101a8d216dece201b8d6cb5bce59ff4adb51caaa40128e96b6235087f748c DIST scons-4.4.0-user.pdf 2964111 BLAKE2B 45b37c99c3f3d0e9969a16506e27aeabfd562155405f5a59ba79c24404b14e5588fbd0673d86e2266adbd25eca140c9e1cf86e271228658591c0d9285474f078 SHA512 57330f685e7c775cb1c782e40f711c2b2322fad19212a22a920aff92db974610cc78f276e1606fb827660bb488ce803e2458bb9d93c452fa0600df4478f03d06 DIST scons-4.4.0.gh.tar.gz 5808265 BLAKE2B f6ce757f2edc40551b05285098626bb62def6abda2380d4885ee4443868e715e53aaa34f26c09dc689bb6ade26d1b0e276046fe3b1d2ddf8eb40400bca9ea164 SHA512 01fcd40bf818ca22a278973af1cda3024efb74cf877f15d46607fda860448fbd577fc96ba33fef2bed3d145e662a0371f55e8c927e7ac44feea7f3081791ce11 +DIST scons-4.5.1-mergeflags.patch 10518 BLAKE2B ea059c4347cfa8dcd99353c1f6b6c1d3aae1c6225b4683e421f3f3ea9181d5597862603c2491abff40dd1599094638239f34bf88458e7c44a8f28908eb91934c SHA512 11771c99d64cee413311f595faec8d2025152a7871ef53bdf0b22be45ffefc0d0c4bf49d185a10c1d3d2fb76ac94b04d992990375dc144587b101761a5d985a4 DIST scons-4.5.1-user.html 1655168 BLAKE2B 644c808f129d2d83f40b1ef2c8c12781b697a0120dfc00f5f0425e88e23c609290ecf2c8b6daad556c876ae3a86e8b262c53915b05d69c6e3c79f58395789362 SHA512 171d9330df520a75fbc124bf646c55c5868b24343ff46755a6283fe444ad4e090f5658dafa7239e708b4ff8b910e81201c27655674bdaffd20e8cc6ffb81d633 DIST scons-4.5.1-user.pdf 3023817 BLAKE2B caa782f77fac668eee0ccd76f3e96168ae3d61c9c3e80123c34bc45625182f77973fbab24170c5f67f133c6124412eadbf02c3497373211560c58a348d6b00ab SHA512 41fddff58032b6364ff3935259d4bf81a0d69398cd52158c42be71e4ff6efaebd2faaf1354781f7336ba1aa4f0cf99f0f37edcd72baf325f9ced7ec88b76ce88 DIST scons-4.5.1.gh.tar.gz 5844118 BLAKE2B 88a82e12a034f6d0748555d0d33716e5af6ff957a9345d5b0ba87c2a36544bae0965ea0a29e3cc80d6d2493f3f8bf0bd314bed5824dc609123972f640b19a53a SHA512 160089342b93197237b9f0c5f0ada42126f3e5c83e0026f6dc121aaae85c94774b01ea3b0b0fc56edf3effd87d91612b2167d004abe7a00bd8d107d5415f5d4a diff --git a/dev-util/scons/scons-4.5.1.ebuild b/dev-util/scons/scons-4.5.1-r1.ebuild similarity index 93% rename from dev-util/scons/scons-4.5.1.ebuild rename to dev-util/scons/scons-4.5.1-r1.ebuild index 87c03687ce2a..d12cdf7c1bd8 100644 --- a/dev-util/scons/scons-4.5.1.ebuild +++ b/dev-util/scons/scons-4.5.1-r1.ebuild @@ -18,16 +18,16 @@ HOMEPAGE=" " SRC_URI=" https://downloads.sourceforge.net/project/${PN}/${PN}/${PV}/${MY_P}.tar.gz + https://github.com/SCons/scons/pull/4322.patch + -> ${P}-mergeflags.patch + https://github.com/SCons/scons/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz doc? ( https://www.scons.org/doc/${PV}/PDF/${PN}-user.pdf -> ${P}-user.pdf https://www.scons.org/doc/${PV}/HTML/${PN}-user.html -> ${P}-user.html ) - test? ( - https://github.com/SCons/scons/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz - ) " S="${WORKDIR}/${P}/src" @@ -45,6 +45,9 @@ BDEPEND=" " PATCHES=( + # https://bugs.gentoo.org/900971 + "${DISTDIR}/${P}-mergeflags.patch" + # support env passthrough for Gentoo ebuilds "${FILESDIR}"/scons-4.1.0-env-passthrough.patch # respect CC, CXX, C*FLAGS, LDFLAGS by default @@ -54,12 +57,7 @@ PATCHES=( src_unpack() { # use the git directory structure, but put pregenerated release # inside src/ subdirectory to make our life easier - if use test; then - unpack "${P}.gh.tar.gz" - else - mkdir -p "${P}"/src || die - fi - + unpack "${P}.gh.tar.gz" tar -C "${P}"/src --strip-components=1 -xzf "${DISTDIR}/${MY_P}.tar.gz" || die } diff --git a/dev-util/umockdev/umockdev-0.17.16.ebuild b/dev-util/umockdev/umockdev-0.17.16.ebuild index b562b894a04d..a0aa5c033605 100644 --- a/dev-util/umockdev/umockdev-0.17.16.ebuild +++ b/dev-util/umockdev/umockdev-0.17.16.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} = 9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/martinpitt/umockdev/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" fi DESCRIPTION="Mock hardware devices for creating unit tests" diff --git a/dev-vcs/Manifest.gz b/dev-vcs/Manifest.gz index 0011c214419e..e279fd46a41e 100644 Binary files a/dev-vcs/Manifest.gz and b/dev-vcs/Manifest.gz differ diff --git a/dev-vcs/fossil/Manifest b/dev-vcs/fossil/Manifest index 7d91d7c41f02..9c719a6045e3 100644 --- a/dev-vcs/fossil/Manifest +++ b/dev-vcs/fossil/Manifest @@ -1 +1,2 @@ DIST fossil-src-2.19.tar.gz 6435868 BLAKE2B 414dd8b1630bb6a8bcc22f3528da60386663e7f31191e5134474e37211e55323af45947452a0f09e21964dd3cd94ca6cf6e34ecd74e0d3e4f0dce7a50146f0ff SHA512 fcd84df2d84c3a958bb19228de4320456382d3c925717c58bec42de86d96383a9208fb31ba6aaeccd9bc6bba949048d5c1ce3d2b3e8535951956ae18d9aa34e4 +DIST fossil-src-2.21.tar.gz 6703622 BLAKE2B fcc74ed5e3eec34f044624b128b8933b54d1cea99a212a1423e369fc469af4634f469f8c9c20af768c41edc9f1ec2592a074f87dadd5b9b90805906451268f0e SHA512 22534eb632f485de895b291a35325efe9bfd13ec0df84e94afe822593489ecdb2998352dcd501123d8d4c426a40bd4ff43190b50fb849392f886dd94bee42bf3 diff --git a/dev-vcs/fossil/fossil-2.21.ebuild b/dev-vcs/fossil/fossil-2.21.ebuild new file mode 100644 index 000000000000..f7baf17994b4 --- /dev/null +++ b/dev-vcs/fossil/fossil-2.21.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +MY_TAG="f9aa474081f0618c76f4c2f4d6f0277a3fd480aa185d7da0b8b61b00fad1aa78" + +DESCRIPTION="Simple, high-reliability, source control management, and more" +HOMEPAGE="https://www.fossil-scm.org/home" +SRC_URI="https://fossil-scm.org/home/tarball/${MY_TAG}/fossil-src-${PV}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~x86" +IUSE="debug fusefs json system-sqlite +ssl static tcl tcl-stubs + tcl-private-stubs th1-docs th1-hooks" + +# Please check sqlite minimum version on every release. This can be done with: +# ./configure --print-minimum-sqlite-version +RDEPEND=" + sys-libs/zlib + || ( + sys-libs/readline:0 + dev-libs/libedit + ) + system-sqlite? ( >=dev-db/sqlite-3.38.0:3 ) + ssl? ( dev-libs/openssl:0= ) + tcl? ( dev-lang/tcl:0= ) +" + +# Either tcl or jimtcl need to be present to build Fossil (Bug #675778) +DEPEND="${RDEPEND} + !tcl? ( + || ( + dev-lang/tcl:* + dev-lang/jimtcl:* + ) + ) +" + +# Tests can't be run from the build directory +RESTRICT="test" + +PATCHES=( + # fossil-2.10-check-lib64-for-tcl.patch: Bug 690828 + "${FILESDIR}"/fossil-2.10-check-lib64-for-tcl.patch +) + +S="${WORKDIR}/fossil-src-${PV}" + +src_configure() { + # this is not an autotools situation so don't make it seem like one + # --with-tcl: works + # --without-tcl: dies + local myconf="--with-openssl=$(usex ssl auto none)" + use debug && myconf+=' --fossil-debug' + use json && myconf+=' --json' + use system-sqlite && myconf+=' --disable-internal-sqlite' + use static && myconf+=' --static' + use tcl && myconf+=' --with-tcl=1' + use fusefs || myconf+=' --disable-fusefs' + + local u useflags + useflags=( tcl-stubs tcl-private-stubs th1-docs th1-hooks ) + for u in ${useflags[@]} ; do + use ${u} && myconf+=" --with-${u}" + done + + tc-export CC CXX + CC_FOR_BUILD=${CC} ./configure ${myconf} || die +} + +src_install() { + dobin fossil +} diff --git a/dev-vcs/git-absorb/Manifest b/dev-vcs/git-absorb/Manifest new file mode 100644 index 000000000000..6b0a39e33dcc --- /dev/null +++ b/dev-vcs/git-absorb/Manifest @@ -0,0 +1,68 @@ +DIST ansi_term-0.11.0.crate 17087 BLAKE2B 9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4 SHA512 a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa +DIST anyhow-1.0.33.crate 28540 BLAKE2B c1085112992f4bf1b12640dc981a438ce55ead73c8031bfb38ae770e1c3df90acdde3b170a787354e1296f6471b9e491286286a6bb4bebfb32b2bf3180bc81b9 SHA512 b19355e2b484fed8e83132f646335db93e0b79d1ae19e6476e8477d1ab513f12cb4392c2492da0f66064fd3618d07ca1a17efbc4bbc29a647e9775b7f4e2e2be +DIST arrayref-0.3.6.crate 10035 BLAKE2B 88292fa4b3ad4fccd03772c2f0eca04cc13373fe094358bac57d7523c256d89f3087603e5bcb2a0b15d8b2ecd48e904a822b2cb800276a9c47ad6c6b660d9d34 SHA512 368341d00706c1250ff081b0d99c36c9af694a62ff4f4d8c837234340295771ca49c5439b24b6e1a4f2c3c5821764e98881dcb22d793f83de632fd5cb457671f +DIST arrayvec-0.5.1.crate 26816 BLAKE2B 172dab8f0129134dfc89c6032c5fc15e2f86a5cd1e5be18b87fe2108d18a1bdb0f597a6ed4cd214dc663fbfb27b05c66846fba4543b5e068b5c75d075bdc5bff SHA512 53db2fafea1f60ac1af9ecc0bc9b69010e9f8573048481d55969ecdc9f3d19832fe05824acf10a0186b0464f0fbfe898d73500fba39ed63650c64dac2c2e8043 +DIST atty-0.2.14.crate 5470 BLAKE2B 2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab SHA512 d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9 +DIST autocfg-1.0.1.crate 12908 BLAKE2B 40c53cab298e4f26634c3acff3ece6a3371188d91dbf377ed664eabedcde20536edaa93daf406618f37edde019f049a6e7b9a47f627344587dbd126bee2b5e3a SHA512 630b348acb98b012e97804e6325d03c89abc22f2157762c59144c04e6c733daf550bdc7f0fe0b9f3b50e15dae8c1c3c4bdfce3d805b02f0fc987311f5332419b +DIST base64-0.12.3.crate 57545 BLAKE2B 5ff7e888f6b750ddfe302438d52766f5d6281b8c8ce73827a9ad1d64641704414649e6c1e02bce6abbb2858b9f859fce54a0e0e793549a474c4b49a724c8663f SHA512 ec6ad7cbd4980a12189690e9e24ec1db3c3def9e93672a415808904f68db2b5d8c5740e44207b2c629db5dd5d6ba6bd9dd342dd82367da6198e0313d86e54f02 +DIST bitflags-1.2.1.crate 16745 BLAKE2B 0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b SHA512 ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b +DIST blake2b_simd-0.5.10.crate 34093 BLAKE2B 6e725c9399714d1e199277e3f9882d636c1737af5b0b290f853573575005d053d2ab3a34843461747914a0c25d370f0d5a5cbb46765fe99308c1fd7666d471c7 SHA512 7471e0347267a4b88e9eea932b3001c420da0a472b2ea0f20dff974789955d6d95e19d51e3a8a312516c7fc4c83b6af17cc59ea2b8fcd4ef879ebac22534307a +DIST cc-1.0.60.crate 53351 BLAKE2B 95fec29226818496e56c132d45eaf728df17f3ab1b939842dc228febe7bdfabc9b0b407fab65a6a7d308a1e57a40702a2810516882f712319de119ca7cad4b52 SHA512 3aaeb5f6b0fed31dd65f8c884252d8a6f8f79cd801edf7626aebf4f2843a414cf45ec72b4d6f88f9e9fdd959e0547b9ee5da817b7c34235196113cdbe915b888 +DIST cfg-if-0.1.10.crate 7933 BLAKE2B 063a96ed176f34f788666b40adc483d147fc011dee941ab60569ddd0e57502b5dd06ed71090f4e14ce005d06e240500a286f74652615e9d068fba649610d8cf8 SHA512 9d22616bfb4a75770a828a0a3cddac6787297a5fdc53eb17e25811cc94de717f2de8bd66d53c5d65ba1c83d8892aefee5ae758cf56a1ef0a0c3120f70b244339 +DIST chrono-0.4.19.crate 155663 BLAKE2B c92c273fb6475bbb2546dfb75eaa23321bc8f9a5fa8a7c652f527649b96ff8718fa932f52b500b02a4acae7837df5bdb14f69cb821d4962be2790dbd1d023a54 SHA512 a119349bfc2243a249f1d18b1ae548a04b30fecb75913a56f26d1ff8c0eb53097a2674d9141e2094018191cbbc1620843fbddaf52999824e077c1157f0907980 +DIST clap-2.33.3.crate 201925 BLAKE2B bec9c866481c5b3fddeb314f68af9bce38fc421e42816182de3209e8ea3447b72cf033e6251eea27fe974eff8085b7d98cdd2911b5cc0ec6b4bf4c750deb8a25 SHA512 3eb0fd648e2e3f9e5ff69a5e6cf0d867304fe18523accd036f28a86de368e4774088a6936c108ccc045092c539fe7f7494ea96420ebf6b4bec16880cea84bedf +DIST constant_time_eq-0.1.5.crate 4936 BLAKE2B 882dbf33f20954205fcc5b6e39863db8969d184b697fd51ef462f6890c1a754e3fae67bcc7db685d8cc26abe6e3871d3b80aa542489ba9551a0c95a49f7a6dc2 SHA512 a4e0155a7ad72babcfd418d832d362b3fca7333aaaf36c246b00e948983837c3c93378b86e37c5fa7626fe137e3b6d77276ccc61624a7f4ab914605905a88a01 +DIST crossbeam-channel-0.4.4.crate 86868 BLAKE2B 88629c72c0be41bb3a0d7dc92f6908d46cb397223449da5b2c990b7660e09dfd3e3f3fb708d13586f5dbf199d62f781f1f7e0b73d279de0ef810f7bcf25b3f27 SHA512 2933721d6af3126f492f112f3d662fc40fb49139a84c72d33b6c2b0aa94fe964acb302fe726e999be4292a1410d3ee896169a0434dccfbf44d166008719846d3 +DIST crossbeam-utils-0.7.2.crate 34338 BLAKE2B 3cb287c7741c4d5b0551331634a75b066f07fb4b55fa2b347370506467a05923254b1c4dca667de59ed91ff91f5496b37f40f13d3e9885a1b4f639f5b6748433 SHA512 e375f24c007bcf660d9e297527ed938f678a55696ca7b555b96fee7e0b94c31db2d3f4355675aa0baeadba68b9755ec92dc3a09a37b5db48e3723b926fd4a8f3 +DIST dirs-2.0.2.crate 11779 BLAKE2B d1a6152d05a98eacff15c6c7f1f550d475b5a1cf62e541a2fa8b9836b9a1ea6b98f9314341dda35929b968fcf8a47dac7679c5c0b0dd97f21564a8d469c2e254 SHA512 34d6e5956c9db1dae965d33f13c64dde59d3e0e18cbdc56c02f7f31cac8e0034a80fbb561e0a73b8dbd145f85b46fc4e8a147b4c946b5816d8dda6caef185396 +DIST dirs-sys-0.3.5.crate 10643 BLAKE2B 8df1e6ca2c8e8560913bfb74e7bea1b12e1b13b6d337f3c76f517716622586cae8ff9999044e3265504a44f161526a79baffff2d123d3ea6c5cfebefcf498010 SHA512 ff7eb48943b61773dd2aa8dc10372186d613c225a2b39caf48966a1a5af087dd0177b8db80b1353a504af8aa1c8b4a0a849edf6c7e4389f6b753bfa3b7376833 +DIST getrandom-0.1.15.crate 24786 BLAKE2B 868817d62ee44fa5bbf54f9af0bd71a29503f92bc93e190a834f4ebdb8eb73dd29e175c661f9964298987949c0b82a53e99080cbe4090fc9c5453daea4b05595 SHA512 b26d9558554058f8a54b03f56f488db5ebad2d5cc84f737e489f8f532f8464ef9038d104173eb30acca61caa1f99e1ce267bc493c01ba1611b829e0a090cc87f +DIST git-absorb-0.6.9.tar.gz 23998 BLAKE2B cb35aa53e1fb0172e9cfd6b70bc6e02d392e6e5872bff318e30ca9159211bfac80199fd98f5f1b6e2d4893a0429f52a82c501f22bf6016345a55e785d7a6cb3e SHA512 ae104de636754c7e851da3cbe624c9de4a27f8d140553ebcd69196c2bc73392c93116e0b301c85521ac460303d7282661de93e1830f494ac9d330f91a3f8f137 +DIST git2-0.13.25.crate 194192 BLAKE2B 7286ce8f37421e5cb626c3b3d4f0005d4ddbf4f893fa4885a9bad28ba3f0e24d4b2161df8788430d909394ceff77eae586b26ffe343d6b0ca287ea0b63087068 SHA512 666f11464f34d82abd994f00a0b81e960551c4c524b4f00d28e5c728172dfa894fec65050767cc96d18d1d5de57f1e901154fe8d70e2e31b93b93790bce021ab +DIST hermit-abi-0.1.17.crate 10065 BLAKE2B 79aeac5f72873a29b53368fb01ed4288224692cc7c55221633775641ade40693bf3fb44db22cbe4422a74d1d6330450110f21b586426b6fb8ef93f116476c644 SHA512 1ed4688f2cc1f1d5ba2f7637e2a9dc230712ce8907e1fa3d95ae374cd4b67a325138a98f2a524cb03f99625775057aa0370f480a73ab20485f0456e2f108baf2 +DIST idna-0.2.0.crate 257203 BLAKE2B d26117124891f90b5e36af291c9038e2f4d46402c41380a6a89758459fd73839137e6faa401502be12dd81292cd9e12ec82fc611c0ff7a150510d19010767558 SHA512 375d6d73537a5c9cebfc850a2b561d57e748d80059ca27fe5e35c058cc12a5938cfbb39a76cfe57fbe589f7e36f89ccd91ccdb8899458c322e277c299293bc7d +DIST jobserver-0.1.21.crate 21228 BLAKE2B ab1a6496d609e19235f022e920495e708571116e90f8c036edb5f7ba270c2ac938f7571e89f3fb714043c87623d4cbf1d404067ccac6a8b41e4a6768039cf02b SHA512 944249819e1e3dd09495ead941330e9abe439647c1e66ab7e2140c0c9e100b63f4f792fe06aa3c86f509f057df297ee2d35df0ccdfd4bd6a115b6a44076237ad +DIST lazy_static-1.4.0.crate 10443 BLAKE2B 25b2e61bbac48f0dcbc79c81d7bf01f2403d8269ecb6be3ea6147bd00f7a588df15a91f44dfc18ada19b21faa71de4637c7d493a8628cbecd0e547d74e616a23 SHA512 e124c0521ec7c950f3c4a066821918da7a9c6e711115d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8 +DIST libc-0.2.79.crate 511752 BLAKE2B e5da81cbbf3bd400fc301096750cc94683f13000b3f20461d2bad942c3999122fb944655871039e3bc32b9dc5037de4e82800db16899dce4685d80a569e21512 SHA512 943e097b3a4fd33b547812dadad15da33c98b1d78fd86579f63a78030a5fadd431d5d1fc969e67e1bc301d33dc550c0398ccadae26aa990d05ee474a5f76c634 +DIST libgit2-sys-0.12.26+1.3.0.crate 1476836 BLAKE2B 953756b4ed1e6f90d9eabf03dd9f3db50a085ecee4018c6f5e598b2b030e3332a6281f5e033810134356a48b92a4b910fd534813f2111cefc6de3bbf2954e1c8 SHA512 de30865b3d4ab0288e090381e5646e3e8028c341fac93014168fcfa5f166f7fbad9fc4ebd285919247cc6bac178658eb936ea1fdf168068248be07ad34ecc54d +DIST libz-sys-1.1.2.crate 1339299 BLAKE2B c055fdcdeaff5d44cc95f6cef190094317644e4881f356e46b0c0347221ffb867afcd29ecd4d995bf397f714b705ce84cf34ab87010770e00b3aed1956fa46a0 SHA512 2342c738230ac570c61b466920e2ceafc0194381643540f094f6541917639a4f5b11d46d575bb03c7623ce109d376bafc3076a9d172233313e38cb6f49ed16db +DIST log-0.4.11.crate 36276 BLAKE2B 728647c829e96cb4fc795682facceebec887508e1ca14f13c0e7984db8ac39b3045885d1daa2f335de3e8f25c5cf1b519a1e7c8c6f4160a716bb8e39d085009f SHA512 e216fcb3c9635d8c4b67b05c1ada1e5de4e99dce89ab4c8f8033ddce6ac488605d8af09f93c42d25ebf8844feea22c93b71682e77a368ee01c686a15133fdeec +DIST matches-0.1.8.crate 2216 BLAKE2B f18176110921b1cf6e58d52d12f1d1a3455ce2dc04421fbf1b392f66cdd81a88e924571fa27e307a06301d83b04f3b8a0ca3ae40d2da6f2decb8aac4e2801fbb SHA512 98b58f6a2694b03a7dd1be69ebf7e3ad14483fc8e4cb6e6c26a4937e4e660e843efb4dd04a7312dd9659ca02acd3775678f73b8faac44a76ffafaf873c22f590 +DIST maybe-uninit-2.0.0.crate 11809 BLAKE2B 5e517b8c59f9ae4f1a4f86b48679ea64d62450ec2519c8caaa914479ce9e5b3aff24707e2e37272ba74bb60499afdc602fff17756337b0c50a9184edbd8b8805 SHA512 3006fc009c7c743d9147a4122e677cdeb2546f7bb46963b2f266839614eb906f9d763c161044fd0bf3f7b54124ac0734ac9ae7f7151b1a7a5f45cbc739976434 +DIST memchr-2.3.3.crate 22566 BLAKE2B f952070b98ef30f0d2780a6efbeb36d295710734f678517d913a8002cafebbd3cfc38975fc4546d306efc11bc815764d14320af3b7a2360bd46fc2ab3db9efa5 SHA512 922e05da920d0d94226857788878ee5e31518cd80d95ae57e1d7ecd233942c37d01565525db2f1dfdfd5b3b1f81b2c73eee058cbfd745cb4e1519518318df248 +DIST num-integer-0.1.43.crate 21966 BLAKE2B 9e88ee3413965cc05fdfcfcbc7e10225ec52de4f22b7078b9974eaddcd26869d72a9c68f7f19b8e95cd6e3edea8c0066fcde80742cbd3873ad8a0c19c80b399a SHA512 e0b1efbde64ce150a20fb937efdb89cc702b90d71448227f0212bda06ff88dd6beaa02d3c973ae5430d20fcb5a2e4b611d4b2b225f5d9936a803e5e67ad96fd2 +DIST num-traits-0.2.12.crate 43807 BLAKE2B 3913a6c73a928ccae330ae4592cbaf502bf3e6e43f1ba847a02d317003074a07d0d4334eac6e31a5a9220186c44e9ce80111d59203b78e50d4abfc6da4daeddc SHA512 98fe81a3747d619861c3b2789253465eed68c371d74f719885a4b5f09af1abdeb0a147baa52fe335dd4f471f82463aee65fdc9e44432dd67248d5f43e4b85377 +DIST once_cell-1.12.0.crate 31549 BLAKE2B 72a6c2efe279abce207096dfc47d207adae34764642f742bcbddcd8ebab9f78f6c2ea7750bd670844de5f6989e4951904b5f624281c28346cb6c41c585137e91 SHA512 02da0e6eccee2d5246fff5e6323bd7eff0f4641801be5e5910763929a5e9d8b62c07f81001c405cc6aff03f68a14ed5bfebd9900bbdd09568bd1ab9ca9b73093 +DIST percent-encoding-2.1.0.crate 9748 BLAKE2B f3ff35ac683724b15e40c85e0fb8ececb07b61beeea82b7020f02d27df05a8a3535f157b3cd688533e414d6541de7de8640ef4756706d8061af0fec94ba04ab3 SHA512 98af4dfa7c6a3cf0d5aa929c436f9eb1ba1b576a944513f1284e6df2ad06be7cab9eba145d888d50af88f8c970bacc702b323041bec6d4fa1dc34095186c628a +DIST pkg-config-0.3.18.crate 14674 BLAKE2B a03292e97a195f8eef0cb74f2f640193b2045846b7d79a898927d6b6849b65a7e6bbd45fcd4103d3152e64c6f9c0316f2abf1c86a8a24c0467564894e1d45b54 SHA512 b4cae39a11bb80f6df96262ed77844270c0a02793ace5dd255820e9ce52a5f3a43b36bd6296ab9428253e96f9b991bb6a7090d7b749db1ecb0b03aa721813d8a +DIST ppv-lite86-0.2.9.crate 20933 BLAKE2B 493fb977d0db8eb4699893ed1d05758ee7cf1b5610b767a2ec352f3f430edf3d1a3bacefae554fb16eb2786fe4fb9b574c7b9961458a938da9a79b9084f062a8 SHA512 d9fe88a221733197b43db2a2a608dd2acdd9aa37129af07ad2405d66171b6f9f4c1a61530013c7f9ad69194a2e52e7480ba80c696e97cf2adaea7677052cb010 +DIST rand-0.7.3.crate 112246 BLAKE2B ecc7c1bd70ac874c03bd8b7faa3016bb2d5ee5c19603280a12a45a81598f706e445971ee081e6ca410ab6f0f5f7a06d9315848cd556a2d8522a82024f6ff91e4 SHA512 f9b68ef9446f1ca2c8092c50990f15c1b4cb5529eeeac4df8d69755e0b7253c663c587775e7cb0a7298c31edb444975dda34926759306541f6d43d0d3cf57b7e +DIST rand_chacha-0.2.2.crate 13267 BLAKE2B 7908867ceac98243ade22e1b38f1903fe0249324484d91c948a5058a1e099e5213f325c5ba3400898c8319158ed69f4ed064164f235470856a8191bd990d5a10 SHA512 1e2117442e4ffdd834dcbf0ea1829e73202c0ff9041d5969d81a59330242145f2753f2a56de2fdbff65f26cf0d227c7d08b2094ab2f946b764aef88106a6ac84 +DIST rand_core-0.5.1.crate 21116 BLAKE2B e74791f941a79971f2741172d489d546373c9abcb0dfbffcb7b97b858ec800b2e0c97df4ac636f3aa1b8dd6c14685edf317336d577f31b5c6cb7d89a157e547a SHA512 4f7500b35e165e6c817fdd67a50745d5497d24e554bb554705097e37258751e8755c4d6b8a69fcb5e1977708ba78620bc35d640e4e018fcd4e88d9dbdbebdcbf +DIST rand_hc-0.2.0.crate 11670 BLAKE2B 55fd048f2524cecd4f0e17927a81111e3070a8cc6a5b0234a46445400ad5527194edf8c91fb5ad6538f4958d53044ab02424f61a38adb2931e2cb7568c458ee8 SHA512 bca185612bed5cee4da76fb68fe854105da276f5bf2da464e596d586b925df798cc692ed881e276ab77c36b4b0551930966c93656be122ad05899d87853533b0 +DIST redox_syscall-0.1.57.crate 17087 BLAKE2B 88e3ffcfd752e757f8fadfd4edca367f9185f09e609c329bb36f179183cf103dc182aae701c14afb717d2b4c3d72ba307b49fc671cc97aa7c9d03df1a7a1835f SHA512 c6e187087060084b7173ed0d9d0e982e4259d4f76522112268c02ff20751382e3bc8e119da6153170f5c54bd5b9cb028910f2f85c1c842099205dccd44659184 +DIST redox_users-0.3.5.crate 12644 BLAKE2B 093141c98164163dc66378f2ccb48a5f478c5b40b69ad4ecb89fe8967e4a309974088ea5f7a2b184b625fc03348f2e75b0809d3683696e9b74d5c4a5ac6a4e8d SHA512 d90f1816205a4f2eca59397f6866e5cd965af652940f56930f8bfbe2b50eda75cf78b09200bb69416a35cbeead3cbd4de354805568be2feef1ae4d691b9a6a3c +DIST remove_dir_all-0.5.3.crate 9184 BLAKE2B ab7ef94e0230ddc9b363f038254a180881bbc20eb04a254f97e6f71ed491c99ba1c88f5e85632d450243882a4a0df63f3b8b183bc1fbca9caf30ec23d577b1d7 SHA512 50417d6d8a33912193a1ed37eb72b47431b12ae65d2780cdb7080c3d141e63819da13751c3fb737685cea322f70b36d413389c3dc01aa12b4dce615aefed0e2c +DIST rust-argon2-0.8.2.crate 28291 BLAKE2B 65b9727c348e1593bea85bdcd65b21ff0e667d87d1ff88692165d49948fb7b9294a4a4a20dbb824a68a2cdd59ce1c1483d6dfdc31d8f7800c7e34cae78297a0b SHA512 9ea8088ee1caba0cac453cc54f7e7327471282d0a8a65944b1c911f809bdeaad7e9379a399d215533e3c05538c9b5b7fe1f9845b01c580d76ada61ac8a24327b +DIST slog-2.5.2.crate 43204 BLAKE2B 4538dc345dc466853ba4ecdfb632a2c26c3130e5378567b77100aaf65b698878d3c521694987d8052483de68ba2256c99e41bac50d3dfa3e52ba56494999e4ae SHA512 f6772595240abd8aeb1644d40007db7640331491543ea5633f1c3cf7ef6b802dca50069a7b2bee8476c42e23884b39d8d2af3025576c13c851f41649924cc6df +DIST slog-async-2.5.0.crate 18033 BLAKE2B 0dbf43e4e977b64423510a59492544b4c062531f05e44a57f7a83c0fd7f5fec4d0e510215c7ff30e98d882ba763b8280a36b9893d33a18b065465c68401a3a76 SHA512 566eb7a0adaf06dd4e63bd720ce889273475ec890b5c23c03abd7b916928453e9c8983e5296eb8d716db83cef950addd19259310178e6aaadddc56658f618735 +DIST slog-term-2.6.0.crate 26304 BLAKE2B b1f06e74db28519b09f960c65d2c4aea3268ea2af974ed5c21d47993671989a8a2249aab9ce72ca65b7578b5f37ecef32f7e33fdae4fb8ffbd697d0283b264a5 SHA512 80c264ed6e79ddb76fe394aebd91d945222f7046928ba3d762b3fe79d818d9281a9504aaaecbd2799a966caa4a7707bdea5f66c28ae35891e51c5a9a10d76636 +DIST strsim-0.8.0.crate 9309 BLAKE2B 40a8be506c43ee1ffe006ddc7dee98c3d418bdd205d57b78f5d1e4c9312feb57e1eaf952e02d92d4e0932db240c6fba45beb06ea8c4fc6de1cf1faa8b6a3a939 SHA512 1d55a8d946cd55f5f37d06aea536549ded95739fa58c0f2da285a0041154c181f663682bdcac643aa198b3e762d694a04f058db985c62ebe22b5c16327ba6d34 +DIST take_mut-0.2.2.crate 4263 BLAKE2B 3660c519b5ce8a39ab4f06dd61ac062f645de321f36913e948e8f10ead18866e2aae2609eb1f7f5faa7cc2500083743fcad816578defaddede456c6c05b3244e SHA512 f75a5ce723e710809130878b0ff5df368f5929201e557661dd0154f3b31ea58d7d30d84672ca5a684fbfcae5f82ab2c21b1b5d9edc4c67d08c221228bd9de814 +DIST tempfile-3.1.0.crate 25823 BLAKE2B a34721369923771d5f9a2fc64adaff2bff41da97a0ce79e01aaedb8d6670867220c671c0d23f7a8a9c71b09c0559efe4e7c9bab1f7f9d890866be1de1ce050a9 SHA512 a87ee51c36a81a8a8eb8f091eb57926682f38b707f7f641332d8752170e6c139a656ae49c6861f51e07c2fab5c86cc9b2ac158f5d89c6bff15d18934dd4e7ba5 +DIST term-0.6.1.crate 37578 BLAKE2B 6ff130b12efadff7ece7858935f3fc9481da87ce0954c49cdcf7f4210a572274048292372aee7ef58efe6c00fa38242c2abd29bbd4563d00a55fb9337e038ed3 SHA512 5e684eedfe522da12914d579fddf1b04720086325ab18498e56b0cc709b0c8a022f887731a2bba9d0ddf200c756d12948835bccdff5bfb2b19af7d071051eacd +DIST textwrap-0.11.0.crate 17322 BLAKE2B 257428908342774593bbd3528fcdae710712ff54e8a711393a24356d8ba0e16e466a4b20c05f942c48ca76b3b5b5aaa90ec202f782cad892caa8b71ccf124da6 SHA512 f5c0fe4f28ff1a3a0931e8e235b5157a45f67967985bcc752418c5ec3481fca44a8ae4800088889b37e8cd0533f53d3c456d5ffd19b767b3f83a87b49a2e209a +DIST thread_local-1.1.4.crate 13106 BLAKE2B 64c19368f8cec46f23b3052759c4c4ef0de50748432790e6ea11b12477239b177d54e60b9046fdcb2f495b8e0b37ad82809d03602edab9fc85cf814e3bd94fe2 SHA512 db7ff3eb88a73d9313dd58d72397614c5aae6be1d64ead7f16535cae2857be3b27d189e7955308591ec64a0d67777fd2a62a2b124ca73facb9a2d8e0458bdbb5 +DIST time-0.1.44.crate 28885 BLAKE2B 5e2ca11af9da0847239a086330d0cd00fcb5b63862f9dfec46f72a065bb35ec2236a21ee1c56bf65e3117105e7815cafe67e3725b8575373e875dfcea401d967 SHA512 736a38637be0193a06fa35d42b4873b04a0a35d84cd2af85b7f653a1b67b95078577134bb187b777730e73cce67f437b45ff5c72b8e3f1f8e2ed3420ea0324cf +DIST tinyvec-0.3.4.crate 17586 BLAKE2B 2173653c5433ba8fda3afb7e88e9065e2b5cbae6b25753eb306423e8b0ac694074d678bc50a53b2ccc228a8e8b4d06de2ddeb63f0adf057feaff8a998820eb5b SHA512 91613078d89456fa233ee2fa3309f6b2b8d490771b62fdcc027336bfb20ee5fa3d8d3dec446ab397b5974127567d4f62186c6eea45bd9c767719bb770101ab2c +DIST unicode-bidi-0.3.4.crate 32228 BLAKE2B 853a85b29d1ac2025b7a28af64ead9387e3b4b1e790ad719d4374e349c1853ddbb5959a2890d9d6c94a5c28e4523fc3324deb6b1ed1aeb5e917f21b0e2516f6c SHA512 170ce083fa82bed13ecc62d85cb882fdd6491ae721e1633d3c1a5d3cee69422153afcf6695765c0e8fc7035440d0370d34afac9e978cb27f7506c07cba300e1e +DIST unicode-normalization-0.1.13.crate 91691 BLAKE2B fa4ae7ce7f8e5dd43ab8e60dd48938340485de3537ad14c1dc1e7404a89d2b3022c4304cd85a4c649b8a27fa9c79e4a059d3e5d5c2011d920290d8719c74bc77 SHA512 710e002da7f59e933cbd09fee328193a1e19cce7b12426007ea32fc81ef2adefa5c4f2ad360ad684a937ab18d4be404a0a28c3de375628168fabd21ce1a6ba20 +DIST unicode-width-0.1.8.crate 16732 BLAKE2B 5aa7b87eef1322e4151a3fcf981ade311b8fa030527d7561815950e58d3f15156163dfe34da6a708c37dccc3f7652bf7fc2cd899fe8bb0118b67c4113ff3a2d2 SHA512 0abba6da6981a2451e01d93bbd47652c46eb6fb07cc0214f33259fb29945bfd5ee2b302e883ddca8f68e921635f222701b7310e7da2a5e225f854980d1e474b0 +DIST url-2.1.1.crate 70383 BLAKE2B c4096cb1bd50e9ca97fcdae0ee8b58957e21507607eafa8d84ff71c3df1ba52c68299609776f7baa45c93b971f8b61162fd8afd4174a5c7b66f36dc673707fa0 SHA512 a16c3a625fa85be9305f8150d5711c3e3aaa1f33753e7ecb8368b176cf3ea96f51fde74598c8ea3a5db2effc338589fd2834b297a1fba4bed967fa39e670fabb +DIST vcpkg-0.2.10.crate 11504 BLAKE2B ab7e64091fd2c12292282a0311716468bcf584dd3764cd0c4803d40702104a57ace0a138b06cb1429a166a61e069788b2c45c3286d3f4c5bbf6ac30e816add14 SHA512 4c790344fd3510eaaca5e1539cd676c60124b2ef157e85f89322f294ab6831c2acf6efed1529de4bb23d9abfd0b5f962eaf8d3221c827b0718834d152b28c141 +DIST vec_map-0.8.2.crate 14466 BLAKE2B 8f109fbff19604b82ea2aa61c952e2ce9b5597ccc8e1ef4e847648e2de08dece8c4debe92889edeccb8d393645fd0b62436b49d236ded7ad181c4a51239a9539 SHA512 4f1ef59bc2c437e79f1f84fe021bce5aa8ccd581f500f3d5776913d5f17d45b03ccee64f5bd03d47656318cfc9344a1f4311079d471fa409a8e4e94c143973f9 +DIST wasi-0.10.0+wasi-snapshot-preview1.crate 26964 BLAKE2B 525db01649a5981ee82ad80a1a4bab9baffd235262452675619f36a1b454017a74593c53c129f8c30b865994bbe30ef19cebaad9d245ccf54b9b07ef70d5d8ec SHA512 88e2da617f50d9ebfb1e0c5857321fb86b5ee88ae8a8d199d3cc092e0f39688a2cb68503f7c6bb09dd6bc50a9a03597a1eb2e032150fbd0d0b8afa02ad771c88 +DIST wasi-0.9.0+wasi-snapshot-preview1.crate 31521 BLAKE2B 716bdd2ec46d0bc9911c5e5e29fc783840559931b2563d8619675fc11da9527ddbe653a0f1ce0b782ee0c5f7a3131aba2b0867d415f003aa9c2389357569e7dc SHA512 dbe641f796ee3a5daafcaafc911ecc6dff170340f477c2df7a61fb4858a85aefc2637c9e61973ecce66a987aa8e08a736273a4aad3ef47eaf61ed4268dbf9c47 +DIST winapi-0.3.9.crate 1200382 BLAKE2B cb5799749ccd935ea2d7068d953cecf19f543d9db7dc16ad4584bb7005373ada34937a3ced7225544d8bc765da599911c7a3190efefb3a25b7c1bb7123b4f673 SHA512 ff8b7b78065f3d8999ec03c725a0460ebc059771bf071c7a3df3f0ecd733edf3b0a2450024d4e24e1aedddaecd9038ce1376c0d8bbf45132068cf45cf4a53a97 +DIST winapi-i686-pc-windows-gnu-0.4.0.crate 2918815 BLAKE2B 4d357e4d30f9552972170d65b9a5358b69c46a3e772fe05efc22f3d4ffc1caeeaad7aacdc7abd503a7ad0545f8bd7d22bf351dcb6df76f812fa4d45c34d65df0 SHA512 a672ccefd0730a8166fef1d4e39f9034d9ae426a3f5e28d1f4169fa5c5790767693f281d890e7804773b34acdb0ae1febac33cde8c50c0044a5a6152c7209ec2 +DIST winapi-x86_64-pc-windows-gnu-0.4.0.crate 2947998 BLAKE2B 2ad1ea8b5fa07d544e910ccba043ae925269b76b26c9da356305b34b86741dd8b9aff0b9ffe3d562db4fcd7d7c46a11ce9e3168b782b1d89ae6881742b7ede82 SHA512 4a654af6a5d649dc87e00497245096b35a2894ae66f155cb62389902c3b93ddcc5cf7d0d8b9dd97b291d2d80bc686af2298e80abef6ac69883f4a54e79712513 diff --git a/dev-vcs/git-absorb/git-absorb-0.6.9.ebuild b/dev-vcs/git-absorb/git-absorb-0.6.9.ebuild new file mode 100644 index 000000000000..df5930e02c01 --- /dev/null +++ b/dev-vcs/git-absorb/git-absorb-0.6.9.ebuild @@ -0,0 +1,101 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Auto-Generated by cargo-ebuild 0.5.4 + +EAPI=8 + +CRATES=" + ansi_term-0.11.0 + anyhow-1.0.33 + arrayref-0.3.6 + arrayvec-0.5.1 + atty-0.2.14 + autocfg-1.0.1 + base64-0.12.3 + bitflags-1.2.1 + blake2b_simd-0.5.10 + cc-1.0.60 + cfg-if-0.1.10 + chrono-0.4.19 + clap-2.33.3 + constant_time_eq-0.1.5 + crossbeam-channel-0.4.4 + crossbeam-utils-0.7.2 + dirs-2.0.2 + dirs-sys-0.3.5 + getrandom-0.1.15 + git2-0.13.25 + hermit-abi-0.1.17 + idna-0.2.0 + jobserver-0.1.21 + lazy_static-1.4.0 + libc-0.2.79 + libgit2-sys-0.12.26+1.3.0 + libz-sys-1.1.2 + log-0.4.11 + matches-0.1.8 + maybe-uninit-2.0.0 + memchr-2.3.3 + num-integer-0.1.43 + num-traits-0.2.12 + once_cell-1.12.0 + percent-encoding-2.1.0 + pkg-config-0.3.18 + ppv-lite86-0.2.9 + rand-0.7.3 + rand_chacha-0.2.2 + rand_core-0.5.1 + rand_hc-0.2.0 + redox_syscall-0.1.57 + redox_users-0.3.5 + remove_dir_all-0.5.3 + rust-argon2-0.8.2 + slog-2.5.2 + slog-async-2.5.0 + slog-term-2.6.0 + strsim-0.8.0 + take_mut-0.2.2 + tempfile-3.1.0 + term-0.6.1 + textwrap-0.11.0 + thread_local-1.1.4 + time-0.1.44 + tinyvec-0.3.4 + unicode-bidi-0.3.4 + unicode-normalization-0.1.13 + unicode-width-0.1.8 + url-2.1.1 + vcpkg-0.2.10 + vec_map-0.8.2 + wasi-0.9.0+wasi-snapshot-preview1 + wasi-0.10.0+wasi-snapshot-preview1 + winapi-0.3.9 + winapi-i686-pc-windows-gnu-0.4.0 + winapi-x86_64-pc-windows-gnu-0.4.0 +" + +inherit cargo + +DESCRIPTION="Automatically absorb staged changes into git current branch" +HOMEPAGE="https://github.com/tummychow/git-absorb" +SRC_URI="$(cargo_crate_uris)" +SRC_URI+=" https://github.com/tummychow/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD BSD-2 CC0-1.0 MIT MPL-2.0 Unlicense ZLIB" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +DOCS=( README.md ) + +QA_FLAGS_IGNORED="usr/bin/${PN}" + +src_install() { + cargo_src_install + doman Documentation/${PN}.1 + default +} diff --git a/dev-vcs/git-absorb/metadata.xml b/dev-vcs/git-absorb/metadata.xml new file mode 100644 index 000000000000..62840cdb1c60 --- /dev/null +++ b/dev-vcs/git-absorb/metadata.xml @@ -0,0 +1,11 @@ + + + + + dlan@gentoo.org + Yixun Lan + + + tummychow/git-absorb + + diff --git a/dev-vcs/git-annex/git-annex-10.20220624.ebuild b/dev-vcs/git-annex/git-annex-10.20220624.ebuild index 533212eb0b99..0b65231e2a48 100644 --- a/dev-vcs/git-annex/git-annex-10.20220624.ebuild +++ b/dev-vcs/git-annex/git-annex-10.20220624.ebuild @@ -19,6 +19,13 @@ IUSE="+assistant +benchmark +dbus debug doc +gitlfs +magicmime +pairing +torrent REQUIRED_USE="webapp? ( assistant )" +GHC_BOOTSTRAP_PACKAGES=( + async + filepath-bytestring + split + unix-compat +) + RDEPEND="dev-haskell/aeson:= >=dev-haskell/ansi-terminal-0.9:= dev-haskell/async:= diff --git a/dev-vcs/stgit/stgit-2.1.0.ebuild b/dev-vcs/stgit/stgit-2.1.0.ebuild index 20fc837b2e4e..54147b17ac7c 100644 --- a/dev-vcs/stgit/stgit-2.1.0.ebuild +++ b/dev-vcs/stgit/stgit-2.1.0.ebuild @@ -142,7 +142,7 @@ RDEPEND="" # rust does not use *FLAGS from make.conf, silence portage warning # update with proper path to binaries this crate installs, omit leading / -QA_FLAGS_IGNORED="usr/bin/${PN}" +QA_FLAGS_IGNORED="usr/bin/stg" src_configure() { filter-lto #bug 897692 diff --git a/dev-vcs/stgit/stgit-2.2.0.ebuild b/dev-vcs/stgit/stgit-2.2.0.ebuild index 5c031f871323..683baec1b3a5 100644 --- a/dev-vcs/stgit/stgit-2.2.0.ebuild +++ b/dev-vcs/stgit/stgit-2.2.0.ebuild @@ -194,7 +194,7 @@ RDEPEND="" # rust does not use *FLAGS from make.conf, silence portage warning # update with proper path to binaries this crate installs, omit leading / -QA_FLAGS_IGNORED="usr/bin/${PN}" +QA_FLAGS_IGNORED="usr/bin/stg" src_configure() { filter-lto #bug 897692 diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz index 70b68e400b73..13f789964b4e 100644 Binary files a/eclass/Manifest.gz and b/eclass/Manifest.gz differ diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index 76c63977aa07..03f2517c5b56 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -489,7 +489,7 @@ cmake_src_configure() { # When cross-compiling with a sysroot (e.g. with crossdev's emerge wrappers) # we need to tell cmake to use libs/headers from the sysroot but programs from / only. cat >> "${toolchain_file}" <<- _EOF_ || die - set(CMAKE_FIND_ROOT_PATH "${SYSROOT}") + set(CMAKE_SYSROOT "${ESYSROOT}") set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) diff --git a/eclass/db.eclass b/eclass/db.eclass index ce48ad17dd3a..0c096dc48f13 100644 --- a/eclass/db.eclass +++ b/eclass/db.eclass @@ -4,6 +4,7 @@ # @ECLASS: db.eclass # @MAINTAINER: # base-system@gentoo.org +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Internal eclass used by sys-libs/db ebuilds case ${EAPI} in diff --git a/eclass/qt6-build.eclass b/eclass/qt6-build.eclass index f92d37eba2f3..79c06f341ede 100644 --- a/eclass/qt6-build.eclass +++ b/eclass/qt6-build.eclass @@ -137,6 +137,16 @@ qt_feature() { echo "-DQT_FEATURE_${2:-$1}=$(usex $1 ON OFF)" } +# @FUNCTION: qt6_symlink_binary_to_path +# @USAGE: [suffix] +# @DESCRIPTION: +# Symlink a given binary from QT6_BINDIR to QT6_PREFIX/bin, with optional suffix +qt6_symlink_binary_to_path() { + [[ $# -ge 1 ]] || die "${FUNCNAME}() requires at least one argument" + + dosym -r "${QT6_BINDIR}"/${1} /usr/bin/${1}${2} +} + ###### Internal functions ###### # @FUNCTION: qt6_prepare_env diff --git a/eclass/texlive-module.eclass b/eclass/texlive-module.eclass index a53c22dde205..0c8a7c756517 100644 --- a/eclass/texlive-module.eclass +++ b/eclass/texlive-module.eclass @@ -91,7 +91,7 @@ IUSE="source" PKGEXT=tar.xz # Now where should we get these files? -TEXLIVE_DEVS=${TEXLIVE_DEVS:- zlogene dilfridge } +TEXLIVE_DEVS=${TEXLIVE_DEVS:- zlogene dilfridge sam } # We do not need anything from SYSROOT: # Everything is built from the texlive install in / diff --git a/games-emulation/Manifest.gz b/games-emulation/Manifest.gz index e22e70fb18db..6e300f67e1d7 100644 Binary files a/games-emulation/Manifest.gz and b/games-emulation/Manifest.gz differ diff --git a/games-emulation/pcsx2/pcsx2-9999.ebuild b/games-emulation/pcsx2/pcsx2-9999.ebuild index 55f64e2732eb..be5cf31b436b 100644 --- a/games-emulation/pcsx2/pcsx2-9999.ebuild +++ b/games-emulation/pcsx2/pcsx2-9999.ebuild @@ -80,7 +80,6 @@ PATCHES=( "${FILESDIR}"/${PN}-1.7.3351-unbundle.patch "${FILESDIR}"/${PN}-1.7.3468-cubeb-automagic.patch "${FILESDIR}"/${PN}-1.7.3773-lto.patch - "${FILESDIR}"/${PN}-1.7.3803-rapidyaml-0.5.0.patch ) src_unpack() { @@ -189,8 +188,7 @@ src_install() { insinto /usr/share/${PN} doins -r "${BUILD_DIR}"/bin/resources - dodoc README.md bin/docs/{Debugger.pdf,GameIndex.pdf,PCSX2_FAQ.pdf,debugger.txt} - newman bin/docs/PCSX2.1 ${PN}.1 + dodoc README.md bin/docs/{Debugger.pdf,GameIndex.pdf,debugger.txt} newicon bin/resources/icons/AppIconLarge.png ${PN}.png make_desktop_entry ${PN} ${PN^^} diff --git a/games-puzzle/Manifest.gz b/games-puzzle/Manifest.gz index 4ba8a845adbb..436db27f86e8 100644 Binary files a/games-puzzle/Manifest.gz and b/games-puzzle/Manifest.gz differ diff --git a/games-puzzle/atomix/Manifest b/games-puzzle/atomix/Manifest index e80b0caa91eb..65533d386eab 100644 --- a/games-puzzle/atomix/Manifest +++ b/games-puzzle/atomix/Manifest @@ -1 +1,2 @@ DIST atomix-3.34.0.tar.xz 532096 BLAKE2B bec3e29b2a3ef92e86b4c6e3c68f31d80b4e5fae9c2fbf86229813a4ce4aef469c94a21a51a102b556cae0764eb553e18301246d94ed475f64ec6fcfe226c784 SHA512 e51e8b727c80a1ea7078ac16d15884c7c84b06aba456424e659c3965fe7c2b3d0c68e0d3d2dd40224afd07b4f7a261e7510327e58974a94fe58c9a81d67c0937 +DIST atomix-44.0.tar.xz 535508 BLAKE2B 96ff6bbff54ef48f41c6d0480d407907d4bc4e03217c20555698a75266ded03b421d79f9fe31bfb684b6463e7f67e9aa65ff96aab7a10f6b88539ecb6b4872e8 SHA512 396f5704dbdf4a090800d236ec6127ee6260daa2a274c2d6c55df38d671e44e3b06fd881c3883da7bd7442b604f4d393f735a44c758aee1bbc8f2d4799ab48de diff --git a/games-puzzle/atomix/atomix-44.0.ebuild b/games-puzzle/atomix/atomix-44.0.ebuild new file mode 100644 index 000000000000..8cfa27ab8ef3 --- /dev/null +++ b/games-puzzle/atomix/atomix-44.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org meson xdg + +DESCRIPTION="Mind game - build molecules out of single atoms" +HOMEPAGE="https://wiki.gnome.org/Apps/Atomix" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=x11-libs/gtk+-3.10:3 + >=x11-libs/gdk-pixbuf-2.0.5:2 + >=dev-libs/glib-2.36.0:2 + dev-libs/libgnome-games-support:1= +" +DEPEND="${RDEPEND}" +BDEPEND=" + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" diff --git a/games-server/Manifest.gz b/games-server/Manifest.gz index 89ca6dbfe9df..3fd3c69e9236 100644 Binary files a/games-server/Manifest.gz and b/games-server/Manifest.gz differ diff --git a/games-server/bedrock-server/Manifest b/games-server/bedrock-server/Manifest index c666e63329c1..99950d33d65f 100644 --- a/games-server/bedrock-server/Manifest +++ b/games-server/bedrock-server/Manifest @@ -1,3 +1,4 @@ DIST bedrock-server-1.19.51.01.zip 76976732 BLAKE2B 30ed7a0ba1d2d13b91c5400e17a4facf92a540bf96216dd2fd6cce2d67e5576a8dc73e1c534bb7d0c3afff54cfd3a2715b1c10ecbde3129880003a55fd58fa5e SHA512 b4554cb0fe66bc742d80e2c6143faa6ad10412645207a845a84cbd99550888a0e9e80df764419ff50b24abbdd63d1260c2532c79add2dd4e012604e5bff59173 DIST bedrock-server-1.19.62.01.zip 77824871 BLAKE2B 9b3d875cf798ba0d68e2a95a78ba24ff4635751c910fadb70949bcb395f4f37fef425328a8268045f1ec52f2bc171df461706d549f0e656c46834564feec4c97 SHA512 8ec08145ff7b7ef646084bcb5bd242c762ff3e9ca6e1aedcf04e04f6e6521fb5b52f2cd3c8906af64c23b62b3ab5a0ef422c17428b91b438249870cb0bf15caf DIST bedrock-server-1.19.63.01.zip 77829248 BLAKE2B 3df63ef618242afc27245d0cee1b2216722315f268d0be3e2b4f4ca588463603389ec11d97a4b4272327edbd1e7307fa2f42fe0c21cbf00c4a03c72f187e45e9 SHA512 59e52498b2d6e3d97ae588e1910f9adcc0039319738d3ade7539252129d3a4c22014d44aa48ec0feb92776fd611e9b456f6d09e133b23916e84db5899edd8a00 +DIST bedrock-server-1.19.71.02.zip 79101599 BLAKE2B 50d6acb232882b640cce7f204938b35b8ebe33af569ca8d9e291243e34e14373aedd5273333f547cf38b4e7b9667cf1ec9b6bb6dcd53c7e4e9f4c9b8ea6a2d29 SHA512 7d6cad7229a31343c5297ef9770e32767de9fa328ef37670b837b01aba00b5e3eef925c093a122bcdbf9b3cca235880d8b02796c07fb0e8cec9736019f860ead diff --git a/games-server/bedrock-server/bedrock-server-1.19.71.02.ebuild b/games-server/bedrock-server/bedrock-server-1.19.71.02.ebuild new file mode 100644 index 000000000000..aa93f6d0bc04 --- /dev/null +++ b/games-server/bedrock-server/bedrock-server-1.19.71.02.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2023 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://minecraft.azureedge.net/bin-linux/${P}.zip" +S="${WORKDIR}" + +LICENSE="Mojang" +SLOT="0" +KEYWORDS="-* ~amd64" + +RDEPEND=" + acct-group/bedrock + acct-user/bedrock + app-misc/dtach + dev-libs/openssl:0/1.1 + sys-libs/zlib +" + +BDEPEND="app-arch/unzip" + +RESTRICT="bindist mirror" + +DOCS=( + "bedrock_server_how_to.html" + "release-notes.txt" +) + +QA_PREBUILT="opt/bedrock-server/bedrock_server" + +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-r4 bedrock-server + newconfd "${FILESDIR}"/bedrock-server.confd bedrock-server + systemd_newunit "${FILESDIR}"/bedrock-server.service bedrock-server@.service + + einstalldocs +} diff --git a/games-server/minecraft-server/Manifest b/games-server/minecraft-server/Manifest index 514bd35aef15..5b038a5709e2 100644 --- a/games-server/minecraft-server/Manifest +++ b/games-server/minecraft-server/Manifest @@ -1 +1,2 @@ DIST minecraft-server-1.19.3.jar 47162712 BLAKE2B 549678fc5c110b42b444b565142b299f13efaf2fb4f148e2f050f1f9701f0e81870ba777f021dfcd1d494cfacbb9e8dac5ede62b5315a93b367f55ac2c582d94 SHA512 1a3b9930df515cb8b8be9a212c2b3b6bb4612968aca5f5bb00a15eb70bff126bf96f51aa5c6661fae0b16eef629843103c6ae73cf6f2c8030314b82d2a03a189 +DIST minecraft-server-1.19.4.jar 47515675 BLAKE2B ab4f65ce8e08ea790d3ef4e291dd1eadad0931bd5cf39771ed6571089c556cb85786987c0f9e22c2aaf4b000400a674c85bf157382c6840cd65fcaa33ada70b8 SHA512 a4233e35aca4ade4b2d7b8047c990d40ef81e832ef693b583a08b963ad9358c0abe3ccca656848ba649aaeded2a37ac585099bee24036a8abb1e7541eb91e96e diff --git a/games-server/minecraft-server/minecraft-server-1.19.4.ebuild b/games-server/minecraft-server/minecraft-server-1.19.4.ebuild new file mode 100644 index 000000000000..6760263d56a3 --- /dev/null +++ b/games-server/minecraft-server/minecraft-server-1.19.4.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +EGIT_COMMIT="8f3112a1049751cc472ec13e397eade5336ca7ae" +README_GENTOO_SUFFIX="-r1" + +inherit readme.gentoo-r1 java-pkg-2 systemd + +DESCRIPTION="The official server for the sandbox video game" +HOMEPAGE="https://www.minecraft.net/" +SRC_URI="https://launcher.mojang.com/v1/objects/${EGIT_COMMIT}/server.jar -> ${P}.jar" +S="${WORKDIR}" + +LICENSE="Mojang" +SLOT="0" +KEYWORDS="~amd64 ~arm64" +RESTRICT="bindist mirror" + +RDEPEND=" + acct-group/minecraft + acct-user/minecraft + app-misc/dtach + || ( + dev-java/openjdk:17 + dev-java/openjdk-bin:17 + ) +" + +src_unpack() { + cp "${DISTDIR}/${A}" "${WORKDIR}" || die +} + +src_compile() { + :; +} + +src_install() { + newbin "${FILESDIR}"/minecraft-server-bin minecraft-server + + java-pkg_newjar minecraft-server-${PV}.jar minecraft-server.jar + + newinitd "${FILESDIR}"/minecraft-server.initd-r5 minecraft-server + newconfd "${FILESDIR}"/minecraft-server.confd-r1 minecraft-server + systemd_newunit "${FILESDIR}"/minecraft-server.service minecraft-server@.service + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +} diff --git a/games-util/Manifest.gz b/games-util/Manifest.gz index 31d1a76e4503..728d51d284ae 100644 Binary files a/games-util/Manifest.gz and b/games-util/Manifest.gz differ diff --git a/games-util/lgogdownloader/Manifest b/games-util/lgogdownloader/Manifest index 50fb5d9762f8..7ca756112553 100644 --- a/games-util/lgogdownloader/Manifest +++ b/games-util/lgogdownloader/Manifest @@ -1 +1 @@ -DIST lgogdownloader-3.9.tar.gz 86351 BLAKE2B 4ba1a39e2c040910cb3fdef908c229ce8a7def70ba430167977ab4eaa7fdcdfd132a314d256300904dd14052aecffceec92652cfa3eba3c2a54d83b1920ed2b7 SHA512 5ac15776c0ab7416013782652fead180f75e3bd075a3b67c9cb672122c13401ebc91e785daa9e7d332011474240dbb4d8383ddadea2abf0d3bddfc13d6892066 +DIST lgogdownloader-3.10.tar.gz 94395 BLAKE2B 4f8a2808d7f751fbd5f1c22edfc75225276fa73f5653bc6c0a5d0e8774f278d6aa7a6aa1425a2e5efbbc072dd134e6119af460e705e93ac192246f79a7277327 SHA512 ffa94622e1fa8d31ad2e6e6580a3fde4e1382a6a41fa0c4f47ed3fb4bb772352d9513eed22ccd38fcfee0eaf3178741f64ab7519096c385c0467a50426f5e5e0 diff --git a/games-util/lgogdownloader/lgogdownloader-3.9.ebuild b/games-util/lgogdownloader/lgogdownloader-3.10.ebuild similarity index 95% rename from games-util/lgogdownloader/lgogdownloader-3.9.ebuild rename to games-util/lgogdownloader/lgogdownloader-3.10.ebuild index c82642cec753..a104b726ad47 100644 --- a/games-util/lgogdownloader/lgogdownloader-3.9.ebuild +++ b/games-util/lgogdownloader/lgogdownloader-3.10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 diff --git a/gnome-base/Manifest.gz b/gnome-base/Manifest.gz index 8eba54949602..fec80b1f0eb4 100644 Binary files a/gnome-base/Manifest.gz and b/gnome-base/Manifest.gz differ diff --git a/gnome-base/gnome-desktop/Manifest b/gnome-base/gnome-desktop/Manifest index a5d109c03ba1..5c4e4b145f5e 100644 --- a/gnome-base/gnome-desktop/Manifest +++ b/gnome-base/gnome-desktop/Manifest @@ -1,2 +1,3 @@ DIST gnome-desktop-43.1.tar.xz 764876 BLAKE2B b7f19a14e69450fc7cf9e0fe404cc0b78c5478d58b4f278b4c2eaeb20d8a43103c07458a68836d912a9576c2819790cd84002e196c2f1dbc4b5db0f34914cc2c SHA512 6b6c9597629ec32453ba1823a3508616a951c0274400e4814cd5b39438ee2c752842cbd37a8dc4f19e9a667a7f171546895ebb15a2a79802171466e395e9b3a4 DIST gnome-desktop-43.2.tar.xz 765508 BLAKE2B db54a18cace207e0044e35fa95cf149a51f6948c77db27963503fc1aa4aa3ec6d32da0dd517b83abfae770f81bab72e930d36e1de80ef5aa6bee1fa55f3aa7e9 SHA512 b1a84f75dd793ad856a4f4995cc2d87a5ed91e1bb498229587defb139b8b988b1087610026576c34a51f1f9439ae36efa01544857deed1c8b6ec25cd68f0bc30 +DIST gnome-desktop-44.0.tar.xz 765764 BLAKE2B 3859b95c7cae0a46190335e707b07b0f9ca47238f9ebe2109c260d04627e8034ddaa7408b8bfb91d258d608279c32fd09a1477f860ccaf324f5a63da4b18a214 SHA512 707e96ffe1bbe27c448dd007b5a005e06ea3bba945c1c6708c61b8cec204cef6f5ed540f8ba0f5e566c2fdbc825fc6f9f0440706e0aea132490ca6d48823e180 diff --git a/gnome-base/gnome-desktop/gnome-desktop-44.0-r300.ebuild b/gnome-base/gnome-desktop/gnome-desktop-44.0-r300.ebuild new file mode 100644 index 000000000000..123a0ed9e55b --- /dev/null +++ b/gnome-base/gnome-desktop/gnome-desktop-44.0-r300.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome.org meson xdg + +DESCRIPTION="Library with common API for various GNOME modules" +HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-desktop/" + +LICENSE="GPL-2+ LGPL-2+ FDL-1.1+" +SLOT="3/20" # subslot = libgnome-desktop-3 soname version +IUSE="debug +introspection seccomp systemd udev" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" + +COMMON_DEPEND=" + >=x11-libs/gdk-pixbuf-2.36.5:2[introspection?] + >=x11-libs/gtk+-3.3.6:3[introspection?] + >=dev-libs/glib-2.53.0:2 + >=gnome-base/gsettings-desktop-schemas-3.27.0[introspection?] + x11-misc/xkeyboard-config + x11-libs/libxkbcommon + app-text/iso-codes + systemd? ( sys-apps/systemd:= ) + udev? ( virtual/libudev:= ) + seccomp? ( sys-libs/libseccomp ) + + x11-libs/cairo + introspection? ( >=dev-libs/gobject-introspection-1.54:= ) +" +DEPEND="${COMMON_DEPEND} + media-libs/fontconfig +" +RDEPEND="${COMMON_DEPEND} + seccomp? ( sys-apps/bubblewrap ) + !=gnome-settings-daemon-3.35.91 for UsbProtection required component. +# x11-misc/xdg-user-dirs{,-gtk} are needed to create the various XDG_*_DIRs, and +# create .config/user-dirs.dirs which is read by glib to get G_USER_DIRECTORY_* +# xdg-user-dirs-update is run during login (see 10-user-dirs-update-gnome below). +# sys-apps/dbus[X] is needed for session management. +# Our 90-xcursor-theme-gnome reads a setting from gsettings-desktop-schemas. +RDEPEND="${DEPEND} + >=gnome-base/gnome-settings-daemon-3.35.91 + >=gnome-base/gsettings-desktop-schemas-0.1.7 + sys-apps/dbus[X] + + x11-misc/xdg-user-dirs + x11-misc/xdg-user-dirs-gtk +" +BDEPEND=" + dev-libs/libxslt + dev-util/gdbus-codegen + >=sys-devel/gettext-0.19.8 + x11-libs/xtrans + virtual/pkgconfig + doc? ( + app-text/xmlto + app-text/docbook-xml-dtd:4.1.2 + ) +" + +PATCHES=( + "${FILESDIR}"/${PN}-3.38.0-meson-Support-elogind.patch +) + +src_prepare() { + default + xdg_environment_reset + + # Install USE=doc in ${PF} if enabled + sed -i -e "s:meson\.project_name(), 'dbus':'${PF}', 'dbus':" doc/dbus/meson.build || die +} + +src_configure() { + local emesonargs=( + -Ddeprecation_flags=false + $(meson_use elogind) + -Dsession_selector=true # gnome-custom-session + $(meson_use systemd) + -Dsystemd_session=$(usex systemd default disable) + $(meson_use systemd systemd_journal) + $(meson_use doc docbook) + -Dsystemduserunitdir="$(systemd_get_userunitdir)" + -Dconsolekit=false + -Dman=true + ) + meson_src_configure +} + +src_install() { + meson_src_install + + exeinto /etc/X11/Sessions + doexe "${FILESDIR}/Gnome" + + newmenu "${FILESDIR}/defaults.list-r5" gnome-mimeapps.list + + exeinto /etc/X11/xinit/xinitrc.d/ + newexe "${FILESDIR}/15-xdg-data-gnome-r1" 15-xdg-data-gnome + + # This should be done here as discussed in bug #270852 + newexe "${FILESDIR}/10-user-dirs-update-gnome-r1" 10-user-dirs-update-gnome + + # Set XCURSOR_THEME from current dconf setting instead of installing + # default cursor symlink globally and affecting other DEs (bug #543488) + # https://bugzilla.gnome.org/show_bug.cgi?id=711703 + newexe "${FILESDIR}/90-xcursor-theme-gnome" 90-xcursor-theme-gnome +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update + + if ! has_version gnome-base/gdm && ! has_version x11-misc/sddm; then + ewarn "If you use a custom .xinitrc for your X session," + ewarn "make sure that the commands in the xinitrc.d scripts are run." + fi + + if ! use systemd && ! use elogind; then + ewarn "You are building without systemd or elogind support." + ewarn "gnome-session won't be able to correctly track and manage your session." + fi +} + +pkg_postrm() { + xdg_pkg_postinst + gnome2_schemas_update +} diff --git a/gnome-base/gnome-shell/Manifest b/gnome-base/gnome-shell/Manifest index 4b9d82994026..8514999bda5d 100644 --- a/gnome-base/gnome-shell/Manifest +++ b/gnome-base/gnome-shell/Manifest @@ -1,3 +1,4 @@ DIST gnome-shell-43.2.tar.xz 1946776 BLAKE2B 0b581ed84bb3b8804cb4b5be07ae6be479f1092abf4c018d140edc81dcf0f88dc6c3321f591bc55c16e2141b4dd59e353c1f244749de13e4571a5b5aba6ad57d SHA512 f25754b60696723db3db4141eb14fda88f5d913cc8a9d7270a34b9a1493f9bd4caadf45b142fd0bd82f594d9fb47980c3b0242bb58ee184a61968f0d1f09bfc4 DIST gnome-shell-43.3.tar.xz 1953404 BLAKE2B a3ba8bfa5dcd65b50228b447a20d8f50d6fea1b18c36383214fb055491ea5baf43caa227ecac7c7d59a2f3d56bb25fbf04209cdeff32370e01af0b7f5aa8b97a SHA512 6d2a36b21b1e3d1bd8667c72ff2c2cf4e57a3b0abbcb9b4e115803ec727b892f5884ba7aa48412396c855294c58e862dd2d972e1d6bed0de657e208f4c4aaab9 +DIST gnome-shell-44.0.tar.xz 1992764 BLAKE2B 2d8ccb04c143e174c992bfecc9e5c8f78025db9af741ed120713c8fcb934def98e182cf6f993c1fafb5088b70759c1742329134fa87cf0288fbec018d174fff2 SHA512 5e19e3e3b06be6b06699f49501dee85fd21e5f4f394902732c505c24baa16a719848e31034d98718deb06cb004d3e8daf886a086412c2b67614eafecd1676bde DIST gnome-shell-44.rc.tar.xz 1997120 BLAKE2B c82ca81d6470176e15dbbec3de9766890e0bddde77e68b071ee405762d5b98292fe68258be14699e5b9939208489d99c1e092b4c4ffe76c545b4fd01159ca450 SHA512 b7426564ae5face421f7e61574044851bacc828566629bb4f9efe354e5d3bc3c26e558b20ff07af0e904f1f490d5e734ed66f65c3274152259fa661e1856dcbd diff --git a/gnome-base/gnome-shell/gnome-shell-44.0.ebuild b/gnome-base/gnome-shell/gnome-shell-44.0.ebuild new file mode 100644 index 000000000000..638f1c5e3c69 --- /dev/null +++ b/gnome-base/gnome-shell/gnome-shell-44.0.ebuild @@ -0,0 +1,182 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit gnome.org gnome2-utils meson optfeature python-single-r1 virtualx xdg + +DESCRIPTION="Provides core UI functions for the GNOME desktop" +HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell https://gitlab.gnome.org/GNOME/gnome-shell" + +LICENSE="GPL-2+ LGPL-2+" +SLOT="0" +IUSE="elogind gtk-doc +ibus +networkmanager systemd test" +REQUIRED_USE="${PYTHON_REQUIRED_USE} + ?? ( elogind systemd )" +RESTRICT="!test? ( test )" + +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" + +# libXfixes-5.0 needed for pointer barriers and #include +DEPEND=" + >=gnome-extra/evolution-data-server-3.46.0:= + >=app-crypt/gcr-3.90.0:4=[introspection] + >=dev-libs/glib-2.68:2 + >=dev-libs/gobject-introspection-1.49.1:= + >=dev-libs/gjs-1.73.1[cairo] + >=x11-libs/gtk+-3.15.0:3[introspection] + >=x11-wm/mutter-44.0:0/12[introspection,test?] + >=sys-auth/polkit-0.120_p20220509[introspection] + >=gnome-base/gsettings-desktop-schemas-42_beta[introspection] + >=x11-libs/startup-notification-0.11 + >=app-i18n/ibus-1.5.19 + >=gnome-base/gnome-desktop-40.0:4 + networkmanager? ( + >=net-misc/networkmanager-1.10.4[introspection] + net-libs/libnma[introspection] + >=app-crypt/libsecret-0.18 + dev-libs/dbus-glib + ) + systemd? ( + >=sys-apps/systemd-242:= + >=gnome-base/gnome-desktop-3.34.2:3=[systemd] + ) + elogind? ( >=sys-auth/elogind-237 ) + + app-arch/gnome-autoar + dev-libs/json-glib + + >=app-accessibility/at-spi2-core-2.46:2[introspection] + x11-libs/gdk-pixbuf:2[introspection] + dev-libs/libxml2:2 + x11-libs/libX11 + + >=media-libs/libpulse-2[glib] + dev-libs/libical:= + >=x11-libs/libXfixes-5.0 + + gui-libs/gtk:4[introspection] + + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/pygobject:3[${PYTHON_USEDEP}] + ') + media-libs/libglvnd[X] +" +# Runtime-only deps are probably incomplete and approximate. +# Introspection deps generated from inspection of the output of: +# for i in `rg -INUo 'const(?s).*imports.gi' |cut -d= -f1 |cut -c7- |sort -u`; do echo $i ;done |cut -d, -f1 |sort -u +# or +# rg -INUo 'const(?s).*imports.gi' |cut -d= -f1 |cut -c7- | sed -e 's:[{}]::g' | awk '{$1=$1; print}' | awk -F',' '{$1=$1;print}' | tr ' ' '\n' | sort -u | sed -e 's/://g' +# These will give a lot of unnecessary things due to greedy matching (TODO), and `(?s).*?` doesn't seem to work as desired. +# Compare with `grep -rhI 'imports.gi.versions' |sort -u` for any SLOT requirements +# Each block: +# 1. Introspection stuff needed via imports.gi (those that build time check may be listed above already) +# 2. gnome-session needed for shutdown/reboot/inhibitors/etc +# 3. Control shell settings +# 4. xdg-utils needed for xdg-open, used by extension tool +# 5. adwaita-icon-theme needed for various icons & arrows (3.26 for new video-joined-displays-symbolic and co icons; review for 3.28+) +# 6. mobile-broadband-provider-info, timezone-data for shell-mobile-providers.c # TODO: Review +# 7. IBus is needed for nls integration +# 8. Cantarell font used in gnome-shell global CSS (if removing this for some reason, make sure it's pulled in somehow for non-meta users still too) +# 9. xdg-desktop-portal-gtk for various integration, e.g. #764632 +# 10. TODO: semi-optional webkit-gtk[introspection] for captive portal helper +RDEPEND="${DEPEND} + >=sys-apps/accountsservice-0.6.14[introspection] + app-accessibility/at-spi2-core:2[introspection] + app-misc/geoclue[introspection] + media-libs/graphene[introspection] + x11-libs/pango[introspection] + net-libs/libsoup:3.0[introspection] + >=sys-power/upower-0.99:=[introspection] + gnome-base/librsvg:2[introspection] + + >=gnome-base/gnome-session-2.91.91 + >=gnome-base/gnome-settings-daemon-3.8.3 + + x11-misc/xdg-utils + + >=x11-themes/adwaita-icon-theme-3.26 + + networkmanager? ( + net-misc/mobile-broadband-provider-info + sys-libs/timezone-data + ) + ibus? ( >=app-i18n/ibus-1.5.26[gtk3,gtk4,introspection] ) + media-fonts/cantarell + + sys-apps/xdg-desktop-portal-gnome +" +# avoid circular dependency, see bug #546134 +PDEPEND=" + >=gnome-base/gdm-3.5[introspection(+)] + >=gnome-base/gnome-control-center-3.26[networkmanager(+)?] +" +BDEPEND=" + dev-libs/libxslt + >=dev-util/gdbus-codegen-2.45.3 + dev-util/glib-utils + gtk-doc? ( >=dev-util/gtk-doc-1.17 + app-text/docbook-xml-dtd:4.5 ) + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + test? ( x11-wm/mutter[test] ) +" +# These are not needed from tarballs, unless stylesheets or manpage get patched with patchset: +# dev-lang/sassc +# app-text/asciidoc + +PATCHES=( + # Change favorites defaults, bug #479918 + "${FILESDIR}"/40.0-defaults.patch +) + +src_prepare() { + default + xdg_environment_reset + # Hack in correct python shebang + sed -e "s:python\.full_path():'/usr/bin/env ${EPYTHON}':" -i src/meson.build || die +} + +src_configure() { + local emesonargs=( + -Dextensions_tool=true + -Dextensions_app=true + $(meson_use gtk-doc gtk_doc) + -Dman=true + $(meson_use test tests) + $(meson_use networkmanager) + $(meson_use systemd) # this controls journald integration and desktop file user services related property only as of 3.34.4 + # (structured logging and having gnome-shell launched apps use its own identifier instead of gnome-session) + # suspend support is runtime optional via /run/systemd/seats presence and org.freedesktop.login1.Manager dbus interface; elogind should provide what's necessary + -Dsoup2=false + ) + meson_src_configure +} + +src_test() { + gnome2_environment_reset # Avoid dconf that looks at XDG_DATA_DIRS, which can sandbox fail if flatpak is installed + virtx meson_src_test +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update + + if ! has_version "media-libs/mesa[llvm]"; then + elog "llvmpipe is used as fallback when no 3D acceleration" + elog "is available. You will need to enable llvm USE for" + elog "media-libs/mesa if you do not have hardware 3D setup." + fi + + optfeature "Bluetooth integration" gnome-base/gnome-control-center[bluetooth] net-wireless/gnome-bluetooth:3[introspection] + optfeature "Browser extension integration" gnome-extra/gnome-browser-connector + optfeature "Screencast/capture support" media-video/pipewire media-libs/gstreamer[introspection] media-libs/gst-plugins-base[introspection] media-libs/gst-plugins-good media-plugins/gst-plugins-vpx + optfeature "Weather support" dev-libs/libgweather:4[introspection] +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/gnome-base/gsettings-desktop-schemas/Manifest b/gnome-base/gsettings-desktop-schemas/Manifest index 55b1bbd39a04..3295daef9c55 100644 --- a/gnome-base/gsettings-desktop-schemas/Manifest +++ b/gnome-base/gsettings-desktop-schemas/Manifest @@ -1 +1,2 @@ DIST gsettings-desktop-schemas-43.0.tar.xz 736456 BLAKE2B 8fa0866a2747af370dbdc329afc2272e998d992bb4d19079a15d8f04063bd09660cabaf19123fedced5c6ebca13a21c207e1238178344d92a3a3d60ef0aa0152 SHA512 a3acd953ec206375e99e0988438e46b42668094d1b5425ccf21a7fe451887b705e2a5efe6870ee6bfc6722f54e5aa6a422de2af2099f29a5230f415744df2cf8 +DIST gsettings-desktop-schemas-44.0.tar.xz 739836 BLAKE2B 01a5ca9fb73dc9768f5bb42192f282cc06348f0532b19648aa6b4c33f87e0a9febf0d50047de6cb4c9e921df2df6b45cdde9514d4c0be322b04553f525f84311 SHA512 3995fb7a87c4a922d71ec599dffed4edf145992e08eb09cd8aae1912533ea5a7354bc8e92946246e3d6d3fa9bdaaa0d5247a5d8edaa4eef0a7a522a03ee087d7 diff --git a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild new file mode 100644 index 000000000000..44b5f0366aff --- /dev/null +++ b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="Collection of GSettings schemas for GNOME desktop" +HOMEPAGE="https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas" + +LICENSE="LGPL-2.1+" +SLOT="0" +IUSE="+introspection" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris" + +BDEPEND=" + introspection? ( >=dev-libs/gobject-introspection-1.54:= ) + dev-util/glib-utils + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +PATCHES=( + # Revert change to 'Source Code Pro 10' and 'Cantarell 11' fonts back to generic sans and monospace aliases + "${FILESDIR}"/3.32.0-default-fonts.patch +) + +src_configure() { + local emesonargs=( + $(meson_use introspection) + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/gnome-extra/Manifest.gz b/gnome-extra/Manifest.gz index ec17ae0f694c..1d2bfe360035 100644 Binary files a/gnome-extra/Manifest.gz and b/gnome-extra/Manifest.gz differ diff --git a/gnome-extra/evolution-data-server/Manifest b/gnome-extra/evolution-data-server/Manifest index 2be12192eb7b..7b9ded00367b 100644 --- a/gnome-extra/evolution-data-server/Manifest +++ b/gnome-extra/evolution-data-server/Manifest @@ -1,2 +1,3 @@ DIST evolution-data-server-3.46.3.tar.xz 4887660 BLAKE2B de78511a26285b6ddb9786dbc27e1e02821ba62e02145c2dca8018e8c20bb5e433ea517f73629fc81a837aa4bdc601a88b18080d76cdfbab8b0d0e10850f6e73 SHA512 817638164bb005090e78d6bb13db8bc433a887ae1c4de1dc4b4711c94082dd5e2199aa213758885302fafb070625ef3535b3163f0308389cfb9147107f5ef71d DIST evolution-data-server-3.46.4.tar.xz 4889000 BLAKE2B 59fdac7805896bcae85289727f096e35706ade3027d32c1b8437e90e0b2cc39a1cc1a812205cb860fd60142cb4c2427c863a5c5e64cdb62f9199f631cc23487b SHA512 7eca5e3c1562c196448f0d4e9c8cbdbedc79768edb6ddc1e92f70a3cd423407dc3c55f1d38c3c47a2e517a58c427a66ecbd3f4f35b0f9d892d1d029ba0a0e07b +DIST evolution-data-server-3.48.0.tar.xz 4898148 BLAKE2B 62138001a30534d154469c586acab1cc7cfce748763b8101eecd1426d2e62c4bc045ce14744f4a89582fd77974bf16d5b47dc21909a8beff637860c2f9c0546a SHA512 15613fab61d2c6537906657f51803df92135e723edf94a03519b812326072e0fb168d3dbd791b9669ada3a8ba5dc05ee254f70233b015d7a6ee38fdc9beec324 diff --git a/gnome-extra/evolution-data-server/evolution-data-server-3.48.0.ebuild b/gnome-extra/evolution-data-server/evolution-data-server-3.48.0.ebuild new file mode 100644 index 000000000000..549b8a90d521 --- /dev/null +++ b/gnome-extra/evolution-data-server/evolution-data-server-3.48.0.ebuild @@ -0,0 +1,144 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake db-use flag-o-matic gnome2 vala virtualx + +DESCRIPTION="Evolution groupware backend" +HOMEPAGE="https://wiki.gnome.org/Apps/Evolution https://gitlab.gnome.org/GNOME/evolution-data-server" + +# Note: explicitly "|| ( LGPL-2 LGPL-3 )", not "LGPL-2+". +LICENSE="|| ( LGPL-2 LGPL-3 ) BSD Sleepycat" +SLOT="0/64-11-21-4-2-27-2-27-4-0" # subslot = libcamel-1.2/libebackend-1.2/libebook-1.2/libebook-contacts-1.2/libecal-2.0/libedata-book-1.2/libedata-cal-2.0/libedataserver-1.2/libedataserverui-1.2/libedataserverui4-1.0 soname version + +IUSE="berkdb +gnome-online-accounts +gtk gtk-doc +introspection ldap kerberos oauth vala +weather" +REQUIRED_USE=" + oauth? ( gtk ) + vala? ( introspection ) +" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" + +# berkdb needed only for migrating old addressbook data from <3.13 versions, bug #519512 +# glib-2.70 for build-time optional GPowerProfileMonitor +RDEPEND=" + >=app-crypt/libsecret-0.5[crypt] + >=dev-db/sqlite-3.7.17:3 + >=dev-libs/glib-2.70:2 + >=dev-libs/libical-3.0.8:=[glib,introspection?] + >=dev-libs/libxml2-2 + >=dev-libs/nspr-4.4 + >=dev-libs/nss-3.9 + >=net-libs/libsoup-3.1.1:3.0 + >=dev-libs/json-glib-1.0.4 + + dev-libs/icu:= + sys-libs/zlib:= + virtual/libiconv + + berkdb? ( >=sys-libs/db-4:= ) + gtk? ( + >=x11-libs/gtk+-3.20:3 + >=gui-libs/gtk-4.4:4 + >=media-libs/libcanberra-0.25[gtk3] + + oauth? ( + >=net-libs/webkit-gtk-2.34.0:4.1 + >=net-libs/webkit-gtk-2.39.90:6 + ) + ) + gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) + introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) + kerberos? ( virtual/krb5:= ) + ldap? ( >=net-nds/openldap-2:= ) + weather? ( >=dev-libs/libgweather-4.2.0:4= ) +" +DEPEND="${RDEPEND} + vala? ( $(vala_depend) + >=net-libs/libsoup-3.1.1:3.0[vala] + dev-libs/libical[vala] + ) +" +BDEPEND=" + dev-util/gdbus-codegen + dev-util/glib-utils + dev-util/gperf + gtk-doc? ( >=dev-util/gtk-doc-1.14 + app-text/docbook-xml-dtd:4.1.2 ) + >=dev-util/intltool-0.35.5 + >=sys-devel/gettext-0.18.3 + virtual/pkgconfig +" + +# Some tests fail due to missing locales. +# Also, dbus tests are flaky, bugs #397975 #501834 +# It looks like a nightmare to disable those for now. +RESTRICT="!test? ( test )" + +# global scope PATCHES or DOCS array mustn't be used due to double default_src_prepare call +src_prepare() { + use vala && vala_setup + cmake_src_prepare + gnome2_src_prepare + + eapply "${FILESDIR}"/3.36.5-gtk-doc-1.32-compat.patch + + # Make CMakeLists versioned vala enabled + sed -e "s;\(find_program(VALAC\) valac);\1 ${VALAC});" \ + -e "s;\(find_program(VAPIGEN\) vapigen);\1 ${VAPIGEN});" \ + -i "${S}"/CMakeLists.txt || die +} + +src_configure() { + # /usr/include/db.h is always db-1 on FreeBSD + # so include the right dir in CPPFLAGS + use berkdb && append-cppflags "-I$(db_includedir)" + + # phonenumber does not exist in tree + local mycmakeargs=( + -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc + -DENABLE_GTK_DOC=$(usex gtk-doc) + -DWITH_PRIVATE_DOCS=$(usex gtk-doc) + -DENABLE_SCHEMAS_COMPILE=OFF + -DENABLE_INTROSPECTION=$(usex introspection) + -DWITH_KRB5=$(usex kerberos) + -DWITH_KRB5_INCLUDES=$(usex kerberos "${EPREFIX}"/usr "") + -DWITH_KRB5_LIBS=$(usex kerberos "${EPREFIX}"/usr/$(get_libdir) "") + -DWITH_OPENLDAP=$(usex ldap) + -DWITH_PHONENUMBER=OFF + -DENABLE_SMIME=ON + -DENABLE_GTK=$(usex gtk) + -DENABLE_GTK4=$(usex gtk) + -DENABLE_CANBERRA=$(usex gtk) + -DENABLE_OAUTH2_WEBKITGTK=$(usex oauth) + -DENABLE_OAUTH2_WEBKITGTK4=$(usex oauth) + -DENABLE_EXAMPLES=OFF + -DENABLE_GOA=$(usex gnome-online-accounts) + -DWITH_LIBDB=$(usex berkdb "${EPREFIX}"/usr OFF) + # ENABLE_BACKTRACES requires libdwarf ? + -DENABLE_IPV6=ON + -DENABLE_WEATHER=$(usex weather) + -DENABLE_LARGEFILE=ON + -DENABLE_VALA_BINDINGS=$(usex vala) + ) + cmake_src_configure +} + +src_compile() { + cmake_src_compile +} + +src_test() { + virtx cmake_src_test +} + +src_install() { + cmake_src_install + + if use ldap; then + insinto /etc/openldap/schema + doins "${FILESDIR}"/calentry.schema + dosym ../../../usr/share/${PN}/evolutionperson.schema /etc/openldap/schema/evolutionperson.schema + fi +} diff --git a/gnome-extra/evolution-ews/Manifest b/gnome-extra/evolution-ews/Manifest index 2631ccb6d62b..ddffe23f02ad 100644 --- a/gnome-extra/evolution-ews/Manifest +++ b/gnome-extra/evolution-ews/Manifest @@ -1,2 +1,3 @@ DIST evolution-ews-3.46.3.tar.xz 695152 BLAKE2B 2c76f5d5769c6ac610cf8ad2cb55a78374e82793ca6fde838b263759b10f9aa5bb033171001db6a18d5cd2f45744673c063a714f755613c92537e56272683303 SHA512 99259661568fee71898b29a445e87ee110c356a98e3e415d6c2f44e7f9b6f1216b87fd9772c4a006ffde49058dfae594d31ead43ed85fb0c34925f530f8d9495 DIST evolution-ews-3.46.4.tar.xz 695628 BLAKE2B e0504e77059efa80e55b19707ab5aa72b583e05443ede3a1a95ad2f5c46e5e2d11a6b243df3350f4dc875463b99b18075ed4b73f419c35ec2c6f784e76dea723 SHA512 29f6e1c02b332fb2442911550edd4de8fbac93e14ca0c92c9a07410ef8323988733f67afab4935b7ac9e4ca9e704548eed0bb7a71299426d8c7b2e21fc323ea4 +DIST evolution-ews-3.48.0.tar.xz 701528 BLAKE2B 0733427443fec5fe3b539d906cdc496d4c8801dd35ba3cb75fe45bbc2c96b15841fa9fe1108417b4aa39e51f4e89e3b83692846206f814f4b17710b0f73f3109 SHA512 c9d54a587682145979681ffa3fc6420596fb706a63f82073536a213c4d545fd35cd08d96881c1ddca7294c400ab064504ba42750bc80c9e7d2dee779fce3fb04 diff --git a/gnome-extra/evolution-ews/evolution-ews-3.48.0.ebuild b/gnome-extra/evolution-ews/evolution-ews-3.48.0.ebuild new file mode 100644 index 000000000000..675ec4ff7d00 --- /dev/null +++ b/gnome-extra/evolution-ews/evolution-ews-3.48.0.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake gnome2 optfeature + +DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web Services" +HOMEPAGE="https://wiki.gnome.org/Apps/Evolution https://gitlab.gnome.org/GNOME/evolution-ews" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" +IUSE="test" + +# libical-glib currently (2020-02-29) oddly behind USE=introspection +RDEPEND=" + dev-db/sqlite:3 + >=dev-libs/glib-2.68:2 + >=dev-libs/libical-3.0.5:0=[introspection(-)] + >=dev-libs/json-glib-1.0.4 + >=dev-libs/libmspack-0.4 + dev-libs/libxml2:2 + >=gnome-extra/evolution-data-server-${PV}:0= + >=mail-client/evolution-${PV}:2.0 + >=net-libs/libsoup-3.0:3.0 + >=x11-libs/gtk+-3.10:3 +" +DEPEND="${RDEPEND} + test? ( >=net-libs/uhttpmock-0.9:1.0 ) +" +BDEPEND=" + dev-util/gdbus-codegen + dev-util/glib-utils + >=dev-util/intltool-0.35.5 + >=sys-devel/gettext-0.18.3 + virtual/pkgconfig +" + +# Unittests fail to find libevolution-ews.so +RESTRICT="test !test? ( test )" + +# global scope PATCHES or DOCS array mustn't be used due to double default_src_prepare +# call; if needed, set them after cmake_src_prepare call, if that works +src_prepare() { + cmake_src_prepare + gnome2_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DWITH_MSPACK=ON + -DENABLE_TESTS=$(usex test) + ) + cmake_src_configure +} + +src_compile() { + cmake_src_compile +} + +src_test() { + cmake_src_test +} + +src_install() { + cmake_src_install +} + +pkg_postinst() { + optfeature "oauth support" gnome-extra/evolution-data-server[oauth] +} diff --git a/gnome-extra/gnome-characters/Manifest b/gnome-extra/gnome-characters/Manifest index bdef540d19f0..4b85812cf2d5 100644 --- a/gnome-extra/gnome-characters/Manifest +++ b/gnome-extra/gnome-characters/Manifest @@ -1,2 +1,3 @@ DIST gnome-characters-43.1.tar.xz 584444 BLAKE2B 6920bd10fe794143b4ff8920c0c81fce2649493d827201f4e47c46a3defb3fd8cadafdd9c7eacc35be7a9978b3d9047f64c5318c2582d3d87de6e1afe5bfbd66 SHA512 75fb25b7d6c2984a0d59887e0c408c0dc210061fa1e0cedbffefd8ef8b4b610a7db1c248926a5b6473fc0f806937e953e9e72a39b2a880c4871399226f3a77f4 +DIST gnome-characters-44.0.tar.xz 586540 BLAKE2B 996e06151f0bd35f41212ed4cf46181105011c7dee3b60ae46de0f244f2d9c39741e0c844628e9a308d13b977089ef448790094f3dbd924b12d8f49ebeddb70f SHA512 d49f4df21e7ff295bb16cf66640446e9e572689252e1a04314316443da670e585ef918a00bd7503b764d49b76e4c32286df2be2a3c432552e5bbcad6fe62e724 DIST gnome-characters-44.rc.tar.xz 586420 BLAKE2B e9afdc092ce858db9786adfed01175b40cb7d8ea4f38f09008be7f3e35bad287a46f65678076a58c82c3655578d92ce29c7b7c2b901197a19db9f9b50c584e9e SHA512 84b2287889ba1087ac2c7156419df898fd0f6a52bb6d7716c918fa6f17b9d7e10b3f053cae8610f7e8d5ef2e4a144a620bc1aa393bf68fe7200b77edc7c38934 diff --git a/gnome-extra/gnome-characters/gnome-characters-44.0.ebuild b/gnome-extra/gnome-characters/gnome-characters-44.0.ebuild new file mode 100644 index 000000000000..9502a589d2b6 --- /dev/null +++ b/gnome-extra/gnome-characters/gnome-characters-44.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="Unicode character map viewer and library" +HOMEPAGE="https://wiki.gnome.org/Design/Apps/CharacterMap" + +LICENSE="GPL-2+ BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" + +RDEPEND=" + >=dev-libs/gjs-1.50 + >=dev-libs/glib-2.32:2 + >=dev-libs/gobject-introspection-1.35.9:= + >=gui-libs/gtk-4.6:4[introspection] + >=gui-libs/libadwaita-1.2:1= + x11-libs/gdk-pixbuf:2 + >=x11-libs/pango-1.36[introspection] + gnome-base/gnome-desktop:3[introspection] +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-libs/libxml2:2 + dev-util/glib-utils + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/gnome-extra/gnome-shell-extensions/Manifest b/gnome-extra/gnome-shell-extensions/Manifest index ffb4ff2cee8c..1eeed280193d 100644 --- a/gnome-extra/gnome-shell-extensions/Manifest +++ b/gnome-extra/gnome-shell-extensions/Manifest @@ -1,2 +1,3 @@ DIST gnome-shell-extensions-43.1.tar.xz 226868 BLAKE2B c96902c01d5260c916e139eb31dbf71fc2dc054d18c2222898d530ee9f28cfea6a745d38cb7f4e54a7ee4a5ce8da93b5e25eebc52e6518ad99d1eae64d3e14dc SHA512 9901e738a5af5a6139da8fc928b95e5afef6e7b80b24e3284603fc4341e588d738b9c16a7bcba2a3e79af2729c468fd756b584394559b2794b335e656c092bae +DIST gnome-shell-extensions-44.0.tar.xz 227060 BLAKE2B 3f166f75c5d011f990b7dcbfc4d3d1364e480822087d35cf8f361234c482f572d89b4d4eb92be67ffdf4bae4e05de361abfc3b0d92c3c30d03f67f2bd8c25251 SHA512 d3cc58bb0e5d29646a20b02cd59ba480bf42fbf9bbe0e228ae132e19e385806e95c937b3d7bd5fe0877702ed151f972f07e345e6072c1cd02d51cb56f72854e6 DIST gnome-shell-extensions-44.rc.tar.xz 227012 BLAKE2B 2051e08f6a1051443acfade8afd7ca8ab0e58f3ab56f7161f2a7367385dffae77ae1936d647fdd5cb74a3fb92921495f623426b1f495d51ef1c90830f69e9f0e SHA512 4b1607a349a30f4ec077019fbf50818f9c96aaf835b4db53662fb17956d638f40ae374bbf33d28e74daea4729e1aaaa78a10bd26369bdf6e3cef06bda725cdfe diff --git a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-44.0.ebuild b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-44.0.ebuild new file mode 100644 index 000000000000..6417f8b92d6f --- /dev/null +++ b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-44.0.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome.org readme.gentoo-r1 meson xdg + +DESCRIPTION="JavaScript extensions for GNOME Shell" +HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" + +DEPEND=" + >=dev-libs/glib-2.26:2 + >=gnome-base/libgtop-2.28.3[introspection] + >=app-eselect/eselect-gnome-shell-extensions-20111211 +" +RDEPEND="${DEPEND} + >=app-accessibility/at-spi2-core-2.46.0[introspection] + >=dev-libs/gjs-1.29 + dev-libs/gobject-introspection:= + gnome-base/gnome-menus:3[introspection] + =gnome-base/gnome-shell-$(ver_cut 1)* + gui-libs/libadwaita[introspection] + media-libs/clutter:1.0[introspection] + media-libs/graphene[introspection] + x11-libs/gtk+:3[introspection] + x11-libs/pango[introspection] + x11-themes/adwaita-icon-theme + >=x11-wm/mutter-3.32[introspection] +" +BDEPEND=" + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +DISABLE_AUTOFORMATTING="yes" +DOC_CONTENTS="Installed extensions installed are initially disabled by default. +To change the system default and enable some extensions, you can use +# eselect gnome-shell-extensions + +Alternatively, to enable/disable extensions on a per-user basis, +you can use the gnome-extensions-app (included with gnome-shell), +https://extensions.gnome.org/ web interface, or modify the +org.gnome.shell enabled-extensions gsettings key from the command +line or a script." + +src_configure() { + local emesonargs=( + -Dextension_set=all + -Dclassic_mode=true + ) + meson_src_configure +} + +src_install() { + meson_src_install + readme.gentoo_create_doc +} + +pkg_postinst() { + xdg_pkg_postinst + + ebegin "Updating list of installed extensions" + eselect gnome-shell-extensions update + eend $? + + readme.gentoo_print_elog +} diff --git a/gnome-extra/gnome-user-docs/Manifest b/gnome-extra/gnome-user-docs/Manifest index 6dff58bd09c0..85cd6ed5b9d3 100644 --- a/gnome-extra/gnome-user-docs/Manifest +++ b/gnome-extra/gnome-user-docs/Manifest @@ -1,2 +1,3 @@ DIST gnome-user-docs-43.0.tar.xz 11303880 BLAKE2B c9f3e0757eaa25944198c4c07809a86642e9e879e83856aaa3f8f968b35dc45667768acda0039f1e8a6f9a57e86afbd2d8df5e21d3ab7fa41a5e79cfe0f666eb SHA512 cf14edc34049d8e770f31e34b722a3309009fac64f3ac159cdf2baaebf7bd70ea8f0c592b398c9f0e21e11c7ac10d91a97a0079376da07dd1d433c2d3703eeef +DIST gnome-user-docs-44.0.tar.xz 12570592 BLAKE2B 1acb8a1a46eb85e42d21a45122d01ff85ea7f687e767f2f091b807abab80cfe373fc6dbed2fa1a513a80db2d35d7b066455d5290e3c61fd71e217f91242ea6f2 SHA512 144c5053998594cfa7e80c730b6ef1cd60dcd9dae34756e6116c5ef96d1660d7153e64348dbab4efdd26c073b56c0740f218778de48fa684d37a8a3e57d98d55 DIST gnome-user-docs-44.rc.tar.xz 12461604 BLAKE2B 9a97fac53bc4510174b3ae3a180c540625e15babec9b1fb03c93e40526e9eeb04aa6580a502db4b930b38000a622d3010da3132dfe3f65f5cc6f83b863c251ba SHA512 86bdac3f1869e4c2b778f12b8bf2227331f615e9ae0d94b391293dc2df4db457a59939f97157f1ba71af8feb9268e474acd4c7cede1b06f954c61ad29a90dd0f diff --git a/gnome-extra/gnome-user-docs/gnome-user-docs-44.0.ebuild b/gnome-extra/gnome-user-docs/gnome-user-docs-44.0.ebuild new file mode 100644 index 000000000000..f5c2e5bd8bf7 --- /dev/null +++ b/gnome-extra/gnome-user-docs/gnome-user-docs-44.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome2 + +DESCRIPTION="GNOME end user documentation" +HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-user-docs" + +LICENSE="CC-BY-3.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="test" + +BDEPEND="test? ( dev-libs/libxml2 )" +# eautoreconf requires: +# app-text/yelp-tools +# rebuilding translations requires: +# app-text/yelp-tools +# dev-util/gettext + +# This ebuild does not install any binaries +RESTRICT="binchecks strip + !test? ( test )" + +src_configure() { + # itstool is only needed for rebuilding translations + # xmllint is only needed for tests + gnome2_src_configure \ + $(usex test "" XMLLINT=$(type -P true)) \ + ITSTOOL=$(type -P true) +} + +src_compile() { + # Do not compile; "make all" with unset LINGUAS rebuilds all translations, + # which can take > 2 hours on a Core i7. + return +} diff --git a/gnome-extra/gnome-weather/Manifest b/gnome-extra/gnome-weather/Manifest index becaa505ee75..ccfdefc905ac 100644 --- a/gnome-extra/gnome-weather/Manifest +++ b/gnome-extra/gnome-weather/Manifest @@ -1,2 +1,3 @@ DIST gnome-weather-43.0.tar.xz 234344 BLAKE2B d255fec2103f9af3ce36db64d0d294732693850c9acd6bd53ea45552ac19e577786df3b110b66ff59d0d99df9f39f53592f48b4e1cad3aabf675bb4a410e19a9 SHA512 392f9c3f41583767d3dc8f3411b36c7eacc6191648879948f87c92d0891cf7ee34090e7093a91a5d7e07b4b795235a3ff675c1f34854b61e5faa6fe7dba17b9b +DIST gnome-weather-44.0.tar.xz 236152 BLAKE2B 40ff3e2d3339fbab0da3629c95e843ad3a304c76aadc6f7772ae7fd38337dc7c3aad1e90cfee1a513b770788a223838b741728d6307b815fa50453f9d355c903 SHA512 56f4eb716793c047b438c6f5839bc60bae478b6f407bf067c4df51be35a96b31d9d98b33faf7f6e52606b22827f0da72289558da89c2746ee6e2fad6d3332e05 DIST gnome-weather-44.rc.tar.xz 236064 BLAKE2B 3caae800b43f5f705534ce33624624dbc12909162416f6d46745c61f27703d7581e0aec58d1fc1085bcc970a4abb856632eb53fc1a4dac50fbdb179434c1c698 SHA512 c95d839dd94a5cc25bb782ab5181f1b0f88f948f3723358de393ffdabbff084007c22580fc580be402a2cc071a770caa77228d154f81b20172712317555b6206 diff --git a/gnome-extra/gnome-weather/gnome-weather-44.0.ebuild b/gnome-extra/gnome-weather/gnome-weather-44.0.ebuild new file mode 100644 index 000000000000..248617832067 --- /dev/null +++ b/gnome-extra/gnome-weather/gnome-weather-44.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="A weather application for GNOME" +HOMEPAGE="https://wiki.gnome.org/Design/Apps/Weather" + +LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" + +DEPEND=" + >=dev-libs/glib-2.32:2 + >=dev-libs/gobject-introspection-1.56:= + >=gui-libs/gtk-4.5:4 + >=dev-libs/gjs-1.71.0 + >=app-misc/geoclue-2.3.1:2.0 + >=gui-libs/libadwaita-1.2.0:1= + >=dev-libs/libgweather-3.90.0:4= +" +RDEPEND="${DEPEND} + gnome-base/gsettings-desktop-schemas +" +# libxml2 required for glib-compile-resources +BDEPEND=" + dev-libs/appstream-glib + dev-libs/libxml2:2 + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +# Tests have a lot of issues, starting with reliance on a system installation, +# accessing the network and other intermittent failures with network-sandbox disabled +# https://gitlab.gnome.org/GNOME/gnome-weather/issues/67 (and rest not filed) +# test dep: $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') +# With 3.34, this is now behind a dogtail option we can pass (and have data validation) + +src_configure() { + meson_src_configure -Dprofile=default -Ddogtail=false +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/gnome-extra/gucharmap/Manifest b/gnome-extra/gucharmap/Manifest index 78c6ca4870eb..8bb4c9e7a271 100644 --- a/gnome-extra/gucharmap/Manifest +++ b/gnome-extra/gucharmap/Manifest @@ -1,2 +1,3 @@ DIST gucharmap-15.0.2.tar.bz2 1480065 BLAKE2B 9fa5c024d05b25da2ec5d8a93efd2428ca0e47e88e3c5e701995664a548775ae6061fbe1bc4671c15595151a68a3e186544f671b683231461f9be02a86caf11e SHA512 5b345cd0cfe5c588ae062f402c66b45fbbdd03705c4c4900a2314ff19562279436712e19d7143d87cbf6db49e10cba825dd37c0a57aba8b1c1fd9a3e7dbe363e +DIST gucharmap-15.0.3.tar.bz2 1480191 BLAKE2B 9cb551099982286305b24afc8c5d134f61a937e22641d254c0ce60de73b02d9fdb2d4a6c7f6c760bce0ef4e434ead07db0a8f1a14c7ef3a5d8a8ea9ab5af5a33 SHA512 017bd747bfce02c10d6a8f4528ff90f0e99f19e037704d706af73f8751c2ecb3d3ebd01e1d0499d910a368b2b0707cc91d48d7943a3157f0f20522be7ce769c6 DIST gucharmap-3.0.1.tar.bz2 3275481 BLAKE2B 80dde7791abdc72677add9c65c59f810e6c6952116b92db34059c4c40d2657246b17844c105e68f32c86294e9b4e71e9d48e6f0522855465734d7c24e8d17608 SHA512 4d8a2276b5cb1a0b0fadca2a8522755c5884985a12d5b19341b9cefcd7f749ec1286c0271419e38ec84be7edcfa1293e7f0263eb682c75387d692792de3e1fb1 diff --git a/gnome-extra/gucharmap/gucharmap-15.0.3.ebuild b/gnome-extra/gucharmap/gucharmap-15.0.3.ebuild new file mode 100644 index 000000000000..375128fee077 --- /dev/null +++ b/gnome-extra/gucharmap/gucharmap-15.0.3.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit gnome2-utils meson python-any-r1 vala xdg + +DESCRIPTION="Unicode character map viewer and library" +HOMEPAGE="https://wiki.gnome.org/Apps/Gucharmap" +SRC_URI="https://gitlab.gnome.org/GNOME/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="GPL-3+" +SLOT="2.90" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +UNICODE_VERSION="15.0" + +IUSE="+introspection gtk-doc vala" +REQUIRED_USE="vala? ( introspection )" + +RDEPEND="media-libs/freetype:2 + >=dev-libs/glib-2.32:2 + >=x11-libs/gtk+-3.22:3[introspection?] + >=dev-libs/libpcre2-10.21:= + =app-i18n/unicode-data-${UNICODE_VERSION}* + >=x11-libs/pango-1.42.4-r2[introspection?] +" +DEPEND="${RDEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + app-text/docbook-xml-dtd:4.1.2 + dev-util/itstool + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + gtk-doc? ( >=dev-util/gtk-doc-1 ) + introspection? ( >=dev-libs/gobject-introspection-1.54:= ) + vala? ( $(vala_depend) ) +" + +PATCHES=( + "${FILESDIR}"/14.0.1-install-user-help.patch + "${FILESDIR}"/15.0.1-fix-file-conflicts.patch +) + +src_prepare() { + default + use vala && vala_setup + xdg_environment_reset +} + +src_configure() { + local emesonargs=( + -Dcharmap=true + -Ddbg=false # in 14.0.1 all this does is pass -ggdb3 + $(meson_use gtk-doc docs) + $(meson_use introspection gir) + -Dgtk3=true + -Ducd_path="${EPREFIX}/usr/share/unicode-data" + $(meson_use vala vapi) + ) + + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/gui-apps/Manifest.gz b/gui-apps/Manifest.gz index a9dd4dea1b99..90d771873469 100644 Binary files a/gui-apps/Manifest.gz and b/gui-apps/Manifest.gz differ diff --git a/gui-apps/gnome-console/Manifest b/gui-apps/gnome-console/Manifest index 2895949fbc05..8bc20d4eeac6 100644 --- a/gui-apps/gnome-console/Manifest +++ b/gui-apps/gnome-console/Manifest @@ -1,2 +1,3 @@ DIST gnome-console-43.0.tar.xz 161916 BLAKE2B 9790026541e61d0ae303831363fec15efce242c35bde2e628eec7b9c405095de9301dec344feaf83e035a5343ee8cb71dbece951def6d145555de40c73d9acc4 SHA512 b4da0f0c1e35bb468f5db8080b762c652358bd96d95dfbbc0d9b5c02d47c513c8adc23b1b38653873ab3a817e82bad5776ceeb6568d2041ab026ca460a7c3808 +DIST gnome-console-44.0.tar.xz 160764 BLAKE2B db8438cf90ae7d54a359faa6cdda15dfcf4f47ba350d7b62febe71b9ade39b52e2da8883705ef7e31886eca7aa2940a1a9d4813460ef8a04402b829bb21f5ba5 SHA512 c53435f303d1625730174f3ec36c554c2090a5e64796b03642bb2ccc7edc301219f324d929b77dd8b4bfe12553c089103b2b57b6e1062b504b0d0007c2079f28 DIST gnome-console-44.beta.tar.xz 159476 BLAKE2B 00430483a2cd5cc606d8d17468b172757151f683860bc922585f609b159bc17db87e8e8ae82211c9092406dcd218bc3240811f3ae863c4d629ef8b1830ec3867 SHA512 30eaa6fbd3acc02980475be7612e6d2a8652239eb3480835e09a86ba700198637f17003de3053cda034900c7c9eee61bbcd4f034662dff69c7af3fa61f94dc5e diff --git a/gui-apps/gnome-console/gnome-console-44.0.ebuild b/gui-apps/gnome-console/gnome-console-44.0.ebuild new file mode 100644 index 000000000000..057838f198a9 --- /dev/null +++ b/gui-apps/gnome-console/gnome-console-44.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="A simple user-friendly terminal emulator for the GNOME desktop" +HOMEPAGE="https://gitlab.gnome.org/GNOME/console" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.72:2 + >=gui-libs/gtk-4.6:4 + >=gui-libs/libadwaita-1.3_rc:1 + >=gui-libs/vte-0.70.0:2.91-gtk4 + gnome-base/libgtop:2= + >=dev-libs/libpcre2-10.32:0= + gnome-base/gsettings-desktop-schemas + + x11-libs/pango +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + test? ( + dev-util/desktop-file-utils + dev-libs/appstream-glib + ) +" + +src_configure() { + local emesonargs=( + -Ddevel=false + $(meson_use test tests) + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/gui-apps/wayvnc/Manifest b/gui-apps/wayvnc/Manifest index 1bc4a3ef8614..dd41ad737c7f 100644 --- a/gui-apps/wayvnc/Manifest +++ b/gui-apps/wayvnc/Manifest @@ -1 +1 @@ -DIST wayvnc-0.4.0.tar.gz 52157 BLAKE2B 7c8456d5136ef361ca7dd72ffa7501514eeb7a61ae1777a02391fb7fceea6b020d68951300ab76254f2afd5e2610fe66ce0f461d18dc38522706691438f4620e SHA512 b8f1af24213077dc6126ae1f613b9cdeed8f365f9d1989a5b053563f0eb4bc49921e746e0f1026fe0e02bfeea23b912798678a5a337a052d977aa04496a75570 +DIST wayvnc-0.6.2.tar.gz 81684 BLAKE2B a5462dc27b077218d757e028481422b179b9fd525e05e15860f5784cfb2d2d4c229777e647489d75491a370d8ec8a213fbdbd113265431c220ad75919ab8e827 SHA512 ab45206cf7d3de58c45725c1636304abcec4d92ea52b46a1e0f67013eaeb1eaef4e4504e475bdc99939963d74019327d8610568bc305d069cc5586c43cf9c5d8 diff --git a/gui-apps/wayvnc/wayvnc-0.4.0-r1.ebuild b/gui-apps/wayvnc/wayvnc-0.6.2.ebuild similarity index 89% rename from gui-apps/wayvnc/wayvnc-0.4.0-r1.ebuild rename to gui-apps/wayvnc/wayvnc-0.6.2.ebuild index e865d2f0eb35..ea2a54a18724 100644 --- a/gui-apps/wayvnc/wayvnc-0.4.0-r1.ebuild +++ b/gui-apps/wayvnc/wayvnc-0.6.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2021 Gentoo Authors +# Copyright 2019-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,9 +21,9 @@ SLOT="0" IUSE="gbm tracing" RDEPEND=" - dev-libs/aml + =dev-libs/aml-0.3* dev-libs/wayland - gui-libs/neatvnc[tracing?] + =gui-libs/neatvnc-0.6*[tracing?] media-libs/mesa:=[egl(+),gles2,gbm(+)?] x11-libs/libxkbcommon x11-libs/pixman diff --git a/gui-apps/wayvnc/wayvnc-9999.ebuild b/gui-apps/wayvnc/wayvnc-9999.ebuild index 9aeac3a3cd46..ea2a54a18724 100644 --- a/gui-apps/wayvnc/wayvnc-9999.ebuild +++ b/gui-apps/wayvnc/wayvnc-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2020 Gentoo Authors +# Copyright 2019-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/any1/wayvnc.git" else SRC_URI="https://github.com/any1/wayvnc/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" + KEYWORDS="~amd64 ~riscv ~x86" fi LICENSE="ISC" @@ -21,9 +21,9 @@ SLOT="0" IUSE="gbm tracing" RDEPEND=" - dev-libs/aml + =dev-libs/aml-0.3* dev-libs/wayland - gui-libs/neatvnc[tracing?] + =gui-libs/neatvnc-0.6*[tracing?] media-libs/mesa:=[egl(+),gles2,gbm(+)?] x11-libs/libxkbcommon x11-libs/pixman diff --git a/gui-libs/Manifest.gz b/gui-libs/Manifest.gz index 257c63804041..2798612d1436 100644 Binary files a/gui-libs/Manifest.gz and b/gui-libs/Manifest.gz differ diff --git a/gui-libs/neatvnc/Manifest b/gui-libs/neatvnc/Manifest index 23e866fba7db..c15694e3f9b5 100644 --- a/gui-libs/neatvnc/Manifest +++ b/gui-libs/neatvnc/Manifest @@ -1 +1 @@ -DIST neatvnc-0.5.4.tar.gz 577635 BLAKE2B cc7a38daa956523601d5434840b9d60db569782d63304fe63d1a47d925acf9568fbc07e1e816e4fdb362e03b0693001423dc47aa1cdd20cb2d849e79ff1a5b44 SHA512 99f9faa9b97ff5949732dc6ddce2d506dea62a97df840a111279f41fe03475c6662770ee71616add2ab49bc3a32e3c32dfd2c2f1e87436f1f07e696146179c85 +DIST neatvnc-0.6.0.tar.gz 578084 BLAKE2B 63a064054a61996bd09064e4684d6d4e836290b9c0a097138a8dbefc3615b8d22f1932caef3b147bf3a12fa14ef808d314016d53411e2d461e775e1a34522e15 SHA512 7fc38aa36faba227e37ec241b874f7c83e7bb912b22cb1f2198622a0bb3145661111bf58b3f9e376b0d03f04b667ba94f2e60f7f5e886c141178a874c820ea91 diff --git a/gui-libs/neatvnc/neatvnc-0.5.4.ebuild b/gui-libs/neatvnc/neatvnc-0.6.0.ebuild similarity index 93% rename from gui-libs/neatvnc/neatvnc-0.5.4.ebuild rename to gui-libs/neatvnc/neatvnc-0.6.0.ebuild index 7d6c09da65ae..a07844f06217 100644 --- a/gui-libs/neatvnc/neatvnc-0.5.4.ebuild +++ b/gui-libs/neatvnc/neatvnc-0.6.0.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/any1/neatvnc.git" else SRC_URI="https://github.com/any1/neatvnc/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~riscv ~x86" fi LICENSE="ISC" @@ -23,7 +23,7 @@ REQUIRED_USE="h264? ( gbm )" RESTRICT="!test? ( test )" RDEPEND=" - dev-libs/aml + =dev-libs/aml-0.3* sys-libs/zlib x11-libs/pixman gbm? ( media-libs/mesa ) diff --git a/gui-libs/neatvnc/neatvnc-9999.ebuild b/gui-libs/neatvnc/neatvnc-9999.ebuild index 08dca658dad2..a07844f06217 100644 --- a/gui-libs/neatvnc/neatvnc-9999.ebuild +++ b/gui-libs/neatvnc/neatvnc-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020-2022 Gentoo Authors +# Copyright 2020-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/any1/neatvnc.git" else SRC_URI="https://github.com/any1/neatvnc/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~loong ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~riscv ~x86" fi LICENSE="ISC" @@ -23,7 +23,7 @@ REQUIRED_USE="h264? ( gbm )" RESTRICT="!test? ( test )" RDEPEND=" - dev-libs/aml + =dev-libs/aml-0.3* sys-libs/zlib x11-libs/pixman gbm? ( media-libs/mesa ) diff --git a/gui-libs/vte-common/Manifest b/gui-libs/vte-common/Manifest index 9e09c18f8f20..d8c15541814d 100644 --- a/gui-libs/vte-common/Manifest +++ b/gui-libs/vte-common/Manifest @@ -1,2 +1,3 @@ DIST vte-0.70.2.tar.bz2 502395 BLAKE2B ae127d8262c7038b3a2cda9a9622e9a075dfc1e06a7710810a4bb894a6646155790776553f663677cb86c3479e6d3faf92c38b5b97dd6970df37cee92dd963fa SHA512 1e113da0591830c057358dd78cfe2f814dd0bfabd037973369266823a9a4936a200b5b23faab3757ced4d08aa96a76d6b1120419815a181598493e35d2ea58d0 DIST vte-0.70.3.tar.bz2 502706 BLAKE2B 1fee46dee38618137781d62b27730893b0c6969cf3badfa157628621a608983be48e35ef4d8e58099c93b8be91434b257d120cab2e7a943cfecaf37ff7b3fd5d SHA512 5520bc58b0ad2f803da27985e30862de987ecc31c0137895c6945c53f99a7c16ee0281646b9e04362de934364ee7beaa1acf47dad9baf5a16ab9898d5f746d2d +DIST vte-0.72.0.tar.bz2 503848 BLAKE2B 4c87f5648b17a269072a7fbe520e9cf086325d8740050b9868fd6e0d812ed78e240a3d3dc882729435bbae30fbbbfe35c0e92f36cd62e6aa8e581350b81a3f90 SHA512 198ea27d0991d825cc993746422e89b0e7b2b225e9cbdb072477dcf5b5866e79a27920233e8da63a412c5f270769e6d333470f5368d0b09b39e15d53ddbe6dd6 diff --git a/gui-libs/vte-common/vte-common-0.72.0.ebuild b/gui-libs/vte-common/vte-common-0.72.0.ebuild new file mode 100644 index 000000000000..b2ef085b763d --- /dev/null +++ b/gui-libs/vte-common/vte-common-0.72.0.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit gnome.org meson python-any-r1 + +DESCRIPTION="Library providing a virtual terminal emulator widget" +HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/VTE" + +# Once SIXEL support ships (0.66 or later), might need xterm license (but code might be considered upgraded to LGPL-3+) +LICENSE="LGPL-3+ GPL-3+" +SLOT="2.91" # vte_api_version in meson.build +IUSE="systemd" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +# Upstream is hostile and refuses to upload tarballs. +SRC_URI="https://gitlab.gnome.org/GNOME/vte/-/archive/${PV}/vte-${PV}.tar.bz2" + +DEPEND=" + || ( >=gui-libs/gtk-4.0.1:4 >=x11-libs/gtk+-3.24.22:3 ) + >=dev-libs/fribidi-1.0.0 + >=dev-libs/glib-2.60:2 + >=x11-libs/pango-1.22.0 + >=dev-libs/libpcre2-10.21 + systemd? ( >=sys-apps/systemd-220:= ) + sys-libs/zlib + x11-libs/pango +" +RDEPEND=" + !=gspell-1.8 to ensure it uses enchant:2 like webkit-gtk +DEPEND=" + >=app-text/enchant-2.2.0:2 + >=dev-db/sqlite-3.7.17:3 + >=dev-libs/glib-2.66:2[dbus] + >=dev-libs/libxml2-2.7.3:2 + >=gnome-base/gnome-desktop-2.91.3:3= + >=gnome-base/gsettings-desktop-schemas-2.91.92 + >=gnome-extra/evolution-data-server-${PV}:=[gtk,weather?] + >=media-libs/libcanberra-0.25[gtk3] + >=net-libs/libsoup-3.0:3.0 + >=net-libs/webkit-gtk-2.38.0:4.1=[spell?] + >=x11-libs/cairo-1.9.15[glib] + >=x11-libs/gdk-pixbuf-2.24:2 + >=x11-libs/gtk+-3.22:3 + >=x11-libs/libnotify-0.7 + >=x11-misc/shared-mime-info-0.22 + + app-text/cmark:= + >=app-text/iso-codes-0.49 + >=app-accessibility/at-spi2-core-2.46.0:2 + + gnome-base/dconf + x11-libs/libSM + x11-libs/libICE + + archive? ( >=app-arch/gnome-autoar-0.1.1[gtk] ) + bogofilter? ( mail-filter/bogofilter ) + geolocation? ( + >=media-libs/libchamplain-0.12.21:0.12[gtk] + >=media-libs/clutter-1.0.0:1.0 + >=media-libs/clutter-gtk-0.90:1.0 + >=sci-geosciences/geocode-glib-3.26.3:2 ) + ldap? ( >=net-nds/openldap-2:= ) + spamassassin? ( mail-filter/spamassassin ) + spell? ( >=app-text/gspell-1.8:= ) + ssl? ( + >=dev-libs/nspr-4.6.1 + >=dev-libs/nss-3.11 + ) + weather? ( + >=dev-libs/libgweather-4.2.0:4= + >=sci-geosciences/geocode-glib-3.26.3:2 + ) + ytnef? ( net-mail/ytnef ) +" +RDEPEND="${DEPEND} + highlight? ( app-text/highlight ) +" +BDEPEND=" + app-text/docbook-xml-dtd:4.1.2 + dev-util/gdbus-codegen + dev-util/glib-utils + dev-util/itstool + gtk-doc? ( dev-util/gtk-doc + app-text/docbook-xml-dtd:4.3 ) + >=dev-util/intltool-0.40.0 + >=sys-devel/gettext-0.18.3 + virtual/pkgconfig +" + +DISABLE_AUTOFORMATTING="yes" +DOC_CONTENTS="To change the default browser if you are not using GNOME, edit +~/.local/share/applications/mimeapps.list so it includes the +following content: + +[Default Applications] +x-scheme-handler/http=firefox.desktop +x-scheme-handler/https=firefox.desktop + +(replace firefox.desktop with the name of the appropriate .desktop +file from /usr/share/applications if you use a different browser)." + +# global scope PATCHES or DOCS array mustn't be used due to double default_src_prepare +# call; if needed, set them after cmake_src_prepare call, if that works + +src_prepare() { + cmake_src_prepare + gnome2_src_prepare +} + +src_configure() { + # Use NSS/NSPR only if 'ssl' is enabled. + local mycmakeargs=( + -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc + -DENABLE_SCHEMAS_COMPILE=OFF + -DENABLE_GTK_DOC=$(usex gtk-doc) + -DWITH_OPENLDAP=$(usex ldap) + -DENABLE_SMIME=$(usex ssl) + -DENABLE_GNOME_DESKTOP=ON + -DWITH_ENCHANT_VERSION=2 + -DENABLE_CANBERRA=ON + -DENABLE_AUTOAR=$(usex archive) + -DWITH_HELP=ON + -DENABLE_YTNEF=OFF + -DWITH_BOGOFILTER=$(usex bogofilter) + -DWITH_SPAMASSASSIN=$(usex spamassassin) + -DENABLE_GSPELL=$(usex spell) + -DENABLE_TEXT_HIGHLIGHT=$(usex highlight) + -DENABLE_WEATHER=$(usex weather) + -DENABLE_CONTACT_MAPS=$(usex geolocation) + -DENABLE_YTNEF=$(usex ytnef) + -DENABLE_PST_IMPORT=OFF + -DWITH_GLADE_CATALOG=OFF + -DENABLE_MARKDOWN=ON + ) + + cmake_src_configure +} + +src_compile() { + cmake_src_compile +} + +src_test() { + cmake_src_test +} + +src_install() { + cmake_src_install + + readme.gentoo_create_doc +} + +pkg_postinst() { + gnome2_pkg_postinst + readme.gentoo_print_elog +} diff --git a/mail-filter/Manifest.gz b/mail-filter/Manifest.gz index 4a9bd4353264..348833f15c19 100644 Binary files a/mail-filter/Manifest.gz and b/mail-filter/Manifest.gz differ diff --git a/mail-filter/maildrop/Manifest b/mail-filter/maildrop/Manifest index ad37df356f99..8496d711a12a 100644 --- a/mail-filter/maildrop/Manifest +++ b/mail-filter/maildrop/Manifest @@ -1,3 +1,2 @@ -DIST maildrop-3.0.0.tar.bz2 2091018 BLAKE2B 3c8e3ae5c2c2f636b0223e2bafadcb88bf34be63c792a177febac5c41ccd50cab04755f14a26731c38a35531abea1faa70d4af5587a6e68a21735f050f2d46d8 SHA512 1f1e1682ec7c2d0c1f2e71059f186d9a9d3118194b1e558d3a6e5826721fb14a661f4d75df42ce2626430ac072b50e723b563ae00c1ebdeb4da96abfeb534eff DIST maildrop-3.0.2.tar.bz2 2129406 BLAKE2B 10572c9c0fcb7a31f10fdfb005562afd425d157fe515f31d7fc6721247b0a5d5d381b51da39f0161de0c8722af89da225273728928510fd9d79c18c18b5759e5 SHA512 a2e6ad9c6982e468b4f778fe6956312aa1da54c93269311922f247a89ede49349a6cbce869b08ced22354d18259ebc043e4f4adf1e0b364d8e110797b24efbc8 DIST maildrop-3.1.0.tar.bz2 2154698 BLAKE2B 8eaec33ccb3f117e0cd069eac2af736f5cc3485314ea14ac594f8e716e68d3f1e20143ba47533c08a835707dda1e8ba0fad2eea5d3bf5845668f8ad375e56387 SHA512 4d4ab1acd9f81beb54af9af86d0f8c3145f962f1ff2fd5e9209e31b63054cc41b3e4a1300965a8855a39dbcfa1cdbdef2ad194af1f12e079c1361b12b293ed56 diff --git a/mail-filter/maildrop/maildrop-3.0.0-r1.ebuild b/mail-filter/maildrop/maildrop-3.0.0-r1.ebuild deleted file mode 100644 index 2bc858c1e403..000000000000 --- a/mail-filter/maildrop/maildrop-3.0.0-r1.ebuild +++ /dev/null @@ -1,140 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit flag-o-matic autotools - -DESCRIPTION="Mail delivery agent/filter" -[[ -z ${PV/?.?/} ]] && SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" -[[ -z ${PV/?.?.?/} ]] && SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" -[[ -z ${SRC_URI} ]] && SRC_URI="https://www.courier-mta.org/beta/${PN}/${P%%_pre}.tar.bz2" -HOMEPAGE="https://www.courier-mta.org/maildrop/" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~s390 sparc x86" -IUSE="berkdb debug dovecot fam gdbm ldap mysql postgres static-libs authlib +tools trashquota" - -CDEPEND="!mail-mta/courier - net-mail/mailbase - dev-libs/libpcre - net-dns/libidn:0= - >=net-libs/courier-unicode-2.0:= - gdbm? ( >=sys-libs/gdbm-1.8.0:= ) - mysql? ( net-libs/courier-authlib ) - postgres? ( net-libs/courier-authlib ) - ldap? ( net-libs/courier-authlib ) - authlib? ( net-libs/courier-authlib ) - fam? ( virtual/fam ) - !gdbm? ( - berkdb? ( >=sys-libs/db-3:= ) - ) - tools? ( - !mail-mta/netqmail - !net-mail/courier-imap - !mail-mta/mini-qmail - !mail-mta/qmail-ldap - )" -DEPEND="${CDEPEND}" -RDEPEND="${CDEPEND} - dev-lang/perl - dovecot? ( net-mail/dovecot )" -BDEPEND="virtual/pkgconfig" - -REQUIRED_USE=" - mysql? ( authlib ) - postgres? ( authlib ) - ldap? ( authlib )" - -S=${WORKDIR}/${P%%_pre} - -src_prepare() { - # Prefer gdbm over berkdb - if use gdbm ; then - use berkdb && elog "Both gdbm and berkdb selected. Using gdbm." - fi - - if ! use fam ; then - eapply -p0 "${FILESDIR}"/${PN}-disable-fam.patch - fi - - # no need to error out if no default - it will be given to econf anyway - sed -i -e \ - 's~AC_MSG_ERROR(Cannot determine default mailbox)~SPOOLDIR="./.maildir"~' \ - "${S}"/libs/maildrop/configure.ac || die "sed failed" - - eapply "${FILESDIR}"/${P}-testsuite.patch - eapply_user - eautoreconf -} - -src_configure() { - local myeconfargs=( - $(use_enable fam) - --with-devel - --disable-tempdir - --enable-syslog=1 - --enable-use-flock=1 - --enable-use-dotlock=1 - --enable-restrict-trusted=1 - --enable-maildrop-uid=root - --enable-maildrop-gid=mail - --enable-sendmail=/usr/sbin/sendmail - --cache-file="${S}"/configuring.cache - $(use_enable static-libs static) - $(use_enable dovecot dovecotauth) - $(use_with trashquota) - ) - - local mytrustedusers="apache dspam root mail fetchmail" - mytrustedusers+=" daemon postmaster qmaild mmdf vmail alias" - myeconfargs+=( --enable-trusted-users="${mytrustedusers}" ) - - # These flags make maildrop cry - replace-flags -Os -O2 - filter-flags -fomit-frame-pointer - - if use gdbm ; then - myeconfargs+=( --with-db=gdbm ) - elif use berkdb ; then - myeconfargs+=( --with-db=db ) - else - myeconfargs+=( --without-db ) - fi - - if ! use mysql && ! use postgres && ! use ldap && ! use authlib ; then - myeconfargs+=( --disable-authlib ) - fi - - # default mailbox is $HOME/.maildir for Gentoo - maildrop_cv_SYS_INSTALL_MBOXDIR="./.maildir" econf "${myeconfargs[@]}" -} - -src_install() { - default - - if use authlib ; then - fperms 4755 /usr/bin/maildrop - fi - - dodoc AUTHORS ChangeLog INSTALL NEWS README \ - README.postfix README.dovecotauth UPGRADE \ - maildroptips.txt - docinto maildir - dodoc libs/maildir/AUTHORS libs/maildir/INSTALL \ - libs/maildir/README*.txt libs/maildir/*.html - - # bugs 61116, 374009, and 639124 - if ! use tools ; then - for tool in "maildirmake" "deliverquota"; do - rm "${D}/usr/bin/${tool}" || die - rm "${D}/usr/share/man/man"[0-9]"/${tool}."[0-9] || die - done - rm "${D}/usr/share/man/man5/maildir.5" || die - fi - - insinto /etc - doins "${FILESDIR}"/maildroprc - - use static-libs || find "${D}"/usr/lib* -name '*.la' -delete -} diff --git a/mail-filter/rspamd/Manifest b/mail-filter/rspamd/Manifest index d10d234b142a..bcee383412e4 100644 --- a/mail-filter/rspamd/Manifest +++ b/mail-filter/rspamd/Manifest @@ -1 +1,2 @@ DIST rspamd-3.4.tar.gz 5689732 BLAKE2B 8d1b98205f51cfe834db3ed53b8be72ada834980380cba06c4470689d16ef4a6396190ae27044ae76a7b35df6afd3cdf551f9469d878ac69ec61ef6b86b46104 SHA512 fec8cb7b845bf25d02f1c32c82bf35ad9c65f3301a73f3ea611b6fcfa0ac1b75f75561c4c42f142f876ac3a78f96fd91d22d30c5b3600e4001e25f06bc693ccf +DIST rspamd-3.5.tar.gz 5806722 BLAKE2B 547cd9bb26942dc584d1f4b164e61bdb15505a56399fa19b358b7d7525ee983acc8d5ae1fdb3de340e3461a03aedbb48266fd81404c1f4a2e8fc5bd6735d9a62 SHA512 39c87d5dfd9ae1fc7709e19967eac5e7c7dc83fa070dfebbb7ab5411d7d50d6e6f10248ada717cf1cb3f6ff6c5bfb4d31fd87e1a7e1b2e5f876f6be7b5705623 diff --git a/mail-filter/rspamd/rspamd-3.4-r2.ebuild b/mail-filter/rspamd/rspamd-3.4-r2.ebuild index 0a63b92b87b8..d81ac12ae142 100644 --- a/mail-filter/rspamd/rspamd-3.4-r2.ebuild +++ b/mail-filter/rspamd/rspamd-3.4-r2.ebuild @@ -141,8 +141,8 @@ pkg_postinst() { for ver in ${REPLACING_VERSIONS}; do if ver_test "${ver}" -eq "3.4"; then elog "rspamd-3.4 is known to segfault when it is updated from older version due" - elog "to a page-alignment of hyperscan .unser files. The issue is patched in this" - elog "ebuild revision rspamd-3.4-r1. All possibly broken .unser files will be" + elog "to a page-alignment of hyperscan .unser files. The issue was patched in" + elog "rspamd-3.4-r1 ebuild revision. All possibly broken .unser files will be" elog "automaticaly removed. See https://github.com/rspamd/rspamd/issues/4329 for" elog "more information." diff --git a/mail-filter/rspamd/rspamd-3.5.ebuild b/mail-filter/rspamd/rspamd-3.5.ebuild new file mode 100644 index 000000000000..bf4fc1bf5f86 --- /dev/null +++ b/mail-filter/rspamd/rspamd-3.5.ebuild @@ -0,0 +1,149 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LUA_COMPAT=( lua5-{1..4} luajit ) + +inherit cmake lua-single pax-utils systemd tmpfiles + +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://github.com/rspamd/rspamd.git" + inherit git-r3 +else + SRC_URI="https://github.com/rspamd/rspamd/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Rapid spam filtering system" +HOMEPAGE=" + https://rspamd.com + https://github.com/rspamd/rspamd +" + +LICENSE="Apache-2.0 Boost-1.0 BSD BSD-1 BSD-2 CC0-1.0 LGPL-3 MIT public-domain unicode ZLIB" +SLOT="0" +IUSE="blas cpu_flags_x86_ssse3 jemalloc +jit selinux test" +RESTRICT="!test? ( test )" + +# A part of tests use ffi luajit extension +REQUIRED_USE="${LUA_REQUIRED_USE} + test? ( lua_single_target_luajit )" + +RDEPEND="${LUA_DEPS} + $(lua_gen_cond_dep ' + dev-lua/LuaBitOp[${LUA_USEDEP}] + dev-lua/lua-argparse[${LUA_USEDEP}] + ') + acct-group/rspamd + acct-user/rspamd + app-arch/zstd:= + dev-db/sqlite:3 + dev-libs/glib:2 + dev-libs/icu:= + dev-libs/libev + dev-libs/libfmt:= + dev-libs/libpcre2:=[jit=] + dev-libs/libsodium:= + dev-libs/openssl:0=[-bindist(-)] + dev-libs/snowball-stemmer:= + >=dev-libs/xxhash-0.8.0 + sys-apps/file + sys-libs/zlib + blas? ( + virtual/blas + virtual/lapack + ) + cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) + jemalloc? ( dev-libs/jemalloc:= ) + selinux? ( sec-policy/selinux-spamassassin ) +" +DEPEND="${RDEPEND} + dev-cpp/doctest +" +BDEPEND=" + dev-lang/perl + dev-util/ragel + virtual/pkgconfig +" + +PATCHES=( + "${FILESDIR}/rspamd-3.0-cmake-lua-version.patch" + "${FILESDIR}/rspamd-3.2-unbundle-lua.patch" + "${FILESDIR}/rspamd-2.5-unbundle-snowball.patch" +) + +src_prepare() { + cmake_src_prepare + + rm -vrf contrib/{doctest,fmt,lua-{argparse,bit},snowball,xxhash,zstd} || die + + > cmake/Toolset.cmake || die #827550 + + sed -i -e 's/User=_rspamd/User=rspamd/g' \ + rspamd.service \ + || die +} + +src_configure() { + local mycmakeargs=( + -DCONFDIR=/etc/rspamd + -DRUNDIR=/var/run/rspamd + -DDBDIR=/var/lib/rspamd + -DLOGDIR=/var/log/rspamd + -DLIBDIR="/usr/$(get_libdir)/rspamd" + + -DSYSTEM_DOCTEST=ON + -DSYSTEM_FMT=ON + -DSYSTEM_XXHASH=ON + -DSYSTEM_ZSTD=ON + + -DENABLE_BLAS=$(usex blas ON OFF) + -DENABLE_HYPERSCAN=$(usex cpu_flags_x86_ssse3 ON OFF) + -DENABLE_JEMALLOC=$(usex jemalloc ON OFF) + -DENABLE_LUAJIT=$(usex lua_single_target_luajit ON OFF) + -DENABLE_PCRE2=ON + ) + cmake_src_configure +} + +src_test() { + cmake_build run-test +} + +src_install() { + cmake_src_install + + newconfd "${FILESDIR}"/rspamd.conf rspamd + newinitd "${FILESDIR}/rspamd-r7.init" rspamd + systemd_newunit rspamd.service rspamd.service + + newtmpfiles "${FILESDIR}"/${PN}.tmpfile ${PN}.conf + + # Remove mprotect for JIT support + if use lua_single_target_luajit; then + pax-mark m "${ED}"/usr/bin/rspamd-* "${ED}"/usr/bin/rspamadm-* + fi + + insinto /etc/logrotate.d + newins "${FILESDIR}"/rspamd-r1.logrotate rspamd + + diropts -o rspamd -g rspamd + keepdir /var/{lib,log}/rspamd +} + +pkg_postinst() { + tmpfiles_process "${PN}.conf" + + for ver in ${REPLACING_VERSIONS}; do + if ver_test "${ver}" -eq "3.4"; then + elog "rspamd-3.4 is known to segfault when it is updated from older version due" + elog "to a page-alignment of hyperscan .unser files. The issue was patched in" + elog "rspamd-3.4-r1 ebuild revision. All possibly broken .unser files will be" + elog "automaticaly removed. See https://github.com/rspamd/rspamd/issues/4329 for" + elog "more information." + + find "${EROOT}/var/lib/rspamd" -type f -name '*.unser' -delete + fi + done +} diff --git a/mail-filter/rspamd/rspamd-9999.ebuild b/mail-filter/rspamd/rspamd-9999.ebuild index 5e7014163c32..b60d7d586587 100644 --- a/mail-filter/rspamd/rspamd-9999.ebuild +++ b/mail-filter/rspamd/rspamd-9999.ebuild @@ -91,6 +91,7 @@ src_configure() { -DRUNDIR=/var/run/rspamd -DDBDIR=/var/lib/rspamd -DLOGDIR=/var/log/rspamd + -DLIBDIR="/usr/$(get_libdir)/rspamd" -DSYSTEM_DOCTEST=ON -DSYSTEM_FMT=ON diff --git a/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild b/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild index a0f933fea4ec..dd3bc5a1f1ff 100644 --- a/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild +++ b/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild @@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="Apache-2.0 GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="berkdb cron ipv6 ldap mysql postgres qmail sqlite ssl test" RESTRICT="!test? ( test )" diff --git a/mail-filter/spamassassin/spamassassin-4.0.0-r2.ebuild b/mail-filter/spamassassin/spamassassin-4.0.0-r2.ebuild new file mode 100644 index 000000000000..575cc1c184be --- /dev/null +++ b/mail-filter/spamassassin/spamassassin-4.0.0-r2.ebuild @@ -0,0 +1,338 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit perl-functions systemd toolchain-funcs verify-sig autotools + +MY_P="Mail-SpamAssassin-${PV//_/-}" +DESCRIPTION="An extensible mail filter which can identify and tag spam" +HOMEPAGE="https://spamassassin.apache.org/" +SRC_URI="mirror://apache/spamassassin/source/${MY_P}.tar.bz2 + verify-sig? ( + https://downloads.apache.org/spamassassin/source/${MY_P}.tar.bz2.asc + ) +" +S="${WORKDIR}/${MY_P}" + +LICENSE="Apache-2.0 GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="berkdb cron ipv6 ldap mysql postgres qmail sqlite ssl test" +RESTRICT="!test? ( test )" + +# The Makefile.PL script checks for dependencies, but only fails if a +# required (i.e. not optional) dependency is missing. We therefore +# require most of the optional modules only at runtime. +REQDEPEND="acct-user/spamd + acct-group/spamd + dev-lang/perl:= + dev-perl/HTML-Parser + dev-perl/Net-DNS + dev-perl/NetAddr-IP + virtual/perl-Digest-SHA + ssl? ( + dev-libs/openssl:0= + )" + +# SpamAssassin doesn't use libwww-perl except as a fallback for when +# curl/wget are missing, so we depend on one of those instead. Some +# mirrors use https, so we need those utilities to support SSL. +# +# re2c is needed to compile the rules (sa-compile). +# +# We still need the old Digest-SHA1 because razor2 has not been ported +# to Digest-SHA. +OPTDEPEND="app-crypt/gnupg + dev-perl/Archive-Zip + dev-perl/BSD-Resource + dev-perl/Digest-SHA1 + dev-perl/Email-Address-XS + dev-perl/Encode-Detect + || ( dev-perl/GeoIP2 dev-perl/Geo-IP ) + dev-perl/IO-String + dev-perl/Mail-DKIM + dev-perl/Mail-DMARC + dev-perl/Mail-SPF + dev-perl/Net-Patricia + dev-perl/Net-LibIDN2 + dev-util/re2c + || ( net-misc/wget[ssl] net-misc/curl[ssl] ) + virtual/perl-MIME-Base64 + dev-perl/Pod-Parser + berkdb? ( virtual/perl-DB_File ) + ipv6? ( dev-perl/IO-Socket-INET6 ) + ldap? ( dev-perl/perl-ldap ) + mysql? ( + dev-perl/DBI + dev-perl/DBD-mysql + ) + postgres? ( + dev-perl/DBI + dev-perl/DBD-Pg + ) + sqlite? ( + dev-perl/DBI + dev-perl/DBD-SQLite + ) + ssl? ( dev-perl/IO-Socket-SSL )" + +DEPEND="${REQDEPEND} + test? ( + ${OPTDEPEND} + virtual/perl-Test-Harness + )" +RDEPEND="${REQDEPEND} ${OPTDEPEND}" +BDEPEND="${RDEPEND} + verify-sig? ( sec-keys/openpgp-keys-spamassassin )" + +VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/spamassassin.apache.org.asc + +PATCHES=( + "${FILESDIR}/mention-geoip.cf-in-init.pre.patch" + "${FILESDIR}/4.0.0-tests-dnsbl_subtests.t.patch" + "${FILESDIR}/4.0.0-tests-strip2.t.patch" +) + +# There are a few renames and use-dependent ones in src_install as well. +DOCS=( + NOTICE TRADEMARK CREDITS UPGRADE USAGE sql/README.bayes + sql/README.awl procmailrc.example sample-nonspam.txt + sample-spam.txt spamd/PROTOCOL spamd/README.vpopmail + spamd-apache2/README.apache +) + +src_prepare() { + default + + # The sa_compile test does some weird stuff like hopping around in + # the directory tree and calling "make" to create a dist tarball + # from ${S}. It fails, and is more trouble than it's worth... + perl_rm_files t/sa_compile.t + + # The spamc tests (which need the networked spamd daemon) fail for + # irrelevant reasons. It's too hard to disable them (unlike the + # spamd tests themselves -- see src_test), so use a crude + # workaround. + perl_rm_files t/spamc_*.t + + # Some tests need extra dependencies + # e.g. t/sql_based_whitelist.t needs DBD + # This is kinder than REQUIRED_USE for tests which hurts automation + if ! use mysql && ! use postgres && ! use sqlite ; then + perl_rm_files t/sql_based_whitelist.t + fi + + # Disable plugin by default + sed -i -e 's/^loadplugin/\#loadplugin/g' \ + "rules/init.pre" \ + || die "failed to disable plugins by default" +} + +src_configure() { + # This is how and where the perl-module eclass disables the + # MakeMaker interactive prompt. + export PERL_MM_USE_DEFAULT=1 + + # Set SYSCONFDIR explicitly so we can't get bitten by bug 48205 again + # (just to be sure, nobody knows how it could happen in the first place). + # + # We also set the path to the perl executable explictly. This will be + # used to create the initial shebang line in the scripts (bug 62276). + perl Makefile.PL \ + PREFIX="${EPREFIX}/usr" \ + INSTALLDIRS=vendor \ + SYSCONFDIR="${EPREFIX}/etc" \ + DATADIR="${EPREFIX}/usr/share/spamassassin" \ + PERL_BIN="${EPREFIX}/usr/bin/perl" \ + ENABLE_SSL="$(usex ssl)" \ + DESTDIR="${D}" \ + || die 'failed to create a Makefile using Makefile.PL' + + # Now configure spamc. + + # Run autoreconf to avoid some issues caused by a standard test in the + # current autoconf. Expected to be fixed in next autoconf release, so + # these next 3 lines might not be needed for long. See bug #899782. + pushd spamc >/dev/null + eautoreconf + popd >/dev/null + emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" spamc/Makefile +} + +src_compile() { + emake + use qmail && emake spamc/qmail-spamc +} + +src_install () { + default + + # Create the stub dir used by sa-update and friends + keepdir /var/lib/spamassassin + + # Move spamd to sbin where it belongs. + dodir /usr/sbin + mv "${ED}"/usr/bin/spamd "${ED}"/usr/sbin/spamd || die "move spamd failed" + + if use qmail; then + dobin spamc/qmail-spamc + fi + + dosym mail/spamassassin /etc/spamassassin + + # Add the init and config scripts. + newinitd "${FILESDIR}/3.4.1-spamd.init-r3" spamd + newconfd "${FILESDIR}/3.4.1-spamd.conf-r1" spamd + + systemd_newunit "${FILESDIR}/${PN}.service-r4" "${PN}.service" + systemd_install_serviced "${FILESDIR}/${PN}.service.conf-r2" \ + "${PN}.service" + + use postgres && dodoc sql/*_pg.sql + use mysql && dodoc sql/*_mysql.sql + use qmail && dodoc spamc/README.qmail + + # Rename some files so that they don't clash with others. + newdoc spamd/README README.spamd + newdoc sql/README README.sql + newdoc ldap/README README.ldap + + insinto /etc/mail/spamassassin/ + newins "${FILESDIR}"/geoip-4.0.0.cf geoip.cf + insopts -m0400 + newins "${FILESDIR}"/secrets.cf secrets.cf.example + + # Create the directory where sa-update stores its GPG key (if you + # choose to import one). If this directory does not exist, the + # import will fail. This is bug 396307. We expect that the import + # will be performed as root, and making the directory accessible + # only to root prevents a warning on the command-line. + diropts -m0700 + dodir /etc/mail/spamassassin/sa-update-keys + + if use cron; then + # Install the cron job if they want it. + exeinto /etc/cron.daily + newexe "${FILESDIR}/update-spamassassin-rules-r1.cron" \ + update-spamassassin-rules + fi + + # Remove perllocal.pod to avoid file collisions (bug #603338). + perl_delete_localpod + + # The perl-module eclass calls three other functions to clean + # up in src_install. The first fixes references to ${D} in the + # packlist, and is useful to us, too. The other two functions, + # perl_delete_emptybsdir and perl_remove_temppath, don't seem + # to be needed: there are no empty directories, *.bs files, or + # ${D} paths remaining in our installed image. + perl_fix_packlist +} + +src_test() { + # Trick the test suite into skipping the spamd tests. Setting + # SPAMD_HOST to a non-localhost value causes SKIP_SPAMD_TESTS to be + # set in SATest.pm. + export SPAMD_HOST=disabled + default +} + +pkg_preinst() { + if use mysql || use postgres ; then + local _awlwarn=0 + local _v + for _v in ${REPLACING_VERSIONS}; do + if ver_test "${_v}" -lt "3.4.3"; then + _awlwarn=1 + break + fi + done + if [[ ${_awlwarn} == 1 ]] ; then + ewarn 'If you used AWL before 3.4.3, the SQL schema has changed.' + ewarn 'You will need to manually ALTER your tables for them to' + ewarn 'continue working. See the UPGRADE documentation for' + ewarn 'details.' + ewarn + fi + fi +} + +pkg_postinst() { + elog + elog 'No rules are installed by default. You will need to run sa-update' + elog 'at least once, and most likely configure SpamAssassin before it' + elog 'will work.' + + if ! use cron; then + elog + elog 'You should consider a cron job for sa-update. One is provided' + elog 'for daily updates if you enable the "cron" USE flag.' + fi + elog + elog 'Configuration and update help can be found on the wiki:' + elog + elog ' https://wiki.gentoo.org/wiki/SpamAssassin' + elog + + if use mysql || use postgres ; then + local _v + for _v in ${REPLACING_VERSIONS}; do + if ver_test "${_v}" -lt "3.4.3"; then + ewarn + ewarn 'If you used AWL before 3.4.3, the SQL schema has changed.' + ewarn 'You will need to manually ALTER your tables for them to' + ewarn 'continue working. See the UPGRADE documentation for' + ewarn 'details.' + ewarn + + # show this only once + break + fi + done + fi + + ewarn 'If this version of SpamAssassin causes permissions issues' + ewarn 'with your user configurations or bayes databases, then you' + ewarn 'may need to set SPAMD_RUN_AS_ROOT=true in your OpenRC service' + ewarn 'configuration file, or remove the --username and --groupname' + ewarn 'flags from the SPAMD_OPTS variable in your systemd service' + ewarn 'configuration file.' + + if [[ ! ~spamd -ef "${ROOT}/var/lib/spamd" ]] ; then + ewarn "The spamd user's home folder has been moved to a new location." + elog + elog "The acct-user/spamd package should have relocated it for you," + elog "but may have failed because your spamd daemon was running." + elog + elog "To fix this:" + elog " - Stop your spamd daemon" + elog " - emerge -1 acct-user/spamd" + elog " - Restart your spamd daemon" + elog " - Remove the old home folder if you want" + elog " rm -rf \"${ROOT}/home/spamd\"" + fi + if [[ -e "${ROOT}/home/spamd" ]] ; then + ewarn + ewarn "The spamd user's home folder has been moved to a new location." + elog + elog " Old Home: ${ROOT}/home/spamd" + elog " New Home: ${ROOT}/var/lib/spamd" + elog + elog "You may wish to migrate your data to the new location:" + elog " - Stop your spamd daemon" + elog " - Re-emerge acct-user/spamd to ensure the home folder has been" + elog " updated to the new location, now that the daemon isn't running:" + elog " # emerge -1 acct-user/spamd" + elog " # echo ~spamd" + elog " - Migrate the contents from the old location to the new home" + elog " For example:" + elog " # cp -Rpi \"${ROOT}/home/spamd/\" \"${ROOT}/var/lib/\"" + elog " - Remove the old home folder" + elog " # rm -rf \"${ROOT}/home/spamd\"" + elog " - Restart your spamd daemon" + elog + elog "If you do not wish to migrate data, you should remove the old" + elog "home folder from your system as it is not used." + fi +} diff --git a/media-fonts/Manifest.gz b/media-fonts/Manifest.gz index 5ad93682d706..10e7b31eeb8d 100644 Binary files a/media-fonts/Manifest.gz and b/media-fonts/Manifest.gz differ diff --git a/media-fonts/noto-emoji/files/noto-emoji-20180823-build-path.patch b/media-fonts/noto-emoji/files/noto-emoji-20180823-build-path.patch deleted file mode 100644 index 151f88251524..000000000000 --- a/media-fonts/noto-emoji/files/noto-emoji-20180823-build-path.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/add_glyphs.py.old 2018-11-18 11:11:56.387323302 +0100 -+++ b/add_glyphs.py 2018-11-18 11:12:18.203529159 +0100 -@@ -22,7 +22,7 @@ - import add_emoji_gsub - import add_aliases - --sys.path.append( -+sys.path.insert(0, - path.join(os.path.dirname(__file__), 'third_party', 'color_emoji')) - from png import PNG - diff --git a/media-fonts/noto-emoji/files/noto-emoji-20190328-use-gm.patch b/media-fonts/noto-emoji/files/noto-emoji-20190328-use-gm.patch deleted file mode 100644 index 6b51d0f52168..000000000000 --- a/media-fonts/noto-emoji/files/noto-emoji-20190328-use-gm.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- a/Makefile~ 2019-03-28 17:45:53.000000000 +0100 -+++ b/Makefile 2019-06-02 10:36:55.587055453 +0200 -@@ -21,7 +21,7 @@ - PNGQUANT = pngquant - PNGQUANTFLAGS = --speed 1 --skip-if-larger --quality 85-95 --force - BODY_DIMENSIONS = 136x128 --IMOPS := -size $(BODY_DIMENSIONS) canvas:none -compose copy -gravity center -+IMOPS = -size 136x128 -background none -gravity center -extent 136x128 -compose copy - - # zopflipng is better (about 5-10%) but much slower. it will be used if - # present. pass ZOPFLIPNG= as an arg to make to use optipng instead. -@@ -165,13 +165,13 @@ - # imagemagick packaged with ubuntu trusty (6.7.7-10) by using -composite. - - $(EMOJI_DIR)/%.png: $(EMOJI_SRC_DIR)/%.png | $(EMOJI_DIR) -- @convert $(IMOPS) "$<" -composite "PNG32:$@" -+ @gm convert $(IMOPS) "$<" "PNG32:$@" - - $(FLAGS_DIR)/%.png: $(FLAGS_SRC_DIR)/%.png ./waveflag | $(FLAGS_DIR) - @./waveflag $(FLAGS_DIR)/ "$<" - - $(RESIZED_FLAGS_DIR)/%.png: $(FLAGS_DIR)/%.png | $(RESIZED_FLAGS_DIR) -- @convert $(IMOPS) "$<" -composite "PNG32:$@" -+ @gm convert $(IMOPS) "$<" "PNG32:$@" - - flag-symlinks: $(RESIZED_FLAG_FILES) | $(RENAMED_FLAGS_DIR) - @$(subst ^, , \ diff --git a/media-fonts/noto-emoji/files/noto-emoji-build-all-flags.patch b/media-fonts/noto-emoji/files/noto-emoji-build-all-flags.patch deleted file mode 100644 index 564b08a59078..000000000000 --- a/media-fonts/noto-emoji/files/noto-emoji-build-all-flags.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- old/Makefile 2018-05-03 20:32:14.000000000 +0200 -+++ new/Makefile 2018-05-08 11:48:20.811073447 +0200 -@@ -78,7 +78,7 @@ - - ALL_FLAGS = $(basename $(notdir $(wildcard $(FLAGS_SRC_DIR)/*.png))) - --FLAGS = $(SELECTED_FLAGS) -+FLAGS = $(ALL_FLAGS) - - FLAG_NAMES = $(FLAGS:%=%.png) - FLAG_FILES = $(addprefix $(FLAGS_DIR)/, $(FLAG_NAMES)) diff --git a/media-fonts/noto-emoji/files/noto-emoji-pngquant-verbose.patch b/media-fonts/noto-emoji/files/noto-emoji-pngquant-verbose.patch deleted file mode 100644 index 8a152bea23d9..000000000000 --- a/media-fonts/noto-emoji/files/noto-emoji-pngquant-verbose.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/Makefile~ 2020-04-22 23:04:44.000000000 +0200 -+++ b/Makefile 2020-04-22 23:06:42.069275340 +0200 -@@ -20,7 +20,7 @@ - - PNGQUANT = pngquant - PYTHON = python3 --PNGQUANTFLAGS = --speed 1 --skip-if-larger --quality 85-95 --force -+PNGQUANTFLAGS = --speed 1 --skip-if-larger --quality 85-95 --force -v - BODY_DIMENSIONS = 136x128 - IMOPS := -size $(BODY_DIMENSIONS) canvas:none -compose copy -gravity center - diff --git a/media-fonts/noto-emoji/metadata.xml b/media-fonts/noto-emoji/metadata.xml index a1229f4979e4..3b1890ccc39f 100644 --- a/media-fonts/noto-emoji/metadata.xml +++ b/media-fonts/noto-emoji/metadata.xml @@ -6,7 +6,6 @@ Pacho Ramos - Build Noto Emoji font with supplied images Install Noto Emoji icon theme diff --git a/media-fonts/noto-emoji/noto-emoji-20220912.ebuild b/media-fonts/noto-emoji/noto-emoji-20220912.ebuild deleted file mode 100644 index 2d31c4c23a4f..000000000000 --- a/media-fonts/noto-emoji/noto-emoji-20220912.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) - -inherit font python-any-r1 - -DESCRIPTION="Google Noto Emoji fonts" -HOMEPAGE="https://www.google.com/get/noto/ https://github.com/googlefonts/noto-emoji" - -COMMIT="e8073ab740292f8d5f19b5de144087ac58044d06" -SRC_URI="https://github.com/googlefonts/noto-emoji/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0 OFL-1.1" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86" -IUSE="buildfont" - -BDEPEND=" - buildfont? ( - ${PYTHON_DEPS} - app-arch/zopfli - $(python_gen_any_dep ' - >=dev-python/fonttools-4.7.0[${PYTHON_USEDEP}] - >=dev-python/nototools-0.2.13[${PYTHON_USEDEP}] - ') - media-gfx/pngquant - x11-libs/cairo - || ( media-gfx/imagemagick[png] media-gfx/graphicsmagick[png] ) - ) -" - -RESTRICT="binchecks strip" - -S="${WORKDIR}/${PN}-${COMMIT}" - -python_check_deps() { - python_has_version ">=dev-python/fonttools-4.7.0[${PYTHON_USEDEP}]" \ - ">=dev-python/nototools-0.2.13[${PYTHON_USEDEP}]" -} - -pkg_setup() { - font_pkg_setup - use buildfont && python-any-r1_pkg_setup -} - -src_prepare() { - default - - # Drop font for Windows 10 - rm fonts/NotoColorEmoji_WindowsCompatible.ttf || die - - if use buildfont; then - # From Fedora - eapply "${FILESDIR}/${PN}-build-all-flags.patch" - - # https://github.com/googlei18n/noto-emoji/issues/240 - eapply "${FILESDIR}/${PN}-20180823-build-path.patch" - - # Be more verbose, bug #717654 - eapply "${FILESDIR}"/${PN}-pngquant-verbose.patch - sed -i -e 's:@$(ZOPFLIPNG) -y "$<" "$@" 1> /dev/null 2>&1:@$(ZOPFLIPNG) -y "$<" "$@":g' Makefile || die - - # Based on Fedora patch to allow graphicsmagick usage - if has_version -b media-gfx/graphicsmagick[png]; then - eapply "${FILESDIR}/${PN}-20190328-use-gm.patch" - fi - fi -} - -src_compile() { - if ! use buildfont; then - einfo "Installing pre-built fonts provided by upstream." - einfo "They could be not fully updated or miss some items." - einfo "To build fonts based on latest images enable 'buildfont'" - einfo "USE (that will require more time and resources too)." - else - python_setup - einfo "Building fonts..." - - # From Debian: - # The build requires a VIRTUAL_ENV variable and sequence check isn't working - VIRTUAL_ENV=true \ - BYPASS_SEQUENCE_CHECK=true \ - default - fi -} - -src_install() { - if ! use buildfont; then - FONT_S="${S}/fonts" - # Drop non used fonts - rm -f fonts/*COLR*.ttf || die - else - # Drop Windows compatible fonts and temporal files - rm -f *tmpl.ttf *Windows*.ttf *COLR*.ttf || die - - # Built fonts - FONT_S="${S}" - - # Don't lose fancy emoji icons - for i in 32 72 128 512; do - insinto "/usr/share/icons/${PN}/${i}/emotes/" - doins png/"${i}"/*.png - done - - insinto /usr/share/icons/"${PN}"/scalable/emotes/ - doins svg/*.svg - fi - - FONT_SUFFIX="ttf" - font_src_install - - dodoc README.md -} diff --git a/media-gfx/Manifest.gz b/media-gfx/Manifest.gz index f1e60c5f3222..94d7f8e4433f 100644 Binary files a/media-gfx/Manifest.gz and b/media-gfx/Manifest.gz differ diff --git a/media-gfx/cairosvg/Manifest b/media-gfx/cairosvg/Manifest index c31ae596f401..db1a46b0a071 100644 --- a/media-gfx/cairosvg/Manifest +++ b/media-gfx/cairosvg/Manifest @@ -1,2 +1 @@ -DIST CairoSVG-2.5.2.tar.gz 8397659 BLAKE2B f2f45aa01015f5ccebe3dede303b6a701c0183b7b53f0d69c8756d5f0e6c0898826939f0b5bcc9e00e4185c83ff507d6fa886a020ad0b63c80a565a181807f58 SHA512 070fbb549614401a7d8290497b0eb7702330ee264c5f625cd1e7aac4aea7d71ee7d2d8899297212e1a3c11c93903b191c0c699336d9000796318b11f4e075576 DIST CairoSVG-2.6.0.tar.gz 8398114 BLAKE2B d4aca284fe3756c40c62dfb2b29e4670c947df13dd76e5104a13cb963bbdf6aa1f7fd242748d6fd0ca524aa03578c3449fa8ea6d86b9a8ce4a64976c32e96627 SHA512 dc504233a8f3fccfc8d4082328bfc0f06a4ebe0249801f764b9aed6b3bad5f953786352930ab199b10b301d0f44a8c2ef2e79eeea198c9094e697fdaa4db48d5 diff --git a/media-gfx/cairosvg/cairosvg-2.5.2.ebuild b/media-gfx/cairosvg/cairosvg-2.5.2.ebuild deleted file mode 100644 index a3ac032b17b3..000000000000 --- a/media-gfx/cairosvg/cairosvg-2.5.2.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..10} ) - -inherit distutils-r1 - -MY_PN="CairoSVG" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="CLI and library to export SVG to PDF, PostScript, and PNG" -HOMEPAGE="https://cairosvg.org/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="amd64 ~riscv x86" - -RDEPEND=" - dev-python/cairocffi[${PYTHON_USEDEP}] - dev-python/cssselect2[${PYTHON_USEDEP}] - dev-python/defusedxml[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/tinycss2[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -src_prepare() { - # junk deps - sed -e '/pytest-runner/d' \ - -e '/--flake8/d' \ - -e '/--isort/d' \ - -i setup.cfg || die - - # this test compares output against old version; this makes little - # sense for us and requires both distfiles around - rm test_non_regression/test_non_regression.py || die - eapply "${FILESDIR}"/cairosvg-2.5.1-no-ref.patch - - distutils-r1_src_prepare -} diff --git a/media-gfx/cairosvg/cairosvg-2.6.0.ebuild b/media-gfx/cairosvg/cairosvg-2.6.0.ebuild index 8c50578124bf..a6ca48e08942 100644 --- a/media-gfx/cairosvg/cairosvg-2.6.0.ebuild +++ b/media-gfx/cairosvg/cairosvg-2.6.0.ebuild @@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="LGPL-3" SLOT="0" -KEYWORDS="~amd64 ~riscv ~x86" +KEYWORDS="amd64 ~riscv x86" RDEPEND=" dev-python/cairocffi[${PYTHON_USEDEP}] diff --git a/media-gfx/cairosvg/files/cairosvg-2.5.1-no-ref.patch b/media-gfx/cairosvg/files/cairosvg-2.5.1-no-ref.patch deleted file mode 100644 index 1b2ff0eb7209..000000000000 --- a/media-gfx/cairosvg/files/cairosvg-2.5.1-no-ref.patch +++ /dev/null @@ -1,30 +0,0 @@ -From f79fce1d3703f2985c543575d5eb15ffb0eb7bb6 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= -Date: Thu, 7 Jan 2021 00:31:52 +0100 -Subject: [PATCH] Do not use reference_cairosvg - ---- - test_non_regression/__init__.py | 7 +------ - 1 file changed, 1 insertion(+), 6 deletions(-) - -diff --git a/test_non_regression/__init__.py b/test_non_regression/__init__.py -index 8876e11..4b2e29b 100644 ---- a/test_non_regression/__init__.py -+++ b/test_non_regression/__init__.py -@@ -8,12 +8,7 @@ import os - - import cairosvg - --reference_cairosvg = imp.load_source( -- 'cairosvg_reference', pathname=os.path.join( -- os.path.dirname(__file__), 'cairosvg_reference', 'cairosvg', -- '__init__.py')) -- --cairosvg.features.LOCALE = reference_cairosvg.features.LOCALE = 'en_US' -+cairosvg.features.LOCALE = 'en_US' - - TEST_FOLDER = os.path.join(os.path.dirname(__file__), 'svg') - --- -2.30.0 - diff --git a/media-gfx/eog-plugins/Manifest b/media-gfx/eog-plugins/Manifest index 76c022545179..56028714af99 100644 --- a/media-gfx/eog-plugins/Manifest +++ b/media-gfx/eog-plugins/Manifest @@ -1 +1,2 @@ DIST eog-plugins-42.3.tar.xz 134284 BLAKE2B 903ee1af89d48c46ab12d1330b4605cd78db573d59d5fc6ba34c27a8b017ce90c2af0b55009e5ecec61229dbdd8852bc4ecc5b10e6a2d2391c06e8244f7b24da SHA512 af680fe7cc83d3b3ae6782127edf90cf2a89093030f15d22fe5ff81eb165a493dc487b32a41383c36b72ce188c8f49b3f52ca3b991d24faa9667b0317bff414f +DIST eog-plugins-44.0.tar.xz 134544 BLAKE2B db384d949f2a63cb0fcdf1bdfb8ed4c5c97af88d21079af5de7560b3c3bab231a6361ae459727a9b9f31b49e63f7cd227f465a1a7b8e2bc55e8d7a08f0335ed9 SHA512 2955830aa60a3518869ec1af7a9f0c455277b0a571cb14a5e5926b52b80ed0443e91f28e270feffcf26066e1e9b6080c9a457b55175051c20838c8b80e2da195 diff --git a/media-gfx/eog-plugins/eog-plugins-44.0.ebuild b/media-gfx/eog-plugins/eog-plugins-44.0.ebuild new file mode 100644 index 000000000000..1a40b2451460 --- /dev/null +++ b/media-gfx/eog-plugins/eog-plugins-44.0.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit gnome.org meson python-single-r1 + +DESCRIPTION="Eye of GNOME plugins" +HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins https://gitlab.gnome.org/GNOME/eog-plugins" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="+exif map picasa +python test" +RESTRICT="!test? ( test )" +REQUIRED_USE=" + map? ( exif ) + python? ( ${PYTHON_REQUIRED_USE} ) +" + +RDEPEND=" + >=dev-libs/glib-2.53.4:2 + >=dev-libs/libpeas-1.14.1 + >=media-gfx/eog-41.0:1 + exif? ( >=media-libs/libexif-0.6.16 ) + map? ( + media-libs/libchamplain:0.12[gtk] + >=media-libs/clutter-1.9.4:1.0 + >=media-libs/clutter-gtk-1.1.2:1.0 + ) + picasa? ( >=dev-libs/libgdata-0.9.1:= ) + python? ( + ${PYTHON_DEPS} + dev-libs/glib[dbus] + dev-libs/libpeas:=[gtk,python,${PYTHON_SINGLE_USEDEP}] + $(python_gen_cond_dep ' + dev-python/pygobject:3[${PYTHON_USEDEP}] + ') + gnome-base/gsettings-desktop-schemas + media-gfx/eog[introspection] + x11-libs/gtk+:3[introspection] + x11-libs/pango[introspection] + ) +" +DEPEND="${RDEPEND} + test? ( dev-libs/appstream-glib )" +BDEPEND=" + >=sys-devel/gettext-0.19.7 + virtual/pkgconfig +" + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_configure() { + local emesonargs=( + $(meson_use exif plugin_exif-display) + $(meson_use python plugin_export-to-folder) + -Dplugin_fit-to-width=true + $(meson_use python plugin_fullscreenbg) + -Dplugin_light-theme=true + $(meson_use map plugin_map) + $(meson_use python plugin_maximize-windows) + $(meson_use picasa plugin_postasa) + -Dplugin_postr=false + $(meson_use python plugin_pythonconsole) + -Dplugin_send-by-mail=true + $(meson_use python plugin_slideshowshuffle) + ) + meson_src_configure +} diff --git a/media-gfx/eog/Manifest b/media-gfx/eog/Manifest index ab530e068003..107a56462e40 100644 --- a/media-gfx/eog/Manifest +++ b/media-gfx/eog/Manifest @@ -1,2 +1,3 @@ DIST eog-43.2.tar.xz 4655416 BLAKE2B 9909fc3da58541191b25959be20e53987f5633c97e003b0c97c4029a7cd6084d3675d75584664a023ca45897982d3cfe2668b6dc94a34b22a249b15a87307470 SHA512 aa3bb2e2684140f6a35770f6f6b80f64f09ff0f36f25ddc561c9cbbf6f22fdb4bbb1a48392a29d59dcf4852c224146ac847c62c8196e9198b34e7015bf4bb760 +DIST eog-44.0.tar.xz 4655396 BLAKE2B 96cedcd03bf29c5052566b6a52b901d30f6d4d8a1950caa20b99cb0df2f97da8422c4884def724f441cf01f071d0caadd803e7e7cfa2b6ed2d3073c66cd825d2 SHA512 8bd54b53100c0a8e596dec070f8a711fbc2a0caf396afb5b2d8ba45f86215c1823736a3b898d0460ac91204d1cf1a492ec993e66a025af167e3dc4aec3149b2d DIST eog-44.beta.tar.xz 4654948 BLAKE2B 30965b2d0f7fb6e82e6f151e0e64cb8c9898129d1a4918427b828a4bef413bed1b51bf24a79d34148cd7755649d992ab294c3de24e8bc5c5a97ec150a832220a SHA512 ba9732a99e2ab68c32c898cff8c2edecc585eb1bf16756164dd0fff94a5552e93f8cbf63cf8cea5cc36a3b1785cfc77ef7573892f5a653b897d9b13118b03bab diff --git a/media-gfx/eog/eog-44.0.ebuild b/media-gfx/eog/eog-44.0.ebuild new file mode 100644 index 000000000000..01a9802618ea --- /dev/null +++ b/media-gfx/eog/eog-44.0.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="The Eye of GNOME image viewer" +HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome https://gitlab.gnome.org/GNOME/eog" + +LICENSE="GPL-2+" +SLOT="1" + +IUSE="+exif gtk-doc +introspection +jpeg lcms +svg xmp tiff" +REQUIRED_USE=" + exif? ( jpeg ) + gtk-doc? ( introspection ) +" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + >=dev-libs/glib-2.53.4:2 + >=dev-libs/libpeas-0.7.4[gtk] + >=gnome-base/gnome-desktop-2.91.2:3= + >=gnome-base/gsettings-desktop-schemas-42_beta + >=x11-misc/shared-mime-info-0.20 + >=x11-libs/gdk-pixbuf-2.36.5:2[jpeg?,tiff?] + >=x11-libs/gtk+-3.24.15:3[introspection,X] + >=gui-libs/libhandy-1.5.0:1 + sys-libs/zlib + + exif? ( >=media-libs/libexif-0.6.14 ) + lcms? ( media-libs/lcms:2 ) + xmp? ( media-libs/exempi:2= ) + jpeg? ( media-libs/libjpeg-turbo:= ) + introspection? ( >=dev-libs/gobject-introspection-1.54:= ) + svg? ( >=gnome-base/librsvg-2.44.0:2 ) + + x11-libs/libX11 +" +DEPEND="${RDEPEND}" +BDEPEND=" + gtk-doc? ( + dev-util/gi-docgen + app-text/docbook-xml-dtd:4.1.2 + ) + dev-util/glib-utils + dev-util/itstool + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + $(meson_use exif libexif) + $(meson_use lcms cms) + $(meson_use xmp) + $(meson_use jpeg libjpeg) + $(meson_use svg librsvg) + $(meson_use gtk-doc gtk_doc) + $(meson_use introspection) + -Dinstalled_tests=false + -Dlibportal=false # As of 40.3, all libportal usages are flatpak-specific + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/media-gfx/feh/Manifest b/media-gfx/feh/Manifest index 7a45937a9e40..d65a6c16b2c0 100644 --- a/media-gfx/feh/Manifest +++ b/media-gfx/feh/Manifest @@ -1,3 +1 @@ -DIST feh-3.7.2.tar.bz2 2121677 BLAKE2B ce9acf27dc312ef46bcfbbdb5bf982d3a5c5a32ea56e716982c0e3dfaa3a66643bc9471353cca4dde9e28fcb8d002d38bfbafab699d952b81c59bababfafb82f SHA512 e74c4a4ce655711dc3c777f83c9376d54aa82aa7e38e07837b8593ed19ba813217f99d5768c8f8d0b6c1a0f6475a5e36cf404f4bc024674214568715a931b9e3 DIST feh-3.9.1.tar.bz2 2108873 BLAKE2B af559837224a90e403015648717cb9aa516d18bceb0a49a0635b471435370209c80b77a7a87f66b22c99615d44be0832a0d03152aabde72917417e5f992a5d8a SHA512 78682ec80df6b6655dbc18774ee95b3d68f1711a50129a9befb8adfb8c1a74aeede2493a35955687cdc2aa079978927727dac02543643418ef8deefa0d8c6d05 -DIST feh-3.9.tar.bz2 2111997 BLAKE2B 853812e580eda808acbe4bc38325ac387b66eaf90b54da7e94980bd785d0001fa3f8d2507e2a435d5f533cc215bf8e28419b57b436d85c32b8e609b12c3a191a SHA512 0d217bdc9f78c8a4a40684ccc798986465c46282eef39a6792791763a5683ddc9a2ca277dc10c23bfe55aa11b415f5ff66b4ded2fe2a7a946660ccd07a4edc50 diff --git a/media-gfx/feh/feh-3.7.2.ebuild b/media-gfx/feh/feh-3.7.2.ebuild deleted file mode 100644 index 92720f85d06b..000000000000 --- a/media-gfx/feh/feh-3.7.2.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit toolchain-funcs xdg-utils - -DESCRIPTION="A fast, lightweight imageviewer using imlib2" -HOMEPAGE="https://feh.finalrewind.org/" -SRC_URI="https://feh.finalrewind.org/${P}.tar.bz2" - -LICENSE="feh" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv x86" -IUSE="debug curl exif test xinerama inotify" -RESTRICT="!test? ( test )" - -COMMON_DEPEND="media-libs/imlib2[X] - >=media-libs/libpng-1.2:0= - x11-libs/libX11 - curl? ( net-misc/curl ) - exif? ( media-libs/libexif ) - xinerama? ( x11-libs/libXinerama )" -RDEPEND="${COMMON_DEPEND} - virtual/jpeg:0" -DEPEND="${COMMON_DEPEND} - x11-base/xorg-proto - x11-libs/libXt - test? ( - >=dev-lang/perl-5.10 - dev-perl/Test-Command - media-libs/imlib2[gif,jpeg,png] - )" - -PATCHES=( "${FILESDIR}"/${PN}-3.2-debug-cflags.patch ) - -pkg_setup() { - use_feh() { usex $1 1 0; } - - fehopts=( - PREFIX="${EPREFIX}"/usr - doc_dir='${main_dir}'/share/doc/${PF} - example_dir='${main_dir}'/share/doc/${PF}/examples - curl=$(use_feh curl) - debug=$(use_feh debug) - xinerama=$(use_feh xinerama) - exif=$(use_feh exif) - inotify=$(use_feh inotify) - ) -} - -src_compile() { - tc-export CC - emake "${fehopts[@]}" -} - -src_install() { - emake "${fehopts[@]}" DESTDIR="${D}" install -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_mimeinfo_database_update - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_mimeinfo_database_update - xdg_desktop_database_update -} diff --git a/media-gfx/feh/feh-3.9-r1.ebuild b/media-gfx/feh/feh-3.9.1-r1.ebuild similarity index 91% rename from media-gfx/feh/feh-3.9-r1.ebuild rename to media-gfx/feh/feh-3.9.1-r1.ebuild index b05cfb8585a7..7ea8a8a2d3be 100644 --- a/media-gfx/feh/feh-3.9-r1.ebuild +++ b/media-gfx/feh/feh-3.9.1-r1.ebuild @@ -12,9 +12,13 @@ LICENSE="feh" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86" IUSE="debug curl exif test xinerama inotify" -RESTRICT="!test? ( test )" +RESTRICT="test" # Tests are broken. -COMMON_DEPEND="media-libs/imlib2[X] +COMMON_DEPEND=" + || ( + >=media-libs/imlib2-1.11.0[X,text] + =media-libs/libpng-1.2:0= x11-libs/libX11 curl? ( net-misc/curl ) diff --git a/media-gfx/gnome-font-viewer/Manifest b/media-gfx/gnome-font-viewer/Manifest index 9321568a1894..2c4a7d6079e7 100644 --- a/media-gfx/gnome-font-viewer/Manifest +++ b/media-gfx/gnome-font-viewer/Manifest @@ -1,3 +1,4 @@ DIST gnome-font-viewer-41.0.tar.xz 179672 BLAKE2B ce9e91b319ccf2e099cd30cf13e407270775950321e2bea69703050b5797ed879320939d260aba175f3ed6f5719e23f5628c6501f362c3e367ca5ddf70902037 SHA512 09d9ddcdd18fd0023dff46e7197988473119e0d753b7814fdca0116c6831a93146301dd56ee77546121c573c8d93801b5d8fed0c46da47052e31749058c21d50 DIST gnome-font-viewer-43.0.tar.xz 291800 BLAKE2B 8d47eed603a932c47ccbd88f75b87e3df6850b89854b30ce1b75979867f5a75c8db97387833f118fc27e8f6c54c838523d6ab7f72813b9040d9100a3f46760ca SHA512 9d93cee4e62802640722294a0db7b5947d417e393a95aca9017b9904708037fbf353e35d891181c8acdb5615ed9c20ec03c26b197bb982196122bf9cb0a37fd5 +DIST gnome-font-viewer-44.0.tar.xz 299644 BLAKE2B 9eceda601332601a3918331c0b4dae1f588ec88d9c28323694291f22e9add115ccfd70ef8c2d3b1a410bcf7c7443810abdb58a156927c235fb895412dea54213 SHA512 f2da77fadbd76eaaf661cb518043ebad6f964a90f1cede5b58160a3aa08a0fe42a9972bc4871725dc7ae16eb4199329ef2ea08734b8017306e61341e51c37bea DIST gnome-font-viewer-44.rc.tar.xz 299360 BLAKE2B c627b79623caa8d1fac031cafdc31d9ffc0b9af4f15e4b14b10c5bcbaf5fc0c3f80ed65bd4d8fd336109162f5e0cb5b0131db18b2c6fdc9512560965490fee5c SHA512 2a20e3d46f43a787b32668c84f191de91c69e20536f0f603aee0453989ca8cfeb5d8309b5c98a6a8af38018bf024fe1bbb5636b4d2bb5fc301f19db11c7fc5af diff --git a/media-gfx/gnome-font-viewer/gnome-font-viewer-44.0.ebuild b/media-gfx/gnome-font-viewer/gnome-font-viewer-44.0.ebuild new file mode 100644 index 000000000000..e7d86275e6fe --- /dev/null +++ b/media-gfx/gnome-font-viewer/gnome-font-viewer-44.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome.org meson xdg + +DESCRIPTION="Font viewer utility for GNOME" +HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-font-viewer" + +LICENSE="GPL-2+ LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" + +DEPEND=" + >=dev-libs/glib-2.56.0:2 + >=gui-libs/gtk-4.5.0:4 + >=gui-libs/libadwaita-1.2.0:1 + >=media-libs/harfbuzz-0.9.9:= + media-libs/fontconfig:1.0 + media-libs/freetype:2 + gnome-base/gnome-desktop:4= + dev-libs/fribidi +" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-libs/appstream-glib + dev-libs/libxml2:2 + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" diff --git a/media-gfx/simple-scan/Manifest b/media-gfx/simple-scan/Manifest index 48be881a9c7e..4b8cc8822ca0 100644 --- a/media-gfx/simple-scan/Manifest +++ b/media-gfx/simple-scan/Manifest @@ -1 +1,2 @@ DIST simple-scan-42.5.tar.xz 1193500 BLAKE2B ba6299e351e12a996b55a2c0c213290ea8b1faa490e7b6950ef961ca9c6f65522370064afe655f305fbfcd8dd225b0d22def10fbe3d358584c71933030e72003 SHA512 d479d11fb735e4f63eeb1917d00befe71c1c2128dd425f57f8069c0ae7132053c7259c11139be3c59a9ad1e27367f08174a8dc2632255d105705a36b3871a7f4 +DIST simple-scan-44.0.tar.xz 1198824 BLAKE2B 2bc9ea19a99b02d6acdb21036558bd2d42751699a89d41ec4da3336c061ecc7ad249b34ab0b30c6a6fc162fb7f6538859d1c29b2c9a843f2c2a8785dadc8a086 SHA512 8543b687eafec4f2460efa446146b4fe3a0ad469e5dcc5fcd19a02484cbfac5bce80741b488217af44c580720a01577a8e78479a4d2e96307da3de9dcfa467c6 diff --git a/media-gfx/simple-scan/simple-scan-44.0.ebuild b/media-gfx/simple-scan/simple-scan-44.0.ebuild new file mode 100644 index 000000000000..120c5a46df80 --- /dev/null +++ b/media-gfx/simple-scan/simple-scan-44.0.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) +inherit gnome.org gnome2-utils meson python-any-r1 vala xdg + +DESCRIPTION="Simple document scanning utility" +HOMEPAGE="https://gitlab.gnome.org/GNOME/simple-scan" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="colord webp" + +DEPEND=" + >=dev-libs/glib-2.38:2 + >=x11-libs/gtk+-3.24:3 + >=gui-libs/libhandy-1.6.0:1 + >=sys-libs/zlib-1.2.3.1:= + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + >=dev-libs/libgusb-0.2.7 + colord? ( >=x11-misc/colord-0.1.24:=[udev(+)] ) + webp? ( media-libs/libwebp:= ) + >=media-gfx/sane-backends-1.0.20 +" +RDEPEND="${DEPEND} + x11-misc/xdg-utils +" +BDEPEND=" + ${PYTHON_DEPS} + $(vala_depend) + dev-libs/libxml2:2 + dev-util/itstool + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + gui-libs/libhandy:1[vala] + dev-libs/libgusb[vala] + colord? ( x11-misc/colord[vala] ) +" + +PATCHES=( + # Add control for optional dependencies + "${FILESDIR}"/40.0-add-control-optional-deps.patch +) + +src_prepare() { + default + vala_setup + xdg_environment_reset +} + +src_configure() { + local emesonargs=( + $(meson_use colord) + -Dpackagekit=false + $(meson_use webp) + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/media-gfx/xsane/files/xsane-0.999-configure-clang16.patch b/media-gfx/xsane/files/xsane-0.999-configure-clang16.patch new file mode 100644 index 000000000000..0e0ee342a3de --- /dev/null +++ b/media-gfx/xsane/files/xsane-0.999-configure-clang16.patch @@ -0,0 +1,12 @@ +https://bugs.gentoo.org/885311 +https://bugs.gentoo.org/899806 +--- a/m4/sane.m4 ++++ b/m4/sane.m4 +@@ -44,6 +44,7 @@ dnl + AC_TRY_RUN([ + #include + #include ++#include + + int + main () diff --git a/media-gfx/xsane/xsane-0.999-r4.ebuild b/media-gfx/xsane/xsane-0.999-r5.ebuild similarity index 83% rename from media-gfx/xsane/xsane-0.999-r4.ebuild rename to media-gfx/xsane/xsane-0.999-r5.ebuild index 78d35099cfd2..351830dee66a 100644 --- a/media-gfx/xsane/xsane-0.999-r4.ebuild +++ b/media-gfx/xsane/xsane-0.999-r5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -18,8 +18,10 @@ SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" IUSE="nls jpeg png tiff gimp lcms ocr" -RDEPEND=" +DEPEND=" + dev-libs/glib:2 media-gfx/sane-backends + sys-libs/zlib x11-libs/gtk+:2 x11-misc/xdg-utils jpeg? ( media-libs/libjpeg-turbo:= ) @@ -28,27 +30,31 @@ RDEPEND=" gimp? ( media-gfx/gimp:0/2 ) lcms? ( media-libs/lcms:2 ) " +RDEPEND="${DEPEND}" PDEPEND="ocr? ( app-text/gocr )" -DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" +PATCHES=( + # Apply multiple fixes from different distributions + "${WORKDIR}"/${PN}-0.998-patches-3 + # Add support for lcms-2 (from Fedora) + "${FILESDIR}"/${PN}-0.999-lcms2.patch + # See bug #885311 and bug #899806 + "${FILESDIR}"/${PN}-0.999-configure-clang16.patch +) + src_prepare() { default - strip-linguas -i po/ #609672 + # bug #609672 + strip-linguas -i po/ - # Apply multiple fixes from different distributions - eapply "${WORKDIR}/${PN}-0.998-patches-3"/ - - # Fix compability with libpng15 wrt #377363 + # Fix compability with libpng15 (bug #377363) sed -i -e 's:png_ptr->jmpbuf:png_jmpbuf(png_ptr):' src/xsane-save.c || die # Fix AR calling directly (bug #442606) sed -i -e 's:ar r:$(AR) r:' lib/Makefile.in || die - # Add support for lcms-2 (from Fedora) - eapply "${FILESDIR}/${PN}-0.999-lcms2.patch" - AT_M4DIR="m4" eautoreconf } diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index 7ef8a6d1c8a2..5029cfca6896 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/codec2/codec2-1.0.5.ebuild b/media-libs/codec2/codec2-1.0.5.ebuild index b5913162c667..045bb8570ffe 100644 --- a/media-libs/codec2/codec2-1.0.5.ebuild +++ b/media-libs/codec2/codec2-1.0.5.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/drowe67/codec2/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0/1.0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86" IUSE="examples test" # Not yet passing, but infrastructure added to run diff --git a/media-libs/kvazaar/Manifest b/media-libs/kvazaar/Manifest index b4dc3234b543..a3305dc8296a 100644 --- a/media-libs/kvazaar/Manifest +++ b/media-libs/kvazaar/Manifest @@ -1,2 +1,3 @@ DIST greatest-1.2.1.tar.gz 19792 BLAKE2B e6abd20eebf3223311fcd62e341595318dd00f192cf4b62ef3f0443a3e10fee71f4283f836931fee52672f2b37398f86046ae97220c2b6c6045fec9f9bf5cda8 SHA512 c17162fa222c84fef7826ba5202aae573d516a71bc2c59c8991db2a76f7069ed53d00aaab1b792e0c7e4243fae38183764c2e7ae0a61faf2ff13e78b29ccc211 DIST kvazaar-2.1.0.tar.gz 605962 BLAKE2B 0d61af55ab0caef2247524e8c564f9c24cfb479fcbd721f43e4409899e1a187a0e6de0b08a052cfb144ea31da906ba1c2160d6712828d6e55f0826d87f5c96ba SHA512 14b29f48908e004cf1b4f1f0c338b7b134a34140edcd58a645b4529c506cd567ebe3d56aa66e469dc417e1baa29bb8a476825b78825e810ac68a029191ad32ec +DIST kvazaar-2.2.0.tar.gz 617414 BLAKE2B 6ddb88ddea315d80e0af87a13127f235c184ae829492d1ff456899d2a24669b3deca25a320a8bdcf6e2cebc2c24e33c0678ac7bf51d2634a46781f66497bed54 SHA512 476abe251d7f555911851bc5a7dca84a96c0cd243c6a45dd59b808b8adf2b0787f69101a061bd48dfb6fe54a0aea046417f21fc826f14f518cada25c6d22aec4 diff --git a/media-libs/kvazaar/kvazaar-2.2.0.ebuild b/media-libs/kvazaar/kvazaar-2.2.0.ebuild new file mode 100644 index 000000000000..0fe90be9a1f7 --- /dev/null +++ b/media-libs/kvazaar/kvazaar-2.2.0.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +GREATEST_PV="1.2.1" + +if [[ ${PV} = *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/ultravideo/kvazaar" +else + SRC_URI="https://github.com/ultravideo/kvazaar/archive/v${PV}.tar.gz -> ${P}.tar.gz + test? ( https://github.com/silentbicycle/greatest/archive/v${GREATEST_PV}.tar.gz -> greatest-${GREATEST_PV}.tar.gz )" + KEYWORDS="~amd64 ~mips ~riscv" +fi +inherit autotools flag-o-matic multilib-minimal + +DESCRIPTION="Open-source HEVC encoder" +HOMEPAGE="http://ultravideo.cs.tut.fi/ https://github.com/ultravideo/kvazaar" + +LICENSE="LGPL-2.1" +# subslot = libkvazaar major +SLOT="0/6" +IUSE="static-libs test" +REQUIRED_USE="test? ( static-libs )" + +RESTRICT="!test? ( test )" +ASM_DEP=">=dev-lang/yasm-1.2.0" +RDEPEND="" +DEPEND="${RDEPEND} + test? ( + media-video/ffmpeg + media-video/hevc-hm + ) + abi_x86_32? ( ${ASM_DEP} ) + abi_x86_64? ( ${ASM_DEP} ) +" + +src_prepare() { + default + sed -e "/^dist_doc_DATA/s/COPYING //" -i Makefile.am || die + eautoreconf + if use test && [[ ${PV} != *9999 ]]; then + # https://bugs.gentoo.org/show_bug.cgi?id=595932 + rmdir "${S}/greatest" || die + mv "${WORKDIR}/greatest-${GREATEST_PV}" "${S}/greatest" || die + fi + # Some m4 macros append Werror, we do not want that. + append-flags "-Wno-error" +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + --disable-werror \ + $(use_enable static-libs static) +} + +multilib_src_test() { + KVZ_TEST_VALGRIND=0 emake check +} + +multilib_src_install_all() { + find "${ED}" -name '*.la' -delete || die +} diff --git a/media-libs/kvazaar/kvazaar-9999.ebuild b/media-libs/kvazaar/kvazaar-9999.ebuild index d44b2a4ef699..eae2fc58decc 100644 --- a/media-libs/kvazaar/kvazaar-9999.ebuild +++ b/media-libs/kvazaar/kvazaar-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 GREATEST_PV="1.2.1" @@ -11,7 +11,7 @@ if [[ ${PV} = *9999 ]] ; then else SRC_URI="https://github.com/ultravideo/kvazaar/archive/v${PV}.tar.gz -> ${P}.tar.gz test? ( https://github.com/silentbicycle/greatest/archive/v${GREATEST_PV}.tar.gz -> greatest-${GREATEST_PV}.tar.gz )" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + KEYWORDS="~amd64 ~mips" fi inherit autotools flag-o-matic multilib-minimal @@ -30,6 +30,7 @@ RDEPEND="" DEPEND="${RDEPEND} test? ( media-video/ffmpeg + media-video/hevc-hm ) abi_x86_32? ( ${ASM_DEP} ) abi_x86_64? ( ${ASM_DEP} ) @@ -46,11 +47,6 @@ src_prepare() { fi # Some m4 macros append Werror, we do not want that. append-flags "-Wno-error" - - # valgrind isn't available on all archs - # also, the valgrind tests fail with new ffmpeg (upstream only tests again ffmpeg 2.6.3) - # see https://github.com/ultravideo/kvazaar/issues/216 - find "${S}/tests/" -type f -exec grep -q 'valgrind_test' '{}' \; -delete || die } multilib_src_configure() { @@ -59,6 +55,10 @@ multilib_src_configure() { $(use_enable static-libs static) } +multilib_src_test() { + KVZ_TEST_VALGRIND=0 emake check +} + multilib_src_install_all() { find "${ED}" -name '*.la' -delete || die } diff --git a/media-libs/libaom/Manifest b/media-libs/libaom/Manifest index c87565f3d8c8..8472f6c06f8f 100644 --- a/media-libs/libaom/Manifest +++ b/media-libs/libaom/Manifest @@ -1,3 +1,4 @@ DIST libaom-3.4.0.tar.gz 5175838 BLAKE2B 7a38cc1a1871f044018a8ebf5022810b753b099ad61e0c6e2625a0480946e8b5e066fd1e1abc5523e817025c8a59d6f1092c12d632c5b602cf3a80f6ef8daa0e SHA512 8de5e7eae96b182ceb33ce2c66fde784349a7a117371177102c358cc9b2cad75bebe2849fdf8ce57ae149a38b43419b51e54e5475cb781ed3d5953081127b478 DIST libaom-3.5.0.tar.gz 5206715 BLAKE2B d47ddb864c909c972f692667177417daef0350124a096547eacc83ab3630227fe7a23e95f3988a2109c580f9a87ba30a58bcc58be1a2e24fe694eb01655a4861 SHA512 370c529a84d54c95f05c5a3b3edadd1cca95eeccd5a6b5454e574211c6dd9bf5bd33ab67b43587c6de37688fe546ea9e16de0ab2d721e965143b7e8c85db6fd4 +DIST libaom-3.6.0-testdata.tar.gz 498554450 BLAKE2B bbc84e9d3fd91272fa6e30a19f625fb5b71b1ff6c622982202c298e45c7a331338ed316942d7c0ab00f5ef37d442e1a45a62a30be70f8c1315caac9e7742903e SHA512 a86303a2486fca9a85cdb9275c1715a3862df92021967a5a0d97f8aa6862dd6cad1d65e1377fbee3f1b21d73c770e10ece4041a13bf57e6f2a1bb39357b00316 DIST libaom-3.6.0.tar.gz 5258526 BLAKE2B bf97c74f3e59e3cc2431e7b7e3494beffde1b659d1a8f8775b4b47da0c7314b8bf5b9bdf14a9d1d47a8378271f49c9e26676e73509f9e910f1d5a01e79b575bc SHA512 28df178f43f26a064474f7d9c79882b4c04b66fed16f904ac9b37386912660e2af88c90672ec04eed99aef104156cf1e72040fa975895522dca7b88760b138bc diff --git a/media-libs/libaom/libaom-3.6.0.ebuild b/media-libs/libaom/libaom-3.6.0.ebuild index b4074f6c48c7..a4a3923a8c6a 100644 --- a/media-libs/libaom/libaom-3.6.0.ebuild +++ b/media-libs/libaom/libaom-3.6.0.ebuild @@ -10,7 +10,19 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://aomedia.googlesource.com/aom" else - SRC_URI="https://storage.googleapis.com/aom-releases/${P}.tar.gz" + # To update test data tarball, follow these steps: + # 1. Clone the upstream repo and check out the relevant tag, + # or download the release tarball + # 2. Regular cmake configure (options don't matter here): + # cd build && cmake .. + # 3. Set LIBAOM_TEST_DATA_PATH to the directory you want and + # run the "make testdata" target: + # LIBAOM_TEST_DATA_PATH=../libaom-1.2.3-testdata make testdata + # This will download the test data from the internet. + # 4. Create a tarball out of that directory. + # cd .. && tar cvzf libaom-1.2.3-testdata.tar.gz libaom-1.2.3-testdata + SRC_URI="https://storage.googleapis.com/aom-releases/${P}.tar.gz + test? ( https://dev.gentoo.org/~ionen/distfiles/${P}-testdata.tar.gz )" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" fi @@ -23,8 +35,7 @@ IUSE="doc +examples test" IUSE="${IUSE} cpu_flags_x86_mmx cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3" IUSE="${IUSE} cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_avx cpu_flags_x86_avx2" IUSE="${IUSE} cpu_flags_arm_neon" -# Tests need more wiring up -RESTRICT="!test? ( test ) test" +RESTRICT="!test? ( test )" REQUIRED_USE=" cpu_flags_x86_sse2? ( cpu_flags_x86_mmx ) @@ -97,7 +108,7 @@ multilib_src_configure() { } multilib_src_test() { - "${BUILD_DIR}"/test_libaom || die + LIBAOM_TEST_DATA_PATH="${WORKDIR}/${P}-testdata" "${BUILD_DIR}"/test_libaom || die } multilib_src_install() { diff --git a/media-libs/libaom/libaom-9999.ebuild b/media-libs/libaom/libaom-9999.ebuild index b4074f6c48c7..a4a3923a8c6a 100644 --- a/media-libs/libaom/libaom-9999.ebuild +++ b/media-libs/libaom/libaom-9999.ebuild @@ -10,7 +10,19 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://aomedia.googlesource.com/aom" else - SRC_URI="https://storage.googleapis.com/aom-releases/${P}.tar.gz" + # To update test data tarball, follow these steps: + # 1. Clone the upstream repo and check out the relevant tag, + # or download the release tarball + # 2. Regular cmake configure (options don't matter here): + # cd build && cmake .. + # 3. Set LIBAOM_TEST_DATA_PATH to the directory you want and + # run the "make testdata" target: + # LIBAOM_TEST_DATA_PATH=../libaom-1.2.3-testdata make testdata + # This will download the test data from the internet. + # 4. Create a tarball out of that directory. + # cd .. && tar cvzf libaom-1.2.3-testdata.tar.gz libaom-1.2.3-testdata + SRC_URI="https://storage.googleapis.com/aom-releases/${P}.tar.gz + test? ( https://dev.gentoo.org/~ionen/distfiles/${P}-testdata.tar.gz )" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" fi @@ -23,8 +35,7 @@ IUSE="doc +examples test" IUSE="${IUSE} cpu_flags_x86_mmx cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3" IUSE="${IUSE} cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_avx cpu_flags_x86_avx2" IUSE="${IUSE} cpu_flags_arm_neon" -# Tests need more wiring up -RESTRICT="!test? ( test ) test" +RESTRICT="!test? ( test )" REQUIRED_USE=" cpu_flags_x86_sse2? ( cpu_flags_x86_mmx ) @@ -97,7 +108,7 @@ multilib_src_configure() { } multilib_src_test() { - "${BUILD_DIR}"/test_libaom || die + LIBAOM_TEST_DATA_PATH="${WORKDIR}/${P}-testdata" "${BUILD_DIR}"/test_libaom || die } multilib_src_install() { diff --git a/media-libs/libv4l/Manifest b/media-libs/libv4l/Manifest index eaca215a25f2..9a88ad1c15fe 100644 --- a/media-libs/libv4l/Manifest +++ b/media-libs/libv4l/Manifest @@ -1 +1,2 @@ DIST v4l-utils-1.22.1.tar.bz2 2086238 BLAKE2B a3f01a17ea7c8925c74dd883d30b42f54b7926d253dac79e4cadaba43abc33672804257b3b92e5aa640ead6b5aaaa2458f05e21642044d7dea77e5580a8dbe9a SHA512 8a634d8995d13f453dfaf90ca5d0dfb26f2f4b10a0d200d76a949c46f77040d12fc0a5b35e05d7b1ba68bcfc85a445be5a5ab1d4a7d4eabfe3a254038ccc6170 +DIST v4l-utils-1.24.1.tar.bz2 2238340 BLAKE2B 1702918699d47b17467e012c2b1875c58851175c1007351a3b40d0b0fa40437eb695efa9e21afe3351f66780899d45798eef7f23c90a4831bface70a245b8a54 SHA512 1e82ba125285e875bf4a216adedab9147009e6af1aadd79a3a1770231d3c96ec29245b33e75f69a9ce1b25011e71746db242c778ac3369148de1e9de2e318663 diff --git a/media-libs/libv4l/libv4l-1.24.1.ebuild b/media-libs/libv4l/libv4l-1.24.1.ebuild new file mode 100644 index 000000000000..f740eb8669a1 --- /dev/null +++ b/media-libs/libv4l/libv4l-1.24.1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools linux-info multilib-minimal + +MY_P="v4l-utils-${PV}" + +DESCRIPTION="Separate libraries ebuild from upstream v4l-utils package" +HOMEPAGE="https://git.linuxtv.org/v4l-utils.git" +SRC_URI="https://linuxtv.org/downloads/v4l-utils/${MY_P}.tar.bz2" + +LICENSE="LGPL-2.1+" +SLOT="0/0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="dvb jpeg" + +RDEPEND=" + dvb? ( virtual/libudev[${MULTILIB_USEDEP}] ) + !elibc_glibc? ( sys-libs/argp-standalone ) + jpeg? ( >=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}] ) + !media-tv/v4l2-ctl + !> config.mk <<-EOF || die "writing config.mk failed" + # Misc stuff + BUILD_FIASCO = N + SYMLINK = ln -sf + + # These vars let src_test work by default + PKGDIR_DEFAULT = ${T}/netpbm + RESULTDIR_DEFAULT = ${T}/netpbm-test + + # Toolchain options + CC = $(tc-getCC) -Wall + LD = \$(CC) + CC_FOR_BUILD = $(tc-getBUILD_CC) + LD_FOR_BUILD = \$(CC_FOR_BUILD) + AR = $(tc-getAR) + RANLIB = $(tc-getRANLIB) + PKG_CONFIG = $(tc-getPKG_CONFIG) + + STRIPFLAG = + CFLAGS_SHLIB = -fPIC + CFLAGS_FOR_BUILD += $(netpbm_cflags_for_build) + + LDRELOC = \$(LD) -r + LDSHLIB = $(netpbm_ldshlib) + LINKER_CAN_DO_EXPLICIT_LIBRARY = N # we can, but dont want to + LINKERISCOMPILER = Y + NETPBMLIBSUFFIX = $(netpbm_libsuffix) + NETPBMLIBTYPE = $(netpbm_libtype) + STATICLIB_TOO = $(usex static-libs Y N) + + # The var is called SSE, but the code is actually SSE2. + WANT_SSE = $(usex cpu_flags_x86_sse2 Y N) + + # Gentoo build options + TIFFLIB = $(netpbm_config_lib tiff) + # Let tiff worry about its own dependencies #395753 + TIFFLIB_NEEDS_JPEG = N + TIFFLIB_NEEDS_Z = N + JPEGLIB = $(netpbm_config_lib jpeg) + PNGLIB = $(netpbm_config_lib png) + ZLIB = $($(tc-getPKG_CONFIG) --libs zlib) + LINUXSVGALIB = $(netpbm_config_lib svga vga) + XML2_LIBS = $(netpbm_config_lib xml xml2) + JBIGLIB = $(netpbm_config_lib jbig) + JBIGHDR_DIR = + JASPERLIB = NONE + JASPERHDR_DIR = + URTLIB = $(netpbm_config_lib rle) + URTHDR_DIR = + X11LIB = $(netpbm_config_lib X X11) + X11HDR_DIR = + EOF +} + +src_compile() { + emake -j1 pm_config.h version.h manual_importinc #149843 + emake +} + +src_test() { + # The code wants to install everything first and then test the result. + emake install.{bin,lib,data} + emake check +} + +src_install() { + # Subdir make targets like to use `mkdir` all over the place + # without any actual dependencies, thus the -j1. + emake -j1 package pkgdir="${ED}"/usr + + if [[ $(get_libdir) != "lib" ]] ; then + mv "${ED}"/usr/lib "${ED}"/usr/$(get_libdir) || die + fi + + # Remove cruft that we don't need, and move around stuff we want + rm "${ED}"/usr/{README,VERSION,{pkgconfig,config}_template,pkginfo} || die + + dodir /usr/share + mv "${ED}"/usr/misc "${ED}"/usr/share/netpbm || die + + doman userguide/*.[0-9] + dodoc README + + cd doc || die + dodoc HISTORY Netpbm.programming USERDOC + docinto html + dodoc -r *.html + dodoc -r ../userguide/*.html +} diff --git a/media-libs/netpbm/netpbm-11.1.0-r2.ebuild b/media-libs/netpbm/netpbm-11.1.1.ebuild similarity index 100% rename from media-libs/netpbm/netpbm-11.1.0-r2.ebuild rename to media-libs/netpbm/netpbm-11.1.1.ebuild diff --git a/media-libs/rubberband/rubberband-3.1.2.ebuild b/media-libs/rubberband/rubberband-3.1.2.ebuild index be550007a6d4..021e7a03c3e6 100644 --- a/media-libs/rubberband/rubberband-3.1.2.ebuild +++ b/media-libs/rubberband/rubberband-3.1.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND=" diff --git a/media-plugins/Manifest.gz b/media-plugins/Manifest.gz index 0be4177512a9..270de08d6660 100644 Binary files a/media-plugins/Manifest.gz and b/media-plugins/Manifest.gz differ diff --git a/media-plugins/libvisual-plugins/Manifest b/media-plugins/libvisual-plugins/Manifest index d9e9f96971e1..c4b39d156a99 100644 --- a/media-plugins/libvisual-plugins/Manifest +++ b/media-plugins/libvisual-plugins/Manifest @@ -1 +1,2 @@ DIST libvisual-plugins-0.4.1.tar.bz2 687994 BLAKE2B 5899580c3b4f5959a5105b79565bd69d87973a38c3d860fb480d88a29846d3017b207ec318ffbd4a2e47382207ccd04cb043a99b68e76f0690cf77fa270e8722 SHA512 db80b081615e129d4bea34c7d99af1978bd1b569f4a1f17cfbbe3cadafc954085552c5944198f9c86f43aa367460d3ca5b4e4ea2aacee4f78dce9ff802a80663 +DIST libvisual-plugins-0.4.2.tar.bz2 731700 BLAKE2B 9a803c2b545fe854959043a37123089f4a215fa8139fc72a520f6cffccb004f347709ea68c273dccf60373a957ecd0aaf7ed0fd3319d431c1f65dcfe10432a95 SHA512 16015bad0a898d0990ba9d5a1fe2ab2d649b5db8b965cc00fa62b095033dc8cf27559e79cc49099b5b0a1d679f1f5f6ba9ccf2eac3ac87ebe48da2e64554a568 diff --git a/media-plugins/libvisual-plugins/libvisual-plugins-0.4.2.ebuild b/media-plugins/libvisual-plugins/libvisual-plugins-0.4.2.ebuild new file mode 100644 index 000000000000..00630b2e9cde --- /dev/null +++ b/media-plugins/libvisual-plugins/libvisual-plugins-0.4.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit multilib-minimal + +DESCRIPTION="collection of visualization plugins for use with the libvisual framework" +HOMEPAGE="http://libvisual.org/" +SRC_URI="https://github.com/Libvisual/libvisual/releases/download/${P}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0.4" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="alsa debug gstreamer gtk jack mplayer opengl portaudio pulseaudio" + +RDEPEND=">=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] + ~media-libs/libvisual-${PV}[${MULTILIB_USEDEP}] + >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] + >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}] + >=x11-libs/libXrender-0.9.8[${MULTILIB_USEDEP}] + alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] ) + gstreamer? ( media-libs/gstreamer[${MULTILIB_USEDEP}] ) + gtk? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] ) + jack? ( virtual/jack[${MULTILIB_USEDEP}] ) + opengl? ( + >=virtual/glu-9.0-r1[${MULTILIB_USEDEP}] + >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] + ) + portaudio? ( media-libs/portaudio[${MULTILIB_USEDEP}] ) + pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] ) +" +BDEPEND=">=virtual/pkgconfig-0-r1" + +DEPEND="${RDEPEND} + >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}]" + +DOCS=( AUTHORS ChangeLog NEWS README TODO ) + +multilib_src_configure() { + ECONF_SOURCE=${S} \ + econf \ + $(use_enable jack) \ + $(use_enable gtk gdkpixbuf-plugin) \ + $(use_enable gstreamer gstreamer-plugin) \ + $(use_enable alsa) \ + $(use_enable mplayer) \ + --enable-inputdebug \ + $(use_enable opengl gltest) \ + $(use_enable opengl nastyfft) \ + $(use_enable opengl madspin) \ + $(use_enable opengl flower) \ + $(use_enable debug) \ + $(use_enable portaudio) \ + $(use_enable pulseaudio) +} + +multilib_src_install_all() { + einstalldocs + find "${D}" -name "*.la" -delete || die +} diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index 2691891cf39e..eb400c2bc39b 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/ardour/Manifest b/media-sound/ardour/Manifest index c05def17cf61..33ef2c14d55b 100644 --- a/media-sound/ardour/Manifest +++ b/media-sound/ardour/Manifest @@ -1,4 +1,2 @@ DIST Ardour-6.9.0.tar.bz2 12297369 BLAKE2B 62037130b9f2d15a7f527b549c552a281105298dc85e3019d0f7ac09cb791f2b5460c4a7bd2f2098ccade6b87c70a16e6414691d90ec4baafeb6065f26d10a66 SHA512 ace45f5bfe6d0c9e4bb1712ae53ebaee2f15f883045650cae3ddcae251d4fd2f645ba745effb739b47c73a0568ae9e8ae443b711dd610584e04575fd9046b234 -DIST Ardour-7.1.0.tar.bz2 12731494 BLAKE2B 1473d89089b378db9d7cb665d0d3fb9980abe5344e3e35114352141116547490fba1446d61c1ff4ee1262ac114e78baec994a4671e8362a1c146ff7f6020332d SHA512 e5fb26a03059eb96df3000977544f622e30aae0772f9265f5acb7da8f88460624dfed500423786975d69a6629821340dd74a03343f2c7ff70f959434e795c0fd -DIST Ardour-7.2.0.tar.bz2 12882609 BLAKE2B fe4912e4e6be318605f41cbd58ea51711d6ae6537c673c5534ff48a74455e54d92bcb6aa14b18b0014d8ebf4463d630e817696013b5b56255529183471a51566 SHA512 a8e1337324eed503e864f8fe3da34410b2a21e61a2b243a27ac68ac4d41b59ac3417e7713497f38f310a57b8d9885e758b99b00fec992b77756076a86f5ef7b3 DIST Ardour-7.3.0.tar.bz2 12897398 BLAKE2B 518de10fd43220e843c775c9374347cf827562ff979a99ecdb9507f69daad642345a1c2ddec6f601511b599167a6904905dcdd25ac15f71616c3cb432897545d SHA512 4c0119768015aea447ea5c4ef15708a6440e189bd3578aca74b8ea2cac86920a8c8bd975e03f2af25108f76231d8afccf0003e6a2f8de1de28bcdce9085fe98c diff --git a/media-sound/ardour/ardour-7.1.ebuild b/media-sound/ardour/ardour-7.1.ebuild deleted file mode 100644 index 2fb765891251..000000000000 --- a/media-sound/ardour/ardour-7.1.ebuild +++ /dev/null @@ -1,185 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{9..11} ) -PYTHON_REQ_USE='threads(+)' -PLOCALES="cs de el en_GB es eu fr it ja nn pl pt pt_PT ru sv zh" -inherit toolchain-funcs flag-o-matic plocale python-any-r1 waf-utils desktop xdg - -DESCRIPTION="Digital Audio Workstation" -HOMEPAGE="https://ardour.org/" - -if [[ ${PV} == *9999* ]]; then - EGIT_REPO_URI="https://git.ardour.org/ardour/ardour.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - SRC_URI="https://dev.gentoo.org/~fordfrog/distfiles/Ardour-${PV}.0.tar.bz2" - S="${WORKDIR}/Ardour-${PV}.0" -fi - -LICENSE="GPL-2" -SLOT="7" -IUSE="doc jack nls phonehome pulseaudio cpu_flags_ppc_altivec cpu_flags_x86_sse cpu_flags_x86_mmx cpu_flags_x86_3dnow" - -RDEPEND=" - dev-cpp/glibmm:2 - dev-cpp/gtkmm:2.4 - dev-libs/boost:= - dev-libs/glib:2 - dev-libs/libsigc++:2 - dev-libs/libxml2:2 - dev-libs/libxslt - >=gnome-base/libgnomecanvas-2 - media-libs/alsa-lib - media-libs/aubio - media-libs/flac:= - media-libs/freetype:2 - media-libs/libart_lgpl - media-libs/liblo - media-libs/liblrdf - media-libs/libsamplerate - media-libs/libsndfile - media-libs/libsoundtouch - media-libs/raptor:2 - media-libs/rubberband - media-libs/taglib - media-libs/vamp-plugin-sdk - net-misc/curl - sys-libs/readline:0= - sci-libs/fftw:3.0[threads] - virtual/libusb:1 - x11-libs/cairo - x11-libs/gtk+:2 - x11-libs/pango - jack? ( virtual/jack ) - pulseaudio? ( media-sound/pulseaudio ) - media-libs/lilv - media-libs/sratom - dev-libs/sord - media-libs/suil[gtk2] - media-libs/lv2" -# !bundled-libs? ( media-sound/fluidsynth ) at least libltc is missing to be able to unbundle... - -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - dev-util/itstool - sys-devel/gettext - virtual/pkgconfig - doc? ( app-doc/doxygen[dot] ) - jack? ( virtual/jack )" - -PATCHES=( - "${FILESDIR}/${PN}-6.8-metadata.patch" -) - -pkg_pretend() { - [[ $(tc-getLD) == *gold* ]] && (has_version sci-libs/fftw[openmp] || has_version sci-libs/fftw[threads]) && \ - ewarn "Linking with gold linker might produce broken executable, see bug #733972" -} - -pkg_setup() { - if has_version \>=dev-libs/libsigc++-2.6 ; then - append-cxxflags -std=c++11 - fi - python-any-r1_pkg_setup -} - -src_prepare() { - xdg_src_prepare - - sed 's/'full-optimization\'\ :\ \\[.*'/'full-optimization\'\ :\ \'\','/' -i "${S}"/wscript || die - MARCH=$(get-flag march) - OPTFLAGS="" - if use cpu_flags_x86_sse; then - if [[ ${MARCH} == "i686" ]] || [[ ${MARCH} == "i486" ]]; then - elog "You enabled sse but use an march that does not support sse!" - elog "We add -msse to the flags now, but please consider switching your march in make.conf!" - fi - OPTFLAGS="sse" - fi - if use cpu_flags_x86_mmx; then - if [[ ${MARCH} == "i486" ]]; then - elog "You enabled mmx with i486 set as march! You have been warned!" - fi - OPTFLAGS="${OPTFLAGS} mmx" - fi - if use cpu_flags_x86_3dnow; then - OPTFLAGS="${OPTFLAGS} 3dnow" - fi - sed 's/flag_line\ =\ o.*/flag_line\ =\ \": '"${OPTFLAGS}"' just some place holders\"/' \ - -i "${S}"/wscript || die - sed 's/cpu\ ==\ .*/cpu\ ==\ "LeaveMarchAsIs":/' -i "${S}"/wscript || die - append-flags "-lboost_system" - python_fix_shebang "${S}"/wscript - python_fix_shebang "${S}"/waf - my_lcmsg() { - rm -f {gtk2_ardour,gtk2_ardour/appdata,libs/ardour,libs/gtkmm2ext}/po/${1}.po - } - plocale_for_each_disabled_locale my_lcmsg -} - -src_configure() { - # avoid bug https://bugs.gentoo.org/800067 - local -x AS="$(tc-getCC) -c" - - local backends="alsa,dummy" - use jack && backends+=",jack" - use pulseaudio && backends+=",pulseaudio" - - tc-export CC CXX - mkdir -p "${D}" - local myconf=( - --configdir=/etc - --freedesktop - --noconfirm - --optimize - --with-backends=${backends} - $({ use cpu_flags_ppc_altivec || use cpu_flags_x86_sse; } && echo "--fpu-optimization" || echo "--no-fpu-optimization") - $(usex doc "--docs" '') - $(usex nls "--nls" "--no-nls") - $(usex phonehome "--phone-home" "--no-phone-home") - # not possible right now --use-external-libs - ) - - waf-utils_src_configure "${myconf[@]}" -} - -src_compile() { - waf-utils_src_compile - use nls && waf-utils_src_compile i18n -} - -src_install() { - local s - - waf-utils_src_install - - mv ${PN}.1 ${PN}${SLOT}.1 || die - doman ${PN}${SLOT}.1 - - for s in 16 22 32 48 256 512; do - newicon -s ${s} gtk2_ardour/resources/Ardour-icon_${s}px.png ardour${SLOT}.png - done - - # the build system still installs ardour6.png files so we get rid of those to not conflict with ardour:6 - find "${D}/usr/share/icons/" -name ardour6.png -delete - - sed -i \ - -e "s/\(^Name=\).*/\1Ardour ${SLOT}/" \ - -e 's/;AudioEditing;/;X-AudioEditing;/' \ - build/gtk2_ardour/ardour${SLOT}.desktop || die - domenu build/gtk2_ardour/ardour${SLOT}.desktop - - insinto /usr/share/mime/packages - newins build/gtk2_ardour/ardour.xml ardour${SLOT}.xml -} - -pkg_postinst() { - xdg_pkg_postinst - - elog "Please do _not_ report problems with the package to ${PN} upstream." - elog "If you think you've found a bug, check the upstream binary package" - elog "before you report anything to upstream." -} diff --git a/media-sound/ardour/ardour-7.2.ebuild b/media-sound/ardour/ardour-7.2.ebuild deleted file mode 100644 index 2fb765891251..000000000000 --- a/media-sound/ardour/ardour-7.2.ebuild +++ /dev/null @@ -1,185 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{9..11} ) -PYTHON_REQ_USE='threads(+)' -PLOCALES="cs de el en_GB es eu fr it ja nn pl pt pt_PT ru sv zh" -inherit toolchain-funcs flag-o-matic plocale python-any-r1 waf-utils desktop xdg - -DESCRIPTION="Digital Audio Workstation" -HOMEPAGE="https://ardour.org/" - -if [[ ${PV} == *9999* ]]; then - EGIT_REPO_URI="https://git.ardour.org/ardour/ardour.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - SRC_URI="https://dev.gentoo.org/~fordfrog/distfiles/Ardour-${PV}.0.tar.bz2" - S="${WORKDIR}/Ardour-${PV}.0" -fi - -LICENSE="GPL-2" -SLOT="7" -IUSE="doc jack nls phonehome pulseaudio cpu_flags_ppc_altivec cpu_flags_x86_sse cpu_flags_x86_mmx cpu_flags_x86_3dnow" - -RDEPEND=" - dev-cpp/glibmm:2 - dev-cpp/gtkmm:2.4 - dev-libs/boost:= - dev-libs/glib:2 - dev-libs/libsigc++:2 - dev-libs/libxml2:2 - dev-libs/libxslt - >=gnome-base/libgnomecanvas-2 - media-libs/alsa-lib - media-libs/aubio - media-libs/flac:= - media-libs/freetype:2 - media-libs/libart_lgpl - media-libs/liblo - media-libs/liblrdf - media-libs/libsamplerate - media-libs/libsndfile - media-libs/libsoundtouch - media-libs/raptor:2 - media-libs/rubberband - media-libs/taglib - media-libs/vamp-plugin-sdk - net-misc/curl - sys-libs/readline:0= - sci-libs/fftw:3.0[threads] - virtual/libusb:1 - x11-libs/cairo - x11-libs/gtk+:2 - x11-libs/pango - jack? ( virtual/jack ) - pulseaudio? ( media-sound/pulseaudio ) - media-libs/lilv - media-libs/sratom - dev-libs/sord - media-libs/suil[gtk2] - media-libs/lv2" -# !bundled-libs? ( media-sound/fluidsynth ) at least libltc is missing to be able to unbundle... - -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - dev-util/itstool - sys-devel/gettext - virtual/pkgconfig - doc? ( app-doc/doxygen[dot] ) - jack? ( virtual/jack )" - -PATCHES=( - "${FILESDIR}/${PN}-6.8-metadata.patch" -) - -pkg_pretend() { - [[ $(tc-getLD) == *gold* ]] && (has_version sci-libs/fftw[openmp] || has_version sci-libs/fftw[threads]) && \ - ewarn "Linking with gold linker might produce broken executable, see bug #733972" -} - -pkg_setup() { - if has_version \>=dev-libs/libsigc++-2.6 ; then - append-cxxflags -std=c++11 - fi - python-any-r1_pkg_setup -} - -src_prepare() { - xdg_src_prepare - - sed 's/'full-optimization\'\ :\ \\[.*'/'full-optimization\'\ :\ \'\','/' -i "${S}"/wscript || die - MARCH=$(get-flag march) - OPTFLAGS="" - if use cpu_flags_x86_sse; then - if [[ ${MARCH} == "i686" ]] || [[ ${MARCH} == "i486" ]]; then - elog "You enabled sse but use an march that does not support sse!" - elog "We add -msse to the flags now, but please consider switching your march in make.conf!" - fi - OPTFLAGS="sse" - fi - if use cpu_flags_x86_mmx; then - if [[ ${MARCH} == "i486" ]]; then - elog "You enabled mmx with i486 set as march! You have been warned!" - fi - OPTFLAGS="${OPTFLAGS} mmx" - fi - if use cpu_flags_x86_3dnow; then - OPTFLAGS="${OPTFLAGS} 3dnow" - fi - sed 's/flag_line\ =\ o.*/flag_line\ =\ \": '"${OPTFLAGS}"' just some place holders\"/' \ - -i "${S}"/wscript || die - sed 's/cpu\ ==\ .*/cpu\ ==\ "LeaveMarchAsIs":/' -i "${S}"/wscript || die - append-flags "-lboost_system" - python_fix_shebang "${S}"/wscript - python_fix_shebang "${S}"/waf - my_lcmsg() { - rm -f {gtk2_ardour,gtk2_ardour/appdata,libs/ardour,libs/gtkmm2ext}/po/${1}.po - } - plocale_for_each_disabled_locale my_lcmsg -} - -src_configure() { - # avoid bug https://bugs.gentoo.org/800067 - local -x AS="$(tc-getCC) -c" - - local backends="alsa,dummy" - use jack && backends+=",jack" - use pulseaudio && backends+=",pulseaudio" - - tc-export CC CXX - mkdir -p "${D}" - local myconf=( - --configdir=/etc - --freedesktop - --noconfirm - --optimize - --with-backends=${backends} - $({ use cpu_flags_ppc_altivec || use cpu_flags_x86_sse; } && echo "--fpu-optimization" || echo "--no-fpu-optimization") - $(usex doc "--docs" '') - $(usex nls "--nls" "--no-nls") - $(usex phonehome "--phone-home" "--no-phone-home") - # not possible right now --use-external-libs - ) - - waf-utils_src_configure "${myconf[@]}" -} - -src_compile() { - waf-utils_src_compile - use nls && waf-utils_src_compile i18n -} - -src_install() { - local s - - waf-utils_src_install - - mv ${PN}.1 ${PN}${SLOT}.1 || die - doman ${PN}${SLOT}.1 - - for s in 16 22 32 48 256 512; do - newicon -s ${s} gtk2_ardour/resources/Ardour-icon_${s}px.png ardour${SLOT}.png - done - - # the build system still installs ardour6.png files so we get rid of those to not conflict with ardour:6 - find "${D}/usr/share/icons/" -name ardour6.png -delete - - sed -i \ - -e "s/\(^Name=\).*/\1Ardour ${SLOT}/" \ - -e 's/;AudioEditing;/;X-AudioEditing;/' \ - build/gtk2_ardour/ardour${SLOT}.desktop || die - domenu build/gtk2_ardour/ardour${SLOT}.desktop - - insinto /usr/share/mime/packages - newins build/gtk2_ardour/ardour.xml ardour${SLOT}.xml -} - -pkg_postinst() { - xdg_pkg_postinst - - elog "Please do _not_ report problems with the package to ${PN} upstream." - elog "If you think you've found a bug, check the upstream binary package" - elog "before you report anything to upstream." -} diff --git a/media-sound/flacon/flacon-9.4.0.ebuild b/media-sound/flacon/flacon-9.4.0.ebuild index 74f7a97e458b..a304dc15d58e 100644 --- a/media-sound/flacon/flacon-9.4.0.ebuild +++ b/media-sound/flacon/flacon-9.4.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/flacon/flacon/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" BDEPEND=" diff --git a/media-sound/musepack-tools/files/musepack-tools-465-musl.patch b/media-sound/musepack-tools/files/musepack-tools-465-musl.patch new file mode 100644 index 000000000000..f7fb0f771082 --- /dev/null +++ b/media-sound/musepack-tools/files/musepack-tools-465-musl.patch @@ -0,0 +1,24 @@ +Bug: https://bugs.gentoo.org/712978 + +--- a/mpcenc/keyboard.c ++++ b/mpcenc/keyboard.c +@@ -84,6 +84,8 @@ + # define echo_on() (void)0 + # endif + ++# include ++ + int + WaitKey ( void ) + { +--- a/mpcenc/mpcenc.h ++++ b/mpcenc/mpcenc.h +@@ -50,7 +50,7 @@ + # include + #endif + +-#if defined __linux__ ++#if defined __GLIBC__ + # include + #elif defined __FreeBSD__ + # include diff --git a/media-sound/musepack-tools/musepack-tools-465-r2.ebuild b/media-sound/musepack-tools/musepack-tools-465-r2.ebuild index 6b5b76e9cdf3..ed17b264c7fb 100644 --- a/media-sound/musepack-tools/musepack-tools-465-r2.ebuild +++ b/media-sound/musepack-tools/musepack-tools-465-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -29,4 +29,5 @@ RDEPEND=" PATCHES=( "${FILESDIR}"/${P}-gentoo.patch "${FILESDIR}"/${P}-fno-common.patch + "${FILESDIR}"/${P}-musl.patch ) diff --git a/media-sound/yoshimi/Manifest b/media-sound/yoshimi/Manifest index bdf6d0388014..72cf559b0649 100644 --- a/media-sound/yoshimi/Manifest +++ b/media-sound/yoshimi/Manifest @@ -1,2 +1 @@ -DIST yoshimi-2.2.2.1.tar.gz 8038479 BLAKE2B a33d231770981dcc4f2215941c60b3d959eaa93f883cda483d8d97452e37676b8dc1397b4c45bf2e2e63f1da1454c4187ea1709e58d867471ef1fa028f255512 SHA512 edabf5130c71c5fc303f6825e0323cd00b341079e61577772c547f104413646623b5c2a86a0ffd573013b4b84b6fa724161f851ead6d525e7f630d95ab724987 DIST yoshimi-2.2.3.tar.gz 8067566 BLAKE2B 6aadaa08dafc83e7b5eaec88d53ba27fa923012b4ceaa0acd49dc82bd6aa9b255a17477c950fc9ab97ca0c08e8bf1a2f655f24aca28e1d762ea85fc92da0ca42 SHA512 d10829bcc81999c359912c76a1cbdeba4dbc5a31dbca3c54bd31323495c6ae889d50342d8024929076976b7b6deb1dc7829fbd19f9f3618caf2517a014aeccbe diff --git a/media-sound/yoshimi/yoshimi-2.2.2.1.ebuild b/media-sound/yoshimi/yoshimi-2.2.2.1.ebuild deleted file mode 100644 index d37c7559c8db..000000000000 --- a/media-sound/yoshimi/yoshimi-2.2.2.1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake flag-o-matic xdg - -DESCRIPTION="Software synthesizer based on ZynAddSubFX" -HOMEPAGE="https://yoshimi.github.io/" -SRC_URI="https://github.com/${PN^}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="+lv2" - -BDEPEND="virtual/pkgconfig" -DEPEND=" - dev-libs/mxml - media-libs/alsa-lib - media-libs/fontconfig - media-libs/libsndfile - sci-libs/fftw:3.0= - sys-libs/ncurses:0= - sys-libs/readline:0= - sys-libs/zlib - virtual/jack - x11-libs/cairo[X] - x11-libs/fltk:1[opengl] - lv2? ( media-libs/lv2 ) -" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${P}/src" - -DOCS=( ../Changelog ../README.txt ) - -src_prepare() { - cmake_src_prepare - sed -e "/^install.*doc.*DATAROOTDIR/s/${PN}/${PF}/" -i CMakeLists.txt || die - append-cxxflags -lpthread - append-cppflags -lpthread -} - -src_configure() { - local mycmakeargs=( - -DLV2Plugin=$(usex lv2) - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - - # unpack Histories.tar.bz2 to avoid QA issues - pushd "${ED}/usr/share/doc/${PF}" || die - tar xvf Histories.tar.bz2 || die - rm Histories.tar.bz2 - popd -} diff --git a/media-sound/yoshimi/yoshimi-2.2.3.ebuild b/media-sound/yoshimi/yoshimi-2.2.3.ebuild index a7c79e44fa3d..ed78b51a5609 100644 --- a/media-sound/yoshimi/yoshimi-2.2.3.ebuild +++ b/media-sound/yoshimi/yoshimi-2.2.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN^}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="+lv2" BDEPEND="virtual/pkgconfig" diff --git a/media-tv/Manifest.gz b/media-tv/Manifest.gz index 99d979e76118..389b4aa1652e 100644 Binary files a/media-tv/Manifest.gz and b/media-tv/Manifest.gz differ diff --git a/media-tv/v4l-utils/Manifest b/media-tv/v4l-utils/Manifest index eaca215a25f2..9a88ad1c15fe 100644 --- a/media-tv/v4l-utils/Manifest +++ b/media-tv/v4l-utils/Manifest @@ -1 +1,2 @@ DIST v4l-utils-1.22.1.tar.bz2 2086238 BLAKE2B a3f01a17ea7c8925c74dd883d30b42f54b7926d253dac79e4cadaba43abc33672804257b3b92e5aa640ead6b5aaaa2458f05e21642044d7dea77e5580a8dbe9a SHA512 8a634d8995d13f453dfaf90ca5d0dfb26f2f4b10a0d200d76a949c46f77040d12fc0a5b35e05d7b1ba68bcfc85a445be5a5ab1d4a7d4eabfe3a254038ccc6170 +DIST v4l-utils-1.24.1.tar.bz2 2238340 BLAKE2B 1702918699d47b17467e012c2b1875c58851175c1007351a3b40d0b0fa40437eb695efa9e21afe3351f66780899d45798eef7f23c90a4831bface70a245b8a54 SHA512 1e82ba125285e875bf4a216adedab9147009e6af1aadd79a3a1770231d3c96ec29245b33e75f69a9ce1b25011e71746db242c778ac3369148de1e9de2e318663 diff --git a/media-tv/v4l-utils/v4l-utils-1.24.1.ebuild b/media-tv/v4l-utils/v4l-utils-1.24.1.ebuild new file mode 100644 index 000000000000..b04a84c6a468 --- /dev/null +++ b/media-tv/v4l-utils/v4l-utils-1.24.1.ebuild @@ -0,0 +1,119 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools toolchain-funcs udev xdg + +DESCRIPTION="Separate utilities ebuild from upstream v4l-utils package" +HOMEPAGE="https://git.linuxtv.org/v4l-utils.git" +SRC_URI="https://linuxtv.org/downloads/v4l-utils/${P}.tar.bz2" + +LICENSE="GPL-2+ LGPL-2.1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="+bpf dvb opengl qt5 +udev" + +RDEPEND=" + >=media-libs/libv4l-${PV}[dvb?] + bpf? ( + dev-libs/libbpf:= + virtual/libelf:= + ) + udev? ( virtual/libudev ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + opengl? ( dev-qt/qtopengl:5[-gles2(-)] virtual/opengl ) + media-libs/alsa-lib + ) + !media-tv/v4l2-ctl + !/dev/null || + die "${clang} does not support the BPF target. Please check LLVM_TARGETS." + fi +} + +pkg_pretend() { + has_version -b sys-devel/clang && check_llvm +} + +pkg_setup() { + check_llvm +} + +src_prepare() { + default + eautoreconf +} + +src_configure() { + if use qt5; then + local qt5_paths=( \ + MOC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/moc" \ + UIC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/uic" \ + RCC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/rcc" \ + ) + if ! use opengl; then + sed -e 's/Qt5OpenGL/DiSaBlEd/g' -i configure || die + fi + fi + + # Hard disable the flags that apply only to the libs. + econf \ + --disable-static \ + $(use_enable dvb libdvbv5) \ + $(use_enable qt5 qv4l2) \ + $(use_enable qt5 qvidcap) \ + $(use_enable bpf) \ + --without-jpeg \ + $(use_with udev libudev) \ + --with-udevdir="$(get_udevdir)" \ + "${qt5_paths[@]}" +} + +src_install() { + emake -C utils DESTDIR="${D}" install + emake -C contrib DESTDIR="${D}" install + + dodoc README.md + newdoc utils/libv4l2util/TODO TODO.libv4l2util + newdoc utils/libmedia_dev/README README.libmedia_dev + newdoc utils/dvb/README README.dvb + newdoc utils/v4l2-compliance/fixme.txt fixme.txt.v4l2-compliance +} + +pkg_postinst() { + xdg_pkg_postinst + use udev && udev_reload + + if [[ -n ${REPLACING_VERSIONS} ]] && ver_test 1.20.0 -ge ${REPLACING_VERSIONS%% *}; then + ewarn "WARNING! ir-keytable has changed significantly from version 1.20.0 so" + ewarn "you may need to take action to avoid breakage. See" + ewarn "https://bugs.gentoo.org/767175 for more details." + fi +} + +pkg_postrm() { + xdg_pkg_postrm + use udev && udev_reload +} diff --git a/media-video/Manifest.gz b/media-video/Manifest.gz index 9009a949302f..b55b7bd93ed2 100644 Binary files a/media-video/Manifest.gz and b/media-video/Manifest.gz differ diff --git a/media-video/hevc-hm/Manifest b/media-video/hevc-hm/Manifest new file mode 100644 index 000000000000..aacbea0eac4d --- /dev/null +++ b/media-video/hevc-hm/Manifest @@ -0,0 +1 @@ +DIST HM-HM-17.0.tar.gz 1692323 BLAKE2B fa620ce66acbc634d9768303fe8d60711759a9d6d1ff91b69680993ae45e4581c9df4f0a4fe36719de9713fd29ba020278cf7ef9a51ebee6b01dc578bfbd8f2f SHA512 e8492ee63326da497d0731ef3f70e9f11043618ab5a7244aed94b248dba3f64e301f0ec2d12447a0ef22cc630cfa425341f65b4cacef184b453ba5125b7f8738 diff --git a/media-video/hevc-hm/hevc-hm-17.0.ebuild b/media-video/hevc-hm/hevc-hm-17.0.ebuild new file mode 100644 index 000000000000..94100a99695b --- /dev/null +++ b/media-video/hevc-hm/hevc-hm-17.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="HEVC HM reference software" +HOMEPAGE="https://hevc.hhi.fraunhofer.de/" +SRC_URI="https://vcgit.hhi.fraunhofer.de/jvet/HM/-/archive/HM-${PV}/HM-HM-${PV}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~mips ~riscv" + +S="${WORKDIR}/HM-HM-${PV}" + +src_prepare() { + sed -i 's/add_compile_options( "-msse4.1" )//g' CMakeLists.txt || die + sed -i 's/list( APPEND _bb_warning_options "-Werror" )//g' \ + cmake/CMakeBuild/cmake/modules/BBuildEnv.cmake || die + + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DHIGH_BITDEPTH=ON + ) + cmake_src_configure +} + +src_install() { + newbin "${S}/bin/MCTSExtractorStaticp" "MCTSExtractorStatic" + newbin "${S}/bin/parcatStaticp" "parcatStatic" + newbin "${S}/bin/SEIRemovalAppStaticp" "SEIRemovalAppStatic" + newbin "${S}/bin/TAppDecoderAnalyserStaticp" "TAppDecoderAnalyserStatic" + newbin "${S}/bin/TAppDecoderStaticp" "TAppDecoderStatic" + newbin "${S}/bin/TAppEncoderStaticp" "TAppEncoderStatic" + dodoc "${S}/doc/software-manual.pdf" +} diff --git a/media-video/hevc-hm/metadata.xml b/media-video/hevc-hm/metadata.xml new file mode 100644 index 000000000000..a2dfee954457 --- /dev/null +++ b/media-video/hevc-hm/metadata.xml @@ -0,0 +1,8 @@ + + + + + media-video@gentoo.org + Gentoo Video project + + diff --git a/media-video/jellyfin-media-player/Manifest b/media-video/jellyfin-media-player/Manifest index 61ff6a6955df..d1255f337f9f 100644 --- a/media-video/jellyfin-media-player/Manifest +++ b/media-video/jellyfin-media-player/Manifest @@ -1,2 +1,3 @@ DIST jellyfin-media-player-1.7.1.tar.gz 575001 BLAKE2B b650f981427721a254fd1dcaa58ebf9f93aba47de50f8c24db27e917de8cd8ebb3da67afa68990845f9e019aac0c8d81f5440dd72f604aa74cdc71d8cc476d8f SHA512 7f8cd4c9094254a133430b1d1594d44a92696cd769323ecc51ef973dde1f09b013f9ade0affb9e364d922935994613f662667af46f90aae2ae04d6cb9deb86f0 DIST jellyfin-media-player-1.8.1.tar.gz 582343 BLAKE2B a5fa8d20cd3ec6e4444c1e9d90b93622f7435c2ccbf886c02ce744aa7aeb5a2440b07b3e5b3edb81bb6675d82958f5d63147412dd3d28fced60060de5724e52b SHA512 821bfa42e981d996c7f32f3951e625749a74636ebcb6a6c68c606282fb0db6d4c205419887828cc0dcdd3005d88b237977a01a82e2800a489c8bf3abac33630f +DIST jellyfin-media-player-1.9.0.tar.gz 519208 BLAKE2B c64bb40011dd3761144e70c9549329c921156d9b0c46425e9812d6210baa8b90df7ac8f5af3379da76f6b8c6a55a3d8ac903ce5481895135eaea720d2ce936a2 SHA512 58c35530d61405ed5ff5a73c8a4f3869b21e0b0b0eb5cef7cf15b846543f1070d5c2b4dbfc102c6b4fbce5cb844fea711045d39c1a6bae9c882ad24c6ccd0333 diff --git a/media-video/jellyfin-media-player/jellyfin-media-player-1.9.0.ebuild b/media-video/jellyfin-media-player/jellyfin-media-player-1.9.0.ebuild new file mode 100644 index 000000000000..5c1b05c835b1 --- /dev/null +++ b/media-video/jellyfin-media-player/jellyfin-media-player-1.9.0.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +inherit cmake python-any-r1 + +DESCRIPTION="Jellyfin Desktop Client based on Plex Media Player" +HOMEPAGE="https://github.com/jellyfin/jellyfin-media-player" + +SRC_URI=" + https://github.com/jellyfin/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz +" + +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~amd64" +IUSE="+dbus" + +DEPEND=" + dev-libs/libcec + dev-qt/qtcore:5 + dev-qt/qtdeclarative:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtquickcontrols:5 + dev-qt/qtwebchannel:5 + dev-qt/qtwebengine:5 + dev-qt/qtwidgets:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 + dev-qt/qtxml:5 + media-libs/libsdl2 + media-video/mpv:=[libmpv] + sys-libs/zlib + virtual/opengl + x11-libs/libX11 + x11-libs/libXrandr + dbus? ( dev-qt/qtdbus:5 ) +" + +BDEPEND=" + ${PYTHON_DEPS} + virtual/pkgconfig +" + +# x11-misc/xdg-utils is used for xdg-screensaver, which is used to inhibit +# screen locking + +RDEPEND=" + ${DEPEND} + media-video/jellyfin-web-bin + !dbus? ( x11-misc/xdg-utils ) +" + +src_configure() { + local mycmakeargs=( + -DOpenGL_GL_PREFERENCE=GLVND + # PMP, at least prior to the fork into JMP, used to download codecs, + # for safe measure, disable that. + -DENABLE_CODECS=OFF + # LINUX_X11POWER instructs JMP to use xdg-screensaver instead of dbus + # for inhibiting screen saving. + -DLINUX_X11POWER="$(usex dbus OFF ON)" + ) + cmake_src_configure +} diff --git a/media-video/jellyfin-web-bin/Manifest b/media-video/jellyfin-web-bin/Manifest new file mode 100644 index 000000000000..986ba06b30da --- /dev/null +++ b/media-video/jellyfin-web-bin/Manifest @@ -0,0 +1 @@ +DIST jellyfin-web_10.8.9_portable.tar.gz 44617681 BLAKE2B c7db2d82c160391d3df1953725da54e4e16d09955ac45a2e844bdf802d47022afbe818b6787571dc0bc19a9db2ab67b254abaab7e17d72d02b8310da6e5a5160 SHA512 3f6fb592bf44e38664554881e931969b3cb173cabcb90d5b6e86a181263b07976fc2dc7d91cb4c08e814cbf2a950b6942ffe2080fe93567ab4d212a8956805f8 diff --git a/media-video/jellyfin-web-bin/jellyfin-web-bin-10.8.9.ebuild b/media-video/jellyfin-web-bin/jellyfin-web-bin-10.8.9.ebuild new file mode 100644 index 000000000000..5bb80c0c2a83 --- /dev/null +++ b/media-video/jellyfin-web-bin/jellyfin-web-bin-10.8.9.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Web Client for Jellyfin" +HOMEPAGE="https://github.com/jellyfin/jellyfin-media-player" +SRC_URI=" + https://repo.jellyfin.org/releases/server/portable/versions/stable/web/${PV}/jellyfin-web_${PV}_portable.tar.gz +" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +BDEPEND=" + app-arch/unzip +" + +RDEPEND=" + !media-video/jellyfin-web-jmp-bin +" + +S="${WORKDIR}/jellyfin-web_${PV}" + +src_install() { + insinto /usr/share/jellyfinmediaplayer/web-client/desktop + doins -r . +} diff --git a/media-video/jellyfin-web-bin/metadata.xml b/media-video/jellyfin-web-bin/metadata.xml new file mode 100644 index 000000000000..7acb00ec7ade --- /dev/null +++ b/media-video/jellyfin-web-bin/metadata.xml @@ -0,0 +1,11 @@ + + + + + jellyfin/jellyfin-media-player + + + arsen@gentoo.org + Arsen Arsenović + + diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index f55610a6f001..09680f4a199e 100644 Binary files a/metadata/Manifest.gz and b/metadata/Manifest.gz differ diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 4a40769233c6..7bc50c27832a 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Sat, 18 Mar 2023 19:09:53 +0000 +Tue, 21 Mar 2023 04:39:59 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 4a40769233c6..7d47733976ab 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Sat, 18 Mar 2023 19:09:53 +0000 +Tue, 21 Mar 2023 04:40:00 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index c7060a0d9b88..7ed1a100ace8 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-accessibility/Manifest.gz b/metadata/md5-cache/app-accessibility/Manifest.gz index 5d7440e3893d..07f5ff13bbf3 100644 Binary files a/metadata/md5-cache/app-accessibility/Manifest.gz and b/metadata/md5-cache/app-accessibility/Manifest.gz differ diff --git a/metadata/md5-cache/app-accessibility/kontrast-22.08.3 b/metadata/md5-cache/app-accessibility/kontrast-22.08.3 index bdbfba059fab..11f4a0396412 100644 --- a/metadata/md5-cache/app-accessibility/kontrast-22.08.3 +++ b/metadata/md5-cache/app-accessibility/kontrast-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtsql-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kirigami-5.96.0:5 kde-plasma/xdg-desktop-portal-kde || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kontrast-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e1ffb5afd33316ccaeb5ecb4a2b275cb diff --git a/metadata/md5-cache/app-accessibility/kontrast-22.12.3 b/metadata/md5-cache/app-accessibility/kontrast-22.12.3 index b06c846a731d..21c164dac152 100644 --- a/metadata/md5-cache/app-accessibility/kontrast-22.12.3 +++ b/metadata/md5-cache/app-accessibility/kontrast-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtsql-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kirigami-5.101.0:5 kde-plasma/xdg-desktop-portal-kde || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kontrast-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=460a0d7704ec8a9f12be2d91e18a8c5c diff --git a/metadata/md5-cache/app-admin/Manifest.gz b/metadata/md5-cache/app-admin/Manifest.gz index ca82c4cc1817..c0035226131c 100644 Binary files a/metadata/md5-cache/app-admin/Manifest.gz and b/metadata/md5-cache/app-admin/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/calamares-3.2.60 b/metadata/md5-cache/app-admin/calamares-3.2.60-r1 similarity index 97% rename from metadata/md5-cache/app-admin/calamares-3.2.60 rename to metadata/md5-cache/app-admin/calamares-3.2.60-r1 index 40c3bfbe84a3..2b98314dcf76 100644 --- a/metadata/md5-cache/app-admin/calamares-3.2.60 +++ b/metadata/md5-cache/app-admin/calamares-3.2.60-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=https://github.com/calamares/calamares/releases/download/v3.2.60/calamares-3.2.60.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=d94d6292ee26f1f3620cc3171de936be +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=c780e2950a73153ad831f90f4bbee33c diff --git a/metadata/md5-cache/app-admin/calamares-3.2.60-r2 b/metadata/md5-cache/app-admin/calamares-3.2.60-r2 new file mode 100644 index 000000000000..70ce937fc9cc --- /dev/null +++ b/metadata/md5-cache/app-admin/calamares-3.2.60-r2 @@ -0,0 +1,18 @@ +BDEPEND=dev-qt/linguist-tools:5 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-5.82.0:5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-cpp/yaml-cpp:= python_single_target_python3_9? ( dev-libs/boost:=[python,python_targets_python3_9(-)] dev-libs/libpwquality[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-libs/boost:=[python,python_targets_python3_10(-)] dev-libs/libpwquality[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-libs/boost:=[python,python_targets_python3_11(-)] dev-libs/libpwquality[python_targets_python3_11(-)] ) dev-qt/qtconcurrent:5 dev-qt/qtdbus:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwebengine:5[widgets] dev-qt/qtwidgets:5 dev-qt/qtxml:5 kde-frameworks/kconfig:5 kde-frameworks/kcoreaddons:5 kde-frameworks/kcrash:5 kde-frameworks/kpackage:5 kde-frameworks/kparts:5 kde-frameworks/kservice:5 sys-apps/dbus sys-apps/dmidecode sys-auth/polkit-qt >=sys-libs/kpmcore-4.0.0:5= virtual/libcrypt:= test? ( dev-qt/qttest:5 ) test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 +DESCRIPTION=Distribution-independent installer framework +EAPI=8 +HOMEPAGE=https://calamares.io +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=ecm python-single-r1 +IUSE=+networkmanager +upower debug test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~amd64 +LICENSE=GPL-3 +RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-cpp/yaml-cpp:= python_single_target_python3_9? ( dev-libs/boost:=[python,python_targets_python3_9(-)] dev-libs/libpwquality[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-libs/boost:=[python,python_targets_python3_10(-)] dev-libs/libpwquality[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-libs/boost:=[python,python_targets_python3_11(-)] dev-libs/libpwquality[python_targets_python3_11(-)] ) dev-qt/qtconcurrent:5 dev-qt/qtdbus:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwebengine:5[widgets] dev-qt/qtwidgets:5 dev-qt/qtxml:5 kde-frameworks/kconfig:5 kde-frameworks/kcoreaddons:5 kde-frameworks/kcrash:5 kde-frameworks/kpackage:5 kde-frameworks/kparts:5 kde-frameworks/kservice:5 sys-apps/dbus sys-apps/dmidecode sys-auth/polkit-qt >=sys-libs/kpmcore-4.0.0:5= virtual/libcrypt:= app-admin/sudo dev-libs/libatasmart net-misc/rsync || ( sys-boot/grub:2 sys-boot/systemd-boot ) sys-boot/os-prober sys-fs/squashfs-tools sys-libs/timezone-data virtual/udev networkmanager? ( net-misc/networkmanager ) upower? ( sys-power/upower ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=5 +SRC_URI=https://github.com/calamares/calamares/releases/download/v3.2.60/calamares-3.2.60.tar.gz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=49f44c40110d67106f026170e4ada91d diff --git a/metadata/md5-cache/app-admin/clog-1.3.0-r1 b/metadata/md5-cache/app-admin/clog-1.3.0-r1 index cb164f653680..b0ede5192a69 100644 --- a/metadata/md5-cache/app-admin/clog-1.3.0-r1 +++ b/metadata/md5-cache/app-admin/clog-1.3.0-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=test SLOT=0 SRC_URI=https://gothenburgbitfactory.org/download/clog-1.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7fb2c812ce8fa47a5ffb96fcbc9e3c86 diff --git a/metadata/md5-cache/app-admin/conky-1.13.1 b/metadata/md5-cache/app-admin/conky-1.13.1 index aed536ad569f..eeeea2a78569 100644 --- a/metadata/md5-cache/app-admin/conky-1.13.1 +++ b/metadata/md5-cache/app-admin/conky-1.13.1 @@ -13,5 +13,5 @@ RDEPEND=cmus? ( media-sound/cmus ) curl? ( net-misc/curl ) ical? ( dev-libs/libi REQUIRED_USE=imlib? ( X ) lua-cairo? ( X bundled-toluapp ) lua-imlib? ( X bundled-toluapp ) lua-rsvg? ( X bundled-toluapp ) nvidia? ( X ) truetype? ( X ) xinerama? ( X ) SLOT=0 SRC_URI=https://github.com/brndnmtthws/conky/archive/v1.13.1.tar.gz -> conky-1.13.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0993e542792ab23e6cef5393918c2f56 diff --git a/metadata/md5-cache/app-admin/conky-1.17.0 b/metadata/md5-cache/app-admin/conky-1.17.0 index 7bae3d96e17a..4412d66c8a60 100644 --- a/metadata/md5-cache/app-admin/conky-1.17.0 +++ b/metadata/md5-cache/app-admin/conky-1.17.0 @@ -13,5 +13,5 @@ RDEPEND=curl? ( net-misc/curl ) ical? ( dev-libs/libical:= ) iconv? ( virtual/li REQUIRED_USE=imlib? ( X ) lua-cairo? ( X bundled-toluapp ) lua-imlib? ( X bundled-toluapp ) lua-rsvg? ( X bundled-toluapp ) nvidia? ( X ) truetype? ( X ) xinerama? ( X ) SLOT=0 SRC_URI=https://github.com/brndnmtthws/conky/archive/v1.17.0.tar.gz -> conky-1.17.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=afa2b5a6eec8791f0d7c8c7065dba68c diff --git a/metadata/md5-cache/app-admin/conky-1.18.1 b/metadata/md5-cache/app-admin/conky-1.18.1 index 38cae6abf2a7..faa98c5989d3 100644 --- a/metadata/md5-cache/app-admin/conky-1.18.1 +++ b/metadata/md5-cache/app-admin/conky-1.18.1 @@ -1,6 +1,6 @@ BDEPEND=doc? ( virtual/pandoc || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/pyyaml[python_targets_python3_11(-)] dev-python/jinja[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pyyaml[python_targets_python3_10(-)] dev-python/jinja[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pyyaml[python_targets_python3_9(-)] dev-python/jinja[python_targets_python3_9(-)] ) ) ) extras? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/pyyaml[python_targets_python3_11(-)] dev-python/jinja[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pyyaml[python_targets_python3_10(-)] dev-python/jinja[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pyyaml[python_targets_python3_9(-)] dev-python/jinja[python_targets_python3_9(-)] ) ) ) wayland? ( dev-util/wayland-scanner ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=curl? ( net-misc/curl ) ical? ( dev-libs/libical:= ) iconv? ( virtual/libiconv ) imlib? ( media-libs/imlib2[X] ) irc? ( net-libs/libircclient ) lua-cairo? ( x11-libs/cairo[X] ) lua-imlib? ( media-libs/imlib2[X] ) lua-rsvg? ( gnome-base/librsvg ) mysql? ( dev-db/mysql-connector-c ) ncurses? ( sys-libs/ncurses:= ) nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] ) pulseaudio? ( media-libs/libpulse ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) systemd? ( sys-apps/systemd ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) wayland? ( dev-libs/wayland dev-libs/wayland-protocols x11-libs/pango ) wifi? ( net-wireless/wireless-tools ) webserver? ( net-libs/libmicrohttpd ) X? ( x11-libs/libX11 x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXext ) xinerama? ( x11-libs/libXinerama ) xmms2? ( media-sound/xmms2 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) +DEPEND=curl? ( net-misc/curl ) ical? ( dev-libs/libical:= ) iconv? ( virtual/libiconv ) imlib? ( media-libs/imlib2[X] ) irc? ( net-libs/libircclient ) lua-cairo? ( x11-libs/cairo[X] ) lua-imlib? ( media-libs/imlib2[X] ) lua-rsvg? ( gnome-base/librsvg ) mysql? ( dev-db/mysql-connector-c ) ncurses? ( sys-libs/ncurses:= ) nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] ) pulseaudio? ( media-libs/libpulse ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) systemd? ( sys-apps/systemd ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) wayland? ( dev-libs/wayland x11-libs/pango ) wifi? ( net-wireless/wireless-tools ) webserver? ( net-libs/libmicrohttpd ) X? ( x11-libs/libX11 x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXext ) xinerama? ( x11-libs/libXinerama ) xmms2? ( media-sound/xmms2 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) wayland? ( dev-libs/wayland-protocols ) DESCRIPTION=An advanced, highly configurable system monitor for X EAPI=8 HOMEPAGE=https://github.com/brndnmtthws/conky @@ -9,9 +9,9 @@ INHERIT=cmake linux-info lua-single python-any-r1 readme.gentoo-r1 xdg IUSE=apcupsd bundled-toluapp cmus curl doc extras hddtemp ical iconv imlib intel-backlight iostats irc lua-cairo lua-imlib lua-rsvg math moc mpd mysql ncurses nvidia +portmon pulseaudio rss systemd thinkpad truetype wayland webserver wifi X xinerama xmms2 +lua_single_target_lua5-4 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=GPL-3 BSD LGPL-2.1 MIT -RDEPEND=curl? ( net-misc/curl ) ical? ( dev-libs/libical:= ) iconv? ( virtual/libiconv ) imlib? ( media-libs/imlib2[X] ) irc? ( net-libs/libircclient ) lua-cairo? ( x11-libs/cairo[X] ) lua-imlib? ( media-libs/imlib2[X] ) lua-rsvg? ( gnome-base/librsvg ) mysql? ( dev-db/mysql-connector-c ) ncurses? ( sys-libs/ncurses:= ) nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] ) pulseaudio? ( media-libs/libpulse ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) systemd? ( sys-apps/systemd ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) wayland? ( dev-libs/wayland dev-libs/wayland-protocols x11-libs/pango ) wifi? ( net-wireless/wireless-tools ) webserver? ( net-libs/libmicrohttpd ) X? ( x11-libs/libX11 x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXext ) xinerama? ( x11-libs/libXinerama ) xmms2? ( media-sound/xmms2 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) apcupsd? ( sys-power/apcupsd ) cmus? ( media-sound/cmus ) hddtemp? ( app-admin/hddtemp ) moc? ( media-sound/moc ) extras? ( app-editors/nano || ( app-editors/vim app-editors/gvim ) ) +RDEPEND=curl? ( net-misc/curl ) ical? ( dev-libs/libical:= ) iconv? ( virtual/libiconv ) imlib? ( media-libs/imlib2[X] ) irc? ( net-libs/libircclient ) lua-cairo? ( x11-libs/cairo[X] ) lua-imlib? ( media-libs/imlib2[X] ) lua-rsvg? ( gnome-base/librsvg ) mysql? ( dev-db/mysql-connector-c ) ncurses? ( sys-libs/ncurses:= ) nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] ) pulseaudio? ( media-libs/libpulse ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) systemd? ( sys-apps/systemd ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) wayland? ( dev-libs/wayland x11-libs/pango ) wifi? ( net-wireless/wireless-tools ) webserver? ( net-libs/libmicrohttpd ) X? ( x11-libs/libX11 x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXext ) xinerama? ( x11-libs/libXinerama ) xmms2? ( media-sound/xmms2 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) apcupsd? ( sys-power/apcupsd ) cmus? ( media-sound/cmus ) hddtemp? ( app-admin/hddtemp ) moc? ( media-sound/moc ) extras? ( app-editors/nano || ( app-editors/vim app-editors/gvim ) ) REQUIRED_USE=imlib? ( X ) lua-cairo? ( X bundled-toluapp ) lua-imlib? ( X bundled-toluapp ) lua-rsvg? ( X bundled-toluapp ) nvidia? ( X ) truetype? ( X ) xinerama? ( X ) SLOT=0 SRC_URI=https://github.com/brndnmtthws/conky/archive/v1.18.1.tar.gz -> conky-1.18.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=33d184e6efff2e0ae67e158e468f7792 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=89ce09d585d00965e1970ae7dd3aedb0 diff --git a/metadata/md5-cache/app-admin/conky-1.18.3 b/metadata/md5-cache/app-admin/conky-1.18.3 new file mode 100644 index 000000000000..cf34f8bf5e99 --- /dev/null +++ b/metadata/md5-cache/app-admin/conky-1.18.3 @@ -0,0 +1,17 @@ +BDEPEND=doc? ( virtual/pandoc || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/pyyaml[python_targets_python3_11(-)] dev-python/jinja[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pyyaml[python_targets_python3_10(-)] dev-python/jinja[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pyyaml[python_targets_python3_9(-)] dev-python/jinja[python_targets_python3_9(-)] ) ) ) extras? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/pyyaml[python_targets_python3_11(-)] dev-python/jinja[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pyyaml[python_targets_python3_10(-)] dev-python/jinja[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pyyaml[python_targets_python3_9(-)] dev-python/jinja[python_targets_python3_9(-)] ) ) ) wayland? ( dev-util/wayland-scanner ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=curl? ( net-misc/curl ) ical? ( dev-libs/libical:= ) iconv? ( virtual/libiconv ) imlib? ( media-libs/imlib2[X] ) irc? ( net-libs/libircclient ) lua-cairo? ( x11-libs/cairo[X] ) lua-imlib? ( media-libs/imlib2[X] ) lua-rsvg? ( gnome-base/librsvg ) mysql? ( dev-db/mysql-connector-c ) ncurses? ( sys-libs/ncurses:= ) nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] ) pulseaudio? ( media-libs/libpulse ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) systemd? ( sys-apps/systemd ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) wayland? ( dev-libs/wayland x11-libs/pango ) wifi? ( net-wireless/wireless-tools ) webserver? ( net-libs/libmicrohttpd ) X? ( x11-libs/libX11 x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXext ) xinerama? ( x11-libs/libXinerama ) xmms2? ( media-sound/xmms2 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) wayland? ( dev-libs/wayland-protocols ) +DESCRIPTION=An advanced, highly configurable system monitor for X +EAPI=8 +HOMEPAGE=https://github.com/brndnmtthws/conky +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=cmake linux-info lua-single python-any-r1 readme.gentoo-r1 xdg +IUSE=apcupsd bundled-toluapp cmus curl doc extras hddtemp ical iconv imlib intel-backlight iostats irc lua-cairo lua-imlib lua-rsvg math moc mpd mysql ncurses nvidia +portmon pulseaudio rss systemd thinkpad truetype wayland webserver wifi X xinerama xmms2 +lua_single_target_lua5-4 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-3 BSD LGPL-2.1 MIT +RDEPEND=curl? ( net-misc/curl ) ical? ( dev-libs/libical:= ) iconv? ( virtual/libiconv ) imlib? ( media-libs/imlib2[X] ) irc? ( net-libs/libircclient ) lua-cairo? ( x11-libs/cairo[X] ) lua-imlib? ( media-libs/imlib2[X] ) lua-rsvg? ( gnome-base/librsvg ) mysql? ( dev-db/mysql-connector-c ) ncurses? ( sys-libs/ncurses:= ) nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] ) pulseaudio? ( media-libs/libpulse ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) systemd? ( sys-apps/systemd ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) wayland? ( dev-libs/wayland x11-libs/pango ) wifi? ( net-wireless/wireless-tools ) webserver? ( net-libs/libmicrohttpd ) X? ( x11-libs/libX11 x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXext ) xinerama? ( x11-libs/libXinerama ) xmms2? ( media-sound/xmms2 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) apcupsd? ( sys-power/apcupsd ) cmus? ( media-sound/cmus ) hddtemp? ( app-admin/hddtemp ) moc? ( media-sound/moc ) extras? ( app-editors/nano || ( app-editors/vim app-editors/gvim ) ) +REQUIRED_USE=imlib? ( X ) lua-cairo? ( X bundled-toluapp ) lua-imlib? ( X bundled-toluapp ) lua-rsvg? ( X bundled-toluapp ) nvidia? ( X ) truetype? ( X ) xinerama? ( X ) +SLOT=0 +SRC_URI=https://github.com/brndnmtthws/conky/archive/v1.18.3.tar.gz -> conky-1.18.3.tar.gz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=953e4beb07c5c9ecc11135b1888f7927 diff --git a/metadata/md5-cache/app-admin/eselect-1.4.22 b/metadata/md5-cache/app-admin/eselect-1.4.22 new file mode 100644 index 000000000000..e87a12e9c58a --- /dev/null +++ b/metadata/md5-cache/app-admin/eselect-1.4.22 @@ -0,0 +1,16 @@ +BDEPEND=doc? ( dev-python/docutils ) +DEFINED_PHASES=compile install postinst +DEPEND=sys-apps/sed || ( sys-apps/coreutils app-misc/realpath ) +DESCRIPTION=Gentoo's multi-purpose configuration and management tool +EAPI=7 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Eselect +INHERIT=bash-completion-r1 +IUSE=doc emacs vim-syntax +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2+ || ( GPL-2+ CC-BY-SA-4.0 ) +PDEPEND=emacs? ( app-emacs/eselect-mode ) vim-syntax? ( app-vim/eselect-syntax ) +RDEPEND=sys-apps/sed || ( sys-apps/coreutils app-misc/realpath ) sys-apps/file sys-libs/ncurses:0 +SLOT=0 +SRC_URI=https://dev.gentoo.org/~ulm/eselect/eselect-1.4.22.tar.xz +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=c0b8d7fa3d44fa8cf764ce6e2e958dd0 diff --git a/metadata/md5-cache/app-admin/hardinfo-0.6_alpha_pre20221113 b/metadata/md5-cache/app-admin/hardinfo-0.6_alpha_pre20221113 index b105e5a86d4d..c611f65d5ae4 100644 --- a/metadata/md5-cache/app-admin/hardinfo-0.6_alpha_pre20221113 +++ b/metadata/md5-cache/app-admin/hardinfo-0.6_alpha_pre20221113 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 dev-libs/json-glib net-libs/libsoup:2.4 sys-libs/zlib x11-libs/cairo >=x11-libs/gtk+-3.0:3 SLOT=0 SRC_URI=https://github.com/lpereira/hardinfo/archive/a798cbaed6f1b083cc3c26dbede74cf40947d0ef.tar.gz -> hardinfo-0.6_alpha_pre20221113-a798cbaed6f1b083cc3c26dbede74cf40947d0ef.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=07a360ef0103bdee23796e54bf47f22a diff --git a/metadata/md5-cache/app-admin/keepassxc-2.7.1-r1 b/metadata/md5-cache/app-admin/keepassxc-2.7.1-r1 index 7f0379332e3b..d3f6fad634f2 100644 --- a/metadata/md5-cache/app-admin/keepassxc-2.7.1-r1 +++ b/metadata/md5-cache/app-admin/keepassxc-2.7.1-r1 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/argon2:= dev-libs/botan:2= dev-qt/qtconcurrent:5 dev-qt/qtcore RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/keepassxreboot/keepassxc/archive/2.7.1.tar.gz -> keepassxc-2.7.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b7b17a9ee4db316049a120fa9ca9a873 diff --git a/metadata/md5-cache/app-admin/keepassxc-2.7.3 b/metadata/md5-cache/app-admin/keepassxc-2.7.3 index 62d554821050..3839224a8788 100644 --- a/metadata/md5-cache/app-admin/keepassxc-2.7.3 +++ b/metadata/md5-cache/app-admin/keepassxc-2.7.3 @@ -14,5 +14,5 @@ REQUIRED_USE=autotype? ( X ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/keepassxreboot/keepassxc/releases/download/2.7.3/keepassxc-2.7.3-src.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2e3706e13f83ba5644428c4b9ba30a32 diff --git a/metadata/md5-cache/app-admin/keepassxc-2.7.4 b/metadata/md5-cache/app-admin/keepassxc-2.7.4 index 320397e67079..fefddd4070a9 100644 --- a/metadata/md5-cache/app-admin/keepassxc-2.7.4 +++ b/metadata/md5-cache/app-admin/keepassxc-2.7.4 @@ -14,5 +14,5 @@ REQUIRED_USE=autotype? ( X ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/keepassxreboot/keepassxc/releases/download/2.7.4/keepassxc-2.7.4-src.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c209ba3ecb25434b3417b8f706e8f90 diff --git a/metadata/md5-cache/app-admin/keepassxc-9999 b/metadata/md5-cache/app-admin/keepassxc-9999 index ba8238d93afc..151cb7ab94af 100644 --- a/metadata/md5-cache/app-admin/keepassxc-9999 +++ b/metadata/md5-cache/app-admin/keepassxc-9999 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/argon2:= dev-libs/botan:2= dev-qt/qtconcurrent:5 dev-qt/qtcore REQUIRED_USE=autotype? ( X ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c9f1659cfa64389c8ed3e0b171a64775 diff --git a/metadata/md5-cache/app-admin/lsyncd-2.2.3 b/metadata/md5-cache/app-admin/lsyncd-2.2.3 index 00414ffc854b..792c1b400c8c 100644 --- a/metadata/md5-cache/app-admin/lsyncd-2.2.3 +++ b/metadata/md5-cache/app-admin/lsyncd-2.2.3 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_lua5-3? ( dev-lang/lua:5.3[deprecated] ) net-misc/rsyn REQUIRED_USE=^^ ( lua_single_target_lua5-3 ) SLOT=0 SRC_URI=https://github.com/axkibe/lsyncd/archive/release-2.2.3.tar.gz -> lsyncd-2.2.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7e11327bbf274c968d10f1aa9bdc5581 diff --git a/metadata/md5-cache/app-admin/passwordsafe-1.15.0 b/metadata/md5-cache/app-admin/passwordsafe-1.15.0 index bcee0cb31988..958920c975fb 100644 --- a/metadata/md5-cache/app-admin/passwordsafe-1.15.0 +++ b/metadata/md5-cache/app-admin/passwordsafe-1.15.0 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/openssl:0= net-misc/curl sys-apps/file sys-apps/util-linux x11- RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pwsafe/pwsafe/archive/1.15.0.tar.gz -> passwordsafe-1.15.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c85ae683e94f0c1ddb200ef10da7ef93 diff --git a/metadata/md5-cache/app-admin/systemdgenie-0.99.0_p20221120 b/metadata/md5-cache/app-admin/systemdgenie-0.99.0_p20221120 index ec64c8794237..3a1ababbfaec 100644 --- a/metadata/md5-cache/app-admin/systemdgenie-0.99.0_p20221120 +++ b/metadata/md5-cache/app-admin/systemdgenie-0.99.0_p20221120 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kauth-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kcrash-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/kxmlgui-5.99.0:5 sys-apps/systemd:= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://gentoo/systemdgenie-0.99.0_p20221120-01bf2322.tar.gz https://invent.kde.org/system/systemdgenie/-/archive/01bf232264e1d2511cacb0c22b49dc43d1705d57/systemdgenie-01bf232264e1d2511cacb0c22b49dc43d1705d57.tar.gz -> systemdgenie-0.99.0_p20221120-01bf2322.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bc6fa70aa4b34af37b2b29d1fa8b281f diff --git a/metadata/md5-cache/app-antivirus/Manifest.gz b/metadata/md5-cache/app-antivirus/Manifest.gz index 80077cc5c837..b5da2c89357c 100644 Binary files a/metadata/md5-cache/app-antivirus/Manifest.gz and b/metadata/md5-cache/app-antivirus/Manifest.gz differ diff --git a/metadata/md5-cache/app-antivirus/clamav-1.0.1 b/metadata/md5-cache/app-antivirus/clamav-1.0.1 index cf8c95d5c1bf..be78987d2a16 100644 --- a/metadata/md5-cache/app-antivirus/clamav-1.0.1 +++ b/metadata/md5-cache/app-antivirus/clamav-1.0.1 @@ -13,5 +13,5 @@ REQUIRED_USE=libclamav-only? ( !clamonacc !clamapp !milter ) clamonacc? ( clamap RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Cisco-Talos/clamav/archive/refs/tags/clamav-1.0.1.tar.gz https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.crate https://crates.io/api/v1/crates/aho-corasick/0.7.20/download -> aho-corasick-0.7.20.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/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.59.2/download -> bindgen-0.59.2.crate https://crates.io/api/v1/crates/bit_field/0.10.1/download -> bit_field-0.10.1.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/block-buffer/0.10.3/download -> block-buffer-0.10.3.crate https://crates.io/api/v1/crates/bumpalo/3.12.0/download -> bumpalo-3.12.0.crate https://crates.io/api/v1/crates/bytemuck/1.13.0/download -> bytemuck-1.13.0.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/cbindgen/0.20.0/download -> cbindgen-0.20.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-if/1.0.0/download -> cfg-if-1.0.0.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/clap/2.34.0/download -> clap-2.34.0.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/cpufeatures/0.2.5/download -> cpufeatures-0.2.5.crate https://crates.io/api/v1/crates/crc32fast/1.3.2/download -> crc32fast-1.3.2.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.6/download -> crossbeam-channel-0.5.6.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.2/download -> crossbeam-deque-0.8.2.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.13/download -> crossbeam-epoch-0.9.13.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.14/download -> crossbeam-utils-0.8.14.crate https://crates.io/api/v1/crates/crunchy/0.2.2/download -> crunchy-0.2.2.crate https://crates.io/api/v1/crates/crypto-common/0.1.6/download -> crypto-common-0.1.6.crate https://crates.io/api/v1/crates/digest/0.10.6/download -> digest-0.10.6.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/exr/1.5.3/download -> exr-1.5.3.crate https://crates.io/api/v1/crates/fastrand/1.9.0/download -> fastrand-1.9.0.crate https://crates.io/api/v1/crates/flate2/1.0.25/download -> flate2-1.0.25.crate https://crates.io/api/v1/crates/flume/0.10.14/download -> flume-0.10.14.crate https://crates.io/api/v1/crates/futures-core/0.3.26/download -> futures-core-0.3.26.crate https://crates.io/api/v1/crates/futures-sink/0.3.26/download -> futures-sink-0.3.26.crate https://crates.io/api/v1/crates/generic-array/0.14.6/download -> generic-array-0.14.6.crate https://crates.io/api/v1/crates/getrandom/0.2.8/download -> getrandom-0.2.8.crate https://crates.io/api/v1/crates/gif/0.11.4/download -> gif-0.11.4.crate https://crates.io/api/v1/crates/glob/0.3.1/download -> glob-0.3.1.crate https://crates.io/api/v1/crates/half/2.2.1/download -> half-2.2.1.crate https://crates.io/api/v1/crates/hashbrown/0.12.3/download -> hashbrown-0.12.3.crate https://crates.io/api/v1/crates/heck/0.3.3/download -> heck-0.3.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/hermit-abi/0.2.6/download -> hermit-abi-0.2.6.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/humantime/2.1.0/download -> humantime-2.1.0.crate https://crates.io/api/v1/crates/image/0.24.5/download -> image-0.24.5.crate https://crates.io/api/v1/crates/indexmap/1.9.2/download -> indexmap-1.9.2.crate https://crates.io/api/v1/crates/instant/0.1.12/download -> instant-0.1.12.crate https://crates.io/api/v1/crates/itoa/1.0.5/download -> itoa-1.0.5.crate https://crates.io/api/v1/crates/jpeg-decoder/0.3.0/download -> jpeg-decoder-0.3.0.crate https://crates.io/api/v1/crates/js-sys/0.3.61/download -> js-sys-0.3.61.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/lebe/0.5.2/download -> lebe-0.5.2.crate https://crates.io/api/v1/crates/libc/0.2.139/download -> libc-0.2.139.crate https://crates.io/api/v1/crates/libloading/0.7.4/download -> libloading-0.7.4.crate https://crates.io/api/v1/crates/lock_api/0.4.9/download -> lock_api-0.4.9.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.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.7.1/download -> memoffset-0.7.1.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.6.2/download -> miniz_oxide-0.6.2.crate https://crates.io/api/v1/crates/nanorand/0.7.0/download -> nanorand-0.7.0.crate https://crates.io/api/v1/crates/nom/7.1.3/download -> nom-7.1.3.crate https://crates.io/api/v1/crates/num-complex/0.4.3/download -> num-complex-0.4.3.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.15/download -> num-traits-0.2.15.crate https://crates.io/api/v1/crates/num_cpus/1.15.0/download -> num_cpus-1.15.0.crate https://crates.io/api/v1/crates/once_cell/1.17.1/download -> once_cell-1.17.1.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/1.0.12/download -> pin-project-1.0.12.crate https://crates.io/api/v1/crates/pin-project-internal/1.0.12/download -> pin-project-internal-1.0.12.crate https://crates.io/api/v1/crates/png/0.17.7/download -> png-0.17.7.crate https://crates.io/api/v1/crates/primal-check/0.3.3/download -> primal-check-0.3.3.crate https://crates.io/api/v1/crates/proc-macro2/1.0.51/download -> proc-macro2-1.0.51.crate https://crates.io/api/v1/crates/quote/1.0.23/download -> quote-1.0.23.crate https://crates.io/api/v1/crates/rayon/1.6.1/download -> rayon-1.6.1.crate https://crates.io/api/v1/crates/rayon-core/1.10.2/download -> rayon-core-1.10.2.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/regex/1.7.1/download -> regex-1.7.1.crate https://crates.io/api/v1/crates/regex-syntax/0.6.28/download -> regex-syntax-0.6.28.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.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/rustdct/0.7.1/download -> rustdct-0.7.1.crate https://crates.io/api/v1/crates/rustfft/6.1.0/download -> rustfft-6.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_threadpool/0.1.9/download -> scoped_threadpool-0.1.9.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.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_json/1.0.93/download -> serde_json-1.0.93.crate https://crates.io/api/v1/crates/sha2/0.10.6/download -> sha2-0.10.6.crate https://crates.io/api/v1/crates/shlex/1.1.0/download -> shlex-1.1.0.crate https://crates.io/api/v1/crates/simd-adler32/0.3.4/download -> simd-adler32-0.3.4.crate https://crates.io/api/v1/crates/smallvec/1.10.0/download -> smallvec-1.10.0.crate https://crates.io/api/v1/crates/spin/0.9.5/download -> spin-0.9.5.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.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/syn/1.0.107/download -> syn-1.0.107.crate https://crates.io/api/v1/crates/tempfile/3.3.0/download -> tempfile-3.3.0.crate https://crates.io/api/v1/crates/termcolor/1.2.0/download -> termcolor-1.2.0.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thiserror/1.0.38/download -> thiserror-1.0.38.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/threadpool/1.8.1/download -> threadpool-1.8.1.crate https://crates.io/api/v1/crates/tiff/0.8.1/download -> tiff-0.8.1.crate https://crates.io/api/v1/crates/toml/0.5.11/download -> toml-0.5.11.crate https://crates.io/api/v1/crates/transpose/0.2.2/download -> transpose-0.2.2.crate https://crates.io/api/v1/crates/typenum/1.16.0/download -> typenum-1.16.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.6/download -> unicode-ident-1.0.6.crate https://crates.io/api/v1/crates/unicode-segmentation/1.10.1/download -> unicode-segmentation-1.10.1.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/vec_map/0.8.2/download -> vec_map-0.8.2.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/wasm-bindgen/0.2.84/download -> wasm-bindgen-0.2.84.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.84/download -> wasm-bindgen-backend-0.2.84.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.84/download -> wasm-bindgen-macro-0.2.84.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.84/download -> wasm-bindgen-macro-support-0.2.84.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.84/download -> wasm-bindgen-shared-0.2.84.crate https://crates.io/api/v1/crates/weezl/0.1.7/download -> weezl-0.1.7.crate https://crates.io/api/v1/crates/which/4.4.0/download -> which-4.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/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/zune-inflate/0.2.50/download -> zune-inflate-0.2.50.crate -_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5827550641c418013fb32cd7bcd0acdc diff --git a/metadata/md5-cache/app-arch/Manifest.gz b/metadata/md5-cache/app-arch/Manifest.gz index 8db7b6177663..51bcaac74ee2 100644 Binary files a/metadata/md5-cache/app-arch/Manifest.gz and b/metadata/md5-cache/app-arch/Manifest.gz differ diff --git a/metadata/md5-cache/app-arch/brotli-1.0.9-r3 b/metadata/md5-cache/app-arch/brotli-1.0.9-r3 index c488fa6bec32..1dc59a945e95 100644 --- a/metadata/md5-cache/app-arch/brotli-1.0.9-r3 +++ b/metadata/md5-cache/app-arch/brotli-1.0.9-r3 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_pypy3 python_targets_python3_9 python RESTRICT=test SLOT=0/1 SRC_URI=https://github.com/google/brotli/archive/v1.0.9.tar.gz -> brotli-1.0.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ff89eb8ed91efbab6bc92a73533cd655 diff --git a/metadata/md5-cache/app-arch/brotli-1.0.9-r5 b/metadata/md5-cache/app-arch/brotli-1.0.9-r5 index 71f0962ab510..09aebc7203a9 100644 --- a/metadata/md5-cache/app-arch/brotli-1.0.9-r5 +++ b/metadata/md5-cache/app-arch/brotli-1.0.9-r5 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_pypy3 python_targets_python3_9 python RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/google/brotli/archive/v1.0.9.tar.gz -> brotli-1.0.9.tar.gz test? ( https://dev.gentoo.org/~mgorny/dist/brotli-1.0.9.testdata.tar.xz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a86a9c66f02cba974f73b92a3b1fb1aa diff --git a/metadata/md5-cache/app-arch/brotli-9999 b/metadata/md5-cache/app-arch/brotli-9999 index 12440e8aac4a..6b5d9d429ea9 100644 --- a/metadata/md5-cache/app-arch/brotli-9999 +++ b/metadata/md5-cache/app-arch/brotli-9999 @@ -12,5 +12,5 @@ RDEPEND=python? ( python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) pyth REQUIRED_USE=python? ( || ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e3ea5ddd33f0e64596b15df5dff6d15 diff --git a/metadata/md5-cache/app-arch/createrepo_c-0.20.1 b/metadata/md5-cache/app-arch/createrepo_c-0.20.1 index 050a9ce7438a..a91196bea21f 100644 --- a/metadata/md5-cache/app-arch/createrepo_c-0.20.1 +++ b/metadata/md5-cache/app-arch/createrepo_c-0.20.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/bzip2:= app-arch/rpm dev-db/sqlite:3 dev-libs/glib:2 dev-libs/libxml2 dev-libs/openssl:= net-misc/curl sys-apps/file sys-libs/zlib:= app-arch/lzma SLOT=0 SRC_URI=https://github.com/rpm-software-management/createrepo_c/archive/0.20.1.tar.gz -> createrepo_c-0.20.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=eb2fee418b263fc32347c32438700d4a diff --git a/metadata/md5-cache/app-arch/createrepo_c-0.20.1-r1 b/metadata/md5-cache/app-arch/createrepo_c-0.20.1-r1 index 163a888f7a58..0b6b4f78e774 100644 --- a/metadata/md5-cache/app-arch/createrepo_c-0.20.1-r1 +++ b/metadata/md5-cache/app-arch/createrepo_c-0.20.1-r1 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2:= app-arch/drpm app-arch/rpm app-arch/xz-utils app-arch/z RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rpm-software-management/createrepo_c/archive/0.20.1.tar.gz -> createrepo_c-0.20.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a84f0ff4f51a66b513aa9c184fe5e809 diff --git a/metadata/md5-cache/app-arch/createrepo_c-9999 b/metadata/md5-cache/app-arch/createrepo_c-9999 index bdd4765f6a33..feb7a9b738bf 100644 --- a/metadata/md5-cache/app-arch/createrepo_c-9999 +++ b/metadata/md5-cache/app-arch/createrepo_c-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=app-arch/bzip2:= app-arch/drpm app-arch/rpm app-arch/xz-utils app-arch/zchunk dev-db/sqlite:3 dev-libs/glib:2 dev-libs/libxml2 dev-libs/openssl:= net-misc/curl sys-apps/file sys-libs/libmodulemd sys-libs/zlib:= RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c97cf8da67725a8469ba3a7442f033e8 diff --git a/metadata/md5-cache/app-arch/drpm-0.5.1 b/metadata/md5-cache/app-arch/drpm-0.5.1 index df2b1b2f2cad..0a743ec5b1c1 100644 --- a/metadata/md5-cache/app-arch/drpm-0.5.1 +++ b/metadata/md5-cache/app-arch/drpm-0.5.1 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2:= app-arch/rpm app-arch/xz-utils dev-libs/openssl:= sys-l RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rpm-software-management/drpm/archive/refs/tags/0.5.1.tar.gz -> drpm-0.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dc7fb07e766d85cd32cf9d0ef1712a61 diff --git a/metadata/md5-cache/app-arch/drpm-9999 b/metadata/md5-cache/app-arch/drpm-9999 index 9b5e44180d96..dbff0d338b2f 100644 --- a/metadata/md5-cache/app-arch/drpm-9999 +++ b/metadata/md5-cache/app-arch/drpm-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=app-arch/bzip2:= app-arch/rpm app-arch/xz-utils dev-libs/openssl:= sys-libs/zlib lzip? ( app-arch/lzlib ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2d2a1ebd87ac0d01c262e010a8572eef diff --git a/metadata/md5-cache/app-arch/innoextract-1.9 b/metadata/md5-cache/app-arch/innoextract-1.9 index b23367dd1f21..eb1f6cdcefbc 100644 --- a/metadata/md5-cache/app-arch/innoextract-1.9 +++ b/metadata/md5-cache/app-arch/innoextract-1.9 @@ -11,5 +11,5 @@ LICENSE=ZLIB RDEPEND=dev-libs/boost:=[bzip2,zlib] iconv? ( virtual/libiconv ) lzma? ( app-arch/xz-utils ) SLOT=0 SRC_URI=https://constexpr.org/innoextract/files/innoextract-1.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3974d327b009cde255b5f56bdd04e2e2 diff --git a/metadata/md5-cache/app-arch/lxqt-archiver-0.6.0 b/metadata/md5-cache/app-arch/lxqt-archiver-0.6.0 index e5b7dea021f2..ff1b5a416cd9 100644 --- a/metadata/md5-cache/app-arch/lxqt-archiver-0.6.0 +++ b/metadata/md5-cache/app-arch/lxqt-archiver-0.6.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=dev-libs/glib:2 dev-libs/json-glib >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=x11-libs/libfm-qt-1.1:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-archiver/releases/download/0.6.0/lxqt-archiver-0.6.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=276814c4ca8e2488ad15873207d2c1e6 diff --git a/metadata/md5-cache/app-arch/lxqt-archiver-0.7.0 b/metadata/md5-cache/app-arch/lxqt-archiver-0.7.0 index 3d49d0037806..0b3fe5424a4a 100644 --- a/metadata/md5-cache/app-arch/lxqt-archiver-0.7.0 +++ b/metadata/md5-cache/app-arch/lxqt-archiver-0.7.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=dev-libs/glib:2 dev-libs/json-glib >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=x11-libs/libfm-qt-1.2:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-archiver/releases/download/0.7.0/lxqt-archiver-0.7.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=63c5c61255b0be4124a44122a111236f diff --git a/metadata/md5-cache/app-arch/lz4-1.9.4 b/metadata/md5-cache/app-arch/lz4-1.9.4 index 72a1b00d2daa..ad39288ebc5e 100644 --- a/metadata/md5-cache/app-arch/lz4-1.9.4 +++ b/metadata/md5-cache/app-arch/lz4-1.9.4 @@ -9,5 +9,5 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~ LICENSE=BSD-2 GPL-2 SLOT=0/r132 SRC_URI=https://github.com/lz4/lz4/archive/v1.9.4.tar.gz -> lz4-1.9.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0679e7206d90ae477f2a5553aab30d79 diff --git a/metadata/md5-cache/app-arch/lzlib-1.13-r1 b/metadata/md5-cache/app-arch/lzlib-1.13-r1 index 4f599c05022f..86b233296da4 100644 --- a/metadata/md5-cache/app-arch/lzlib-1.13-r1 +++ b/metadata/md5-cache/app-arch/lzlib-1.13-r1 @@ -5,9 +5,9 @@ EAPI=8 HOMEPAGE=https://www.nongnu.org/lzip/lzlib.html INHERIT=toolchain-funcs verify-sig IUSE=verify-sig -KEYWORDS=amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=libstdc++ SLOT=0 SRC_URI=https://download.savannah.gnu.org/releases/lzip/lzlib/lzlib-1.13.tar.gz verify-sig? ( https://download.savannah.gnu.org/releases/lzip/lzlib/lzlib-1.13.tar.gz.sig ) _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=1f3df867efd36678a59fd7c20fc21501 +_md5_=fdfd674bdfad8f2e28aae8f817edcbfe diff --git a/metadata/md5-cache/app-arch/makeself-2.5.0 b/metadata/md5-cache/app-arch/makeself-2.5.0 new file mode 100644 index 000000000000..a4d2bbf42976 --- /dev/null +++ b/metadata/md5-cache/app-arch/makeself-2.5.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install postinst +DESCRIPTION=Shell script that generates a self-extractible tar.gz +EAPI=8 +HOMEPAGE=https://makeself.io/ +INHERIT=optfeature +KEYWORDS=~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2+ +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/megastep/makeself/archive/refs/tags/release-2.5.0.tar.gz -> makeself-2.5.0.tar.gz +_eclasses_=optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 +_md5_=ce5e67ef4895a975bf5dfe5d00291104 diff --git a/metadata/md5-cache/app-arch/snappy-1.1.10-r1 b/metadata/md5-cache/app-arch/snappy-1.1.10-r1 new file mode 100644 index 000000000000..a656340cac86 --- /dev/null +++ b/metadata/md5-cache/app-arch/snappy-1.1.10-r1 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=test? ( dev-cpp/gtest ) +DESCRIPTION=A high-speed compression/decompression library by Google +EAPI=8 +HOMEPAGE=https://github.com/google/snappy +INHERIT=cmake-multilib +IUSE=cpu_flags_x86_avx cpu_flags_x86_avx2 test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos +LICENSE=BSD +RESTRICT=!test? ( test ) +SLOT=0/1.1 +SRC_URI=https://github.com/google/snappy/archive/1.1.10.tar.gz -> snappy-1.1.10.tar.gz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=e7cd33eb572ac21b4a0cec1b3d5e2f53 diff --git a/metadata/md5-cache/app-arch/snappy-1.1.9-r1 b/metadata/md5-cache/app-arch/snappy-1.1.9-r1 index 9bddf7d7a1fe..a1f6b84e331b 100644 --- a/metadata/md5-cache/app-arch/snappy-1.1.9-r1 +++ b/metadata/md5-cache/app-arch/snappy-1.1.9-r1 @@ -11,5 +11,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/google/snappy/archive/1.1.9.tar.gz -> snappy-1.1.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cfb48386f1a812d74f99310e055f008a diff --git a/metadata/md5-cache/app-arch/stormlib-9.24 b/metadata/md5-cache/app-arch/stormlib-9.24 index 779ab7b63905..59ac43931035 100644 --- a/metadata/md5-cache/app-arch/stormlib-9.24 +++ b/metadata/md5-cache/app-arch/stormlib-9.24 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=app-arch/bzip2:= dev-libs/libtomcrypt:=[libtommath] sys-libs/zlib:= SLOT=0 SRC_URI=https://github.com/ladislav-zezula/StormLib/archive/v9.24.tar.gz -> StormLib-9.24.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cf19a8f9def6b163c53eb94db8c816db diff --git a/metadata/md5-cache/app-arch/tarsync-0.2.3 b/metadata/md5-cache/app-arch/tarsync-0.2.3 index e4ab55643fe2..b1e46b584478 100644 --- a/metadata/md5-cache/app-arch/tarsync-0.2.3 +++ b/metadata/md5-cache/app-arch/tarsync-0.2.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-util/diffball-0.7:= SLOT=0 SRC_URI=https://github.com/zmedico/tarsync/archive/refs/tags/v0.2.3.tar.gz -> tarsync-0.2.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8c0823df91cf2409816757ba85e44d3b diff --git a/metadata/md5-cache/app-arch/unshield-1.4.3 b/metadata/md5-cache/app-arch/unshield-1.4.3 index d6474dc02541..647328ec1e7c 100644 --- a/metadata/md5-cache/app-arch/unshield-1.4.3 +++ b/metadata/md5-cache/app-arch/unshield-1.4.3 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/openssl:0= sys-libs/zlib SLOT=0 SRC_URI=https://github.com/twogood/unshield/archive/1.4.3.tar.gz -> unshield-1.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=be53aae58a6b5161e65bd6fa152aa89a diff --git a/metadata/md5-cache/app-arch/upx-4.0.1-r1 b/metadata/md5-cache/app-arch/upx-4.0.1-r1 index 94513b5f245b..a7b45329ff3a 100644 --- a/metadata/md5-cache/app-arch/upx-4.0.1-r1 +++ b/metadata/md5-cache/app-arch/upx-4.0.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ UPX-exception RDEPEND=!app-arch/upx-bin SLOT=0 SRC_URI=https://github.com/upx/upx/releases/download/v4.0.1/upx-4.0.1-src.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2766941e748288aeeac25deb457ca833 diff --git a/metadata/md5-cache/app-arch/upx-4.0.2 b/metadata/md5-cache/app-arch/upx-4.0.2 index eed8d9f838f2..063ac47ae979 100644 --- a/metadata/md5-cache/app-arch/upx-4.0.2 +++ b/metadata/md5-cache/app-arch/upx-4.0.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ UPX-exception RDEPEND=!app-arch/upx-bin SLOT=0 SRC_URI=https://github.com/upx/upx/releases/download/v4.0.2/upx-4.0.2-src.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=30de1bcf8e710fdfab8e268852259a65 diff --git a/metadata/md5-cache/app-arch/xz-utils-5.2.11 b/metadata/md5-cache/app-arch/xz-utils-5.2.11 new file mode 100644 index 000000000000..9b284791645a --- /dev/null +++ b/metadata/md5-cache/app-arch/xz-utils-5.2.11 @@ -0,0 +1,14 @@ +BDEPEND=verify-sig? ( >=sec-keys/openpgp-keys-lassecollin-20230213 ) >=app-portage/elt-patches-20170815 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=compile configure install postinst preinst prepare test unpack +DESCRIPTION=Utils for managing LZMA compressed files +EAPI=7 +HOMEPAGE=https://tukaani.org/xz/ +INHERIT=libtool multilib multilib-minimal preserve-libs usr-ldscript verify-sig +IUSE=+extra-filters nls static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 split-usr verify-sig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=public-domain LGPL-2.1+ GPL-2+ +RESTRICT=!extra-filters? ( test ) +SLOT=0 +SRC_URI=mirror://sourceforge/lzmautils/xz-5.2.11.tar.gz https://tukaani.org/xz/xz-5.2.11.tar.gz verify-sig? ( https://tukaani.org/xz/xz-5.2.11.tar.gz.sig ) +_eclasses_=libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 preserve-libs a8e50acee31b5759b4df1f7707cae54b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b usr-ldscript cd36f6d91e8173d95e25b0e0cf036960 verify-sig fef00f802a62a8d9e66affc69e141df0 +_md5_=f751dee2fffbd521d69fd3e1c593c5c7 diff --git a/metadata/md5-cache/app-arch/xz-utils-5.4.2 b/metadata/md5-cache/app-arch/xz-utils-5.4.2 new file mode 100644 index 000000000000..fe9f6d82e5e7 --- /dev/null +++ b/metadata/md5-cache/app-arch/xz-utils-5.4.2 @@ -0,0 +1,13 @@ +BDEPEND=verify-sig? ( >=sec-keys/openpgp-keys-lassecollin-20230213 ) >=app-portage/elt-patches-20170815 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=compile configure install postinst preinst prepare test unpack +DESCRIPTION=Utils for managing LZMA compressed files +EAPI=7 +HOMEPAGE=https://tukaani.org/xz/ +INHERIT=libtool multilib multilib-minimal preserve-libs usr-ldscript verify-sig +IUSE=doc +extra-filters nls static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 split-usr verify-sig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=public-domain LGPL-2.1+ GPL-2+ +SLOT=0 +SRC_URI=https://github.com/tukaani-project/xz/releases/download/v5.4.2/xz-5.4.2.tar.gz mirror://sourceforge/lzmautils/xz-5.4.2.tar.gz https://tukaani.org/xz/xz-5.4.2.tar.gz verify-sig? ( https://github.com/tukaani-project/xz/releases/download/v5.4.2/xz-5.4.2.tar.gz.sig https://tukaani.org/xz/xz-5.4.2.tar.gz.sig ) +_eclasses_=libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 preserve-libs a8e50acee31b5759b4df1f7707cae54b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b usr-ldscript cd36f6d91e8173d95e25b0e0cf036960 verify-sig fef00f802a62a8d9e66affc69e141df0 +_md5_=8dba9b691703724520f1be6f180f2480 diff --git a/metadata/md5-cache/app-arch/xz-utils-9999 b/metadata/md5-cache/app-arch/xz-utils-9999 index 6917e87c7a5b..7214f6033d72 100644 --- a/metadata/md5-cache/app-arch/xz-utils-9999 +++ b/metadata/md5-cache/app-arch/xz-utils-9999 @@ -4,9 +4,9 @@ DESCRIPTION=Utils for managing LZMA compressed files EAPI=7 HOMEPAGE=https://tukaani.org/xz/ INHERIT=libtool multilib multilib-minimal preserve-libs usr-ldscript git-r3 autotools -IUSE=+extra-filters nls static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 split-usr +IUSE=doc +extra-filters nls static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 split-usr LICENSE=public-domain LGPL-2.1+ GPL-2+ PROPERTIES=live SLOT=0 _eclasses_=autotools b5529dc611971a61a30153916014f616 git-r3 c57c50c922e121043788de0b40ada60a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 preserve-libs a8e50acee31b5759b4df1f7707cae54b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b usr-ldscript cd36f6d91e8173d95e25b0e0cf036960 -_md5_=ec176fc079ccc847c86b6585a417227b +_md5_=46acd1d69c5f4897e7c60dc369204411 diff --git a/metadata/md5-cache/app-arch/zopfli-1.0.3 b/metadata/md5-cache/app-arch/zopfli-1.0.3 index cdd19988217a..e6158048f7e4 100644 --- a/metadata/md5-cache/app-arch/zopfli-1.0.3 +++ b/metadata/md5-cache/app-arch/zopfli-1.0.3 @@ -8,5 +8,5 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x LICENSE=Apache-2.0 SLOT=0/1 SRC_URI=https://github.com/google/zopfli/archive/zopfli-1.0.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=675ca6962e0483a88c2e6756f5fcd7ce diff --git a/metadata/md5-cache/app-backup/Manifest.gz b/metadata/md5-cache/app-backup/Manifest.gz index 84e3cefc03b1..6b960069562d 100644 Binary files a/metadata/md5-cache/app-backup/Manifest.gz and b/metadata/md5-cache/app-backup/Manifest.gz differ diff --git a/metadata/md5-cache/app-backup/bareos-20.0.8 b/metadata/md5-cache/app-backup/bareos-20.0.8 index 8e53d858cbcd..591542a3bb29 100644 --- a/metadata/md5-cache/app-backup/bareos-20.0.8 +++ b/metadata/md5-cache/app-backup/bareos-20.0.8 @@ -13,5 +13,5 @@ REQUIRED_USE=!clientonly? ( || ( mysql postgres sqlite ) ) static? ( clientonly RESTRICT=mirror SLOT=0 SRC_URI=https://github.com/bareos/bareos/archive/Release/20.0.8.tar.gz -> bareos-20.0.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2d3cf62f6bfd4793e7b836f20b65980c diff --git a/metadata/md5-cache/app-backup/bareos-21.1.6 b/metadata/md5-cache/app-backup/bareos-21.1.6 index 29bf7852f793..6e7b409654de 100644 --- a/metadata/md5-cache/app-backup/bareos-21.1.6 +++ b/metadata/md5-cache/app-backup/bareos-21.1.6 @@ -13,5 +13,5 @@ REQUIRED_USE=static? ( clientonly ) x86? ( !ceph ) RESTRICT=mirror test SLOT=0 SRC_URI=https://github.com/bareos/bareos/archive/Release/21.1.6.tar.gz -> bareos-21.1.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2d15ab9383673fcfbf52e221b399e7e7 diff --git a/metadata/md5-cache/app-backup/bareos-22.0.2 b/metadata/md5-cache/app-backup/bareos-22.0.2 index 55c14349de10..a7bf9db21e73 100644 --- a/metadata/md5-cache/app-backup/bareos-22.0.2 +++ b/metadata/md5-cache/app-backup/bareos-22.0.2 @@ -13,5 +13,5 @@ REQUIRED_USE=static? ( clientonly ) x86? ( !ceph ) RESTRICT=mirror test SLOT=0 SRC_URI=https://github.com/bareos/bareos/archive/Release/22.0.2.tar.gz -> bareos-22.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ce28bb1fc49cf1604f52d715b4b39fa0 diff --git a/metadata/md5-cache/app-backup/kup-0.9.1 b/metadata/md5-cache/app-backup/kup-0.9.1 index e1d629c5fb72..deb8c0389209 100644 --- a/metadata/md5-cache/app-backup/kup-0.9.1 +++ b/metadata/md5-cache/app-backup/kup-0.9.1 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=dev-libs/libgit2:= dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 kde-frameworks/kcompletion:5 kde-frameworks/kconfig:5 kde-frameworks/kconfigwidgets:5 kde-frameworks/kcoreaddons:5 kde-frameworks/kdbusaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kidletime:5 kde-frameworks/kinit:5 kde-frameworks/kio:5 kde-frameworks/kjobwidgets:5 kde-frameworks/knotifications:5 kde-frameworks/kwidgetsaddons:5 kde-frameworks/kxmlgui:5 kde-frameworks/plasma:5 kde-frameworks/solid:5 dev-qt/qtdeclarative:5 dev-qt/qtsvg:5 net-misc/rsync || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/kup/kup-0.9.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2bcd81b830aa566ba126e860baa5fb48 diff --git a/metadata/md5-cache/app-benchmarks/Manifest.gz b/metadata/md5-cache/app-benchmarks/Manifest.gz index adaab5dcc9e9..8a8fd71e99f9 100644 Binary files a/metadata/md5-cache/app-benchmarks/Manifest.gz and b/metadata/md5-cache/app-benchmarks/Manifest.gz differ diff --git a/metadata/md5-cache/app-benchmarks/stress-ng-0.15.05 b/metadata/md5-cache/app-benchmarks/stress-ng-0.15.06 similarity index 95% rename from metadata/md5-cache/app-benchmarks/stress-ng-0.15.05 rename to metadata/md5-cache/app-benchmarks/stress-ng-0.15.06 index 844b25718a31..df06cfa98b1d 100644 --- a/metadata/md5-cache/app-benchmarks/stress-ng-0.15.05 +++ b/metadata/md5-cache/app-benchmarks/stress-ng-0.15.06 @@ -9,6 +9,6 @@ KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~sparc ~x86 LICENSE=GPL-2+ RDEPEND=dev-libs/libaio dev-libs/libbsd dev-libs/libgcrypt:0= sys-apps/attr sys-apps/keyutils:= sys-libs/libcap sys-libs/zlib virtual/libcrypt:= apparmor? ( sys-apps/apparmor-utils sys-libs/libapparmor ) sctp? ( net-misc/lksctp-tools ) SLOT=0 -SRC_URI=https://github.com/ColinIanKing/stress-ng/archive/refs/tags/V0.15.05.tar.gz -> stress-ng-0.15.05.tar.gz +SRC_URI=https://github.com/ColinIanKing/stress-ng/archive/refs/tags/V0.15.06.tar.gz -> stress-ng-0.15.06.tar.gz _eclasses_=linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b _md5_=ef4fa910ed944d6dff8e61d3ab5e4bc2 diff --git a/metadata/md5-cache/app-cdr/Manifest.gz b/metadata/md5-cache/app-cdr/Manifest.gz index fe0dae27ae83..1c57a7c7b349 100644 Binary files a/metadata/md5-cache/app-cdr/Manifest.gz and b/metadata/md5-cache/app-cdr/Manifest.gz differ diff --git a/metadata/md5-cache/app-cdr/cdemu-3.2.5 b/metadata/md5-cache/app-cdr/cdemu-3.2.5 index 286f64cc7144..f8d6c67c9b5b 100644 --- a/metadata/md5-cache/app-cdr/cdemu-3.2.5 +++ b/metadata/md5-cache/app-cdr/cdemu-3.2.5 @@ -11,5 +11,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://download.sourceforge.net/cdemu/cdemu-client/cdemu-client-3.2.5.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4b2741b9006bf4491c27a01fc860ac16 diff --git a/metadata/md5-cache/app-cdr/cdemu-daemon-3.2.6 b/metadata/md5-cache/app-cdr/cdemu-daemon-3.2.6 index 66a5531d6d95..2f4b191d1c1c 100644 --- a/metadata/md5-cache/app-cdr/cdemu-daemon-3.2.6 +++ b/metadata/md5-cache/app-cdr/cdemu-daemon-3.2.6 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-libs/glib-2.38:2 >=dev-libs/libmirage-3.2.0:= >=media-libs/libao-0.8.0:= sys-apps/dbus >=sys-fs/vhba-20130607 SLOT=0/7 SRC_URI=https://download.sourceforge.net/cdemu/cdemu-daemon/cdemu-daemon-3.2.6.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e7eae115a82f29b769c69240f1c214f diff --git a/metadata/md5-cache/app-cdr/dolphin-plugins-mountiso-22.08.3 b/metadata/md5-cache/app-cdr/dolphin-plugins-mountiso-22.08.3 index 9b10056bb27b..ec2581031e92 100644 --- a/metadata/md5-cache/app-cdr/dolphin-plugins-mountiso-22.08.3 +++ b/metadata/md5-cache/app-cdr/dolphin-plugins-mountiso-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/dolphin-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/solid-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/dolphin-plugins-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=390b9d9ca7253e9735b8d3431f42fffd diff --git a/metadata/md5-cache/app-cdr/dolphin-plugins-mountiso-22.12.3 b/metadata/md5-cache/app-cdr/dolphin-plugins-mountiso-22.12.3 index cf53a0e294d0..08a176873184 100644 --- a/metadata/md5-cache/app-cdr/dolphin-plugins-mountiso-22.12.3 +++ b/metadata/md5-cache/app-cdr/dolphin-plugins-mountiso-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/dolphin-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/solid-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/dolphin-plugins-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fdea76b9e218ceb590b810a48c360346 diff --git a/metadata/md5-cache/app-cdr/extract-xiso-2.7.1_p202204252159 b/metadata/md5-cache/app-cdr/extract-xiso-2.7.1_p202204252159 index f50f8b14ceca..0e746dfce830 100644 --- a/metadata/md5-cache/app-cdr/extract-xiso-2.7.1_p202204252159 +++ b/metadata/md5-cache/app-cdr/extract-xiso-2.7.1_p202204252159 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ppc x86 LICENSE=BSD-4 SLOT=0 SRC_URI=https://github.com/XboxDev/extract-xiso/archive/refs/tags/build-202204252159.tar.gz -> extract-xiso-2.7.1_p202204252159.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d689a0d06883fe63f1cf78a081170e3 diff --git a/metadata/md5-cache/app-cdr/gcdemu-3.2.6 b/metadata/md5-cache/app-cdr/gcdemu-3.2.6 index 3eed0238f0a6..ba832632b7a1 100644 --- a/metadata/md5-cache/app-cdr/gcdemu-3.2.6 +++ b/metadata/md5-cache/app-cdr/gcdemu-3.2.6 @@ -11,5 +11,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://download.sourceforge.net/cdemu/gcdemu/gcdemu-3.2.6.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8dcda9d1721802979e2311e968682a95 diff --git a/metadata/md5-cache/app-cdr/isoimagewriter-0.9-r1 b/metadata/md5-cache/app-cdr/isoimagewriter-0.9-r1 index ad43a00d3501..323cbbf4487e 100644 --- a/metadata/md5-cache/app-cdr/isoimagewriter-0.9-r1 +++ b/metadata/md5-cache/app-cdr/isoimagewriter-0.9-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=app-crypt/gpgme:=[cxx(+),qt5] >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtnetwork-5.15.2:5 >=dev-qt/qtwidgets-5.15.2:5 >=kde-frameworks/karchive-5.82.0:5 >=kde-frameworks/kauth-5.82.0:5 >=kde-frameworks/kcrash-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kiconthemes-5.82.0:5 >=kde-frameworks/solid-5.82.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/unstable/isoimagewriter/0.9/isoimagewriter-0.9.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=62a67511cf618fa78d52e0dfa31240ca diff --git a/metadata/md5-cache/app-cdr/kcdemu-0.8.0 b/metadata/md5-cache/app-cdr/kcdemu-0.8.0 index aaa4646db5d1..d6a7da1c6f89 100644 --- a/metadata/md5-cache/app-cdr/kcdemu-0.8.0 +++ b/metadata/md5-cache/app-cdr/kcdemu-0.8.0 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.12.3:5 >=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtwidgets-5.12.3:5 >=kde-frameworks/kconfigwidgets-5.60.0:5 >=kde-frameworks/kcoreaddons-5.60.0:5 >=kde-frameworks/kdbusaddons-5.60.0:5 >=kde-frameworks/ki18n-5.60.0:5 >=kde-frameworks/knotifications-5.60.0:5 >=kde-frameworks/kwidgetsaddons-5.60.0:5 >=kde-frameworks/kxmlgui-5.60.0:5 >=app-cdr/cdemu-2.0.0[cdemu-daemon] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://sourceforge/project/kde-cdemu-manager/kde_cdemu-0.8.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=447d851c3bf42b7e4a775a9b30a10818 diff --git a/metadata/md5-cache/app-crypt/Manifest.gz b/metadata/md5-cache/app-crypt/Manifest.gz index 3e52f502e8f8..4775bc7381c7 100644 Binary files a/metadata/md5-cache/app-crypt/Manifest.gz and b/metadata/md5-cache/app-crypt/Manifest.gz differ diff --git a/metadata/md5-cache/app-crypt/ccrypt-1.11-r3 b/metadata/md5-cache/app-crypt/ccrypt-1.11-r3 deleted file mode 100644 index db9829b21604..000000000000 --- a/metadata/md5-cache/app-crypt/ccrypt-1.11-r3 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure -DEPEND=virtual/libcrypt:= emacs? ( >=app-editors/emacs-23.1:* ) -DESCRIPTION=Encryption and decryption -EAPI=7 -HOMEPAGE=https://sourceforge.net/projects/ccrypt/ -IUSE=emacs -KEYWORDS=amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos -LICENSE=GPL-2 -RDEPEND=virtual/libcrypt:= -SLOT=0 -SRC_URI=mirror://sourceforge/ccrypt/1.11/ccrypt-1.11.tar.gz -_md5_=a04d034e7ccd49850e4c8433511e49cf diff --git a/metadata/md5-cache/app-crypt/ccrypt-1.11-r4 b/metadata/md5-cache/app-crypt/ccrypt-1.11-r4 new file mode 100644 index 000000000000..6d2bd090055f --- /dev/null +++ b/metadata/md5-cache/app-crypt/ccrypt-1.11-r4 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=configure prepare +DEPEND=virtual/libcrypt:= emacs? ( >=app-editors/emacs-23.1:* ) +DESCRIPTION=Encryption and decryption +EAPI=8 +HOMEPAGE=https://sourceforge.net/projects/ccrypt/ +INHERIT=autotools +IUSE=emacs +KEYWORDS=amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos +LICENSE=GPL-2 +RDEPEND=virtual/libcrypt:= +SLOT=0 +SRC_URI=mirror://sourceforge/ccrypt/1.11/ccrypt-1.11.tar.gz +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=72d6fec7d7ca9ac2714d27afa273381c diff --git a/metadata/md5-cache/app-crypt/heimdal-7.8.0-r1 b/metadata/md5-cache/app-crypt/heimdal-7.8.0-r1 index 7914eaa2a38b..7171e19a6269 100644 --- a/metadata/md5-cache/app-crypt/heimdal-7.8.0-r1 +++ b/metadata/md5-cache/app-crypt/heimdal-7.8.0-r1 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://www.heimdal.software/ INHERIT=autotools db-use multilib-minimal python-any-r1 virtualx flag-o-matic IUSE=afs +berkdb caps gdbm hdb-ldap +lmdb otp selinux ssl static-libs test 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 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 LICENSE=BSD RDEPEND=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(-)?] ssl? ( >=dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) berkdb? ( >=sys-libs/db-4.8.30-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(-)?] ) gdbm? ( >=sys-libs/gdbm-1.10-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(-)?] ) lmdb? ( dev-db/lmdb:= ) caps? ( sys-libs/libcap-ng ) >=dev-db/sqlite-3.8.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(-)?] >=sys-fs/e2fsprogs-1.46.4-r51[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/ncurses:0= >=sys-libs/readline-6.2_p5-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(-)?] afs? ( net-fs/openafs ) hdb-ldap? ( >=net-nds/openldap-2.3.0:= ) X? ( x11-libs/libX11 x11-libs/libXau x11-libs/libXt ) !!app-crypt/mit-krb5 !!app-crypt/mit-krb5-appl selinux? ( sec-policy/selinux-kerberos ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/heimdal/heimdal/releases/download/heimdal-7.8.0/heimdal-7.8.0.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 db-use 3807d3e43e20aaa6e4decedd2bb2db4c flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 -_md5_=62cd8bf13de3e42139037520b12c9087 +_md5_=0d72b0042291cb8b3f6385ae2f95a640 diff --git a/metadata/md5-cache/app-crypt/libnitrokey-3.6 b/metadata/md5-cache/app-crypt/libnitrokey-3.6 index c742afa99913..8e18fc22974a 100644 --- a/metadata/md5-cache/app-crypt/libnitrokey-3.6 +++ b/metadata/md5-cache/app-crypt/libnitrokey-3.6 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/hidapi:= virtual/udev RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Nitrokey/libnitrokey/archive/v3.6.tar.gz -> libnitrokey-3.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=49fd8f3b649aa437a00815489ffae14f diff --git a/metadata/md5-cache/app-crypt/libnitrokey-9999 b/metadata/md5-cache/app-crypt/libnitrokey-9999 index 2b4b9904c270..cc00a659c60b 100644 --- a/metadata/md5-cache/app-crypt/libnitrokey-9999 +++ b/metadata/md5-cache/app-crypt/libnitrokey-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/hidapi:= virtual/udev RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3cee899466976365131464a455a2152d diff --git a/metadata/md5-cache/app-crypt/mhash-0.9.9.9-r2 b/metadata/md5-cache/app-crypt/mhash-0.9.9.9-r3 similarity index 95% rename from metadata/md5-cache/app-crypt/mhash-0.9.9.9-r2 rename to metadata/md5-cache/app-crypt/mhash-0.9.9.9-r3 index 4e3e3d070162..a6029566ff88 100644 --- a/metadata/md5-cache/app-crypt/mhash-0.9.9.9-r2 +++ b/metadata/md5-cache/app-crypt/mhash-0.9.9.9-r3 @@ -1,7 +1,7 @@ BDEPEND=dev-lang/perl sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=compile configure install prepare DESCRIPTION=Library providing a uniform interface to a large number of hash algorithms -EAPI=7 +EAPI=8 HOMEPAGE=https://mhash.sourceforge.net/ INHERIT=autotools IUSE=static-libs @@ -10,4 +10,4 @@ LICENSE=GPL-2+ SLOT=0 SRC_URI=mirror://sourceforge/mhash/mhash-0.9.9.9.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=53bcddd9063df563911cc14188b36f47 +_md5_=b3bbdd12f4fe68fb4e5f692a87a8c520 diff --git a/metadata/md5-cache/app-crypt/minisign-0.10 b/metadata/md5-cache/app-crypt/minisign-0.10 index 0e8cf2e09eac..4c2fbe685988 100644 --- a/metadata/md5-cache/app-crypt/minisign-0.10 +++ b/metadata/md5-cache/app-crypt/minisign-0.10 @@ -10,5 +10,5 @@ LICENSE=ISC RDEPEND=dev-libs/libsodium:=[-minimal] SLOT=0 SRC_URI=https://github.com/jedisct1/minisign/archive/0.10.tar.gz -> minisign-0.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=867dd2f41e839f5781d07c29e97c1545 diff --git a/metadata/md5-cache/app-crypt/minisign-0.11 b/metadata/md5-cache/app-crypt/minisign-0.11 index dfc0995f8ef4..a2b5de4b8f65 100644 --- a/metadata/md5-cache/app-crypt/minisign-0.11 +++ b/metadata/md5-cache/app-crypt/minisign-0.11 @@ -10,5 +10,5 @@ LICENSE=ISC RDEPEND=dev-libs/libsodium:=[-minimal] SLOT=0 SRC_URI=https://github.com/jedisct1/minisign/archive/0.11.tar.gz -> minisign-0.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cd0c21b0fcaa335b620bc96138e3eeab diff --git a/metadata/md5-cache/app-crypt/minisign-9999 b/metadata/md5-cache/app-crypt/minisign-9999 index 79d856a10ef0..50b26775759c 100644 --- a/metadata/md5-cache/app-crypt/minisign-9999 +++ b/metadata/md5-cache/app-crypt/minisign-9999 @@ -9,5 +9,5 @@ LICENSE=ISC PROPERTIES=live RDEPEND=dev-libs/libsodium:=[-minimal] SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cd0c21b0fcaa335b620bc96138e3eeab diff --git a/metadata/md5-cache/app-crypt/nitrokey-app-1.4.2 b/metadata/md5-cache/app-crypt/nitrokey-app-1.4.2 index a1dd3b8f3902..5fe7e0a40d81 100644 --- a/metadata/md5-cache/app-crypt/nitrokey-app-1.4.2 +++ b/metadata/md5-cache/app-crypt/nitrokey-app-1.4.2 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=>=app-crypt/libnitrokey-3.5:= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://github.com/Nitrokey/nitrokey-app/archive/v1.4.2.tar.gz -> nitrokey-app-1.4.2.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0cdca0b9e35404b95d3e7681941949a1 diff --git a/metadata/md5-cache/app-crypt/nitrokey-app-9999 b/metadata/md5-cache/app-crypt/nitrokey-app-9999 index 164e0e097fee..1ffb2e6468d0 100644 --- a/metadata/md5-cache/app-crypt/nitrokey-app-9999 +++ b/metadata/md5-cache/app-crypt/nitrokey-app-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-3 PROPERTIES=live RDEPEND=>=app-crypt/libnitrokey-3.5:= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=39538e57ffb3711998ba4f2026c5f62d diff --git a/metadata/md5-cache/app-crypt/ophcrack-3.8.0 b/metadata/md5-cache/app-crypt/ophcrack-3.8.0 deleted file mode 100644 index f4ed169e1e50..000000000000 --- a/metadata/md5-cache/app-crypt/ophcrack-3.8.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=configure install -DEPEND=dev-libs/openssl:0= dev-libs/expat net-libs/netwib qt5? ( dev-qt/qtcharts:5 dev-qt/qtgui:5 ) -DESCRIPTION=A time-memory-trade-off-cracker -EAPI=7 -HOMEPAGE=https://ophcrack.sourceforge.io/ -INHERIT=desktop toolchain-funcs qmake-utils -IUSE=debug qt5 +tables -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/openssl:0= dev-libs/expat net-libs/netwib qt5? ( dev-qt/qtcharts:5 dev-qt/qtgui:5 ) tables? ( app-crypt/ophcrack-tables ) -SLOT=0 -SRC_URI=https://downloads.sourceforge.net/project/ophcrack/ophcrack/3.8.0/ophcrack-3.8.0.tar.bz2 -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d multilib 5ca4e49abed8e3a2f7b56920eadee157 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=73698ea8953b69c68ee50ad19c1d15a9 diff --git a/metadata/md5-cache/app-crypt/ophcrack-3.8.0-r1 b/metadata/md5-cache/app-crypt/ophcrack-3.8.0-r1 new file mode 100644 index 000000000000..b97025417b59 --- /dev/null +++ b/metadata/md5-cache/app-crypt/ophcrack-3.8.0-r1 @@ -0,0 +1,16 @@ +BDEPEND=app-arch/unzip virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=configure install postinst postrm preinst prepare +DEPEND=dev-libs/openssl:= dev-libs/expat net-libs/netwib gui? ( dev-qt/qtcharts:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) +DESCRIPTION=A time-memory-trade-off-cracker +EAPI=8 +HOMEPAGE=https://ophcrack.sourceforge.io/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=autotools desktop qmake-utils xdg +IUSE=gui +tables +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/openssl:= dev-libs/expat net-libs/netwib gui? ( dev-qt/qtcharts:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) tables? ( app-crypt/ophcrack-tables ) +SLOT=0 +SRC_URI=https://downloads.sourceforge.net/project/ophcrack/ophcrack/3.8.0/ophcrack-3.8.0.tar.bz2 +_eclasses_=autotools b5529dc611971a61a30153916014f616 desktop 021728fdc1b03b36357dbc89489e0f0d gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=0a5eb5cd0a718cdc4c89f3f1c1ad6157 diff --git a/metadata/md5-cache/app-crypt/osslsigncode-2.5 b/metadata/md5-cache/app-crypt/osslsigncode-2.5 index 6eb0458732c6..bb72fd9b0bfc 100644 --- a/metadata/md5-cache/app-crypt/osslsigncode-2.5 +++ b/metadata/md5-cache/app-crypt/osslsigncode-2.5 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl:= curl? ( net-misc/curl ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mtrojnar/osslsigncode/releases/download/2.5/osslsigncode-2.5.tar.gz test? ( https://github.com/mtrojnar/osslsigncode/raw/2.5/tests/files/unsigned.cat -> osslsigncode-test-unsigned.cat ) test? ( https://github.com/mtrojnar/osslsigncode/raw/2.5/tests/files/unsigned.ex_ -> osslsigncode-test-unsigned.ex_ ) test? ( https://github.com/mtrojnar/osslsigncode/raw/2.5/tests/files/unsigned.exe -> osslsigncode-test-unsigned.exe ) test? ( https://github.com/mtrojnar/osslsigncode/raw/2.5/tests/files/unsigned.msi -> osslsigncode-test-unsigned.msi ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=98f2480dd386874bb2b3ee8cdc9f215b diff --git a/metadata/md5-cache/app-crypt/qca-2.3.5 b/metadata/md5-cache/app-crypt/qca-2.3.5 index 87d2af1510ed..15b206a6fc81 100644 --- a/metadata/md5-cache/app-crypt/qca-2.3.5 +++ b/metadata/md5-cache/app-crypt/qca-2.3.5 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtcore-5.14:5 botan? ( dev-libs/botan:= ) gcrypt? ( dev-libs/li RESTRICT=!test? ( test ) SLOT=2 SRC_URI=mirror://kde/stable/qca/2.3.5/qca-2.3.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0419a67fd069b65448e23d61a40108bc diff --git a/metadata/md5-cache/app-crypt/tpm-emulator-0.7.5-r3 b/metadata/md5-cache/app-crypt/tpm-emulator-0.7.5-r3 index b56b44b49d3f..709336ae3edd 100644 --- a/metadata/md5-cache/app-crypt/tpm-emulator-0.7.5-r3 +++ b/metadata/md5-cache/app-crypt/tpm-emulator-0.7.5-r3 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=acct-group/tpm acct-user/tpm dev-libs/gmp:= modules? ( kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) ) SLOT=0 SRC_URI=https://github.com/PeterHuewe/tpm-emulator/archive/v0.7.5.tar.gz -> tpm-emulator-0.7.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0d5c45b47554a87aea509b8b54475e01 diff --git a/metadata/md5-cache/app-crypt/zulucrypt-5.5.0_pre20180223 b/metadata/md5-cache/app-crypt/zulucrypt-5.5.0_pre20180223 index ce611edf6652..9facaf168245 100644 --- a/metadata/md5-cache/app-crypt/zulucrypt-5.5.0_pre20180223 +++ b/metadata/md5-cache/app-crypt/zulucrypt-5.5.0_pre20180223 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libgcrypt:0= sys-fs/cryptsetup:= gnome? ( app-crypt/libsecret ) REQUIRED_USE=kwallet? ( qt5 ) SLOT=0 SRC_URI=https://github.com/mhogomchungu/zuluCrypt/archive/76637bb05af13744bf1734b56f67d6d5cc2343b1.tar.gz -> zulucrypt-5.5.0_pre20180223.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1e353afada59586ea9349f56d432a7b0 diff --git a/metadata/md5-cache/app-dicts/Manifest.gz b/metadata/md5-cache/app-dicts/Manifest.gz index b1f91ab737c9..d5f5aae575ef 100644 Binary files a/metadata/md5-cache/app-dicts/Manifest.gz and b/metadata/md5-cache/app-dicts/Manifest.gz differ diff --git a/metadata/md5-cache/app-dicts/dikt-2s_p1 b/metadata/md5-cache/app-dicts/dikt-2s_p1 index ffd3685b8c06..14129d819ae4 100644 --- a/metadata/md5-cache/app-dicts/dikt-2s_p1 +++ b/metadata/md5-cache/app-dicts/dikt-2s_p1 @@ -12,5 +12,5 @@ LICENSE=BSD-2 RDEPEND=>=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtnetwork-5.12.3:5 >=dev-qt/qtprintsupport-5.12.3:5 >=dev-qt/qtwidgets-5.12.3:5 >=kde-frameworks/kcodecs-5.60.0:5 >=kde-frameworks/kconfig-5.60.0:5 >=kde-frameworks/kconfigwidgets-5.60.0:5 >=kde-frameworks/kcoreaddons-5.60.0:5 >=kde-frameworks/kdbusaddons-5.60.0:5 >=kde-frameworks/kguiaddons-5.60.0:5 >=kde-frameworks/ki18n-5.60.0:5 >=kde-frameworks/kiconthemes-5.60.0:5 >=kde-frameworks/kio-5.60.0:5 >=kde-frameworks/kwidgetsaddons-5.60.0:5 >=kde-frameworks/kxmlgui-5.60.0:5 !app-dicts/dikt:4 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=https://bitbucket-archive.softwareheritage.org/static/67/67f37093-df38-43b8-845b-2952e0a33bb3/attachments/dikt-2s1.txz -> dikt-2s1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1459c24703c9b7f4b15835845a58ed9d diff --git a/metadata/md5-cache/app-dicts/myspell-en-20230301 b/metadata/md5-cache/app-dicts/myspell-en-20230301 new file mode 100644 index 000000000000..3161cecac190 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-en-20230301 @@ -0,0 +1,14 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install prepare unpack +DESCRIPTION=English dictionaries for myspell/hunspell +EAPI=8 +HOMEPAGE=https://extensions.libreoffice.org/extensions/english-dictionaries https://proofingtoolgui.org https://github.com/marcoagpinto/aoo-mozilla-en-dict +INHERIT=myspell-r2 +IUSE=+l10n_en l10n_en-AU l10n_en-CA l10n_en-GB l10n_en-US l10n_en-ZA +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris +LICENSE=BSD MIT LGPL-3+ +REQUIRED_USE=|| ( l10n_en l10n_en-AU l10n_en-CA l10n_en-GB l10n_en-US l10n_en-ZA ) +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/41/1677661772/dict-en-20230301_lo.oxt +_eclasses_=myspell-r2 d70debd5f4806077ff74738d349a5927 +_md5_=7d0191641b2ed105c8a302681faacb00 diff --git a/metadata/md5-cache/app-doc/Manifest.gz b/metadata/md5-cache/app-doc/Manifest.gz index 10db7cd9859b..63682fd5f701 100644 Binary files a/metadata/md5-cache/app-doc/Manifest.gz and b/metadata/md5-cache/app-doc/Manifest.gz differ diff --git a/metadata/md5-cache/app-doc/doxygen-1.9.5 b/metadata/md5-cache/app-doc/doxygen-1.9.5 index 6548e1b07bec..2e73b03b02e1 100644 --- a/metadata/md5-cache/app-doc/doxygen-1.9.5 +++ b/metadata/md5-cache/app-doc/doxygen-1.9.5 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( doc ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://doxygen.nl/files/doxygen-1.9.5.src.tar.gz mirror://sourceforge/doxygen/rel-1.9.5/doxygen-1.9.5.src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=41d9fee6a2895d1ee174cb3fd39ca2dd diff --git a/metadata/md5-cache/app-doc/doxygen-1.9.6 b/metadata/md5-cache/app-doc/doxygen-1.9.6 index 0742e2371d58..3adb53a9e280 100644 --- a/metadata/md5-cache/app-doc/doxygen-1.9.6 +++ b/metadata/md5-cache/app-doc/doxygen-1.9.6 @@ -6,12 +6,12 @@ EAPI=8 HOMEPAGE=https://www.doxygen.nl/ INHERIT=cmake flag-o-matic llvm python-any-r1 IUSE=clang debug doc dot doxysearch qt5 sqlite test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=app-text/ghostscript-gpl dev-lang/perl media-libs/libpng:0= virtual/libiconv clang? ( >=sys-devel/clang-10:= ) dot? ( media-gfx/graphviz media-libs/freetype ) doc? ( dev-texlive/texlive-bibtexextra dev-texlive/texlive-fontsextra dev-texlive/texlive-fontutils dev-texlive/texlive-latex dev-texlive/texlive-latexextra dev-texlive/texlive-plaingeneric ) doxysearch? ( dev-libs/xapian:= ) qt5? ( dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 ) sqlite? ( dev-db/sqlite:3 ) REQUIRED_USE=test? ( doc ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://doxygen.nl/files/doxygen-1.9.6.src.tar.gz mirror://sourceforge/doxygen/rel-1.9.6/doxygen-1.9.6.src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=dd61d15ffbb42cc3f7acadb66c8aec0a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=f606fd85d08804d87d682adf95162ce4 diff --git a/metadata/md5-cache/app-doc/doxygen-9999 b/metadata/md5-cache/app-doc/doxygen-9999 index 46fc6174fb9d..d655c466b01e 100644 --- a/metadata/md5-cache/app-doc/doxygen-9999 +++ b/metadata/md5-cache/app-doc/doxygen-9999 @@ -12,5 +12,5 @@ RDEPEND=app-text/ghostscript-gpl dev-lang/perl media-libs/libpng:0= virtual/libi REQUIRED_USE=test? ( doc ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef7ab9419089c70f7e3dc38da61e0adc diff --git a/metadata/md5-cache/app-doc/gnucash-docs-4.12 b/metadata/md5-cache/app-doc/gnucash-docs-4.12 index 1ecea3ec2ff3..fcd1c035b9fe 100644 --- a/metadata/md5-cache/app-doc/gnucash-docs-4.12 +++ b/metadata/md5-cache/app-doc/gnucash-docs-4.12 @@ -9,5 +9,5 @@ KEYWORDS=amd64 ~arm64 ~ppc ~ppc64 ~riscv x86 LICENSE=GPL-2 FDL-1.1 SLOT=0 SRC_URI=https://github.com/Gnucash/gnucash-docs/archive/4.12.tar.gz -> gnucash-docs-4.12.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a96a33a6a3c14c102941a1f8595f73a diff --git a/metadata/md5-cache/app-doc/gnucash-docs-4.13 b/metadata/md5-cache/app-doc/gnucash-docs-4.13 index b284e52cadbe..bde0951c9401 100644 --- a/metadata/md5-cache/app-doc/gnucash-docs-4.13 +++ b/metadata/md5-cache/app-doc/gnucash-docs-4.13 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=GPL-2 FDL-1.1 SLOT=0 SRC_URI=https://github.com/Gnucash/gnucash-docs/archive/4.13.tar.gz -> gnucash-docs-4.13.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2ec4a734ce2127f11aee4fd36d06ce5d diff --git a/metadata/md5-cache/app-doc/halibut-1.3 b/metadata/md5-cache/app-doc/halibut-1.3 index 8b4418d8888c..b0a7c820116d 100644 --- a/metadata/md5-cache/app-doc/halibut-1.3 +++ b/metadata/md5-cache/app-doc/halibut-1.3 @@ -8,5 +8,5 @@ KEYWORDS=~alpha amd64 ~arm64 ~hppa ppc ppc64 ~riscv sparc x86 LICENSE=MIT SLOT=0 SRC_URI=https://www.chiark.greenend.org.uk/~sgtatham/halibut/halibut-1.3/halibut-1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d8e5f53d92fcfae27b85d216c89942f diff --git a/metadata/md5-cache/app-doc/kicad-doc-6.0.9 b/metadata/md5-cache/app-doc/kicad-doc-6.0.9 index 4d7bf1a0ad52..b95e8479c84b 100644 --- a/metadata/md5-cache/app-doc/kicad-doc-6.0.9 +++ b/metadata/md5-cache/app-doc/kicad-doc-6.0.9 @@ -10,5 +10,5 @@ LICENSE=|| ( GPL-3+ CC-BY-3.0 ) GPL-2 REQUIRED_USE=|| ( html pdf ) ^^ ( l10n_ca l10n_de l10n_en l10n_es l10n_fr l10n_id l10n_it l10n_ja l10n_pl l10n_ru l10n_zh ) SLOT=0 SRC_URI=https://gitlab.com/kicad/services/kicad-doc/-/archive/6.0.9/kicad-doc-6.0.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=37837c5d734276ed980224a1de55912f diff --git a/metadata/md5-cache/app-doc/kicad-doc-7.0.0 b/metadata/md5-cache/app-doc/kicad-doc-7.0.0 index 846e0df9a245..2952e5a62010 100644 --- a/metadata/md5-cache/app-doc/kicad-doc-7.0.0 +++ b/metadata/md5-cache/app-doc/kicad-doc-7.0.0 @@ -10,5 +10,5 @@ LICENSE=|| ( GPL-3+ CC-BY-3.0 ) GPL-2 REQUIRED_USE=|| ( html pdf ) ^^ ( l10n_ca l10n_de l10n_en l10n_es l10n_fr l10n_id l10n_it l10n_ja l10n_pl l10n_ru l10n_zh ) SLOT=0 SRC_URI=https://gitlab.com/kicad/services/kicad-doc/-/archive/7.0.0/kicad-doc-7.0.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a3d41f2c129f574e94bf53e41f3475e7 diff --git a/metadata/md5-cache/app-doc/zeal-0.6.1_p20200815-r1 b/metadata/md5-cache/app-doc/zeal-0.6.1_p20200815-r1 index eed69dd277d9..e473aa4895b4 100644 --- a/metadata/md5-cache/app-doc/zeal-0.6.1_p20200815-r1 +++ b/metadata/md5-cache/app-doc/zeal-0.6.1_p20200815-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=app-arch/libarchive:= dev-db/sqlite:3 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsql:5[sqlite] dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets] dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 x11-libs/libX11 x11-libs/libxcb:= >=x11-libs/xcb-util-keysyms-0.3.9 x11-themes/hicolor-icon-theme SLOT=0 SRC_URI=https://github.com/zealdocs/zeal/archive/994cc5f6b6bfffddd5faaaafdb4fed483c38188f.tar.gz -> zeal-0.6.1_p20200815.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6adcda96b36a0e2cd2643bb7baf34006 diff --git a/metadata/md5-cache/app-editors/Manifest.gz b/metadata/md5-cache/app-editors/Manifest.gz index afa9d241978c..aa4d179ae4f1 100644 Binary files a/metadata/md5-cache/app-editors/Manifest.gz and b/metadata/md5-cache/app-editors/Manifest.gz differ diff --git a/metadata/md5-cache/app-editors/featherpad-1.3.1 b/metadata/md5-cache/app-editors/featherpad-1.3.1 index bd3b204e0d3d..006212ca26c9 100644 --- a/metadata/md5-cache/app-editors/featherpad-1.3.1 +++ b/metadata/md5-cache/app-editors/featherpad-1.3.1 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ RDEPEND=app-text/hunspell:= >=dev-qt/qtcore-5.15.0:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 X? ( dev-qt/qtx11extras:5 x11-libs/libX11 ) SLOT=0 SRC_URI=https://github.com/tsujan/FeatherPad/archive/V1.3.1.tar.gz -> featherpad-1.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=41468d536b58ed2393a3c3a16843cf33 diff --git a/metadata/md5-cache/app-editors/featherpad-1.3.4 b/metadata/md5-cache/app-editors/featherpad-1.3.4 index fad58c6ab41e..d6653dd16cc1 100644 --- a/metadata/md5-cache/app-editors/featherpad-1.3.4 +++ b/metadata/md5-cache/app-editors/featherpad-1.3.4 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ RDEPEND=app-text/hunspell:= >=dev-qt/qtcore-5.15.0:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 X? ( dev-qt/qtx11extras:5 x11-libs/libX11 ) SLOT=0 SRC_URI=https://github.com/tsujan/FeatherPad/archive/V1.3.4.tar.gz -> featherpad-1.3.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=41468d536b58ed2393a3c3a16843cf33 diff --git a/metadata/md5-cache/app-editors/juffed-0.10_p20200103 b/metadata/md5-cache/app-editors/juffed-0.10_p20200103 index ef6323dcd7de..6d532fd5de26 100644 --- a/metadata/md5-cache/app-editors/juffed-0.10_p20200103 +++ b/metadata/md5-cache/app-editors/juffed-0.10_p20200103 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=app-i18n/enca dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtsingleapplication[X] dev-qt/qtwidgets:5 dev-qt/qtxml:5 x11-libs/qscintilla SLOT=0 SRC_URI=https://github.com/Mezomish/juffed/archive/74ab7236a30be17351edc5b83eb3579affd96913.tar.gz -> juffed-0.10_p20200103.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2eeedc0bc66fb90ed9ea57d3acc2809 diff --git a/metadata/md5-cache/app-editors/kakoune-2022.10.31 b/metadata/md5-cache/app-editors/kakoune-2022.10.31 index 024e8c14c68b..3c268b5be0a4 100644 --- a/metadata/md5-cache/app-editors/kakoune-2022.10.31 +++ b/metadata/md5-cache/app-editors/kakoune-2022.10.31 @@ -9,4 +9,4 @@ LICENSE=Unlicense SLOT=0 SRC_URI=https://github.com/mawww/kakoune/releases/download/v2022.10.31/kakoune-2022.10.31.tar.bz2 _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=958fc4735335c64412459daa3400537f +_md5_=3e414e17115e5c07c11772b4cc6f12fd diff --git a/metadata/md5-cache/app-editors/kile-2.9.93_p20221123 b/metadata/md5-cache/app-editors/kile-2.9.93_p20221123 index 427220a08ef1..7919797aebef 100644 --- a/metadata/md5-cache/app-editors/kile-2.9.93_p20221123 +++ b/metadata/md5-cache/app-editors/kile-2.9.93_p20221123 @@ -12,5 +12,5 @@ LICENSE=FDL-1.2 GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtscript-5.15.5:5 >=dev-qt/qttest-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 kde-apps/okular:5 >=kde-frameworks/kconfig-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/kcrash-5.82.0:5 >=kde-frameworks/kdbusaddons-5.82.0:5 >=kde-frameworks/kdoctools-5.82.0:5 >=kde-frameworks/kguiaddons-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kiconthemes-5.82.0:5 >=kde-frameworks/kio-5.82.0:5 >=kde-frameworks/kparts-5.82.0:5 >=kde-frameworks/ktexteditor-5.82.0:5 >=kde-frameworks/kwindowsystem-5.82.0:5 >=kde-frameworks/kxmlgui-5.82.0:5 pdf? ( app-text/poppler[qt5] ) kde-apps/konsole:5 kde-apps/okular:5[pdf?] virtual/latex-base virtual/tex-base pdf? ( app-text/ghostscript-gpl app-text/texlive-core ) png? ( app-text/dvipng virtual/imagemagick-tools[png?] ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://gentoo/kile-2.9.93_p20221123-1ca67389.tar.gz https://invent.kde.org/office/kile/-/archive/1ca67389327d63fdc5a4c65ab6dd1cf7fbf597af/kile-1ca67389327d63fdc5a4c65ab6dd1cf7fbf597af.tar.gz -> kile-2.9.93_p20221123-1ca67389.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f389817fa055d324b064a42651fc14c7 diff --git a/metadata/md5-cache/app-editors/neovim-0.8.2 b/metadata/md5-cache/app-editors/neovim-0.8.2 index 122dfeaa1aa1..3cd5844c01a6 100644 --- a/metadata/md5-cache/app-editors/neovim-0.8.2 +++ b/metadata/md5-cache/app-editors/neovim-0.8.2 @@ -14,5 +14,5 @@ REQUIRED_USE=test? ( lua_single_target_luajit ) RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://github.com/neovim/neovim/archive/v0.8.2.tar.gz -> neovim-0.8.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e886a5c542304ee31847b2255b7a02b diff --git a/metadata/md5-cache/app-editors/neovim-0.8.3 b/metadata/md5-cache/app-editors/neovim-0.8.3 index d20b6c09d7e6..ab3a0b5c021d 100644 --- a/metadata/md5-cache/app-editors/neovim-0.8.3 +++ b/metadata/md5-cache/app-editors/neovim-0.8.3 @@ -14,5 +14,5 @@ REQUIRED_USE=test? ( lua_single_target_luajit ) RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://github.com/neovim/neovim/archive/v0.8.3.tar.gz -> neovim-0.8.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c16df038bec4b30a10006c8658828257 diff --git a/metadata/md5-cache/app-editors/neovim-9999 b/metadata/md5-cache/app-editors/neovim-9999 index b3bf35ab22a8..f27727c881be 100644 --- a/metadata/md5-cache/app-editors/neovim-9999 +++ b/metadata/md5-cache/app-editors/neovim-9999 @@ -13,5 +13,5 @@ RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1 REQUIRED_USE=test? ( lua_single_target_luajit ) RESTRICT=!test? ( test ) test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=11bddbf3e25aec2e35e019883aaf0019 diff --git a/metadata/md5-cache/app-editors/okteta-0.26.10 b/metadata/md5-cache/app-editors/okteta-0.26.10 index c0a211bacab5..2f575f13ccd7 100644 --- a/metadata/md5-cache/app-editors/okteta-0.26.10 +++ b/metadata/md5-cache/app-editors/okteta-0.26.10 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwo RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/okteta/0.26.10/src/okteta-0.26.10.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8c15bf8edb3a29457b75efc615560a5 diff --git a/metadata/md5-cache/app-editors/texworks-0.6.7 b/metadata/md5-cache/app-editors/texworks-0.6.7 index 2ca6129c2e1a..e93a6f0af6f1 100644 --- a/metadata/md5-cache/app-editors/texworks-0.6.7 +++ b/metadata/md5-cache/app-editors/texworks-0.6.7 @@ -14,5 +14,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 lua_single_target_lua5-3 ) ) p RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/TeXworks/texworks/archive/release-0.6.7.tar.gz -> texworks-0.6.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af27e0bfb32f49de1c0ab041874ca1d7 diff --git a/metadata/md5-cache/app-emacs/Manifest.gz b/metadata/md5-cache/app-emacs/Manifest.gz index c0c98c1dad10..bce1c35d8d90 100644 Binary files a/metadata/md5-cache/app-emacs/Manifest.gz and b/metadata/md5-cache/app-emacs/Manifest.gz differ diff --git a/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.9.0 b/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.9.0 new file mode 100644 index 000000000000..33fe0c0036cc --- /dev/null +++ b/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.9.0 @@ -0,0 +1,13 @@ +BDEPEND=app-emacs/all-the-icons app-emacs/ivy-rich >=app-editors/emacs-25.1:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DESCRIPTION=Display icons for ivy buffers in Emacs +EAPI=8 +HOMEPAGE=https://github.com/seagle0128/all-the-icons-ivy-rich/ +INHERIT=elisp +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=app-emacs/all-the-icons app-emacs/ivy-rich >=app-editors/emacs-25.1:* +SLOT=0 +SRC_URI=https://github.com/seagle0128/all-the-icons-ivy-rich/archive/v1.9.0.tar.gz -> all-the-icons-ivy-rich-1.9.0.tar.gz +_eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b +_md5_=dd66263364056338b28a92747dd4b15b diff --git a/metadata/md5-cache/app-emacs/citar-1.2.0 b/metadata/md5-cache/app-emacs/citar-1.2.0 new file mode 100644 index 000000000000..9c216b29e35d --- /dev/null +++ b/metadata/md5-cache/app-emacs/citar-1.2.0 @@ -0,0 +1,13 @@ +BDEPEND=app-emacs/citeproc-el app-emacs/parsebib >=app-editors/emacs-27.1:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DESCRIPTION=Emacs package to quickly find and act on bibliographic references +EAPI=8 +HOMEPAGE=https://github.com/emacs-citar/citar/ +INHERIT=elisp +KEYWORDS=~amd64 +LICENSE=GPL-3+ +RDEPEND=app-emacs/citeproc-el app-emacs/parsebib >=app-editors/emacs-27.1:* +SLOT=0 +SRC_URI=https://github.com/emacs-citar/citar/archive/v1.2.0.tar.gz -> citar-1.2.0.tar.gz +_eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b +_md5_=82fee0ea12c18b1763419245aa1e38e8 diff --git a/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 b/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 index 20114f9d997d..258e4f30fda3 100644 --- a/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 +++ b/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 @@ -10,4 +10,4 @@ RDEPEND=app-emacs/company-math app-emacs/company-mode app-emacs/dash app-emacs/y SLOT=0 SRC_URI=https://github.com/cpitclaudel/company-coq/archive/382db93374380e5db56f02934ee32bbe39159019.tar.gz -> company-coq-1.0.1_p20210708.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=326062d9abb637011e3acad1c7d3932b +_md5_=65b31f3c675498b322cd397e5e58c44e diff --git a/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20220314 b/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20220314 index 884a6a711a19..ebbc6a3081e9 100644 --- a/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20220314 +++ b/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20220314 @@ -10,4 +10,4 @@ RDEPEND=app-emacs/company-math app-emacs/company-mode app-emacs/dash app-emacs/y SLOT=0 SRC_URI=https://github.com/cpitclaudel/company-coq/archive/a6e349e0131f676a885bd14c908fd26054b2df42.tar.gz -> company-coq-1.0.1_p20220314.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=1063153f47155a1710e340f6de8ab3fe +_md5_=30c428c6b11ad3b697fe5672f92deedf diff --git a/metadata/md5-cache/app-emacs/consult-flycheck-0.8 b/metadata/md5-cache/app-emacs/consult-flycheck-0.8-r1 similarity index 81% rename from metadata/md5-cache/app-emacs/consult-flycheck-0.8 rename to metadata/md5-cache/app-emacs/consult-flycheck-0.8-r1 index 75626f955c3f..237c81d766d5 100644 --- a/metadata/md5-cache/app-emacs/consult-flycheck-0.8 +++ b/metadata/md5-cache/app-emacs/consult-flycheck-0.8-r1 @@ -1,6 +1,5 @@ -BDEPEND=>=app-editors/emacs-26:* +BDEPEND=app-emacs/consult app-emacs/flycheck >=app-editors/emacs-26:* DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack -DEPEND=app-emacs/consult app-emacs/flycheck DESCRIPTION=Consult integration for Flycheck EAPI=8 HOMEPAGE=https://github.com/minad/consult-flycheck @@ -11,4 +10,4 @@ RDEPEND=app-emacs/consult app-emacs/flycheck >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/minad/consult-flycheck/archive/refs/tags/0.8.tar.gz -> consult-flycheck-0.8.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=967d678526013fef237a8ac8663b007a +_md5_=33db8826e1a789f158bcfc9eaf21600a diff --git a/metadata/md5-cache/app-emacs/consult-flycheck-0.9 b/metadata/md5-cache/app-emacs/consult-flycheck-0.9-r1 similarity index 81% rename from metadata/md5-cache/app-emacs/consult-flycheck-0.9 rename to metadata/md5-cache/app-emacs/consult-flycheck-0.9-r1 index df80b0a70bda..463857b65010 100644 --- a/metadata/md5-cache/app-emacs/consult-flycheck-0.9 +++ b/metadata/md5-cache/app-emacs/consult-flycheck-0.9-r1 @@ -1,6 +1,5 @@ -BDEPEND=>=app-editors/emacs-26:* +BDEPEND=app-emacs/consult app-emacs/flycheck >=app-editors/emacs-26:* DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack -DEPEND=app-emacs/consult app-emacs/flycheck DESCRIPTION=Consult integration for Flycheck EAPI=8 HOMEPAGE=https://github.com/minad/consult-flycheck @@ -11,4 +10,4 @@ RDEPEND=app-emacs/consult app-emacs/flycheck >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/minad/consult-flycheck/archive/refs/tags/0.9.tar.gz -> consult-flycheck-0.9.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=967d678526013fef237a8ac8663b007a +_md5_=33db8826e1a789f158bcfc9eaf21600a diff --git a/metadata/md5-cache/app-emacs/eglot-1.6-r1 b/metadata/md5-cache/app-emacs/eglot-1.6-r1 deleted file mode 100644 index 39f28e87ce27..000000000000 --- a/metadata/md5-cache/app-emacs/eglot-1.6-r1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack -DESCRIPTION=A minimal Emacs LSP client -EAPI=8 -HOMEPAGE=https://github.com/joaotavora/eglot -INHERIT=elisp -KEYWORDS=~amd64 -LICENSE=GPL-3 -RDEPEND=>=app-editors/emacs-26.1:* -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/joaotavora/eglot/archive/refs/tags/1.6.tar.gz -> eglot-1.6.tar.gz -_eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=509f0b8a786b2ad9fefd782b70ec9514 diff --git a/metadata/md5-cache/app-emacs/elpher-3.3.3 b/metadata/md5-cache/app-emacs/elpher-3.3.3 index 563be30975f7..c5243bec2b1e 100644 --- a/metadata/md5-cache/app-emacs/elpher-3.3.3 +++ b/metadata/md5-cache/app-emacs/elpher-3.3.3 @@ -10,4 +10,4 @@ RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://thelambdalab.xyz/gitweb/index.cgi?p=elpher.git;a=snapshot;h=ab75cff;sf=tgz -> elpher-3.3.3.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=4628fef2010ba8406c51bc11892a458c +_md5_=7b0249ac8af182bf4e2f6b443f37c6dc diff --git a/metadata/md5-cache/app-emacs/elpher-3.4.1 b/metadata/md5-cache/app-emacs/elpher-3.4.1 index dbfb035d4423..2bd9433e8103 100644 --- a/metadata/md5-cache/app-emacs/elpher-3.4.1 +++ b/metadata/md5-cache/app-emacs/elpher-3.4.1 @@ -10,4 +10,4 @@ RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://thelambdalab.xyz/gitweb/index.cgi?p=elpher.git;a=snapshot;h=bf0dd36;sf=tgz -> elpher-3.4.1.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=895e91efd0e000b85e52a21d9bf4d382 +_md5_=6138547d2a443c99e1ce32a88eddc983 diff --git a/metadata/md5-cache/app-emacs/elpher-3.4.2 b/metadata/md5-cache/app-emacs/elpher-3.4.2 index 0462699885e2..96e4808b2192 100644 --- a/metadata/md5-cache/app-emacs/elpher-3.4.2 +++ b/metadata/md5-cache/app-emacs/elpher-3.4.2 @@ -10,4 +10,4 @@ RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://thelambdalab.xyz/gitweb/index.cgi?p=elpher.git;a=snapshot;h=f117f2f;sf=tgz -> elpher-3.4.2.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=9a66cf564775e49c23515ce4238333b7 +_md5_=585071c361a52337ba41d6d1ab1b2428 diff --git a/metadata/md5-cache/app-emacs/emojify-1.2_p20210309 b/metadata/md5-cache/app-emacs/emojify-1.2_p20210309 index 2dd0a4f85f0c..f8e725d6b5c9 100644 --- a/metadata/md5-cache/app-emacs/emojify-1.2_p20210309 +++ b/metadata/md5-cache/app-emacs/emojify-1.2_p20210309 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/iqbalansari/emacs-emojify/archive/1b726412f19896abf5e4857d4c32220e33400b55.tar.gz -> emojify-1.2_p20210309.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=2e944b9ea0858272d40dc6cb92afc9b1 +_md5_=38dde77e50f8cb22e8dfd71a9306a4e8 diff --git a/metadata/md5-cache/app-emacs/f-0.19.0-r1 b/metadata/md5-cache/app-emacs/f-0.19.0-r1 deleted file mode 100644 index cbb7162f64ab..000000000000 --- a/metadata/md5-cache/app-emacs/f-0.19.0-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=app-editors/emacs-23.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack -DEPEND=app-emacs/dash app-emacs/s -DESCRIPTION=Modern API for working with files and directories in Emacs -EAPI=8 -HOMEPAGE=https://github.com/rejeep/f.el -INHERIT=elisp -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=GPL-3+ -RDEPEND=app-emacs/dash app-emacs/s >=app-editors/emacs-23.1:* -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/rejeep/f.el/archive/v0.19.0.tar.gz -> f-0.19.0.tar.gz -_eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=99fe4fe0e4e9d428ce1f07a888d2cf35 diff --git a/metadata/md5-cache/app-emacs/f-0.20.0-r1 b/metadata/md5-cache/app-emacs/f-0.20.0-r1 index bbad59399da6..72e441c4b5fa 100644 --- a/metadata/md5-cache/app-emacs/f-0.20.0-r1 +++ b/metadata/md5-cache/app-emacs/f-0.20.0-r1 @@ -1,9 +1,8 @@ -BDEPEND=>=app-editors/emacs-23.1:* +BDEPEND=app-emacs/dash app-emacs/s >=app-editors/emacs-23.1:* DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack -DEPEND=app-emacs/dash app-emacs/s DESCRIPTION=Modern API for working with files and directories in Emacs EAPI=8 -HOMEPAGE=https://github.com/rejeep/f.el +HOMEPAGE=https://github.com/rejeep/f.el/ INHERIT=elisp KEYWORDS=~alpha amd64 ~arm arm64 ~ppc64 ~riscv x86 LICENSE=GPL-3+ @@ -12,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/rejeep/f.el/archive/v0.20.0.tar.gz -> f-0.20.0.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=46163ed11c0be28ced248fd31a941661 +_md5_=0b1d0a161e8d06d26d34703ed0cb4325 diff --git a/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 b/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 index a26b3c9c1a0d..99440c4fab97 100644 --- a/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 +++ b/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 @@ -11,5 +11,5 @@ RDEPEND=>=dev-libs/libgit2-1.0.0:= >=app-editors/emacs-26:*[dynamic-loading] >=a RESTRICT=test SLOT=0 SRC_URI=https://github.com/magit/libegit2/archive/0ef8b13aef011a98b7da756e4f1ce3bb18e4d55a.tar.gz -> libegit2-0.0.20200515.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d25c4656c1c766092e648447df71eea3 diff --git a/metadata/md5-cache/app-emacs/package-lint-0.17 b/metadata/md5-cache/app-emacs/package-lint-0.17 new file mode 100644 index 000000000000..991da6a24bc5 --- /dev/null +++ b/metadata/md5-cache/app-emacs/package-lint-0.17 @@ -0,0 +1,13 @@ +BDEPEND=>=app-editors/emacs-26.1:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DESCRIPTION=Linting library for Emacs Lisp package metadata +EAPI=8 +HOMEPAGE=https://github.com/purcell/package-lint/ +INHERIT=elisp +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=>=app-editors/emacs-26.1:* +SLOT=0 +SRC_URI=https://github.com/purcell/package-lint/archive/0.17.tar.gz -> package-lint-0.17.tar.gz +_eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b +_md5_=e3b3c8c712669da6bc132f4739746544 diff --git a/metadata/md5-cache/app-emacs/paredit-26 b/metadata/md5-cache/app-emacs/paredit-26 new file mode 100644 index 000000000000..8e62a2d61896 --- /dev/null +++ b/metadata/md5-cache/app-emacs/paredit-26 @@ -0,0 +1,13 @@ +BDEPEND=>=app-editors/emacs-23.1:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DESCRIPTION=Minor mode for performing structured editing of S-expressions +EAPI=8 +HOMEPAGE=https://paredit.org/ https://www.emacswiki.org/emacs/ParEdit/ https://github.com/emacsmirror/paredit/ +INHERIT=elisp +KEYWORDS=~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-3+ +RDEPEND=>=app-editors/emacs-23.1:* +SLOT=0 +SRC_URI=https://github.com/emacsmirror/paredit/archive/v26.tar.gz -> paredit-26.tar.gz +_eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b +_md5_=12203810277ee607e85f885e17d8b8ed diff --git a/metadata/md5-cache/app-emacs/php-mode-1.24.1 b/metadata/md5-cache/app-emacs/php-mode-1.24.3 similarity index 77% rename from metadata/md5-cache/app-emacs/php-mode-1.24.1 rename to metadata/md5-cache/app-emacs/php-mode-1.24.3 index b230a802c30d..1a992f3e161e 100644 --- a/metadata/md5-cache/app-emacs/php-mode-1.24.1 +++ b/metadata/md5-cache/app-emacs/php-mode-1.24.3 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24:* SLOT=0 -SRC_URI=https://github.com/emacs-php/php-mode/archive/v1.24.1.tar.gz -> php-mode-1.24.1.tar.gz +SRC_URI=https://github.com/emacs-php/php-mode/archive/v1.24.3.tar.gz -> php-mode-1.24.3.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=67e39872e36e3a582eddceb4ecafade0 +_md5_=4785e3f73e31ca0ef0a4327050edb2f0 diff --git a/metadata/md5-cache/app-emacs/undo-tree-0.8.1 b/metadata/md5-cache/app-emacs/undo-tree-0.8.1-r1 similarity index 85% rename from metadata/md5-cache/app-emacs/undo-tree-0.8.1 rename to metadata/md5-cache/app-emacs/undo-tree-0.8.1-r1 index 5c8274f5daf1..9d99ebd65ad5 100644 --- a/metadata/md5-cache/app-emacs/undo-tree-0.8.1 +++ b/metadata/md5-cache/app-emacs/undo-tree-0.8.1-r1 @@ -1,6 +1,5 @@ -BDEPEND=>=app-editors/emacs-24:* +BDEPEND=app-emacs/queue >=app-editors/emacs-24:* DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack -DEPEND=app-emacs/queue DESCRIPTION=Undo trees and visualization EAPI=8 HOMEPAGE=http://www.dr-qubit.org/undo-tree.html @@ -11,4 +10,4 @@ RDEPEND=app-emacs/queue >=app-editors/emacs-24:* SLOT=0 SRC_URI=https://gitlab.com/tsc25/undo-tree/-/archive/release/0.8.1/undo-tree-release-0.8.1.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 -_md5_=7f2127584c9057a5c04f9c6d9c01d5f9 +_md5_=f8e6ba0344c3aa29f155b137b53a04be diff --git a/metadata/md5-cache/app-emacs/undo-tree-0.8.2 b/metadata/md5-cache/app-emacs/undo-tree-0.8.2-r1 similarity index 84% rename from metadata/md5-cache/app-emacs/undo-tree-0.8.2 rename to metadata/md5-cache/app-emacs/undo-tree-0.8.2-r1 index aba80c57bd2c..f484cb6d94cd 100644 --- a/metadata/md5-cache/app-emacs/undo-tree-0.8.2 +++ b/metadata/md5-cache/app-emacs/undo-tree-0.8.2-r1 @@ -1,6 +1,5 @@ -BDEPEND=>=app-editors/emacs-24:* +BDEPEND=app-emacs/queue >=app-editors/emacs-24:* DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack -DEPEND=app-emacs/queue DESCRIPTION=Undo trees and visualization EAPI=8 HOMEPAGE=http://www.dr-qubit.org/undo-tree.html @@ -11,4 +10,4 @@ RDEPEND=app-emacs/queue >=app-editors/emacs-24:* SLOT=0 SRC_URI=https://dev.gentoo.org/~xgqt/distfiles/repackaged/undo-tree-0.8.2.tar.xz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 -_md5_=82d7b78f3bccee7b56de05f38cb8972c +_md5_=3d123530ee5646279c1e2ea91762d883 diff --git a/metadata/md5-cache/app-emacs/vertico-1.0 b/metadata/md5-cache/app-emacs/vertico-1.0 deleted file mode 100644 index 5fad28809c4c..000000000000 --- a/metadata/md5-cache/app-emacs/vertico-1.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=app-editors/emacs-27:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack -DESCRIPTION=Vertical interactive completion -EAPI=8 -HOMEPAGE=https://github.com/minad/vertico -INHERIT=elisp -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3+ -RDEPEND=>=app-editors/emacs-27:* -SLOT=0 -SRC_URI=https://github.com/minad/vertico/archive/refs/tags/1.0.tar.gz -> vertico-1.0.tar.gz -_eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=fa56ad84232a6cdecfe80203c7bb7395 diff --git a/metadata/md5-cache/app-emacs/vertico-0.29 b/metadata/md5-cache/app-emacs/vertico-1.2 similarity index 56% rename from metadata/md5-cache/app-emacs/vertico-0.29 rename to metadata/md5-cache/app-emacs/vertico-1.2 index d3781275a695..61bfb1f4edf3 100644 --- a/metadata/md5-cache/app-emacs/vertico-0.29 +++ b/metadata/md5-cache/app-emacs/vertico-1.2 @@ -1,4 +1,4 @@ -BDEPEND=>=app-editors/emacs-27:* +BDEPEND=>=app-emacs/compat-29.1.4.0 >=app-editors/emacs-27.1:* DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack DESCRIPTION=Vertical interactive completion EAPI=8 @@ -6,8 +6,8 @@ HOMEPAGE=https://github.com/minad/vertico INHERIT=elisp KEYWORDS=~amd64 ~x86 LICENSE=GPL-3+ -RDEPEND=>=app-editors/emacs-27:* +RDEPEND=>=app-emacs/compat-29.1.4.0 >=app-editors/emacs-27.1:* SLOT=0 -SRC_URI=https://github.com/minad/vertico/archive/refs/tags/0.29.tar.gz -> vertico-0.29.tar.gz +SRC_URI=https://github.com/minad/vertico/archive/1.2.tar.gz -> vertico-1.2.tar.gz _eclasses_=elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b -_md5_=fa56ad84232a6cdecfe80203c7bb7395 +_md5_=cb7682b83749e646bc93ba4623e05ef3 diff --git a/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 b/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 index 3c00aa1d27d1..9958943d8540 100644 --- a/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 +++ b/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=dev-libs/libvterm >=app-editors/emacs-26:*[dynamic-loading] >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/akermu/emacs-libvterm/archive/d9dfa624679afdd5db6ad25429ef86d3dd91401e.tar.gz -> vterm-0.0.1_pre20210618.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c166173f7c46a240b71d08ff2319d7fd diff --git a/metadata/md5-cache/app-emacs/vterm-0.0.2_p20221118 b/metadata/md5-cache/app-emacs/vterm-0.0.2_p20221118 index a775c81fd97f..b323ef5729c6 100644 --- a/metadata/md5-cache/app-emacs/vterm-0.0.2_p20221118 +++ b/metadata/md5-cache/app-emacs/vterm-0.0.2_p20221118 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=>=dev-libs/libvterm-0.2:= >=app-editors/emacs-26:*[dynamic-loading] >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/akermu/emacs-libvterm/archive/f14d113ee4618f052879509ec378feb9766b871b.tar.gz -> vterm-0.0.2_p20221118.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 elisp 4d1c0e88698cac71b148578be8359db3 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=978f85913135383a8f0b1d13ba30a43b diff --git a/metadata/md5-cache/app-emulation/86Box-3.11 b/metadata/md5-cache/app-emulation/86Box-3.11 index 3f89b503c53b..72d77dffcc4a 100644 --- a/metadata/md5-cache/app-emulation/86Box-3.11 +++ b/metadata/md5-cache/app-emulation/86Box-3.11 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=app-emulation/faudio dev-libs/libevdev media-libs/freetype:2= media-libs/libpng:= media-libs/libsdl2 media-libs/openal media-libs/rtmidi net-libs/libslirp sys-libs/zlib qt5? ( x11-libs/libXi ) fluidsynth? ( media-sound/fluidsynth ) munt? ( media-libs/munt-mt32emu ) openal? ( media-libs/openal ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qttranslations:5 dev-qt/qtwidgets:5 kde-frameworks/extra-cmake-modules ) SLOT=0 SRC_URI=https://github.com/86Box/86Box/archive/refs/tags/v3.11.tar.gz -> 86Box-3.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bd179222df2bb3987a57e4de74b0a2f5 diff --git a/metadata/md5-cache/app-emulation/Manifest.gz b/metadata/md5-cache/app-emulation/Manifest.gz index 9a302b50201a..749365c881f2 100644 Binary files a/metadata/md5-cache/app-emulation/Manifest.gz and b/metadata/md5-cache/app-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/app-emulation/aranym-1.1.0 b/metadata/md5-cache/app-emulation/aranym-1.1.0-r1 similarity index 97% rename from metadata/md5-cache/app-emulation/aranym-1.1.0 rename to metadata/md5-cache/app-emulation/aranym-1.1.0-r1 index ade8ad81adab..4cbb8d692de4 100644 --- a/metadata/md5-cache/app-emulation/aranym-1.1.0 +++ b/metadata/md5-cache/app-emulation/aranym-1.1.0-r1 @@ -13,4 +13,4 @@ REQUIRED_USE=|| ( jit pmmu standard ) lilo? ( pmmu ) SLOT=0 SRC_URI=https://github.com/aranym/aranym/releases/download/ARANYM_1_1_0/aranym_1.1.0.orig.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=85a4aba51f62f533689b7f43370e687b +_md5_=593fa62a5e63d8fe31c2486d843d0176 diff --git a/metadata/md5-cache/app-emulation/dynamips-0.2.21 b/metadata/md5-cache/app-emulation/dynamips-0.2.21 index 9edfaa4f887a..366bb39cdc88 100644 --- a/metadata/md5-cache/app-emulation/dynamips-0.2.21 +++ b/metadata/md5-cache/app-emulation/dynamips-0.2.21 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/elfutils net-libs/libpcap SLOT=0 SRC_URI=https://github.com/GNS3/dynamips/archive/v0.2.21.tar.gz -> dynamips-0.2.21.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4cebe7a2d0f6b969ba737240a460f2b8 diff --git a/metadata/md5-cache/app-emulation/faudio-21.01 b/metadata/md5-cache/app-emulation/faudio-21.01 index fd8f21042d3e..2e72b84ddffc 100644 --- a/metadata/md5-cache/app-emulation/faudio-21.01 +++ b/metadata/md5-cache/app-emulation/faudio-21.01 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) || ( abi_x86_32 abi_x86_64 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/FNA-XNA/FAudio/archive/21.01.tar.gz -> FAudio-21.01.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6558567dad6eebb2815657685f5fe005 diff --git a/metadata/md5-cache/app-emulation/faudio-23.02 b/metadata/md5-cache/app-emulation/faudio-23.02 index 0e5e542cb480..8816f078ddd3 100644 --- a/metadata/md5-cache/app-emulation/faudio-23.02 +++ b/metadata/md5-cache/app-emulation/faudio-23.02 @@ -12,5 +12,5 @@ RDEPEND=media-libs/libsdl2[sound] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/FNA-XNA/FAudio/archive/23.02.tar.gz -> faudio-23.02.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=474824666d1fa14f5574bc0bdf86248f diff --git a/metadata/md5-cache/app-emulation/nemu-3.0.0 b/metadata/md5-cache/app-emulation/nemu-3.0.0 index ec092bf5433d..ea524991e54d 100644 --- a/metadata/md5-cache/app-emulation/nemu-3.0.0 +++ b/metadata/md5-cache/app-emulation/nemu-3.0.0 @@ -11,5 +11,5 @@ LICENSE=BSD-2 RDEPEND=>=app-emulation/qemu-6.0.0-r3[vnc,virtfs,spice?] dev-db/sqlite:3= dev-libs/json-c sys-libs/ncurses:=[unicode(+)] virtual/libusb:1 virtual/libudev:= dbus? ( sys-apps/dbus ) network-map? ( media-gfx/graphviz[svg] ) ovf? ( dev-libs/libxml2:2 app-arch/libarchive:= ) remote-api? ( dev-libs/openssl ) spice? ( app-emulation/virt-viewer ) vnc-client? ( net-misc/tigervnc ) SLOT=0 SRC_URI=https://github.com/nemuTUI/nemu/archive/v3.0.0.tar.gz -> nemu-3.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3961fb61bad963b040b1bfb2c2383cb0 diff --git a/metadata/md5-cache/app-emulation/nemu-3.1.0 b/metadata/md5-cache/app-emulation/nemu-3.1.0 index 213bce91f57b..473aef060522 100644 --- a/metadata/md5-cache/app-emulation/nemu-3.1.0 +++ b/metadata/md5-cache/app-emulation/nemu-3.1.0 @@ -11,5 +11,5 @@ LICENSE=BSD-2 RDEPEND=>=app-emulation/qemu-6.0.0-r3[vnc,virtfs,spice] dev-db/sqlite:3= dev-libs/json-c sys-libs/ncurses:=[unicode(+)] virtual/libusb:1 virtual/libudev:= dbus? ( sys-apps/dbus ) network-map? ( media-gfx/graphviz[svg] ) ovf? ( dev-libs/libxml2:2 app-arch/libarchive:= ) remote-api? ( dev-libs/openssl ) SLOT=0 SRC_URI=https://github.com/nemuTUI/nemu/archive/v3.1.0.tar.gz -> nemu-3.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea19f3b04b763d40214f2347958af90d diff --git a/metadata/md5-cache/app-emulation/punes-0.110 b/metadata/md5-cache/app-emulation/punes-0.110 index f6a1fe81427a..be553653aa07 100644 --- a/metadata/md5-cache/app-emulation/punes-0.110 +++ b/metadata/md5-cache/app-emulation/punes-0.110 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 media-libs/alsa-lib media-libs/libglvnd[X?] virtual/glu virtual/udev X? ( x11-libs/libX11 x11-libs/libXrandr ) cg? ( media-gfx/nvidia-cg-toolkit ) ffmpeg? ( media-video/ffmpeg:= ) SLOT=0 SRC_URI=https://github.com/punesemu/puNES/archive/v0.110.tar.gz -> punes-0.110.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e30461bd692257b444bdc1903c58fdff diff --git a/metadata/md5-cache/app-emulation/q4wine-1.3.13 b/metadata/md5-cache/app-emulation/q4wine-1.3.13 index cc49ed2f2de5..33a7b31b2ea8 100644 --- a/metadata/md5-cache/app-emulation/q4wine-1.3.13 +++ b/metadata/md5-cache/app-emulation/q4wine-1.3.13 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsingleapplication[qt5(+),X] dev-qt/qtsql:5[sqlite] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 dbus? ( dev-qt/qtdbus:5 ) ico? ( >=media-gfx/icoutils-0.26.0 ) app-admin/sudo >=sys-apps/which-2.19 iso? ( sys-fs/fuseiso ) SLOT=0 SRC_URI=mirror://sourceforge/q4wine/q4wine-1.3.13.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e06e71231ac693f4043c61b80c25d82 diff --git a/metadata/md5-cache/app-emulation/wine-staging-8.4 b/metadata/md5-cache/app-emulation/wine-staging-8.4 new file mode 100644 index 000000000000..e44f02890c92 --- /dev/null +++ b/metadata/md5-cache/app-emulation/wine-staging-8.4 @@ -0,0 +1,18 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) || ( dev-vcs/git ( sys-apps/gawk sys-apps/util-linux ) ) dev-lang/perl sys-devel/binutils sys-devel/bison sys-devel/flex virtual/pkgconfig mingw? ( !crossdev-mingw? ( >=dev-util/mingw64-toolchain-10.0.0_p1-r2[abi_x86_32(-)?,abi_x86_64(-)?] ) ) nls? ( sys-devel/gettext ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup unpack +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] opengl? ( media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) ) cups? ( net-print/cups[abi_x86_32(-)?,abi_x86_64(-)?] ) fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?] ) netapi? ( net-fs/samba[abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) truetype? ( media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] ) X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) capi? ( net-libs/libcapi:=[abi_x86_32(-)?,abi_x86_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) scanner? ( media-gfx/sane-backends[abi_x86_32(-)?,abi_x86_64(-)?] ) smartcard? ( sys-apps/pcsc-lite[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?] ) sys-kernel/linux-headers X? ( x11-base/xorg-proto ) +DESCRIPTION=Free implementation of Windows(tm) on Unix, with Wine-Staging patchset +EAPI=8 +HOMEPAGE=https://wiki.winehq.org/Wine-Staging +IDEPEND=>=app-eselect/eselect-wine-2 +INHERIT=autotools edo flag-o-matic multilib multilib-build python-any-r1 toolchain-funcs wrapper +IUSE=+X +abi_x86_32 +abi_x86_64 +alsa capi crossdev-mingw cups dos llvm-libunwind debug custom-cflags +fontconfig +gecko gphoto2 +gstreamer kerberos +mingw +mono netapi nls opencl +opengl osmesa pcap perl pulseaudio samba scanner +sdl selinux smartcard +ssl +truetype udev udisks +unwind usb v4l +vulkan wayland +xcomposite xinerama abi_x86_32 abi_x86_64 +KEYWORDS=-* ~amd64 ~x86 +LICENSE=LGPL-2.1+ BSD-2 IJG MIT OPENLDAP ZLIB gsm libpng2 libtiff +RDEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] opengl? ( media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) ) cups? ( net-print/cups[abi_x86_32(-)?,abi_x86_64(-)?] ) fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?] ) netapi? ( net-fs/samba[abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) truetype? ( media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] ) X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) capi? ( net-libs/libcapi:=[abi_x86_32(-)?,abi_x86_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) scanner? ( media-gfx/sane-backends[abi_x86_32(-)?,abi_x86_64(-)?] ) smartcard? ( sys-apps/pcsc-lite[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?] ) app-emulation/wine-desktop-common dos? ( games-emulation/dosbox ) gecko? ( app-emulation/wine-gecko:2.47.3[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) mono? ( app-emulation/wine-mono:7.4.0 ) perl? ( dev-lang/perl dev-perl/XML-LibXML ) samba? ( net-fs/samba[winbind] ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) +REQUIRED_USE=X? ( truetype ) crossdev-mingw? ( mingw ) || ( abi_x86_32 abi_x86_64 ) +RESTRICT=test +SLOT=8.4 +SRC_URI=https://dl.winehq.org/wine/source/8.x/wine-8.4.tar.xz https://github.com/wine-staging/wine-staging/archive/v8.4.tar.gz -> wine-staging-8.4.tar.gz +_eclasses_=autotools b5529dc611971a61a30153916014f616 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=5f31454e00cd7571ebce998a5ced4256 diff --git a/metadata/md5-cache/app-eselect/Manifest.gz b/metadata/md5-cache/app-eselect/Manifest.gz index 9a857310d372..2b1a36cb4bb0 100644 Binary files a/metadata/md5-cache/app-eselect/Manifest.gz and b/metadata/md5-cache/app-eselect/Manifest.gz differ diff --git a/metadata/md5-cache/app-eselect/eselect-blas-0.3 b/metadata/md5-cache/app-eselect/eselect-blas-0.3 new file mode 100644 index 000000000000..0f9583d31314 --- /dev/null +++ b/metadata/md5-cache/app-eselect/eselect-blas-0.3 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install +DEPEND=>=app-admin/eselect-1.0.5 +DESCRIPTION=BLAS/CBLAS module for eselect +EAPI=7 +HOMEPAGE=https://wiki.gentoo.org/wiki/No_homepage +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=>=app-admin/eselect-1.0.5 +SLOT=0 +_md5_=ff1b5d5d7dc62eee5514773a8da515fd diff --git a/metadata/md5-cache/app-eselect/eselect-lapack-0.3 b/metadata/md5-cache/app-eselect/eselect-lapack-0.3 new file mode 100644 index 000000000000..047b5b49b788 --- /dev/null +++ b/metadata/md5-cache/app-eselect/eselect-lapack-0.3 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install +DEPEND=>=app-admin/eselect-1.0.5 +DESCRIPTION=LAPACK module for eselect +EAPI=7 +HOMEPAGE=https://wiki.gentoo.org/wiki/No_homepage +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=>=app-admin/eselect-1.0.5 +SLOT=0 +_md5_=e6752e9ab476e4f7b5679f140ca73e8f diff --git a/metadata/md5-cache/app-i18n/Manifest.gz b/metadata/md5-cache/app-i18n/Manifest.gz index 93ef26cd72df..347a1e03d8ba 100644 Binary files a/metadata/md5-cache/app-i18n/Manifest.gz and b/metadata/md5-cache/app-i18n/Manifest.gz differ diff --git a/metadata/md5-cache/app-i18n/fcitx-4.2.9.8 b/metadata/md5-cache/app-i18n/fcitx-4.2.9.8 index b0d2e087d877..ceebcdffc869 100644 --- a/metadata/md5-cache/app-i18n/fcitx-4.2.9.8 +++ b/metadata/md5-cache/app-i18n/fcitx-4.2.9.8 @@ -13,5 +13,5 @@ REQUIRED_USE=cairo? ( X ) lua? ( ^^ ( lua_single_target_lua5-1 lua_single_target RESTRICT=!test? ( test ) SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx/fcitx-4.2.9.8_dict.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=73e0ccf38258537203fc5a55db85658d diff --git a/metadata/md5-cache/app-i18n/fcitx-4.9999 b/metadata/md5-cache/app-i18n/fcitx-4.9999 index bc1c2dd8bfc9..5f8e94a083d0 100644 --- a/metadata/md5-cache/app-i18n/fcitx-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-4.9999 @@ -13,5 +13,5 @@ REQUIRED_USE=cairo? ( X ) lua? ( ^^ ( lua_single_target_lua5-1 lua_single_target RESTRICT=!test? ( test ) SLOT=4 SRC_URI=https://download.fcitx-im.org/data/pinyin.tar.gz -> fcitx-data-pinyin.tar.gz https://download.fcitx-im.org/data/table.tar.gz -> fcitx-data-table.tar.gz https://download.fcitx-im.org/data/py_stroke-20121124.tar.gz -> fcitx-data-py_stroke-20121124.tar.gz https://download.fcitx-im.org/data/py_table-20121124.tar.gz -> fcitx-data-py_table-20121124.tar.gz https://download.fcitx-im.org/data/en_dict-20121020.tar.gz -> fcitx-data-en_dict-20121020.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=70c576fd4323e5998f92db3c05efdd61 diff --git a/metadata/md5-cache/app-i18n/fcitx-anthy-0.2.3 b/metadata/md5-cache/app-i18n/fcitx-anthy-0.2.3 index b1a923e2a358..5fe57e567faf 100644 --- a/metadata/md5-cache/app-i18n/fcitx-anthy-0.2.3 +++ b/metadata/md5-cache/app-i18n/fcitx-anthy-0.2.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-i18n/fcitx-4.2.9:4[X,xkb] app-i18n/anthy:= virtual/libintl SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-anthy/fcitx-anthy-0.2.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43b7a4e4e667f617cb7604027be3d67b diff --git a/metadata/md5-cache/app-i18n/fcitx-anthy-4.9999 b/metadata/md5-cache/app-i18n/fcitx-anthy-4.9999 index ee01b01eff45..7198334cb079 100644 --- a/metadata/md5-cache/app-i18n/fcitx-anthy-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-anthy-4.9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4[X,xkb] app-i18n/anthy:= virtual/libintl SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9bef05ce5a6e4e2b6c2947368f615d74 diff --git a/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.3 b/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.3 index 4fd54b8bc1bb..c82e273509de 100644 --- a/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.3 +++ b/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-i18n/fcitx-4.2.9:4 >=app-i18n/libchewing-0.5.0:= virtual/libintl SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-chewing/fcitx-chewing-0.2.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=eafa53dc333f0e0e2cd72a5071100b4f diff --git a/metadata/md5-cache/app-i18n/fcitx-chewing-4.9999 b/metadata/md5-cache/app-i18n/fcitx-chewing-4.9999 index 58233a592103..a0bbc4925517 100644 --- a/metadata/md5-cache/app-i18n/fcitx-chewing-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-chewing-4.9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4 >=app-i18n/libchewing-0.5.0:= virtual/libintl SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=95e502d1c39c634e27ba319176d53fde diff --git a/metadata/md5-cache/app-i18n/fcitx-cloudpinyin-0.3.6 b/metadata/md5-cache/app-i18n/fcitx-cloudpinyin-0.3.6 index 75446c16de7f..c0a306b9e92b 100644 --- a/metadata/md5-cache/app-i18n/fcitx-cloudpinyin-0.3.6 +++ b/metadata/md5-cache/app-i18n/fcitx-cloudpinyin-0.3.6 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-i18n/fcitx-4.2.9:4 net-misc/curl:= virtual/libiconv virtual/libintl SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-cloudpinyin/fcitx-cloudpinyin-0.3.6.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a3bbdb30deae4654b21443d42a712c93 diff --git a/metadata/md5-cache/app-i18n/fcitx-cloudpinyin-4.9999 b/metadata/md5-cache/app-i18n/fcitx-cloudpinyin-4.9999 index 03bf80c2544f..0cdfda1ff8b9 100644 --- a/metadata/md5-cache/app-i18n/fcitx-cloudpinyin-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-cloudpinyin-4.9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4 net-misc/curl:= virtual/libiconv virtual/libintl SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=84038df6eb5cc83e86558a7566db9f7e diff --git a/metadata/md5-cache/app-i18n/fcitx-configtool-0.4.10 b/metadata/md5-cache/app-i18n/fcitx-configtool-0.4.10 index 19f8cf4322aa..e21668f91a33 100644 --- a/metadata/md5-cache/app-i18n/fcitx-configtool-0.4.10 +++ b/metadata/md5-cache/app-i18n/fcitx-configtool-0.4.10 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=>=app-i18n/fcitx-4.2.9:4 app-text/iso-codes dev-libs/glib:2 x11-libs/gtk+:3 SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-configtool/fcitx-configtool-0.4.10.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=98ff9b7fc74a0b91d240db2c525d8356 diff --git a/metadata/md5-cache/app-i18n/fcitx-configtool-4.9999 b/metadata/md5-cache/app-i18n/fcitx-configtool-4.9999 index 9e488baa6d7d..9b3ff879385d 100644 --- a/metadata/md5-cache/app-i18n/fcitx-configtool-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-configtool-4.9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ LGPL-2.1+ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4 app-text/iso-codes dev-libs/glib:2 x11-libs/gtk+:3 SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fe677419ae1f5c7842fcdf99a20edbc3 diff --git a/metadata/md5-cache/app-i18n/fcitx-hangul-0.3.1 b/metadata/md5-cache/app-i18n/fcitx-hangul-0.3.1 index 5a9ffb063457..37608cff19fd 100644 --- a/metadata/md5-cache/app-i18n/fcitx-hangul-0.3.1 +++ b/metadata/md5-cache/app-i18n/fcitx-hangul-0.3.1 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2+ RDEPEND=>=app-i18n/fcitx-4.2.9:4 app-i18n/libhangul:= virtual/libiconv virtual/libintl SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-hangul/fcitx-hangul-0.3.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b86c681a8e784119ffa826f30fef9260 diff --git a/metadata/md5-cache/app-i18n/fcitx-hangul-4.9999 b/metadata/md5-cache/app-i18n/fcitx-hangul-4.9999 index ac520046f518..5103e71f3079 100644 --- a/metadata/md5-cache/app-i18n/fcitx-hangul-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-hangul-4.9999 @@ -9,5 +9,5 @@ LICENSE=BSD GPL-2+ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4 app-i18n/libhangul:= virtual/libiconv virtual/libintl SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e0d775414e70ecd6072b256ee9eecfd5 diff --git a/metadata/md5-cache/app-i18n/fcitx-libpinyin-0.5.3 b/metadata/md5-cache/app-i18n/fcitx-libpinyin-0.5.3 index 0d1b5493f953..4641ff9c614b 100644 --- a/metadata/md5-cache/app-i18n/fcitx-libpinyin-0.5.3 +++ b/metadata/md5-cache/app-i18n/fcitx-libpinyin-0.5.3 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ GPL-3+ RDEPEND=>=app-i18n/fcitx-4.2.9:4 >=app-i18n/libpinyin-2.1.0:= dev-libs/glib:2 sys-apps/dbus virtual/libintl dictionary-manager? ( >=app-i18n/fcitx-qt5-1.1:4 >=dev-qt/qtcore-5.7:5 >=dev-qt/qtdbus-5.7:5 >=dev-qt/qtgui-5.7:5 >=dev-qt/qtnetwork-5.7:5 >=dev-qt/qtwebengine-5.7:5[widgets] >=dev-qt/qtwidgets-5.7:5 ) SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-libpinyin/fcitx-libpinyin-0.5.3_dict.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8cc2deafd3ed9982b6819c993717b7bb diff --git a/metadata/md5-cache/app-i18n/fcitx-libpinyin-0.5.4 b/metadata/md5-cache/app-i18n/fcitx-libpinyin-0.5.4 index c6ecb5e5affd..ce2aa63b9d79 100644 --- a/metadata/md5-cache/app-i18n/fcitx-libpinyin-0.5.4 +++ b/metadata/md5-cache/app-i18n/fcitx-libpinyin-0.5.4 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ GPL-3+ RDEPEND=>=app-i18n/fcitx-4.2.9:4 >=app-i18n/libpinyin-2.1.0:= dev-libs/glib:2 sys-apps/dbus virtual/libintl dictionary-manager? ( >=app-i18n/fcitx-qt5-1.1:4 >=dev-qt/qtcore-5.7:5 >=dev-qt/qtdbus-5.7:5 >=dev-qt/qtgui-5.7:5 >=dev-qt/qtnetwork-5.7:5 >=dev-qt/qtwebengine-5.7:5[widgets] >=dev-qt/qtwidgets-5.7:5 ) SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-libpinyin/fcitx-libpinyin-0.5.4_dict.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f97549672cea6f7956d9d4d38ebf1c0a diff --git a/metadata/md5-cache/app-i18n/fcitx-libpinyin-4.9999 b/metadata/md5-cache/app-i18n/fcitx-libpinyin-4.9999 index b854ac95d538..bc33a17a961e 100644 --- a/metadata/md5-cache/app-i18n/fcitx-libpinyin-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-libpinyin-4.9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4 >=app-i18n/libpinyin-2.1.0:= dev-libs/glib:2 sys-apps/dbus virtual/libintl dictionary-manager? ( >=app-i18n/fcitx-qt5-1.1:4 >=dev-qt/qtcore-5.7:5 >=dev-qt/qtdbus-5.7:5 >=dev-qt/qtgui-5.7:5 >=dev-qt/qtnetwork-5.7:5 >=dev-qt/qtwebengine-5.7:5[widgets] >=dev-qt/qtwidgets-5.7:5 ) SLOT=4 SRC_URI=https://download.fcitx-im.org/data/model.text.20161206.tar.gz -> fcitx-data-model.text.20161206.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fe7c7fd7e73834d75120ed64944e370a diff --git a/metadata/md5-cache/app-i18n/fcitx-m17n-0.2.4 b/metadata/md5-cache/app-i18n/fcitx-m17n-0.2.4 index 8ecc674d92c4..c634e2e39996 100644 --- a/metadata/md5-cache/app-i18n/fcitx-m17n-0.2.4 +++ b/metadata/md5-cache/app-i18n/fcitx-m17n-0.2.4 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=app-i18n/fcitx-4.2.9:4 dev-libs/m17n-lib virtual/libintl SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-m17n/fcitx-m17n-0.2.4.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b01a0a42ff52033cfd06c3d9d79824f diff --git a/metadata/md5-cache/app-i18n/fcitx-m17n-4.9999 b/metadata/md5-cache/app-i18n/fcitx-m17n-4.9999 index e066188c75b2..1d2db1845b7e 100644 --- a/metadata/md5-cache/app-i18n/fcitx-m17n-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-m17n-4.9999 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1+ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4 dev-libs/m17n-lib virtual/libintl SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=79d195a94cabe62f5a54e4962e5b72d3 diff --git a/metadata/md5-cache/app-i18n/fcitx-qt5-1.2.5 b/metadata/md5-cache/app-i18n/fcitx-qt5-1.2.5 index 9521f3c30b37..240f21d0ef4b 100644 --- a/metadata/md5-cache/app-i18n/fcitx-qt5-1.2.5 +++ b/metadata/md5-cache/app-i18n/fcitx-qt5-1.2.5 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2+ GPL-3+ LGPL-2+ RDEPEND=>=app-i18n/fcitx-4.2.9:4 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5= dev-qt/qtwidgets:5 virtual/libintl x11-libs/libxkbcommon SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-qt5/fcitx-qt5-1.2.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=670c7ed33538a18f54ba71b2365a8ce7 diff --git a/metadata/md5-cache/app-i18n/fcitx-qt5-4.9999 b/metadata/md5-cache/app-i18n/fcitx-qt5-4.9999 index 298ffd04748e..9865b5c48912 100644 --- a/metadata/md5-cache/app-i18n/fcitx-qt5-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-qt5-4.9999 @@ -9,5 +9,5 @@ LICENSE=BSD GPL-2+ GPL-3+ LGPL-2+ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5= dev-qt/qtwidgets:5 virtual/libintl x11-libs/libxkbcommon SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f484d4d213487c81f6fc76bb9c2fc7c0 diff --git a/metadata/md5-cache/app-i18n/fcitx-rime-0.3.2 b/metadata/md5-cache/app-i18n/fcitx-rime-0.3.2 index d24d62639c47..3c0222e4a560 100644 --- a/metadata/md5-cache/app-i18n/fcitx-rime-0.3.2 +++ b/metadata/md5-cache/app-i18n/fcitx-rime-0.3.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=>=app-i18n/fcitx-4.2.9:4 >=app-i18n/librime-1.0.0:= virtual/libintl app-i18n/rime-data SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-rime/fcitx-rime-0.3.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=810405691a49592d4b9b955ccccded6d diff --git a/metadata/md5-cache/app-i18n/fcitx-rime-4.9999 b/metadata/md5-cache/app-i18n/fcitx-rime-4.9999 index cfcb1ae69e18..a9aefe69ebd4 100644 --- a/metadata/md5-cache/app-i18n/fcitx-rime-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-rime-4.9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4 >=app-i18n/librime-1.0.0:= virtual/libintl configuration_tool? ( >=app-i18n/fcitx-qt5-1.1:4 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) app-i18n/rime-data SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca5cd2ff52252737619fbd6900dbc898 diff --git a/metadata/md5-cache/app-i18n/fcitx-sayura-0.1.2 b/metadata/md5-cache/app-i18n/fcitx-sayura-0.1.2 index 3b0337eff06c..4f666350ae90 100644 --- a/metadata/md5-cache/app-i18n/fcitx-sayura-0.1.2 +++ b/metadata/md5-cache/app-i18n/fcitx-sayura-0.1.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-i18n/fcitx-4.2.9:4 virtual/libiconv virtual/libintl SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-sayura/fcitx-sayura-0.1.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8cc92622439f19a6aedb4b667981e87b diff --git a/metadata/md5-cache/app-i18n/fcitx-sayura-4.9999 b/metadata/md5-cache/app-i18n/fcitx-sayura-4.9999 index 49cccd63d4c9..9984a5cdf7ff 100644 --- a/metadata/md5-cache/app-i18n/fcitx-sayura-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-sayura-4.9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4 virtual/libiconv virtual/libintl SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cc36c2ad3e91bec92deaf4cbcde38b76 diff --git a/metadata/md5-cache/app-i18n/fcitx-table-extra-0.3.8 b/metadata/md5-cache/app-i18n/fcitx-table-extra-0.3.8 index 32eb77da08f6..fb40700a85f9 100644 --- a/metadata/md5-cache/app-i18n/fcitx-table-extra-0.3.8 +++ b/metadata/md5-cache/app-i18n/fcitx-table-extra-0.3.8 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-i18n/fcitx-4.2.9:4[table] SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-table-extra/fcitx-table-extra-0.3.8.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5c5165a8ecaef80befb1a2b8e4ae954a diff --git a/metadata/md5-cache/app-i18n/fcitx-table-extra-4.9999 b/metadata/md5-cache/app-i18n/fcitx-table-extra-4.9999 index 186482c8b7fc..378debf4c1e3 100644 --- a/metadata/md5-cache/app-i18n/fcitx-table-extra-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-table-extra-4.9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4[table] SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1982328574ccc34043d4d99390000f83 diff --git a/metadata/md5-cache/app-i18n/fcitx-unikey-0.2.7 b/metadata/md5-cache/app-i18n/fcitx-unikey-0.2.7 index 23a4c17d9176..d1560f7c5209 100644 --- a/metadata/md5-cache/app-i18n/fcitx-unikey-0.2.7 +++ b/metadata/md5-cache/app-i18n/fcitx-unikey-0.2.7 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ GPL-3+ LGPL-2+ RDEPEND=>=app-i18n/fcitx-4.2.9:4 virtual/libintl macro-editor? ( >=app-i18n/fcitx-qt5-1.1:4 >=dev-qt/qtcore-5.7:5 >=dev-qt/qtgui-5.7:5 >=dev-qt/qtwidgets-5.7:5 ) SLOT=4 SRC_URI=https://download.fcitx-im.org/fcitx-unikey/fcitx-unikey-0.2.7.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e39ac6c8265b6191db605ebb0adb69f4 diff --git a/metadata/md5-cache/app-i18n/fcitx-unikey-4.9999 b/metadata/md5-cache/app-i18n/fcitx-unikey-4.9999 index a2f39b6ddd21..fc6f2c61168f 100644 --- a/metadata/md5-cache/app-i18n/fcitx-unikey-4.9999 +++ b/metadata/md5-cache/app-i18n/fcitx-unikey-4.9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ GPL-3+ LGPL-2+ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4 virtual/libintl macro-editor? ( >=app-i18n/fcitx-qt5-1.1:4 >=dev-qt/qtcore-5.7:5 >=dev-qt/qtgui-5.7:5 >=dev-qt/qtwidgets-5.7:5 ) SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=36b8750881394a318e0789a6aedae8f2 diff --git a/metadata/md5-cache/app-i18n/ibus-chewing-1.6.1_p20210117-r1 b/metadata/md5-cache/app-i18n/ibus-chewing-1.6.1_p20210117-r1 index 48bcffbb4e52..4599b74bc65f 100644 --- a/metadata/md5-cache/app-i18n/ibus-chewing-1.6.1_p20210117-r1 +++ b/metadata/md5-cache/app-i18n/ibus-chewing-1.6.1_p20210117-r1 @@ -12,5 +12,5 @@ RDEPEND=app-i18n/ibus app-i18n/libchewing dev-libs/glib:2 x11-libs/gtk+:3 x11-li RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/definite/ibus-chewing/archive/8e17848d3fe3bd7de052a1c26b4161092ba1df9f.tar.gz -> ibus-chewing-1.6.1_p20210117.tar.gz https://dev.gentoo.org/~hattya/distfiles/ibus-chewing-gob2.patch.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e7f96d5dbfe9109ec7cc9e3fe159b5db diff --git a/metadata/md5-cache/app-i18n/ibus-table-chinese-1.8.3 b/metadata/md5-cache/app-i18n/ibus-table-chinese-1.8.3 index f91eb9a7fbd5..f5ad1953597c 100644 --- a/metadata/md5-cache/app-i18n/ibus-table-chinese-1.8.3 +++ b/metadata/md5-cache/app-i18n/ibus-table-chinese-1.8.3 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=app-i18n/ibus-table SLOT=0 SRC_URI=https://github.com/definite/ibus-table-chinese/archive/1.8.3.tar.gz -> ibus-table-chinese-1.8.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=75cdaf0dcc045256f49acc046bcc6398 diff --git a/metadata/md5-cache/app-i18n/ibus-unikey-0.7.0_beta1 b/metadata/md5-cache/app-i18n/ibus-unikey-0.7.0_beta1 index d02f65798d45..ea08f4007cde 100644 --- a/metadata/md5-cache/app-i18n/ibus-unikey-0.7.0_beta1 +++ b/metadata/md5-cache/app-i18n/ibus-unikey-0.7.0_beta1 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=app-i18n/ibus x11-libs/gtk+:3 virtual/libintl SLOT=0 SRC_URI=https://github.com/vn-input/ibus-unikey/archive/0.7.0-beta1.tar.gz -> ibus-unikey-0.7.0_beta1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4c7fc9263201000b7912c779ceb4343c diff --git a/metadata/md5-cache/app-i18n/kcm-fcitx-0.5.6 b/metadata/md5-cache/app-i18n/kcm-fcitx-0.5.6 index 7a05bf1677e2..7cb1f0ede446 100644 --- a/metadata/md5-cache/app-i18n/kcm-fcitx-0.5.6 +++ b/metadata/md5-cache/app-i18n/kcm-fcitx-0.5.6 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-i18n/fcitx-4.2.9:4 >=app-i18n/fcitx-qt5-1.1:4 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 kde-frameworks/kconfigwidgets:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kio:5 kde-frameworks/kitemviews:5 kde-frameworks/kwidgetsaddons:5 virtual/libintl x11-libs/libX11 x11-libs/libxkbfile !app-i18n/kcm-fcitx:4-plasma4[-minimal(-)] SLOT=4-plasma5 SRC_URI=https://download.fcitx-im.org/kcm-fcitx/kcm-fcitx-0.5.6.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=34c1583de3c41b6b03c1200d64b3fd46 diff --git a/metadata/md5-cache/app-i18n/kcm-fcitx-4.5.9999 b/metadata/md5-cache/app-i18n/kcm-fcitx-4.5.9999 index a8f341566915..b751b2c717f9 100644 --- a/metadata/md5-cache/app-i18n/kcm-fcitx-4.5.9999 +++ b/metadata/md5-cache/app-i18n/kcm-fcitx-4.5.9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=>=app-i18n/fcitx-4.2.9:4 >=app-i18n/fcitx-qt5-1.1:4 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 kde-frameworks/kconfigwidgets:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kio:5 kde-frameworks/kitemviews:5 kde-frameworks/kwidgetsaddons:5 virtual/libintl x11-libs/libX11 x11-libs/libxkbfile !app-i18n/kcm-fcitx:4-plasma4[-minimal(-)] SLOT=4-plasma5 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a63870d00b4f498a637fe84067aea323 diff --git a/metadata/md5-cache/app-i18n/librime-1.7.3-r1 b/metadata/md5-cache/app-i18n/librime-1.7.3-r1 index db3111a12a29..27c28fd5e65f 100644 --- a/metadata/md5-cache/app-i18n/librime-1.7.3-r1 +++ b/metadata/md5-cache/app-i18n/librime-1.7.3-r1 @@ -12,5 +12,5 @@ RDEPEND=app-i18n/opencc:0= >=dev-cpp/glog-0.3.5:0= dev-cpp/yaml-cpp:0= dev-libs/ RESTRICT=!test? ( test ) SLOT=0/1-1.7.3 SRC_URI=https://github.com/rime/librime/archive/1.7.3.tar.gz -> librime-1.7.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1e850f9ba9eec5cc4f08ae022539aa10 diff --git a/metadata/md5-cache/app-i18n/librime-lua-20211030072627 b/metadata/md5-cache/app-i18n/librime-lua-20211030072627 index 459b95501f0f..2a1de0522684 100644 --- a/metadata/md5-cache/app-i18n/librime-lua-20211030072627 +++ b/metadata/md5-cache/app-i18n/librime-lua-20211030072627 @@ -12,5 +12,5 @@ RDEPEND=>=app-i18n/librime-1.6:0= lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) REQUIRED_USE=^^ ( lua_single_target_lua5-3 lua_single_target_lua5-4 ) SLOT=0 SRC_URI=https://github.com/hchunhui/librime-lua/archive/67ef681a9fd03262c49cc7f850cc92fc791b1e85.tar.gz -> librime-lua-20211030072627.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0d7e884bf6709f268223139b99d33f92 diff --git a/metadata/md5-cache/app-i18n/librime-lua-99999999999999 b/metadata/md5-cache/app-i18n/librime-lua-99999999999999 index 693b0aa09487..0ed5e1860f95 100644 --- a/metadata/md5-cache/app-i18n/librime-lua-99999999999999 +++ b/metadata/md5-cache/app-i18n/librime-lua-99999999999999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=app-i18n/librime-1.6:0= lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) REQUIRED_USE=^^ ( lua_single_target_lua5-3 lua_single_target_lua5-4 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=73a7072d3b41ea15c643f12f3e850403 diff --git a/metadata/md5-cache/app-i18n/opencc-1.1.4 b/metadata/md5-cache/app-i18n/opencc-1.1.4 index ff452af6195f..2f3095afa123 100644 --- a/metadata/md5-cache/app-i18n/opencc-1.1.4 +++ b/metadata/md5-cache/app-i18n/opencc-1.1.4 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/marisa:0= RESTRICT=!test? ( test ) SLOT=0/1.1 SRC_URI=https://github.com/BYVoid/OpenCC/archive/ver.1.1.4.tar.gz -> opencc-1.1.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3053be0e458af853be3b472ce228406f diff --git a/metadata/md5-cache/app-i18n/opencc-9999 b/metadata/md5-cache/app-i18n/opencc-9999 index c0a5aac5979c..5d5532c65fbd 100644 --- a/metadata/md5-cache/app-i18n/opencc-9999 +++ b/metadata/md5-cache/app-i18n/opencc-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/marisa:0= RESTRICT=!test? ( test ) SLOT=0/1.1 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8b767fb4624070427c4db2770071a106 diff --git a/metadata/md5-cache/app-i18n/tagainijisho-1.2.0_pre20210627073130_p20210701_p20210701 b/metadata/md5-cache/app-i18n/tagainijisho-1.2.0_pre20210627073130_p20210701_p20210701 index 3beab817db11..4c589646a3fe 100644 --- a/metadata/md5-cache/app-i18n/tagainijisho-1.2.0_pre20210627073130_p20210701_p20210701 +++ b/metadata/md5-cache/app-i18n/tagainijisho-1.2.0_pre20210627073130_p20210701_p20210701 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ public-domain RDEPEND=>=dev-db/sqlite-3.12:3 dev-qt/qtcore:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://github.com/Gnurou/tagainijisho/archive/a16d7b82002d95365b54b8cd07d4fd80e2b9cfeb.tar.gz -> tagainijisho-1.2.0_pre20210627073130.tar.gz https://home.apache.org/~arfrever/distfiles/JMdict-2021-07-01.gz https://home.apache.org/~arfrever/distfiles/kanjidic2-2021-07-01.xml.gz https://github.com/KanjiVG/kanjivg/releases/download/r20160426/kanjivg-20160426.xml.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9587fe905dc1db8941e1c5e46f3f3d3a diff --git a/metadata/md5-cache/app-i18n/tagainijisho-9999 b/metadata/md5-cache/app-i18n/tagainijisho-9999 index 0c155c25d075..3cebe9e27bd4 100644 --- a/metadata/md5-cache/app-i18n/tagainijisho-9999 +++ b/metadata/md5-cache/app-i18n/tagainijisho-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=dev-db/sqlite-3.12:3 dev-qt/qtcore:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://github.com/KanjiVG/kanjivg/releases/download/r20160426/kanjivg-20160426.xml.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8280f0e9784a8aa0adbd79e8adb6a8b6 diff --git a/metadata/md5-cache/app-i18n/uchardet-0.0.7 b/metadata/md5-cache/app-i18n/uchardet-0.0.7 index 602c9fff28ef..b7b99054d6c6 100644 --- a/metadata/md5-cache/app-i18n/uchardet-0.0.7 +++ b/metadata/md5-cache/app-i18n/uchardet-0.0.7 @@ -10,5 +10,5 @@ LICENSE=|| ( MPL-1.1 GPL-2+ LGPL-2.1+ ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.freedesktop.org/software/uchardet/releases/uchardet-0.0.7.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=13967cc6889a4eeec42385f60b470db6 diff --git a/metadata/md5-cache/app-i18n/uchardet-9999 b/metadata/md5-cache/app-i18n/uchardet-9999 index 46e9c283de81..077b68cdd392 100644 --- a/metadata/md5-cache/app-i18n/uchardet-9999 +++ b/metadata/md5-cache/app-i18n/uchardet-9999 @@ -9,5 +9,5 @@ LICENSE=|| ( MPL-1.1 GPL-2+ LGPL-2.1+ ) PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a0134a8809ecd7f84a78e92743e518b4 diff --git a/metadata/md5-cache/app-laptop/Manifest.gz b/metadata/md5-cache/app-laptop/Manifest.gz index abb962ed3e70..69f0a14c7fcd 100644 Binary files a/metadata/md5-cache/app-laptop/Manifest.gz and b/metadata/md5-cache/app-laptop/Manifest.gz differ diff --git a/metadata/md5-cache/app-laptop/thinkfan-1.3.1 b/metadata/md5-cache/app-laptop/thinkfan-1.3.1 index 9f5c0bc607b0..c889330fb961 100644 --- a/metadata/md5-cache/app-laptop/thinkfan-1.3.1 +++ b/metadata/md5-cache/app-laptop/thinkfan-1.3.1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=atasmart? ( dev-libs/libatasmart ) yaml? ( dev-cpp/yaml-cpp ) nvidia? ( x11-drivers/nvidia-drivers ) SLOT=0 SRC_URI=https://github.com/vmatare/thinkfan/archive/1.3.1.tar.gz -> thinkfan-1.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7f802de043596d76f7c0408497f64e0b diff --git a/metadata/md5-cache/app-misc/Manifest.gz b/metadata/md5-cache/app-misc/Manifest.gz index 30451e9b852a..f4b420355670 100644 Binary files a/metadata/md5-cache/app-misc/Manifest.gz and b/metadata/md5-cache/app-misc/Manifest.gz differ diff --git a/metadata/md5-cache/app-misc/brewtarget-2.3.1-r1 b/metadata/md5-cache/app-misc/brewtarget-2.3.1-r1 index 491a41edab75..4ec83aee404d 100644 --- a/metadata/md5-cache/app-misc/brewtarget-2.3.1-r1 +++ b/metadata/md5-cache/app-misc/brewtarget-2.3.1-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 WTFPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5[sqlite] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 SLOT=0 SRC_URI=https://github.com/Brewtarget/brewtarget/releases/download/v2.3.1/brewtarget_2.3.1.orig.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2a5a29d85165d604d8341f02472a09f8 diff --git a/metadata/md5-cache/app-misc/ckb-0.5.0-r1 b/metadata/md5-cache/app-misc/ckb-0.5.0-r1 index 383cb586502e..a3cfafd118c0 100644 --- a/metadata/md5-cache/app-misc/ckb-0.5.0-r1 +++ b/metadata/md5-cache/app-misc/ckb-0.5.0-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/libdbusmenu-qt dev-libs/quazip:0=[qt5(+)] dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 || ( media-sound/pulseaudio media-sound/apulse[sdk] ) virtual/libudev:= x11-libs/libX11 x11-libs/libxcb:= x11-libs/xcb-util-wm SLOT=0 SRC_URI=https://github.com/ckb-next/ckb-next/archive/v0.5.0.tar.gz -> ckb-0.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c27198bce446c94cac7a0ebfa6920668 diff --git a/metadata/md5-cache/app-misc/ckb-9999 b/metadata/md5-cache/app-misc/ckb-9999 index f51ca812b70c..a16b0481ea45 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/libdbusmenu-qt dev-libs/quazip:0=[qt5(+)] dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 || ( media-sound/pulseaudio media-sound/apulse[sdk] ) virtual/libudev:= x11-libs/libX11 x11-libs/libxcb:= x11-libs/xcb-util-wm SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b68c681dfaccb8cc0b5f73302c7abbcf diff --git a/metadata/md5-cache/app-misc/cmatrix-2.0-r4 b/metadata/md5-cache/app-misc/cmatrix-2.0-r4 index 2522dbd66b06..11306cc5be33 100644 --- a/metadata/md5-cache/app-misc/cmatrix-2.0-r4 +++ b/metadata/md5-cache/app-misc/cmatrix-2.0-r4 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=sys-libs/ncurses:=[unicode(+)?] SLOT=0 SRC_URI=https://github.com/abishekvashok/cmatrix/archive/v2.0.tar.gz -> cmatrix-2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 font aa113a3df9cd0a9693a1c1ee7c34a6eb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 font aa113a3df9cd0a9693a1c1ee7c34a6eb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bb9c2695c53309e9c123b7a27c56d185 diff --git a/metadata/md5-cache/app-misc/dateutils-0.4.8 b/metadata/md5-cache/app-misc/dateutils-0.4.10 similarity index 77% rename from metadata/md5-cache/app-misc/dateutils-0.4.8 rename to metadata/md5-cache/app-misc/dateutils-0.4.10 index fa6ab4adeffe..49c3546aa88a 100644 --- a/metadata/md5-cache/app-misc/dateutils-0.4.8 +++ b/metadata/md5-cache/app-misc/dateutils-0.4.10 @@ -2,11 +2,11 @@ BDEPEND=app-arch/xz-utils DEFINED_PHASES=configure prepare DEPEND=sys-libs/timezone-data DESCRIPTION=Command line date and time utilities -EAPI=7 +EAPI=8 HOMEPAGE=https://www.fresse.org/dateutils/ https://github.com/hroptatyr/dateutils -KEYWORDS=amd64 x86 +KEYWORDS=~amd64 ~x86 LICENSE=BSD RDEPEND=sys-libs/timezone-data !sys-fabric/dapl SLOT=0 -SRC_URI=https://github.com/hroptatyr/dateutils/releases/download/v0.4.8/dateutils-0.4.8.tar.xz -_md5_=843c0274e5808254283b1c8ea502ba73 +SRC_URI=https://github.com/hroptatyr/dateutils/releases/download/v0.4.10/dateutils-0.4.10.tar.xz +_md5_=b213a8418d954dea6604855470b615ac diff --git a/metadata/md5-cache/app-misc/dateutils-0.4.7 b/metadata/md5-cache/app-misc/dateutils-0.4.7 deleted file mode 100644 index 5cf0b988da59..000000000000 --- a/metadata/md5-cache/app-misc/dateutils-0.4.7 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=app-arch/xz-utils -DEFINED_PHASES=configure prepare -DEPEND=sys-libs/timezone-data -DESCRIPTION=command line date and time utilities -EAPI=7 -HOMEPAGE=https://www.fresse.org/dateutils/ https://github.com/hroptatyr/dateutils -KEYWORDS=amd64 x86 -LICENSE=BSD -RDEPEND=sys-libs/timezone-data !sys-fabric/dapl -SLOT=0 -SRC_URI=https://github.com/hroptatyr/dateutils/releases/download/v0.4.7/dateutils-0.4.7.tar.xz -_md5_=f0de7d818cf6906b6330edd654a3aa14 diff --git a/metadata/md5-cache/app-misc/dateutils-9999 b/metadata/md5-cache/app-misc/dateutils-9999 index 2617f4026585..12b14f871c1a 100644 --- a/metadata/md5-cache/app-misc/dateutils-9999 +++ b/metadata/md5-cache/app-misc/dateutils-9999 @@ -10,4 +10,4 @@ PROPERTIES=live RDEPEND=sys-libs/timezone-data !sys-fabric/dapl SLOT=0 _eclasses_=autotools b5529dc611971a61a30153916014f616 git-r3 c57c50c922e121043788de0b40ada60a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=57ce5e079f5e8173230a873106f83a5b +_md5_=a4c60321b1aaabefd0d1f0097645fdb8 diff --git a/metadata/md5-cache/app-misc/ddate-0.2.2_p20160627-r1 b/metadata/md5-cache/app-misc/ddate-0.2.2_p20160627-r1 index cf477ad5d756..c01b5452dd1a 100644 --- a/metadata/md5-cache/app-misc/ddate-0.2.2_p20160627-r1 +++ b/metadata/md5-cache/app-misc/ddate-0.2.2_p20160627-r1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 arm arm64 ~riscv x86 LICENSE=public-domain SLOT=0 SRC_URI=https://github.com/bo0ts/ddate/archive/899ca665a0cb725990c33415dc3c0261dac7fe46.tar.gz -> ddate-0.2.2_p20160627.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=193d96afe68265b7170eb87d6234d07a diff --git a/metadata/md5-cache/app-misc/ddcui-0.2.1 b/metadata/md5-cache/app-misc/ddcui-0.2.1 index d937728d8b16..7600c059059e 100644 --- a/metadata/md5-cache/app-misc/ddcui-0.2.1 +++ b/metadata/md5-cache/app-misc/ddcui-0.2.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=dev-libs/glib >=app-misc/ddcutil-1.2.0:0/4 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qthelp:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://github.com/rockowitz/ddcui/archive/v0.2.1.tar.gz -> ddcui-0.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f7618654031468f6f881aeb79a4963a6 diff --git a/metadata/md5-cache/app-misc/ddcui-0.3.0 b/metadata/md5-cache/app-misc/ddcui-0.3.0 index 5ff0a8f9380f..7aacf609f502 100644 --- a/metadata/md5-cache/app-misc/ddcui-0.3.0 +++ b/metadata/md5-cache/app-misc/ddcui-0.3.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=dev-libs/glib >=app-misc/ddcutil-1.3.0:0/4 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qthelp:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://github.com/rockowitz/ddcui/archive/v0.3.0.tar.gz -> ddcui-0.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a541bd473ea420298fd23594cebecbd diff --git a/metadata/md5-cache/app-misc/fhem-6.1 b/metadata/md5-cache/app-misc/fhem-6.1 deleted file mode 100644 index 55171c3d074c..000000000000 --- a/metadata/md5-cache/app-misc/fhem-6.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=compile install postinst prepare -DEPEND=media-gfx/pngcrush -DESCRIPTION=A GPL'd perl server for house automation -EAPI=8 -HOMEPAGE=https://www.fhem.de/ -INHERIT=systemd tmpfiles -IUSE=doc -KEYWORDS=amd64 x86 -LICENSE=GPL-2+ -RDEPEND=acct-group/fhem acct-user/fhem dev-perl/Crypt-CBC dev-perl/Device-SerialPort dev-perl/Digest-CRC dev-perl/JSON virtual/tmpfiles -SLOT=0 -SRC_URI=https://www.fhem.de/fhem-6.1.tar.gz -_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=6c999db422c8284c8a9060da00b4e654 diff --git a/metadata/md5-cache/app-misc/fhem-6.2 b/metadata/md5-cache/app-misc/fhem-6.2 index 44db333e27c4..83e62d8ed48b 100644 --- a/metadata/md5-cache/app-misc/fhem-6.2 +++ b/metadata/md5-cache/app-misc/fhem-6.2 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.fhem.de/ INHERIT=systemd tmpfiles IUSE=doc -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2+ RDEPEND=acct-group/fhem acct-user/fhem dev-perl/Crypt-CBC dev-perl/Device-SerialPort dev-perl/Digest-CRC dev-perl/JSON virtual/tmpfiles SLOT=0 SRC_URI=https://www.fhem.de/fhem-6.2.tar.gz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=509c766fb21f238f7252cd698c601437 +_md5_=3b4ad4a9f8a2eb84c6b3d2b86f01659a diff --git a/metadata/md5-cache/app-misc/gnote-44.0 b/metadata/md5-cache/app-misc/gnote-44.0 new file mode 100644 index 000000000000..5f7eed1ab106 --- /dev/null +++ b/metadata/md5-cache/app-misc/gnote-44.0 @@ -0,0 +1,17 @@ +BDEPEND=app-text/docbook-xml-dtd:4.1.2 >=dev-util/intltool-0.35.0 dev-util/itstool virtual/pkgconfig >=app-portage/elt-patches-20170815 app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=dev-libs/glib-2.62:2[dbus] >=dev-cpp/glibmm-2.62.0:2 >=dev-cpp/gtkmm-3.22.20:3.0 >=app-crypt/libsecret-0.8 >=dev-libs/libxml2-2:2 dev-libs/libxslt >=sys-apps/util-linux-2.16 >=app-text/gspell-1.6.0:= test? ( dev-libs/unittest++ ) +DESCRIPTION=Desktop note-taking application +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Gnote +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome2 meson readme.gentoo-r1 +IUSE=test +KEYWORDS=~amd64 ~arm64 ~riscv ~x86 +LICENSE=GPL-3+ FDL-1.1 +RDEPEND=>=dev-libs/glib-2.62:2[dbus] >=dev-cpp/glibmm-2.62.0:2 >=dev-cpp/gtkmm-3.22.20:3.0 >=app-crypt/libsecret-0.8 >=dev-libs/libxml2-2:2 dev-libs/libxslt >=sys-apps/util-linux-2.16 >=app-text/gspell-1.6.0:= test? ( dev-libs/unittest++ ) gnome-base/gsettings-desktop-schemas +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://gnome/sources/gnote/44/gnote-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=2eada2880ec521ac7326919177c6254d diff --git a/metadata/md5-cache/app-misc/i2bits-0.1.0-r1 b/metadata/md5-cache/app-misc/i2bits-0.1.0-r1 index 3089df43841b..f6d8a2b1bfe5 100644 --- a/metadata/md5-cache/app-misc/i2bits-0.1.0-r1 +++ b/metadata/md5-cache/app-misc/i2bits-0.1.0-r1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 x86 LICENSE=WTFPL-2 SLOT=0 SRC_URI=http://unixdev.ru/src/i2bits-0.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a75a16e4750020a9dfcc371bd0171fb2 diff --git a/metadata/md5-cache/app-misc/logiops-0.2.3-r1 b/metadata/md5-cache/app-misc/logiops-0.2.3-r1 index 5fa3912b8f6e..9897bbcb5e65 100644 --- a/metadata/md5-cache/app-misc/logiops-0.2.3-r1 +++ b/metadata/md5-cache/app-misc/logiops-0.2.3-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=dev-libs/libconfig:=[cxx] dev-libs/libevdev virtual/libudev systemd? ( sys-apps/systemd ) SLOT=0 SRC_URI=https://github.com/PixlOne/logiops/archive/refs/tags/v0.2.3.tar.gz -> logiops-0.2.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a4c849aaf0ea94f496a70604d9be8d4f diff --git a/metadata/md5-cache/app-misc/pdfpc-4.5.0-r2 b/metadata/md5-cache/app-misc/pdfpc-4.5.0-r2 index fd1854275b55..a298c2d87a46 100644 --- a/metadata/md5-cache/app-misc/pdfpc-4.5.0-r2 +++ b/metadata/md5-cache/app-misc/pdfpc-4.5.0-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=app-text/discount:= app-text/poppler:=[cairo] dev-libs/glib:2 dev-libs/json-glib dev-libs/libgee:0.8= gnome-base/librsvg net-libs/webkit-gtk:4= x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-plugins/gst-plugins-gtk:1.0= media-plugins/gst-plugins-cairo:1.0= ) SLOT=0 SRC_URI=https://github.com/pdfpc/pdfpc/archive/v4.5.0.tar.gz -> pdfpc-4.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ee1d0ce62a76df5dad3c23c2a4c307e9 diff --git a/metadata/md5-cache/app-misc/pdfpc-4.6.0-r1 b/metadata/md5-cache/app-misc/pdfpc-4.6.0-r1 index fe14573f303b..55892399ddd2 100644 --- a/metadata/md5-cache/app-misc/pdfpc-4.6.0-r1 +++ b/metadata/md5-cache/app-misc/pdfpc-4.6.0-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=app-text/discount:= app-text/poppler:=[cairo] dev-libs/glib:2 dev-libs/json-glib dev-libs/libgee:0.8= gnome-base/librsvg x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 media-plugins/gst-plugins-gtk:1.0= media-plugins/gst-plugins-cairo:1.0= ) soup? ( media-gfx/qrencode net-libs/libsoup:2.4 ) webkit? ( net-libs/webkit-gtk:4= ) SLOT=0 SRC_URI=https://github.com/pdfpc/pdfpc/archive/v4.6.0.tar.gz -> pdfpc-4.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8565820f43bcb286c4a50b8ad1d02ba0 diff --git a/metadata/md5-cache/app-misc/qtxdg-tools-3.10.0 b/metadata/md5-cache/app-misc/qtxdg-tools-3.10.0 index 0355af89b376..4f99a9cbee54 100644 --- a/metadata/md5-cache/app-misc/qtxdg-tools-3.10.0 +++ b/metadata/md5-cache/app-misc/qtxdg-tools-3.10.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/libqtxdg-3.10.0 >=dev-qt/qtcore-5.15:5 SLOT=0 SRC_URI=https://github.com/lxqt/qtxdg-tools/releases/download/3.10.0/qtxdg-tools-3.10.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a60cd1adc6ee7668347a103c090f6455 diff --git a/metadata/md5-cache/app-misc/qtxdg-tools-3.9.1 b/metadata/md5-cache/app-misc/qtxdg-tools-3.9.1 index 791fecef0b73..50c29ffb4c07 100644 --- a/metadata/md5-cache/app-misc/qtxdg-tools-3.9.1 +++ b/metadata/md5-cache/app-misc/qtxdg-tools-3.9.1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/libqtxdg-3.9.1 >=dev-qt/qtcore-5.15:5 SLOT=0 SRC_URI=https://github.com/lxqt/qtxdg-tools/releases/download/3.9.1/qtxdg-tools-3.9.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2e93596353c19ede6117ce9f655e8dff diff --git a/metadata/md5-cache/app-misc/rbutil-1.5.1-r1 b/metadata/md5-cache/app-misc/rbutil-1.5.1-r1 index c3b5d3d3df76..0701e4454edd 100644 --- a/metadata/md5-cache/app-misc/rbutil-1.5.1-r1 +++ b/metadata/md5-cache/app-misc/rbutil-1.5.1-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/bzip2:= >=dev-libs/quazip-1.2:=[qt5(+)] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 media-libs/speex media-libs/speexdsp virtual/libusb:1 SLOT=0 SRC_URI=https://download.rockbox.org/rbutil/source/RockboxUtility-v1.5.1-src.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d0d116bd5a3d5d1359b9f4bf89fe0a87 diff --git a/metadata/md5-cache/app-misc/resolve-march-native-2.2.0 b/metadata/md5-cache/app-misc/resolve-march-native-2.2.0 new file mode 100644 index 000000000000..fc480cb86be2 --- /dev/null +++ b/metadata/md5-cache/app-misc/resolve-march-native-2.2.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=sys-devel/gcc-4.2 >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Resolve GCC flag -march=native +EAPI=8 +HOMEPAGE=https://github.com/hartwork/resolve-march-native +INHERIT=distutils-r1 +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=GPL-2+ +RDEPEND=>=sys-devel/gcc-4.2 python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/hartwork/resolve-march-native/archive/2.2.0.tar.gz -> resolve-march-native-2.2.0.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=1011b1eab6bb25d9bb29f1001e2c8e84 diff --git a/metadata/md5-cache/app-misc/task-2.6.2 b/metadata/md5-cache/app-misc/task-2.6.2 index 73f3be67bdeb..1828b7a91dcf 100644 --- a/metadata/md5-cache/app-misc/task-2.6.2 +++ b/metadata/md5-cache/app-misc/task-2.6.2 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=sync? ( net-libs/gnutls ) SLOT=0 SRC_URI=https://github.com/GothenburgBitFactory/taskwarrior/releases/download/v2.6.2/task-2.6.2.tar.gz https://github.com/GothenburgBitFactory/taskwarrior/releases/download/v2.6.2/tests-2.6.2.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b4b2d22217c6c7b41974c8828cff7ee0 diff --git a/metadata/md5-cache/app-misc/taskd-1.1.0-r3 b/metadata/md5-cache/app-misc/taskd-1.1.0-r3 index f18ce2009477..d842191d8c18 100644 --- a/metadata/md5-cache/app-misc/taskd-1.1.0-r3 +++ b/metadata/md5-cache/app-misc/taskd-1.1.0-r3 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=net-libs/gnutls:= sys-apps/util-linux sys-libs/readline:0= acct-group/taskd acct-user/taskd SLOT=0 SRC_URI=https://taskwarrior.org/download/taskd-1.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=566cd2e9d8251ddbb39126f01a784446 diff --git a/metadata/md5-cache/app-misc/timestamp-1.1-r2 b/metadata/md5-cache/app-misc/timestamp-1.1-r2 deleted file mode 100644 index 43ff1d30e268..000000000000 --- a/metadata/md5-cache/app-misc/timestamp-1.1-r2 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=- -DESCRIPTION=A text filtering pipe that marks each line with a timestamp -EAPI=8 -HOMEPAGE=http://math.smsu.edu/~erik/software.php?id=95 -KEYWORDS=amd64 ppc x86 -LICENSE=BSD -RDEPEND=!sys-apps/moreutils -SLOT=0 -SRC_URI=http://math.smsu.edu/~erik/files/timestamp-1.1.tar.gz -_md5_=a6937ede18affb5eda7f46257a3e7cfd diff --git a/metadata/md5-cache/app-misc/timestamp-1.1-r3 b/metadata/md5-cache/app-misc/timestamp-1.1-r3 new file mode 100644 index 000000000000..983e98ec054d --- /dev/null +++ b/metadata/md5-cache/app-misc/timestamp-1.1-r3 @@ -0,0 +1,13 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=prepare +DESCRIPTION=A text filtering pipe that marks each line with a timestamp +EAPI=8 +HOMEPAGE=http://math.smsu.edu/~erik/software.php?id=95 +INHERIT=autotools +KEYWORDS=amd64 ppc x86 +LICENSE=BSD +RDEPEND=!sys-apps/moreutils +SLOT=0 +SRC_URI=http://math.smsu.edu/~erik/files/timestamp-1.1.tar.gz +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=ca2128f4bdcadf365eb2809c4019e64e diff --git a/metadata/md5-cache/app-misc/timew-1.4.3-r1 b/metadata/md5-cache/app-misc/timew-1.4.3-r1 index e074da9f2dbf..735bfc6fe4ee 100644 --- a/metadata/md5-cache/app-misc/timew-1.4.3-r1 +++ b/metadata/md5-cache/app-misc/timew-1.4.3-r1 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/GothenburgBitFactory/timewarrior/releases/download/v1.4.3/timew-1.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=377dd40972440829516c8dacdaea729f diff --git a/metadata/md5-cache/app-misc/tmate-2.4.0-r1 b/metadata/md5-cache/app-misc/tmate-2.4.0-r1 index 494ba86ee276..8aed4840a63e 100644 --- a/metadata/md5-cache/app-misc/tmate-2.4.0-r1 +++ b/metadata/md5-cache/app-misc/tmate-2.4.0-r1 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://tmate.io/ INHERIT=autotools IUSE=debug -KEYWORDS=~amd64 ~riscv ~x86 +KEYWORDS=amd64 ~riscv ~x86 LICENSE=ISC RDEPEND=sys-libs/zlib sys-libs/libutempter dev-libs/libevent dev-libs/msgpack >=net-libs/libssh-0.6.0 dev-libs/openssl:0= SLOT=0 SRC_URI=https://github.com/tmate-io/tmate/archive/2.4.0.tar.gz -> tmate-2.4.0.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a25e08f080d8fe434d344b9cc7df8047 +_md5_=8af84c33c122071283bb971b6733b8f4 diff --git a/metadata/md5-cache/app-misc/tmux-mem-cpu-load-3.5.1 b/metadata/md5-cache/app-misc/tmux-mem-cpu-load-3.5.1 index 185df3283e82..d5f3a56087c8 100644 --- a/metadata/md5-cache/app-misc/tmux-mem-cpu-load-3.5.1 +++ b/metadata/md5-cache/app-misc/tmux-mem-cpu-load-3.5.1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm64 ~ppc64 ~riscv x86 LICENSE=Apache-2.0 SLOT=0 SRC_URI=https://github.com/thewtex/tmux-mem-cpu-load/archive/v3.5.1.tar.gz -> tmux-mem-cpu-load-3.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=da4309b01e7109f871da0f299b1ff412 diff --git a/metadata/md5-cache/app-misc/tmux-mem-cpu-load-9999 b/metadata/md5-cache/app-misc/tmux-mem-cpu-load-9999 index 74d493105db2..e67c48621c1e 100644 --- a/metadata/md5-cache/app-misc/tmux-mem-cpu-load-9999 +++ b/metadata/md5-cache/app-misc/tmux-mem-cpu-load-9999 @@ -7,5 +7,5 @@ INHERIT=cmake git-r3 LICENSE=Apache-2.0 PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bfc44775917e8d205da896baf4f3f9ed diff --git a/metadata/md5-cache/app-misc/tracker-3.5.0 b/metadata/md5-cache/app-misc/tracker-3.5.0 new file mode 100644 index 000000000000..488ca926ebf3 --- /dev/null +++ b/metadata/md5-cache/app-misc/tracker-3.5.0 @@ -0,0 +1,18 @@ +BDEPEND=dev-util/glib-utils app-text/asciidoc dev-libs/libxslt || ( dev-lang/vala:0.56 ) >=sys-devel/gettext-0.19.8 virtual/pkgconfig gtk-doc? ( dev-util/gi-docgen ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/pygobject[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pygobject[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pygobject[python_targets_python3_9(-)] ) ) || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/tappy[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/tappy[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/tappy[python_targets_python3_9(-)] ) ) ) || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=dev-libs/glib-2.52:2 >=sys-apps/dbus-1.3.2 >=dev-libs/gobject-introspection-1.54:= >=dev-libs/icu-4.8.1.2:= >=dev-libs/json-glib-1.4 >=net-libs/libsoup-2.99.2:3.0 >=dev-libs/libxml2-2.7 >=dev-db/sqlite-3.29.0:3 stemmer? ( dev-libs/snowball-stemmer:= ) +DESCRIPTION=A tagging metadata database, search tool and indexer +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Projects/Tracker https://gitlab.gnome.org/GNOME/tracker +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=bash-completion-r1 flag-o-matic gnome.org gnome2-utils linux-info meson python-any-r1 systemd vala xdg +IUSE=gtk-doc +miners stemmer test vala +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2+ LGPL-2.1+ +PDEPEND=miners? ( >=app-misc/tracker-miners-3.5 ) +RDEPEND=>=dev-libs/glib-2.52:2 >=sys-apps/dbus-1.3.2 >=dev-libs/gobject-introspection-1.54:= >=dev-libs/icu-4.8.1.2:= >=dev-libs/json-glib-1.4 >=net-libs/libsoup-2.99.2:3.0 >=dev-libs/libxml2-2.7 >=dev-db/sqlite-3.29.0:3 stemmer? ( dev-libs/snowball-stemmer:= ) +RESTRICT=!test? ( test ) +SLOT=3/0 +SRC_URI=mirror://gnome/sources/tracker/3.5/tracker-3.5.0.tar.xz +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 linux-info ecb03306c95c6ccc55852c98abcfcc64 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=6d4baf97eaff46d1dd48ba34fa458177 diff --git a/metadata/md5-cache/app-misc/tracker-miners-3.5.0 b/metadata/md5-cache/app-misc/tracker-miners-3.5.0 new file mode 100644 index 000000000000..44b646d847ea --- /dev/null +++ b/metadata/md5-cache/app-misc/tracker-miners-3.5.0 @@ -0,0 +1,18 @@ +BDEPEND=app-text/asciidoc dev-libs/libxslt dev-util/glib-utils dev-util/gdbus-codegen >=sys-devel/gettext-0.19.8 virtual/pkgconfig test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/pygobject[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pygobject[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pygobject[python_targets_python3_9(-)] ) ) || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/tappy[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/tappy[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/tappy[python_targets_python3_9(-)] ) ) gstreamer? ( media-libs/gstreamer:1.0[introspection] || ( media-plugins/gst-plugins-libav:1.0 media-plugins/gst-plugins-openh264:1.0 ) ) ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=dev-libs/glib-2.70:2 >=app-misc/tracker-3.4.0:3 >=sys-apps/dbus-1.3.1 xmp? ( >=media-libs/exempi-2.1.0:= ) raw? ( media-libs/gexiv2 ) cue? ( media-libs/libcue:= ) exif? ( >=media-libs/libexif-0.6 ) gsf? ( >=gnome-extra/libgsf-1.14.24:= ) xps? ( app-text/libgxps ) iptc? ( media-libs/libiptcdata ) jpeg? ( media-libs/libjpeg-turbo:0= ) iso? ( >=sys-libs/libosinfo-1.10.0-r1 ) >=media-libs/libpng-1.2:0= seccomp? ( >=sys-libs/libseccomp-2.0 ) tiff? ( media-libs/tiff:= ) xml? ( >=dev-libs/libxml2-2.6 ) pdf? ( >=app-text/poppler-0.16.0:=[cairo] ) playlist? ( >=dev-libs/totem-pl-parser-3:= ) sys-apps/util-linux gif? ( media-libs/giflib:= ) networkmanager? ( net-misc/networkmanager ) rss? ( >=net-libs/libgrss-0.7:0 ) app-arch/gzip upower? ( >=sys-power/upower-0.9.0:= ) >=dev-libs/icu-4.8.1.1:= gstreamer? ( >=media-libs/gstreamer-1.20:1.0 >=media-libs/gst-plugins-base-1.20:1.0 >=media-plugins/gst-plugins-meta-1.20:1.0 ) !gstreamer? ( ffmpeg? ( media-video/ffmpeg:0= ) ) +DESCRIPTION=Collection of data extractors for Tracker/Nepomuk +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Projects/Tracker +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=flag-o-matic gnome.org gnome2-utils meson python-any-r1 systemd xdg +IUSE=cue exif ffmpeg gif gsf +gstreamer iptc +iso +jpeg networkmanager +pdf +playlist raw +rss seccomp test +tiff upower +xml xmp xps +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2+ LGPL-2.1+ +RDEPEND=>=dev-libs/glib-2.70:2 >=app-misc/tracker-3.4.0:3 >=sys-apps/dbus-1.3.1 xmp? ( >=media-libs/exempi-2.1.0:= ) raw? ( media-libs/gexiv2 ) cue? ( media-libs/libcue:= ) exif? ( >=media-libs/libexif-0.6 ) gsf? ( >=gnome-extra/libgsf-1.14.24:= ) xps? ( app-text/libgxps ) iptc? ( media-libs/libiptcdata ) jpeg? ( media-libs/libjpeg-turbo:0= ) iso? ( >=sys-libs/libosinfo-1.10.0-r1 ) >=media-libs/libpng-1.2:0= seccomp? ( >=sys-libs/libseccomp-2.0 ) tiff? ( media-libs/tiff:= ) xml? ( >=dev-libs/libxml2-2.6 ) pdf? ( >=app-text/poppler-0.16.0:=[cairo] ) playlist? ( >=dev-libs/totem-pl-parser-3:= ) sys-apps/util-linux gif? ( media-libs/giflib:= ) networkmanager? ( net-misc/networkmanager ) rss? ( >=net-libs/libgrss-0.7:0 ) app-arch/gzip upower? ( >=sys-power/upower-0.9.0:= ) >=dev-libs/icu-4.8.1.1:= gstreamer? ( >=media-libs/gstreamer-1.20:1.0 >=media-libs/gst-plugins-base-1.20:1.0 >=media-plugins/gst-plugins-meta-1.20:1.0 ) !gstreamer? ( ffmpeg? ( media-video/ffmpeg:0= ) ) +REQUIRED_USE=cue? ( gstreamer ) +RESTRICT=!test? ( test ) +SLOT=3 +SRC_URI=mirror://gnome/sources/tracker-miners/3.5/tracker-miners-3.5.0.tar.xz +_eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=c10ab80334aa12378adce13ae2a73dbf diff --git a/metadata/md5-cache/app-misc/vcontrold-0.98.11 b/metadata/md5-cache/app-misc/vcontrold-0.98.11 index 48e74783b2d8..60dfbc2a62fc 100644 --- a/metadata/md5-cache/app-misc/vcontrold-0.98.11 +++ b/metadata/md5-cache/app-misc/vcontrold-0.98.11 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=dev-libs/libxml2:2 SLOT=0 SRC_URI=https://github.com/openv/vcontrold/archive/v0.98.11.tar.gz -> vcontrold-0.98.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2a1df5461a44766dfb2785894f2011b4 diff --git a/metadata/md5-cache/app-mobilephone/Manifest.gz b/metadata/md5-cache/app-mobilephone/Manifest.gz index 2f2857d86aff..dc63f3f65339 100644 Binary files a/metadata/md5-cache/app-mobilephone/Manifest.gz and b/metadata/md5-cache/app-mobilephone/Manifest.gz differ diff --git a/metadata/md5-cache/app-mobilephone/adebar-2.4.1 b/metadata/md5-cache/app-mobilephone/adebar-2.4.1 new file mode 100644 index 000000000000..f0a54c79184e --- /dev/null +++ b/metadata/md5-cache/app-mobilephone/adebar-2.4.1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install postinst prepare +DESCRIPTION=Android DEvice Backup And Report, using Bash and ADB +EAPI=8 +HOMEPAGE=https://codeberg.org/izzy/Adebar +INHERIT=readme.gentoo-r1 +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=app-shells/bash dev-util/android-tools +SLOT=0 +SRC_URI=https://codeberg.org/izzy/Adebar/archive/v2.4.1.tar.gz -> adebar-2.4.1.tar.gz +_eclasses_=readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 +_md5_=b5476c5b8c06d5d66010819df206c1ec diff --git a/metadata/md5-cache/app-mobilephone/gammu-1.42.0-r1 b/metadata/md5-cache/app-mobilephone/gammu-1.42.0-r1 index 5000f4c29712..c123476a18e4 100644 --- a/metadata/md5-cache/app-mobilephone/gammu-1.42.0-r1 +++ b/metadata/md5-cache/app-mobilephone/gammu-1.42.0-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib:2= dev-libs/libgudev:= virtual/libiconv bluetooth? ( net-wireless/bluez:= ) curl? ( net-misc/curl:= ) dbi? ( >=dev-db/libdbi-0.8.3:= ) mysql? ( dev-db/mysql-connector-c:= ) nls? ( sys-devel/gettext ) odbc? ( dev-db/unixODBC ) postgres? ( dev-db/postgresql:= ) usb? ( virtual/libusb:1= ) dev-util/dialog SLOT=0 SRC_URI=https://dl.cihar.com/gammu/releases/gammu-1.42.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=722acf8b9e7f556c47fba910f6d522a2 diff --git a/metadata/md5-cache/app-mobilephone/heimdall-2.0.1 b/metadata/md5-cache/app-mobilephone/heimdall-2.0.1 index 1537b98562a5..ad461d63bb8e 100644 --- a/metadata/md5-cache/app-mobilephone/heimdall-2.0.1 +++ b/metadata/md5-cache/app-mobilephone/heimdall-2.0.1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=sys-libs/zlib virtual/libusb:1= gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) SLOT=0 SRC_URI=https://git.sr.ht/~grimler/Heimdall/archive/v2.0.1.tar.gz -> heimdall-2.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=812795c7f690edd9ba8194c832f08275 diff --git a/metadata/md5-cache/app-mobilephone/heimdall-9999 b/metadata/md5-cache/app-mobilephone/heimdall-9999 index 512424e7e3d7..8c19c4b74bc6 100644 --- a/metadata/md5-cache/app-mobilephone/heimdall-9999 +++ b/metadata/md5-cache/app-mobilephone/heimdall-9999 @@ -10,5 +10,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=sys-libs/zlib virtual/libusb:1= gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=812795c7f690edd9ba8194c832f08275 diff --git a/metadata/md5-cache/app-office/Manifest.gz b/metadata/md5-cache/app-office/Manifest.gz index c5e233e785fe..55139fdca6f3 100644 Binary files a/metadata/md5-cache/app-office/Manifest.gz and b/metadata/md5-cache/app-office/Manifest.gz differ diff --git a/metadata/md5-cache/app-office/calligra-3.2.1-r5 b/metadata/md5-cache/app-office/calligra-3.2.1-r5 index 59acbe1471a0..b8415074558c 100644 --- a/metadata/md5-cache/app-office/calligra-3.2.1-r5 +++ b/metadata/md5-cache/app-office/calligra-3.2.1-r5 @@ -13,5 +13,5 @@ RDEPEND=dev-lang/perl >=dev-qt/designer-5.15.2:5 >=dev-qt/qtdbus-5.15.2:5 >=dev- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/calligra/3.2.1/calligra-3.2.1.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=845f1aa7f0fe125440b2edd91845b7f6 diff --git a/metadata/md5-cache/app-office/calligraplan-3.3.0 b/metadata/md5-cache/app-office/calligraplan-3.3.0 index 4f6af7f9809e..887d7d8a1c0a 100644 --- a/metadata/md5-cache/app-office/calligraplan-3.3.0 +++ b/metadata/md5-cache/app-office/calligraplan-3.3.0 @@ -13,5 +13,5 @@ RDEPEND=dev-lang/perl >=dev-libs/kdiagram-2.8.0:5 >=dev-qt/designer-5.15.2:5 >=d RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/calligra/3.3.0/calligraplan-3.3.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=20e4393aff687712b3198963b8b8ee01 diff --git a/metadata/md5-cache/app-office/gnucash-4.12-r1 b/metadata/md5-cache/app-office/gnucash-4.12-r1 index ff1101f0ec0f..132d3270b5d4 100644 --- a/metadata/md5-cache/app-office/gnucash-4.12-r1 +++ b/metadata/md5-cache/app-office/gnucash-4.12-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=examples? ( gui ) python? ( ^^ ( python_single_target_python3_9 pyt RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Gnucash/gnucash/releases/download/4.12/gnucash-4.12.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=881f2010430f43704455d629939222d1 diff --git a/metadata/md5-cache/app-office/gnucash-4.13 b/metadata/md5-cache/app-office/gnucash-4.13 index fed130e861a5..89c840cc3db6 100644 --- a/metadata/md5-cache/app-office/gnucash-4.13 +++ b/metadata/md5-cache/app-office/gnucash-4.13 @@ -14,5 +14,5 @@ REQUIRED_USE=examples? ( gui ) python? ( ^^ ( python_single_target_python3_9 pyt RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Gnucash/gnucash/releases/download/4.13/gnucash-4.13.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2fd713455c926e011e8cbad3f808f7da diff --git a/metadata/md5-cache/app-office/kalendar-22.08.3 b/metadata/md5-cache/app-office/kalendar-22.08.3 index cf61e713d8eb..faf220f8e07c 100644 --- a/metadata/md5-cache/app-office/kalendar-22.08.3 +++ b/metadata/md5-cache/app-office/kalendar-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kalendar-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=53715ca554cfdc4364180a664ea873c6 diff --git a/metadata/md5-cache/app-office/kalendar-22.12.3 b/metadata/md5-cache/app-office/kalendar-22.12.3 index 7486a841dad3..531000a7b812 100644 --- a/metadata/md5-cache/app-office/kalendar-22.12.3 +++ b/metadata/md5-cache/app-office/kalendar-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/gpgme:=[cxx] >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kalendar-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3eac3da0cab56ac1647ed5fc2b41c184 diff --git a/metadata/md5-cache/app-office/kexi-3.2.0-r3 b/metadata/md5-cache/app-office/kexi-3.2.0-r3 index 501f30d72537..e9b944b0ed0e 100644 --- a/metadata/md5-cache/app-office/kexi-3.2.0-r3 +++ b/metadata/md5-cache/app-office/kexi-3.2.0-r3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-db/kdb-3.1.0-r1:5=[debug?,mysql?,postgres?,sqlite?] >=dev-libs/kpr RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kexi/src/kexi-3.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5896c60ddcabbf985c183e8661a08362 diff --git a/metadata/md5-cache/app-office/kmymoney-5.1.3 b/metadata/md5-cache/app-office/kmymoney-5.1.3 index 513025ccc08b..8caf93069a42 100644 --- a/metadata/md5-cache/app-office/kmymoney-5.1.3 +++ b/metadata/md5-cache/app-office/kmymoney-5.1.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.7.1-r1:=[cxx] >=app-office/libalkimia-7.0.0:= dev-db RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kmymoney/5.1.3/src/kmymoney-5.1.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7333087b934c71d4100d276c600fea5e diff --git a/metadata/md5-cache/app-office/kraft-0.98 b/metadata/md5-cache/app-office/kraft-0.98 index 721289664595..d8e4902d7220 100644 --- a/metadata/md5-cache/app-office/kraft-0.98 +++ b/metadata/md5-cache/app-office/kraft-0.98 @@ -13,5 +13,5 @@ RDEPEND=dev-cpp/ctemplate dev-libs/grantlee:5 dev-qt/qtgui:5 dev-qt/qtsql:5 dev- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=https://github.com/dragotin/kraft/archive/v0.98.tar.gz -> kraft-0.98.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f4768c861b8f8dffad809c6763189a22 diff --git a/metadata/md5-cache/app-office/ktimetracker-5.0.1-r1 b/metadata/md5-cache/app-office/ktimetracker-5.0.1-r1 index 79adfa26f6e8..e65cfb24420a 100644 --- a/metadata/md5-cache/app-office/ktimetracker-5.0.1-r1 +++ b/metadata/md5-cache/app-office/ktimetracker-5.0.1-r1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/ktimetracker/5.0.1/src/ktimetracker-5.0.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9ccef6284dad42c271e75db8c3031b12 diff --git a/metadata/md5-cache/app-office/ledger-3.2.1-r1 b/metadata/md5-cache/app-office/ledger-3.2.1-r1 index 911c4394370a..9f96ca8da464 100644 --- a/metadata/md5-cache/app-office/ledger-3.2.1-r1 +++ b/metadata/md5-cache/app-office/ledger-3.2.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/ledger/ledger/archive/v3.2.1.tar.gz -> ledger-3.2.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1bdfa70a649092fb2219bb82db5c7512 diff --git a/metadata/md5-cache/app-office/ledger-3.3.1 b/metadata/md5-cache/app-office/ledger-3.3.1 index 658e11dadf71..d14cce32a9ca 100644 --- a/metadata/md5-cache/app-office/ledger-3.3.1 +++ b/metadata/md5-cache/app-office/ledger-3.3.1 @@ -6,12 +6,12 @@ EAPI=8 HOMEPAGE=https://www.ledger-cli.org/ INHERIT=bash-completion-r1 check-reqs cmake python-single-r1 IUSE=debug doc python python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 LICENSE=BSD RDEPEND=dev-libs/boost:=[python?] dev-libs/gmp:0= dev-libs/mpfr:0= python? ( python_single_target_python3_9? ( dev-libs/boost:=[python_targets_python3_9(-)] dev-python/cheetah3:=[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-libs/boost:=[python_targets_python3_10(-)] dev-python/cheetah3:=[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-libs/boost:=[python_targets_python3_11(-)] dev-python/cheetah3:=[python_targets_python3_11(-)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/ledger/ledger/archive/v3.3.1.tar.gz -> ledger-3.3.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=bb16e0f9179514a7f5e6b6e2678abb61 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=82de63aeca265f91615821b027141a91 diff --git a/metadata/md5-cache/app-office/libalkimia-8.1.1 b/metadata/md5-cache/app-office/libalkimia-8.1.1 index 218e7afb5fcf..36d42f9307ec 100644 --- a/metadata/md5-cache/app-office/libalkimia-8.1.1 +++ b/metadata/md5-cache/app-office/libalkimia-8.1.1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) !test? ( test ) SLOT=0/8 SRC_URI=mirror://kde/stable/alkimia/8.1.1/alkimia-8.1.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=abdc3686af82b1d7444b0c8aa26dfc8a diff --git a/metadata/md5-cache/app-office/scribus-1.5.8-r5 b/metadata/md5-cache/app-office/scribus-1.5.8-r5 index b70547e39ea2..8c0cf2eb6488 100644 --- a/metadata/md5-cache/app-office/scribus-1.5.8-r5 +++ b/metadata/md5-cache/app-office/scribus-1.5.8-r5 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[tk?] ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) tk? ( scripts ) SLOT=0 SRC_URI=mirror://sourceforge/project/scribus/scribus-devel/1.5.8/scribus-1.5.8.tar.xz https://dev.gentoo.org/~asturm/distfiles/scribus-1.5.8-patchset-1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d08193a2bffeaee49303e10afbee8b2f diff --git a/metadata/md5-cache/app-office/skrooge-2.28.0 b/metadata/md5-cache/app-office/skrooge-2.28.0 index 18c611dd2abc..b83d75625c87 100644 --- a/metadata/md5-cache/app-office/skrooge-2.28.0 +++ b/metadata/md5-cache/app-office/skrooge-2.28.0 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2 dev-db/sqlcipher dev-libs/grantlee:5 >=dev-qt/qt RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/skrooge/skrooge-2.28.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d750eb0b3f3528f66f9bf76e2e8a522e diff --git a/metadata/md5-cache/app-office/skrooge-2.29.0-r1 b/metadata/md5-cache/app-office/skrooge-2.29.0-r1 index 7a1e4e5ea67e..7b42f93c893c 100644 --- a/metadata/md5-cache/app-office/skrooge-2.29.0-r1 +++ b/metadata/md5-cache/app-office/skrooge-2.29.0-r1 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] dev-db/sqlcipher dev-libs/grantlee:5 >=d RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/skrooge/skrooge-2.29.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c22e607b2a2d0ac194c697f1a73456ab diff --git a/metadata/md5-cache/app-office/texmacs-2.1-r1 b/metadata/md5-cache/app-office/texmacs-2.1-r1 index c27208b04d79..cc0b45af6201 100644 --- a/metadata/md5-cache/app-office/texmacs-2.1-r1 +++ b/metadata/md5-cache/app-office/texmacs-2.1-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=app-text/ghostscript-gpl =dev-qt/qtcore-5.9.1:5 >=dev-qt/qtgui-5.9.1:5 >=dev-qt/qtwidgets-5.9.1:5 >=dev-qt/qtprintsupport-5.9.1:5 sqlite? ( dev-db/sqlite ) jpeg? ( virtual/imagemagick-tools[jpeg] ) netpbm? ( media-libs/netpbm ) spell? ( app-text/aspell ) svg? ( || ( media-gfx/inkscape gnome-base/librsvg:2 ) ) SLOT=0 SRC_URI=https://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-2.1-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=52651ebdc2f06c7c678c9580a5470f34 diff --git a/metadata/md5-cache/app-portage/Manifest.gz b/metadata/md5-cache/app-portage/Manifest.gz index f5552ffbf264..8fb2b9b9879f 100644 Binary files a/metadata/md5-cache/app-portage/Manifest.gz and b/metadata/md5-cache/app-portage/Manifest.gz differ diff --git a/metadata/md5-cache/app-portage/hackport-0.7.2.2 b/metadata/md5-cache/app-portage/hackport-0.7.2.2 index 878c37e464b2..644b119f61df 100644 --- a/metadata/md5-cache/app-portage/hackport-0.7.2.2 +++ b/metadata/md5-cache/app-portage/hackport-0.7.2.2 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://hackage.haskell.org/package/hackport-0.7.2.2/hackport-0.7.2.2.tar.gz _eclasses_=ghc-package dbe1a8d17cacb390a3df7bbba6617679 haskell-cabal ac56c62fdcc7d2fedefe4e04ed40e1a7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=48acbc20bec9776ec7fc67e08fa363ad +_md5_=3dc59eec5161b1b9bdfb745bed7ec816 diff --git a/metadata/md5-cache/app-portage/iwdevtools-0.12.4 b/metadata/md5-cache/app-portage/iwdevtools-0.12.4 new file mode 100644 index 000000000000..1465161b21e5 --- /dev/null +++ b/metadata/md5-cache/app-portage/iwdevtools-0.12.4 @@ -0,0 +1,15 @@ +BDEPEND=sys-apps/help2man || ( sys-apps/util-linux app-misc/getopt ) test? ( app-misc/pax-utils app-portage/portage-utils >=app-shells/bash-5.1 dev-libs/libxml2:2 sys-apps/coreutils sys-apps/diffutils sys-apps/file sys-apps/portage || ( sys-apps/util-linux app-misc/getopt ) ) >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst test +DESCRIPTION=Small tools to aid with Gentoo development, primarily intended for QA +EAPI=8 +HOMEPAGE=https://github.com/ionenwks/iwdevtools +INHERIT=meson optfeature +IUSE=test +KEYWORDS=amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86 ~x64-macos +LICENSE=BSD-2 +RDEPEND=app-misc/pax-utils app-portage/portage-utils >=app-shells/bash-5.1 dev-libs/libxml2:2 sys-apps/coreutils sys-apps/diffutils sys-apps/file sys-apps/portage || ( sys-apps/util-linux app-misc/getopt ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/ionenwks/iwdevtools/archive/refs/tags/v0.12.4.tar.gz -> iwdevtools-0.12.4.tar.gz +_eclasses_=meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=40c042085b300dc6db65410fd794882e diff --git a/metadata/md5-cache/app-portage/kuroo-1.2.2 b/metadata/md5-cache/app-portage/kuroo-1.2.2 index 49c48b7b4d22..afcdf610386d 100644 --- a/metadata/md5-cache/app-portage/kuroo-1.2.2 +++ b/metadata/md5-cache/app-portage/kuroo-1.2.2 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-db/sqlite:3 dev-qt/qtgui:5 dev-qt/qtwidgets:5 >=kde-frameworks/kauth-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-frameworks/threadweaver-5.96.0:5 app-portage/gentoolkit kde-apps/kompare:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 SRC_URI=mirror://sourceforge/kuroo/kuroo-1.2.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7bba678c77926e98ee077c7063c8f67d diff --git a/metadata/md5-cache/app-portage/kuroo-9999 b/metadata/md5-cache/app-portage/kuroo-9999 index 4cf7b53743f5..f48a37dfbd0f 100644 --- a/metadata/md5-cache/app-portage/kuroo-9999 +++ b/metadata/md5-cache/app-portage/kuroo-9999 @@ -11,5 +11,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=dev-db/sqlite:3 dev-qt/qtgui:5 dev-qt/qtwidgets:5 >=kde-frameworks/kauth-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-frameworks/threadweaver-5.96.0:5 app-portage/gentoolkit kde-apps/kompare:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b subversion a98eebf2efc83b38f8d1982b8a522e75 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b subversion a98eebf2efc83b38f8d1982b8a522e75 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f98392643487106cdb44b68fc1ea693e diff --git a/metadata/md5-cache/app-shells/Manifest.gz b/metadata/md5-cache/app-shells/Manifest.gz index e530a856fd00..f8dda4a1d14f 100644 Binary files a/metadata/md5-cache/app-shells/Manifest.gz and b/metadata/md5-cache/app-shells/Manifest.gz differ diff --git a/metadata/md5-cache/app-shells/fish-3.4.0 b/metadata/md5-cache/app-shells/fish-3.4.0 index 967fae0b4596..120c92c12c75 100644 --- a/metadata/md5-cache/app-shells/fish-3.4.0 +++ b/metadata/md5-cache/app-shells/fish-3.4.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libpcre2-10.32:=[pcre32] sys-apps/coreutils sys-libs/ncurses: RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fish-shell/fish-shell/releases/download/3.4.0/fish-3.4.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d35e7812e4120e0c085019d14b62c92d diff --git a/metadata/md5-cache/app-shells/fish-3.5.1 b/metadata/md5-cache/app-shells/fish-3.5.1 index 3710bc97a92b..ee19b5be4437 100644 --- a/metadata/md5-cache/app-shells/fish-3.5.1 +++ b/metadata/md5-cache/app-shells/fish-3.5.1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libpcre2-10.32:=[pcre32] sys-apps/coreutils sys-libs/ncurses: RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fish-shell/fish-shell/releases/download/3.5.1/fish-3.5.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=20a0697da140dcfd375dbae3786f1922 diff --git a/metadata/md5-cache/app-shells/fish-3.6.0 b/metadata/md5-cache/app-shells/fish-3.6.0 index 3d21dc7db545..d3b69af936e6 100644 --- a/metadata/md5-cache/app-shells/fish-3.6.0 +++ b/metadata/md5-cache/app-shells/fish-3.6.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/libpcre2-10.32:=[pcre32] sys-apps/coreutils sys-libs/ncurses: RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fish-shell/fish-shell/releases/download/3.6.0/fish-3.6.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8dbe3cfea8100d28ef4dd1173438736f diff --git a/metadata/md5-cache/app-shells/fish-9999 b/metadata/md5-cache/app-shells/fish-9999 index 631b22817f75..98baeeaf620e 100644 --- a/metadata/md5-cache/app-shells/fish-9999 +++ b/metadata/md5-cache/app-shells/fish-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=>=dev-libs/libpcre2-10.32:=[pcre32] sys-apps/coreutils sys-libs/ncurses:=[unicode(+)] RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8dbe3cfea8100d28ef4dd1173438736f diff --git a/metadata/md5-cache/app-text/Manifest.gz b/metadata/md5-cache/app-text/Manifest.gz index 2e16172c336a..5cfd0faa11dc 100644 Binary files a/metadata/md5-cache/app-text/Manifest.gz and b/metadata/md5-cache/app-text/Manifest.gz differ diff --git a/metadata/md5-cache/app-text/a2ps-4.15.2 b/metadata/md5-cache/app-text/a2ps-4.15.2 new file mode 100644 index 000000000000..a5a941148727 --- /dev/null +++ b/metadata/md5-cache/app-text/a2ps-4.15.2 @@ -0,0 +1,15 @@ +BDEPEND=app-alternatives/yacc >=dev-util/gperf-2.7.2 nls? ( sys-devel/gettext ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=configure install postinst postrm prepare +DEPEND=app-text/ghostscript-gpl app-text/libpaper:= >=app-text/psutils-1.17 app-text/wdiff app-shells/bash:* dev-libs/boehm-gc >=sys-apps/coreutils-6.10-r1 emacs? ( >=app-editors/emacs-23.1:* ) latex? ( virtual/latex-base ) nls? ( virtual/libintl ) +DESCRIPTION=Any to PostScript filter +EAPI=8 +HOMEPAGE=https://www.gnu.org/software/a2ps/ +INHERIT=autotools elisp-common +IUSE=cjk emacs latex nls static-libs vanilla +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos +LICENSE=GPL-3+ +RDEPEND=app-text/ghostscript-gpl app-text/libpaper:= >=app-text/psutils-1.17 app-text/wdiff app-shells/bash:* dev-libs/boehm-gc >=sys-apps/coreutils-6.10-r1 emacs? ( >=app-editors/emacs-23.1:* ) latex? ( virtual/latex-base ) nls? ( virtual/libintl ) +SLOT=0 +SRC_URI=mirror://gnu/a2ps/a2ps-4.15.2.tar.gz +_eclasses_=autotools b5529dc611971a61a30153916014f616 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=b92ba2ce94a95271dfb19722cc908d7d diff --git a/metadata/md5-cache/app-text/apvlv-0.4.0-r1 b/metadata/md5-cache/app-text/apvlv-0.4.0-r1 index 1586de07b368..e50385a7647d 100644 --- a/metadata/md5-cache/app-text/apvlv-0.4.0-r1 +++ b/metadata/md5-cache/app-text/apvlv-0.4.0-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=app-text/ebook-tools >=app-text/poppler-0.5.0:=[cairo,xpdf-headers(+)] dev-libs/glib:2 dev-libs/libxml2 net-libs/webkit-gtk:4= x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/pango djvu? ( app-text/djvu ) SLOT=0 SRC_URI=https://github.com/naihe2010/apvlv/archive/refs/tags/v0.4.0.tar.gz -> apvlv-0.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=962926e2c6f3531ee2e9ade2b623205b diff --git a/metadata/md5-cache/app-text/bibletime-3.0.3-r4 b/metadata/md5-cache/app-text/bibletime-3.0.3-r4 index c69c53baa1cc..d3c9e79a23a8 100644 --- a/metadata/md5-cache/app-text/bibletime-3.0.3-r4 +++ b/metadata/md5-cache/app-text/bibletime-3.0.3-r4 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=>=app-text/sword-1.8.1[curl,icu] dev-cpp/clucene dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 SLOT=0 SRC_URI=https://github.com/bibletime/bibletime/releases/download/v3.0.3/bibletime-3.0.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8d2318778b49241614cca00adbb5c3e diff --git a/metadata/md5-cache/app-text/cherrytree-0.99.53 b/metadata/md5-cache/app-text/cherrytree-0.99.53 index 041a88dbb6a8..9e98608e9215 100644 --- a/metadata/md5-cache/app-text/cherrytree-0.99.53 +++ b/metadata/md5-cache/app-text/cherrytree-0.99.53 @@ -13,5 +13,5 @@ RDEPEND=app-i18n/uchardet app-text/gspell:= >=dev-cpp/glibmm-2.64.2:2 dev-cpp/gt RESTRICT=test SLOT=0 SRC_URI=https://github.com/giuspen/cherrytree/releases/download/0.99.53/cherrytree_0.99.53.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a80e094b2fb82ea3fdec457df4c63797 diff --git a/metadata/md5-cache/app-text/cherrytree-0.99.54 b/metadata/md5-cache/app-text/cherrytree-0.99.54 index dec482f40d05..d4af91b80cc4 100644 --- a/metadata/md5-cache/app-text/cherrytree-0.99.54 +++ b/metadata/md5-cache/app-text/cherrytree-0.99.54 @@ -13,5 +13,5 @@ RDEPEND=app-i18n/uchardet app-text/gspell:= >=dev-cpp/glibmm-2.64.2:2 dev-cpp/gt RESTRICT=test SLOT=0 SRC_URI=https://github.com/giuspen/cherrytree/releases/download/0.99.54/cherrytree_0.99.54.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=331a598c91004b68ae4de26b64920630 diff --git a/metadata/md5-cache/app-text/cherrytree-0.99.55 b/metadata/md5-cache/app-text/cherrytree-0.99.55 index 009d8b737690..f206ed0db432 100644 --- a/metadata/md5-cache/app-text/cherrytree-0.99.55 +++ b/metadata/md5-cache/app-text/cherrytree-0.99.55 @@ -13,5 +13,5 @@ RDEPEND=app-i18n/uchardet app-text/gspell:= >=dev-cpp/glibmm-2.64.2:2 dev-cpp/gt RESTRICT=test SLOT=0 SRC_URI=https://github.com/giuspen/cherrytree/releases/download/0.99.55/cherrytree_0.99.55.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=331a598c91004b68ae4de26b64920630 diff --git a/metadata/md5-cache/app-text/cmark-0.30.2 b/metadata/md5-cache/app-text/cmark-0.30.2 index b8374e03fd7d..c3f4053f3d45 100644 --- a/metadata/md5-cache/app-text/cmark-0.30.2 +++ b/metadata/md5-cache/app-text/cmark-0.30.2 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RESTRICT=!test? ( test ) SLOT=0/0.30.2 SRC_URI=https://github.com/commonmark/cmark/archive/0.30.2.tar.gz -> cmark-0.30.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cb167c3af2db68604b42fd49d5759541 diff --git a/metadata/md5-cache/app-text/cmark-0.30.3 b/metadata/md5-cache/app-text/cmark-0.30.3 index daf61812c9aa..01631167981f 100644 --- a/metadata/md5-cache/app-text/cmark-0.30.3 +++ b/metadata/md5-cache/app-text/cmark-0.30.3 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RESTRICT=!test? ( test ) SLOT=0/0.30.3 SRC_URI=https://github.com/commonmark/cmark/archive/0.30.3.tar.gz -> cmark-0.30.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b131912c3bb7d14be61b8cd1c1910ae diff --git a/metadata/md5-cache/app-text/coolreader-3.2.59-r4 b/metadata/md5-cache/app-text/coolreader-3.2.59-r4 index 9b113c76b08c..08312267c5bc 100644 --- a/metadata/md5-cache/app-text/coolreader-3.2.59-r4 +++ b/metadata/md5-cache/app-text/coolreader-3.2.59-r4 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=sys-libs/zlib app-arch/zstd:= media-libs/libpng:0 media-libs/libjpeg-turbo media-libs/freetype dev-libs/fribidi media-libs/fontconfig media-libs/harfbuzz:= dev-libs/libunibreak:= dev-libs/libutf8proc:= wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X] ) !wxwidgets? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) wxwidgets? ( || ( media-fonts/liberation-fonts media-fonts/corefonts ) ) SLOT=0 SRC_URI=https://github.com/buggins/coolreader/archive/cr3.2.59.tar.gz -> coolreader-3.2.59.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bf8597b25a260ff9944845de774bb1f8 diff --git a/metadata/md5-cache/app-text/crengine-ng-0.9.7 b/metadata/md5-cache/app-text/crengine-ng-0.9.7 index 67db2ffa9d4b..dd0f2ca770f1 100644 --- a/metadata/md5-cache/app-text/crengine-ng-0.9.7 +++ b/metadata/md5-cache/app-text/crengine-ng-0.9.7 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=sys-libs/zlib png? ( media-libs/libpng:0 ) jpeg? ( media-libs/libjpeg-turbo ) >=media-libs/freetype-2.10.0 harfbuzz? ( media-libs/harfbuzz:= ) libunibreak? ( dev-libs/libunibreak:= ) fribidi? ( dev-libs/fribidi ) zstd? ( app-arch/zstd:= ) libutf8proc? ( dev-libs/libutf8proc:= ) fontconfig? ( media-libs/fontconfig ) SLOT=0 SRC_URI=https://gitlab.com/coolreader-ng/crengine-ng/-/archive/0.9.7/crengine-ng-0.9.7.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e90675c34021b81b152fac46ebcfa35 diff --git a/metadata/md5-cache/app-text/crqt-ng-1.0.9 b/metadata/md5-cache/app-text/crqt-ng-1.0.9 index c03f4f70f906..073ffc1cbc23 100644 --- a/metadata/md5-cache/app-text/crqt-ng-1.0.9 +++ b/metadata/md5-cache/app-text/crqt-ng-1.0.9 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=>=app-text/crengine-ng-0.9.7[png,jpeg,fontconfig,gif=,svg=,chm=,harfbuzz=,fribidi=,zstd=,libutf8proc=] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://gitlab.com/coolreader-ng/crqt-ng/-/archive/1.0.9/crqt-ng-1.0.9.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aae277f2302f8f9064ccbb2b056ac125 diff --git a/metadata/md5-cache/app-text/crwx-ng-0.2.0-r2 b/metadata/md5-cache/app-text/crwx-ng-0.2.0-r2 index b2cdcabac17e..5f6fb4e879f0 100644 --- a/metadata/md5-cache/app-text/crwx-ng-0.2.0-r2 +++ b/metadata/md5-cache/app-text/crwx-ng-0.2.0-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=>=app-text/crengine-ng-0.9.3[png,jpeg,fontconfig,gif=,svg=,chm=,harfbuzz=,fribidi=,zstd=,libutf8proc=] x11-libs/wxGTK:3.0-gtk3[X] virtual/ttf-fonts SLOT=0 SRC_URI=https://gitlab.com/coolreader-ng/crwx-ng/-/archive/0.2.0/crwx-ng-0.2.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c9b31838f444b18a139fca03564c50f3 diff --git a/metadata/md5-cache/app-text/cuneiform-1.1.0-r3 b/metadata/md5-cache/app-text/cuneiform-1.1.0-r3 index e37cc57a9fac..4b2dfbfb5ad6 100644 --- a/metadata/md5-cache/app-text/cuneiform-1.1.0-r3 +++ b/metadata/md5-cache/app-text/cuneiform-1.1.0-r3 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=!graphicsmagick? ( media-gfx/imagemagick:= ) graphicsmagick? ( media-gfx/graphicsmagick:= ) SLOT=0 SRC_URI=https://launchpad.net/cuneiform-linux/1.1/1.1/+download/cuneiform-linux-1.1.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8c7da9c4774d942e443c28cded49f070 diff --git a/metadata/md5-cache/app-text/dvipsk-2021.1_p20210325-r1 b/metadata/md5-cache/app-text/dvipsk-2021.1_p20210325-r1 index 33d0e542bf62..42db13e8bd6c 100644 --- a/metadata/md5-cache/app-text/dvipsk-2021.1_p20210325-r1 +++ b/metadata/md5-cache/app-text/dvipsk-2021.1_p20210325-r1 @@ -9,6 +9,6 @@ IUSE=doc source KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvips-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvips.doc-2021.tar.xz ) +SRC_URI=https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvips-2021.tar.xz doc? ( https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvips.doc-2021.tar.xz ) _eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 -_md5_=9386acf57dbecfc47c201fe44a6b3cce +_md5_=a20dc7d3afbbc05c055c95ac291ef135 diff --git a/metadata/md5-cache/app-text/ebook-tools-0.2.2-r2 b/metadata/md5-cache/app-text/ebook-tools-0.2.2-r2 index cd1efaf31fab..8339f017f865 100644 --- a/metadata/md5-cache/app-text/ebook-tools-0.2.2-r2 +++ b/metadata/md5-cache/app-text/ebook-tools-0.2.2-r2 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/libxml2 >=dev-libs/libzip-1.7.2:= lit2epub? ( app-text/convertlit ) SLOT=0 SRC_URI=mirror://sourceforge/ebook-tools/ebook-tools-0.2.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ab83a9fd891b94054ff829be0a19ab09 diff --git a/metadata/md5-cache/app-text/editorconfig-core-c-0.12.5 b/metadata/md5-cache/app-text/editorconfig-core-c-0.12.5 index df780e31afad..b64aa12c0f35 100644 --- a/metadata/md5-cache/app-text/editorconfig-core-c-0.12.5 +++ b/metadata/md5-cache/app-text/editorconfig-core-c-0.12.5 @@ -11,5 +11,5 @@ LICENSE=BSD-2 RDEPEND=dev-libs/libpcre2:= cli? ( !dev-python/editorconfig-core-py[cli] ) SLOT=0 SRC_URI=https://github.com/editorconfig/editorconfig-core-c/archive/v0.12.5.tar.gz -> editorconfig-core-c-0.12.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=db2f36b1086963a957fc9f71dc0f6107 diff --git a/metadata/md5-cache/app-text/fictionup-0.2.1 b/metadata/md5-cache/app-text/fictionup-0.2.1 index f5809a3b4e68..f17c024294c6 100644 --- a/metadata/md5-cache/app-text/fictionup-0.2.1 +++ b/metadata/md5-cache/app-text/fictionup-0.2.1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/libyaml SLOT=0 SRC_URI=http://cdslow.org.ru/files/fictionup/fictionup-0.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=31123c5211de169bc56ff71bc9bd3619 diff --git a/metadata/md5-cache/app-text/htmltidy-5.8.0-r1 b/metadata/md5-cache/app-text/htmltidy-5.8.0-r1 index 8ccca3774b18..951feb78deb2 100644 --- a/metadata/md5-cache/app-text/htmltidy-5.8.0-r1 +++ b/metadata/md5-cache/app-text/htmltidy-5.8.0-r1 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0/58 SRC_URI=https://github.com/htacg/tidy-html5/archive/refs/tags/5.8.0.tar.gz -> htmltidy-5.8.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9c059276a6d18a6bae8bdf2d3048882e diff --git a/metadata/md5-cache/app-text/kbibtex-0.9.3.1 b/metadata/md5-cache/app-text/kbibtex-0.9.3.1 index a5674bea1712..735ebd88997e 100644 --- a/metadata/md5-cache/app-text/kbibtex-0.9.3.1 +++ b/metadata/md5-cache/app-text/kbibtex-0.9.3.1 @@ -13,5 +13,5 @@ RDEPEND=app-text/poppler[qt5] dev-libs/icu:= >=dev-qt/qtconcurrent-5.15.5:5 >=de RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/KBibTeX/0.9.3/kbibtex-0.9.3.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c7aab407b422d3b53f511309271499ba diff --git a/metadata/md5-cache/app-text/kjots-5.1.0-r3 b/metadata/md5-cache/app-text/kjots-5.1.0-r3 index abfcdaad08d6..3c7dc79c6698 100644 --- a/metadata/md5-cache/app-text/kjots-5.1.0-r3 +++ b/metadata/md5-cache/app-text/kjots-5.1.0-r3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/grantlee:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-22.08.3:5 >=kde-apps/akonadi-notes-22.08.3:5 >=kde-apps/kmime-22.08.3:5 >=kde-apps/kontactinterface-22.08.3:5 >=kde-apps/kpimtextedit-22.08.3:5[speech(+)=] >=kde-frameworks/kbookmarks-5.102.0:5 >=kde-frameworks/kcmutils-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kitemmodels-5.102.0:5 >=kde-frameworks/kparts-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-frameworks/kxmlgui-5.102.0:5 >=kde-apps/kdepim-runtime-22.08.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/kjots/5.1.0/src/kjots-5.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2f030c32ae6fa74df00f18005b3f0b67 diff --git a/metadata/md5-cache/app-text/libpaper-2.0.10 b/metadata/md5-cache/app-text/libpaper-2.0.10 index 670535ba5c23..4efe3f3f2378 100644 --- a/metadata/md5-cache/app-text/libpaper-2.0.10 +++ b/metadata/md5-cache/app-text/libpaper-2.0.10 @@ -2,8 +2,8 @@ DEFINED_PHASES=configure install DESCRIPTION=Library for handling paper characteristics EAPI=8 HOMEPAGE=https://github.com/rrthomas/libpaper -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1+ GPL-3+ public-domain SLOT=0/2 SRC_URI=https://github.com/rrthomas/libpaper/releases/download/v2.0.10/libpaper-2.0.10.tar.gz -_md5_=0ca91b9ef58f06d27e9ceb6b3a0bcb21 +_md5_=a34663463e2b56114137c6fb14298fa6 diff --git a/metadata/md5-cache/app-text/libpaper-2.0.8 b/metadata/md5-cache/app-text/libpaper-2.0.8 deleted file mode 100644 index 867ea1afb15f..000000000000 --- a/metadata/md5-cache/app-text/libpaper-2.0.8 +++ /dev/null @@ -1,9 +0,0 @@ -DEFINED_PHASES=configure install -DESCRIPTION=Library for handling paper characteristics -EAPI=8 -HOMEPAGE=https://github.com/rrthomas/libpaper -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=LGPL-2.1+ GPL-3+ public-domain -SLOT=0/2 -SRC_URI=https://github.com/rrthomas/libpaper/releases/download/v2.0.8/libpaper-2.0.8.tar.gz -_md5_=0ca91b9ef58f06d27e9ceb6b3a0bcb21 diff --git a/metadata/md5-cache/app-text/libpaper-2.0.9 b/metadata/md5-cache/app-text/libpaper-2.0.9 deleted file mode 100644 index c7079e04afac..000000000000 --- a/metadata/md5-cache/app-text/libpaper-2.0.9 +++ /dev/null @@ -1,9 +0,0 @@ -DEFINED_PHASES=configure install -DESCRIPTION=Library for handling paper characteristics -EAPI=8 -HOMEPAGE=https://github.com/rrthomas/libpaper -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=LGPL-2.1+ GPL-3+ public-domain -SLOT=0/2 -SRC_URI=https://github.com/rrthomas/libpaper/releases/download/v2.0.9/libpaper-2.0.9.tar.gz -_md5_=0ca91b9ef58f06d27e9ceb6b3a0bcb21 diff --git a/metadata/md5-cache/app-text/multitail-7.0.0 b/metadata/md5-cache/app-text/multitail-7.0.0 index a24bf59789be..e032440af284 100644 --- a/metadata/md5-cache/app-text/multitail-7.0.0 +++ b/metadata/md5-cache/app-text/multitail-7.0.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=sys-libs/ncurses:=[unicode(+)?] SLOT=0 SRC_URI=https://github.com/folkertvanheusden/multitail/archive/7.0.0.tar.gz -> multitail-7.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=005dcc62fbddd807e7920ba695cccfa9 diff --git a/metadata/md5-cache/app-text/nuspell-5.1.2 b/metadata/md5-cache/app-text/nuspell-5.1.2 index 210c659a203e..42edad173df4 100644 --- a/metadata/md5-cache/app-text/nuspell-5.1.2 +++ b/metadata/md5-cache/app-text/nuspell-5.1.2 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/icu-60 RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=https://github.com/nuspell/nuspell/archive/v5.1.2.tar.gz -> nuspell-5.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=edd12fe2cd7241cbb2ec94e5b1142919 diff --git a/metadata/md5-cache/app-text/podofo-0.9.8-r1 b/metadata/md5-cache/app-text/podofo-0.9.8-r1 index 6e462c61d717..deaabcfe8718 100644 --- a/metadata/md5-cache/app-text/podofo-0.9.8-r1 +++ b/metadata/md5-cache/app-text/podofo-0.9.8-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_t RESTRICT=test SLOT=0/0.9.8 SRC_URI=https://cfhcable.dl.sourceforge.net/project/podofo/podofo/0.9.8/podofo-0.9.8.tar.gz https://github.com/podofo/podofo/commit/d0e9f5d503b0cb79516ec9bff989f3d7d625b678.patch -> podofo-0.9.8-bug-888463.patch -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd0cf94bd3b058cf88e45f784dd737d5 diff --git a/metadata/md5-cache/app-text/poppler-23.01.0 b/metadata/md5-cache/app-text/poppler-23.01.0 index a56aa87ced1b..a00ba493aa6e 100644 --- a/metadata/md5-cache/app-text/poppler-23.01.0 +++ b/metadata/md5-cache/app-text/poppler-23.01.0 @@ -12,5 +12,5 @@ RDEPEND=>=media-libs/fontconfig-2.13 >=media-libs/freetype-2.10 sys-libs/zlib ca RESTRICT=test SLOT=0/126 SRC_URI=https://poppler.freedesktop.org/poppler-23.01.0.tar.xz verify-sig? ( https://poppler.freedesktop.org/poppler-23.01.0.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea026a8a7d5aa6f42d37f95f7a4b1932 diff --git a/metadata/md5-cache/app-text/poppler-23.02.0 b/metadata/md5-cache/app-text/poppler-23.02.0 index 8cc4890faf57..87109251bf4b 100644 --- a/metadata/md5-cache/app-text/poppler-23.02.0 +++ b/metadata/md5-cache/app-text/poppler-23.02.0 @@ -12,5 +12,5 @@ RDEPEND=>=media-libs/fontconfig-2.13 >=media-libs/freetype-2.10 sys-libs/zlib ca RESTRICT=test SLOT=0/126 SRC_URI=https://poppler.freedesktop.org/poppler-23.02.0.tar.xz verify-sig? ( https://poppler.freedesktop.org/poppler-23.02.0.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=952e9db4d55a367c1823cc515391eaa3 diff --git a/metadata/md5-cache/app-text/poppler-23.03.0 b/metadata/md5-cache/app-text/poppler-23.03.0 index eaa4059fad46..ac3d3f492348 100644 --- a/metadata/md5-cache/app-text/poppler-23.03.0 +++ b/metadata/md5-cache/app-text/poppler-23.03.0 @@ -12,5 +12,5 @@ RDEPEND=>=media-libs/fontconfig-2.13 >=media-libs/freetype-2.10 sys-libs/zlib ca RESTRICT=test SLOT=0/126 SRC_URI=https://poppler.freedesktop.org/poppler-23.03.0.tar.xz verify-sig? ( https://poppler.freedesktop.org/poppler-23.03.0.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=952e9db4d55a367c1823cc515391eaa3 diff --git a/metadata/md5-cache/app-text/poppler-9999 b/metadata/md5-cache/app-text/poppler-9999 index 3e31d5cc7c64..9698cec15124 100644 --- a/metadata/md5-cache/app-text/poppler-9999 +++ b/metadata/md5-cache/app-text/poppler-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=media-libs/fontconfig-2.13 >=media-libs/freetype-2.10 sys-libs/zlib cairo? ( >=dev-libs/glib-2.64:2 >=x11-libs/cairo-1.16 introspection? ( >=dev-libs/gobject-introspection-1.64:= ) ) curl? ( net-misc/curl ) jpeg? ( >=media-libs/libjpeg-turbo-1.1.0:= ) jpeg2k? ( >=media-libs/openjpeg-2.3.0-r1:2= ) lcms? ( media-libs/lcms:2 ) nss? ( >=dev-libs/nss-3.49 ) png? ( media-libs/libpng:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtxml:5 ) tiff? ( media-libs/tiff:= ) cjk? ( app-text/poppler-data ) RESTRICT=test SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a26027cc53bc60f458831d4a40e6301d diff --git a/metadata/md5-cache/app-text/ps2pkm-1.8_p20210325-r1 b/metadata/md5-cache/app-text/ps2pkm-1.8_p20210325-r1 index cf73aa305876..74888b886a1c 100644 --- a/metadata/md5-cache/app-text/ps2pkm-1.8_p20210325-r1 +++ b/metadata/md5-cache/app-text/ps2pkm-1.8_p20210325-r1 @@ -8,5 +8,5 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=MIT RDEPEND=>=dev-libs/kpathsea-6.2.1:= SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-20210325-source.tar.xz -_md5_=ecd581c22ca6b94c29baf152da85e562 +SRC_URI=https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-20210325-source.tar.xz +_md5_=640e1725c565c02183161645f936825f diff --git a/metadata/md5-cache/app-text/qpdf-11.1.1-r1 b/metadata/md5-cache/app-text/qpdf-11.1.1-r1 index 4fcd6ef91e42..a586e93fa325 100644 --- a/metadata/md5-cache/app-text/qpdf-11.1.1-r1 +++ b/metadata/md5-cache/app-text/qpdf-11.1.1-r1 @@ -12,5 +12,5 @@ RDEPEND=media-libs/libjpeg-turbo:= sys-libs/zlib ssl? ( gnutls? ( net-libs/gnutl RESTRICT=!test? ( test ) SLOT=0/11 SRC_URI=https://github.com/qpdf/qpdf/releases/download/v11.1.1/qpdf-11.1.1.tar.gz doc? ( https://github.com/qpdf/qpdf/releases/download/v11.1.1/qpdf-11.1.1-doc.zip ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=411685dae1def201244909075bb00df4 diff --git a/metadata/md5-cache/app-text/qpdf-11.2.0-r1 b/metadata/md5-cache/app-text/qpdf-11.2.0-r1 index 2e86586e2409..4b6fb9455702 100644 --- a/metadata/md5-cache/app-text/qpdf-11.2.0-r1 +++ b/metadata/md5-cache/app-text/qpdf-11.2.0-r1 @@ -12,5 +12,5 @@ RDEPEND=media-libs/libjpeg-turbo:= sys-libs/zlib ssl? ( gnutls? ( net-libs/gnutl RESTRICT=!test? ( test ) SLOT=0/11 SRC_URI=https://github.com/qpdf/qpdf/releases/download/v11.2.0/qpdf-11.2.0.tar.gz doc? ( https://github.com/qpdf/qpdf/releases/download/v11.2.0/qpdf-11.2.0-doc.zip ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=61360caf4541b75ba2cf521a76120764 diff --git a/metadata/md5-cache/app-text/qpdf-11.3.0 b/metadata/md5-cache/app-text/qpdf-11.3.0 index 712cd6b1a76f..9443bcd04b2c 100644 --- a/metadata/md5-cache/app-text/qpdf-11.3.0 +++ b/metadata/md5-cache/app-text/qpdf-11.3.0 @@ -12,5 +12,5 @@ RDEPEND=media-libs/libjpeg-turbo:= sys-libs/zlib ssl? ( gnutls? ( net-libs/gnutl RESTRICT=!test? ( test ) SLOT=0/11 SRC_URI=https://github.com/qpdf/qpdf/releases/download/v11.3.0/qpdf-11.3.0.tar.gz doc? ( https://github.com/qpdf/qpdf/releases/download/v11.3.0/qpdf-11.3.0-doc.zip ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=95f52755c8c7815bd744f001ae5fc9b0 diff --git a/metadata/md5-cache/app-text/scdoc-1.11.2-r1 b/metadata/md5-cache/app-text/scdoc-1.11.2-r1 index fcc02a9d13ef..14a95ce6fabc 100644 --- a/metadata/md5-cache/app-text/scdoc-1.11.2-r1 +++ b/metadata/md5-cache/app-text/scdoc-1.11.2-r1 @@ -3,9 +3,9 @@ DESCRIPTION=Standalone tool for generating man pages with a simple syntax EAPI=8 HOMEPAGE=https://git.sr.ht/~sircmpwn/scdoc INHERIT=toolchain-funcs -KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86 LICENSE=MIT SLOT=0 SRC_URI=https://git.sr.ht/~sircmpwn/scdoc/archive/1.11.2.tar.gz -> scdoc-1.11.2.tar.gz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=21cb3c8f5620d29c9ab6ddce98608e90 +_md5_=69e20867e0ef728e096047b418cc7241 diff --git a/metadata/md5-cache/app-text/sdcv-0.5.4 b/metadata/md5-cache/app-text/sdcv-0.5.4 index f2e35a4d38fc..22ef29c41d5e 100644 --- a/metadata/md5-cache/app-text/sdcv-0.5.4 +++ b/metadata/md5-cache/app-text/sdcv-0.5.4 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.36 sys-libs/zlib readline? ( sys-libs/readline:= ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Dushistov/sdcv/archive/v0.5.4.tar.gz -> sdcv-0.5.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=64777a55e1521b24c79c75b274f2e54e diff --git a/metadata/md5-cache/app-text/sgrep-1.94a-r1 b/metadata/md5-cache/app-text/sgrep-1.94a-r1 deleted file mode 100644 index 5f5d9347c347..000000000000 --- a/metadata/md5-cache/app-text/sgrep-1.94a-r1 +++ /dev/null @@ -1,9 +0,0 @@ -DEFINED_PHASES=configure install prepare -DESCRIPTION=Use structural criteria to grep and index text, SGML, XML and HTML and filter -EAPI=8 -HOMEPAGE=https://www.cs.helsinki.fi/u/jjaakkol/sgrep.html -KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos -LICENSE=GPL-2 -SLOT=0 -SRC_URI=ftp://ftp.cs.helsinki.fi/pub/Software/Local/Sgrep/sgrep-1.94a.tar.gz -_md5_=9ed492cd4945da0e247aa589b48cf043 diff --git a/metadata/md5-cache/app-text/sgrep-1.94a-r2 b/metadata/md5-cache/app-text/sgrep-1.94a-r2 new file mode 100644 index 000000000000..1a754929f6e1 --- /dev/null +++ b/metadata/md5-cache/app-text/sgrep-1.94a-r2 @@ -0,0 +1,12 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=configure install prepare +DESCRIPTION=Use structural criteria to grep and index text, SGML, XML and HTML and filter +EAPI=8 +HOMEPAGE=https://www.cs.helsinki.fi/u/jjaakkol/sgrep.html +INHERIT=autotools +KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos +LICENSE=GPL-2 +SLOT=0 +SRC_URI=ftp://ftp.cs.helsinki.fi/pub/Software/Local/Sgrep/sgrep-1.94a.tar.gz +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=0e1df042989fe02633e15ba0474c98f9 diff --git a/metadata/md5-cache/app-text/sigil-1.9.20 b/metadata/md5-cache/app-text/sigil-1.9.20 index 3ff1be2cccc2..7036586f6eb8 100644 --- a/metadata/md5-cache/app-text/sigil-1.9.20 +++ b/metadata/md5-cache/app-text/sigil-1.9.20 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[tk] ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://github.com/Sigil-Ebook/Sigil/archive/1.9.20.tar.gz -> sigil-1.9.20.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f43cd05ee369a54672075bd7f3e66b0e diff --git a/metadata/md5-cache/app-text/sigil-1.9.30 b/metadata/md5-cache/app-text/sigil-1.9.30 index 5c99b9caa58e..a54ee6ced79e 100644 --- a/metadata/md5-cache/app-text/sigil-1.9.30 +++ b/metadata/md5-cache/app-text/sigil-1.9.30 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[tk] ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://github.com/Sigil-Ebook/Sigil/archive/1.9.30.tar.gz -> sigil-1.9.30.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=acf7fd269de7a47ec980fc8ab814678c diff --git a/metadata/md5-cache/app-text/simple-fb2-reader-1.1.3 b/metadata/md5-cache/app-text/simple-fb2-reader-1.1.3 index 44c27ecfb50f..6200fe73b53f 100644 --- a/metadata/md5-cache/app-text/simple-fb2-reader-1.1.3 +++ b/metadata/md5-cache/app-text/simple-fb2-reader-1.1.3 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=x11-libs/gtk+:3 dev-libs/libxml2 dev-libs/libzip dev-db/sqlite SLOT=0 SRC_URI=https://github.com/Cactus64k/simple-fb2-reader/archive/1.1.3.tar.gz -> simple-fb2-reader-1.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d9790d5a930afef42fc90113c6187ec2 diff --git a/metadata/md5-cache/app-text/sword-1.9.0-r1 b/metadata/md5-cache/app-text/sword-1.9.0-r1 index b4395d60c472..a233a5dc3df4 100644 --- a/metadata/md5-cache/app-text/sword-1.9.0-r1 +++ b/metadata/md5-cache/app-text/sword-1.9.0-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=sys-libs/zlib curl? ( net-misc/curl ) icu? ( dev-libs/icu:= ) clucene? ( dev-cpp/clucene ) SLOT=0 SRC_URI=https://www.crosswire.org/ftpmirror/pub/sword/source/v1.9/sword-1.9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7bbab7b8310fe5cff3cda0e47aa3647a diff --git a/metadata/md5-cache/app-text/texlive-core-2021-r2 b/metadata/md5-cache/app-text/texlive-core-2021-r2 index 2cf5f5620288..babcc914a82f 100644 --- a/metadata/md5-cache/app-text/texlive-core-2021-r2 +++ b/metadata/md5-cache/app-text/texlive-core-2021-r2 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=GPL-2 LPPL-1.3c TeX RDEPEND=X? ( x11-libs/libX11 x11-libs/libXmu ) !app-text/epspdf !app-text/pdfjam sys-libs/zlib >=media-libs/harfbuzz-1.4.5:=[icu,graphite] >=media-libs/libpng-1.2.43-r2:0= media-libs/gd[png] media-gfx/graphite2 >=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.3.8 xetex? ( >=app-text/teckit-2.5.3 media-libs/fontconfig ) xindy? ( dev-lisp/clisp:= ) media-libs/freetype:2 >=dev-libs/icu-50:= >=dev-libs/kpathsea-6.3.2:= >=app-text/ps2pkm-1.8_p20170524 >=app-text/dvipsk-5.997 >=dev-tex/bibtexu-3.71_p20170524 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 ) SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-tlpdb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-core-patches-2021-1.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-base-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsftopk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive.infra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a2ping-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adhocfilelist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arara-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bundledoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checklistings-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chklref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan_chk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clojure-pamphlet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cluttex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanify-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan-o-mat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanupload-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-de-macro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxgen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvi2tty-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviasm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvicopy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvidvi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviinfox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviout-util-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviljk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvipos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-findhyph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fragmaster-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hook-pre-commit-pkg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-installfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ketcindy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lacheck-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-git-log-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-papersize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2man-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2nemeth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileversion-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexpand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexindent-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxfileinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltximg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings-ext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-make4ht-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-match_parens-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkjobtexmf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patgen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfbook2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcrop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfjam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflatexpicscale-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftex-quiet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfxup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftosrc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pfarrei-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix-helper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-purifyeps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seetexk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcredact-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sty2dtx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synctex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex4ebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdiff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdirflatten-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texfot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texliveonfly-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texloganalyser-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texosquery-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texplate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texware-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlcockpit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpic2pdftex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeoutfileinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-web-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpdfopen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-binextra-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsftopk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive.infra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a2ping.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adhocfilelist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arara.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bundledoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checklistings.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chklref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan_chk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clojure-pamphlet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cluttex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanify.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan-o-mat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanupload.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-de-macro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxgen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvi2tty.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviasm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvicopy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvidvi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviinfox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviljk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvipos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviout-util.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-findhyph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fragmaster.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hook-pre-commit-pkg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-installfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ketcindy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lacheck.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-git-log.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-papersize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2man.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2nemeth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileversion.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexpand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexindent.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltximg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings-ext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-make4ht.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-match_parens.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkjobtexmf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patgen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfbook2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcrop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfjam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflatexpicscale.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftex-quiet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfxup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftosrc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pfarrei.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix-helper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-purifyeps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pythontex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seetexk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcredact.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sty2dtx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synctex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex4ebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdiff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdirflatten.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texfot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texliveonfly.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts-extra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texloganalyser.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texosquery.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texware.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlcockpit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpic2pdftex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeoutfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texplate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-web.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpdfopen.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adhocfilelist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arara.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checklistings.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clojure-pamphlet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings-ext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkjobtexmf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pfarrei.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pythontex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texosquery.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texplate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlcockpit.source-2021.tar.xz ) +SRC_URI=https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-tlpdb-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-core-patches-2021-1.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-hyphen-base-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-gsftopk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive.infra-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-a2ping-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-adhocfilelist-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-arara-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-asymptote-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-bundledoc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-checklistings-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-chklref-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan_chk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-clojure-pamphlet-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cluttex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanify-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan-o-mat-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanbib-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanupload-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctie-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cweb-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-de-macro-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtl-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtxgen-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvi2tty-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviasm-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvicopy-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvidvi-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviinfox-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviout-util-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviljk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvipos-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-findhyph-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-fragmaster-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-hook-pre-commit-pkg-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-installfont-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ketcindy-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-lacheck-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-git-log-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-papersize-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2man-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2nemeth-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexfileversion-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexpand-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexindent-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltxfileinfo-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltximg-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-listings-ext-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-make4ht-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-match_parens-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mflua-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mkjobtexmf-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-patgen-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfbook2-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfcrop-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfjam-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdflatexpicscale-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftex-quiet-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfxup-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftosrc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pfarrei-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix-helper-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-purifyeps-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-seetexk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-spix-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-srcredact-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-sty2dtx-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-synctex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tex4ebook-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texcount-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdef-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdiff-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdirflatten-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdoc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texfot-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texliveonfly-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts-extra-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texloganalyser-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texosquery-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texplate-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texware-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tie-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tlcockpit-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tpic2pdftex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-typeoutfileinfo-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-web-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindy-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xpdfopen-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-collection-binextra-2021.tar.xz doc? ( https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-gsftopk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive.infra.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-a2ping.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-adhocfilelist.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-arara.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-asymptote.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-bundledoc.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-checklistings.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-chklref.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan_chk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-clojure-pamphlet.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cluttex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanify.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan-o-mat.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanbib.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanupload.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctie.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cweb.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-de-macro.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtl.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtxgen.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvi2tty.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviasm.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvicopy.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvidvi.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviinfox.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviljk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvipos.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviout-util.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-findhyph.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-fragmaster.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-hook-pre-commit-pkg.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-installfont.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ketcindy.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-lacheck.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-git-log.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-papersize.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2man.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2nemeth.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexfileversion.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexpand.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexindent.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltxfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltximg.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-listings-ext.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-make4ht.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-match_parens.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mkjobtexmf.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-patgen.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfbook2.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfcrop.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfjam.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdflatexpicscale.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftex-quiet.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfxup.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftosrc.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pfarrei.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix-helper.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-purifyeps.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pythontex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-seetexk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-spix.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-srcredact.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-sty2dtx.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-synctex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tex4ebook.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texcount.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdef.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdiff.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdirflatten.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdoc.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texfot.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texliveonfly.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts-extra.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texloganalyser.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texosquery.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texware.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tie.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tlcockpit.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tpic2pdftex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-typeoutfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texplate.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-web.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindy.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xpdfopen.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-adhocfilelist.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-arara.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-checklistings.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-clojure-pamphlet.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-listings-ext.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mkjobtexmf.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pfarrei.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pythontex.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdef.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texosquery.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texplate.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tlcockpit.source-2021.tar.xz ) _eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=4c7fb60787f3511a16c12a1f7b727084 +_md5_=04e7fbfdad47b501280ee9a6a917494a diff --git a/metadata/md5-cache/app-text/texlive-core-2021-r3 b/metadata/md5-cache/app-text/texlive-core-2021-r3 index 1db3027afaaf..ccaafaa0026b 100644 --- a/metadata/md5-cache/app-text/texlive-core-2021-r3 +++ b/metadata/md5-cache/app-text/texlive-core-2021-r3 @@ -10,6 +10,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~ LICENSE=GPL-2 LPPL-1.3c TeX RDEPEND=X? ( x11-libs/libX11 x11-libs/libXmu ) !app-text/epspdf !app-text/pdfjam sys-libs/zlib >=media-libs/harfbuzz-1.4.5:=[icu,graphite] >=media-libs/libpng-1.2.43-r2:0= media-libs/gd[png] media-gfx/graphite2 >=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.3.8 xetex? ( >=app-text/teckit-2.5.3 media-libs/fontconfig ) xindy? ( dev-lisp/clisp:= ) media-libs/freetype:2 >=dev-libs/icu-50:= >=dev-libs/kpathsea-6.3.2:= >=app-text/ps2pkm-1.8_p20170524 >=app-text/dvipsk-5.997 >=dev-tex/bibtexu-3.71_p20170524 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 ) SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-tlpdb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-core-patches-2021-1.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-base-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsftopk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive.infra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a2ping-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adhocfilelist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arara-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bundledoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checklistings-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chklref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan_chk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clojure-pamphlet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cluttex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanify-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan-o-mat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanupload-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-de-macro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxgen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvi2tty-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviasm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvicopy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvidvi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviinfox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviout-util-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviljk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvipos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-findhyph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fragmaster-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hook-pre-commit-pkg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-installfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ketcindy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lacheck-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-git-log-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-papersize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2man-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2nemeth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileversion-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexpand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexindent-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxfileinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltximg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings-ext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-make4ht-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-match_parens-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkjobtexmf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patgen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfbook2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcrop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfjam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflatexpicscale-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftex-quiet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfxup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftosrc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pfarrei-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix-helper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-purifyeps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seetexk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcredact-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sty2dtx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synctex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex4ebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdiff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdirflatten-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texfot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texliveonfly-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texloganalyser-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texosquery-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texplate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texware-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlcockpit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpic2pdftex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeoutfileinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-web-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpdfopen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-binextra-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsftopk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive.infra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a2ping.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adhocfilelist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arara.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bundledoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checklistings.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chklref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan_chk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clojure-pamphlet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cluttex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanify.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan-o-mat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanupload.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-de-macro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxgen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvi2tty.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviasm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvicopy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvidvi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviinfox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviljk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvipos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviout-util.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-findhyph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fragmaster.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hook-pre-commit-pkg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-installfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ketcindy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lacheck.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-git-log.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-papersize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2man.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2nemeth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileversion.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexpand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexindent.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltximg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings-ext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-make4ht.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-match_parens.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkjobtexmf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patgen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfbook2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcrop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfjam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflatexpicscale.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftex-quiet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfxup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftosrc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pfarrei.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix-helper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-purifyeps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pythontex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seetexk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcredact.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sty2dtx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synctex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex4ebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdiff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdirflatten.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texfot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texliveonfly.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts-extra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texloganalyser.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texosquery.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texware.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlcockpit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpic2pdftex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeoutfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texplate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-web.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpdfopen.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adhocfilelist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arara.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checklistings.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clojure-pamphlet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings-ext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkjobtexmf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pfarrei.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pythontex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texosquery.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texplate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlcockpit.source-2021.tar.xz ) +SRC_URI=https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-tlpdb-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-core-patches-2021-1.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-hyphen-base-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-gsftopk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive.infra-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-a2ping-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-adhocfilelist-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-arara-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-asymptote-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-bundledoc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-checklistings-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-chklref-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan_chk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-clojure-pamphlet-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cluttex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanify-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan-o-mat-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanbib-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanupload-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctie-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cweb-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-de-macro-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtl-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtxgen-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvi2tty-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviasm-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvicopy-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvidvi-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviinfox-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviout-util-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviljk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvipos-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-findhyph-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-fragmaster-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-hook-pre-commit-pkg-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-installfont-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ketcindy-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-lacheck-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-git-log-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-papersize-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2man-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2nemeth-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexfileversion-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexpand-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexindent-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltxfileinfo-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltximg-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-listings-ext-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-make4ht-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-match_parens-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mflua-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mkjobtexmf-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-patgen-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfbook2-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfcrop-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfjam-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdflatexpicscale-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftex-quiet-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfxup-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftosrc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pfarrei-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix-helper-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-purifyeps-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-seetexk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-spix-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-srcredact-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-sty2dtx-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-synctex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tex4ebook-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texcount-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdef-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdiff-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdirflatten-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdoc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texfot-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texliveonfly-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts-extra-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texloganalyser-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texosquery-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texplate-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texware-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tie-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tlcockpit-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tpic2pdftex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-typeoutfileinfo-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-web-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindy-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xpdfopen-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-collection-binextra-2021.tar.xz doc? ( https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-gsftopk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive.infra.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-a2ping.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-adhocfilelist.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-arara.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-asymptote.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-bundledoc.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-checklistings.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-chklref.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan_chk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-clojure-pamphlet.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cluttex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanify.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan-o-mat.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanbib.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanupload.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctie.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cweb.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-de-macro.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtl.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtxgen.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvi2tty.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviasm.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvicopy.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvidvi.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviinfox.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviljk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvipos.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviout-util.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-findhyph.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-fragmaster.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-hook-pre-commit-pkg.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-installfont.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ketcindy.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-lacheck.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-git-log.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-papersize.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2man.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2nemeth.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexfileversion.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexpand.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexindent.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltxfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltximg.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-listings-ext.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-make4ht.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-match_parens.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mkjobtexmf.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-patgen.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfbook2.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfcrop.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfjam.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdflatexpicscale.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftex-quiet.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfxup.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftosrc.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pfarrei.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix-helper.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-purifyeps.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pythontex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-seetexk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-spix.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-srcredact.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-sty2dtx.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-synctex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tex4ebook.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texcount.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdef.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdiff.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdirflatten.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdoc.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texfot.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texliveonfly.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts-extra.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texloganalyser.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texosquery.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texware.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tie.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tlcockpit.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tpic2pdftex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-typeoutfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texplate.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-web.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindy.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xpdfopen.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-adhocfilelist.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-arara.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-checklistings.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-clojure-pamphlet.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-listings-ext.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mkjobtexmf.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pfarrei.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pythontex.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdef.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texosquery.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texplate.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tlcockpit.source-2021.tar.xz ) _eclasses_=autotools b5529dc611971a61a30153916014f616 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=3c2afb0994ef865ca0726020103a84b1 +_md5_=d5572e25e8a19c8563baa02007ca8e71 diff --git a/metadata/md5-cache/app-text/texlive-core-2021-r6 b/metadata/md5-cache/app-text/texlive-core-2021-r6 index 8e598e2c702b..5636b2a13ece 100644 --- a/metadata/md5-cache/app-text/texlive-core-2021-r6 +++ b/metadata/md5-cache/app-text/texlive-core-2021-r6 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s LICENSE=GPL-2 LPPL-1.3c TeX RDEPEND=X? ( x11-libs/libX11 x11-libs/libXmu ) !app-text/epspdf !app-text/pdfjam sys-libs/zlib >=media-libs/harfbuzz-1.4.5:=[icu,graphite] >=media-libs/libpng-1.2.43-r2:0= media-libs/gd[png] media-gfx/graphite2 >=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.3.8 xetex? ( >=app-text/teckit-2.5.3 media-libs/fontconfig ) xindy? ( dev-lisp/clisp:= ) media-libs/freetype:2 >=dev-libs/icu-50:= >=dev-libs/kpathsea-6.3.2:= >=app-text/ps2pkm-1.8_p20170524 >=app-text/dvipsk-5.997 >=dev-tex/bibtexu-3.71_p20170524 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 ) SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-tlpdb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-core-patches-2021-1.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-base-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsftopk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive.infra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a2ping-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adhocfilelist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arara-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bundledoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checklistings-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chklref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan_chk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clojure-pamphlet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cluttex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanify-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan-o-mat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanupload-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-de-macro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxgen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvi2tty-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviasm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvicopy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvidvi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviinfox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviout-util-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviljk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvipos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-findhyph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fragmaster-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hook-pre-commit-pkg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-installfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ketcindy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lacheck-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-git-log-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-papersize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2man-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2nemeth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileversion-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexpand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexindent-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxfileinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltximg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings-ext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-make4ht-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-match_parens-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkjobtexmf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patgen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfbook2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcrop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfjam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflatexpicscale-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftex-quiet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfxup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftosrc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pfarrei-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix-helper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-purifyeps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seetexk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcredact-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sty2dtx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synctex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex4ebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdiff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdirflatten-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texfot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texliveonfly-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texloganalyser-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texosquery-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texplate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texware-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlcockpit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpic2pdftex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeoutfileinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-web-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpdfopen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-binextra-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsftopk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive.infra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a2ping.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adhocfilelist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arara.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bundledoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checklistings.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chklref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan_chk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clojure-pamphlet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cluttex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanify.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctan-o-mat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctanupload.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-de-macro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxgen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvi2tty.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviasm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvicopy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvidvi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviinfox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviljk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvipos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviout-util.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-findhyph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fragmaster.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hook-pre-commit-pkg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-installfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ketcindy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lacheck.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-git-log.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-papersize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2man.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2nemeth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileversion.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexpand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexindent.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltximg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings-ext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-make4ht.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-match_parens.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkjobtexmf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patgen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfbook2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcrop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfjam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflatexpicscale.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftex-quiet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfxup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftosrc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pfarrei.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkfix-helper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-purifyeps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pythontex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seetexk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcredact.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sty2dtx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synctex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex4ebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdiff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdirflatten.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texfot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texliveonfly.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-scripts-extra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texloganalyser.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texosquery.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texware.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlcockpit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpic2pdftex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeoutfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texplate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-web.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpdfopen.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adhocfilelist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arara.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checklistings.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clojure-pamphlet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings-ext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkjobtexmf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pfarrei.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pythontex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texosquery.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texplate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlcockpit.source-2021.tar.xz ) +SRC_URI=https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-tlpdb-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-core-patches-2021-1.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-hyphen-base-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-gsftopk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive.infra-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-a2ping-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-adhocfilelist-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-arara-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-asymptote-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-bundledoc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-checklistings-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-chklref-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan_chk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-clojure-pamphlet-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cluttex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanify-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan-o-mat-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanbib-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanupload-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctie-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cweb-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-de-macro-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtl-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtxgen-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvi2tty-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviasm-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvicopy-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvidvi-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviinfox-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviout-util-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviljk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvipos-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-findhyph-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-fragmaster-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-hook-pre-commit-pkg-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-installfont-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ketcindy-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-lacheck-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-git-log-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-papersize-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2man-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2nemeth-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexfileversion-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexpand-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexindent-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltxfileinfo-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltximg-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-listings-ext-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-make4ht-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-match_parens-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mflua-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mkjobtexmf-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-patgen-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfbook2-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfcrop-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfjam-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdflatexpicscale-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftex-quiet-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfxup-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftosrc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pfarrei-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix-helper-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-purifyeps-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-seetexk-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-spix-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-srcredact-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-sty2dtx-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-synctex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tex4ebook-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texcount-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdef-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdiff-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdirflatten-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdoc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texfot-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texliveonfly-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts-extra-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texloganalyser-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texosquery-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texplate-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texware-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tie-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tlcockpit-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tpic2pdftex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-typeoutfileinfo-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-web-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindy-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindex-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xpdfopen-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-collection-binextra-2021.tar.xz doc? ( https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-gsftopk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive.infra.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-a2ping.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-adhocfilelist.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-arara.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-asymptote.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-bundledoc.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-checklistings.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-chklref.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan_chk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-clojure-pamphlet.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cluttex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanify.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctan-o-mat.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanbib.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctanupload.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ctie.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-cweb.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-de-macro.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtl.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dtxgen.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvi2tty.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviasm.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvicopy.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvidvi.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviinfox.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviljk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dvipos.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-dviout-util.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-findhyph.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-fragmaster.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-hook-pre-commit-pkg.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-installfont.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ketcindy.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-lacheck.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-git-log.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex-papersize.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2man.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latex2nemeth.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexfileversion.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexpand.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-latexindent.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltxfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-ltximg.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-listings-ext.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-make4ht.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-match_parens.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mkjobtexmf.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-patgen.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfbook2.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfcrop.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfjam.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdflatexpicscale.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftex-quiet.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdfxup.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pdftosrc.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pfarrei.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pkfix-helper.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-purifyeps.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pythontex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-seetexk.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-spix.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-srcredact.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-sty2dtx.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-synctex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tex4ebook.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texcount.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdef.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdiff.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdirflatten.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdoc.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texfot.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texliveonfly.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texlive-scripts-extra.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texloganalyser.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texosquery.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texware.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tie.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tlcockpit.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tpic2pdftex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-typeoutfileinfo.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texplate.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-web.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindy.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xindex.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-xpdfopen.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-adhocfilelist.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-arara.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-checklistings.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-clojure-pamphlet.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-listings-ext.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-mkjobtexmf.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pfarrei.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-pythontex.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texdef.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texosquery.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-texplate.source-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-tlcockpit.source-2021.tar.xz ) _eclasses_=autotools b5529dc611971a61a30153916014f616 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=3b093d302ed4d1f57bc4f8ec7b8c4bba +_md5_=1f6db1989d03bae5da7f09dc7d1d9c2c diff --git a/metadata/md5-cache/app-text/ttf2pk2-2.0_p20210325 b/metadata/md5-cache/app-text/ttf2pk2-2.0_p20210325 index 3ae99b4973ac..97373e285a60 100644 --- a/metadata/md5-cache/app-text/ttf2pk2-2.0_p20210325 +++ b/metadata/md5-cache/app-text/ttf2pk2-2.0_p20210325 @@ -8,5 +8,5 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=GPL-2 RDEPEND=>=dev-libs/kpathsea-6.2.1 media-libs/freetype:2 sys-libs/zlib !media-libs/freetype:1 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/texlive/texlive-20210325-source.tar.xz -_md5_=ed1ee8679c029c28065389f205b92ff8 +SRC_URI=https://dev.gentoo.org/~{zlogene,sam}/texlive/texlive-20210325-source.tar.xz +_md5_=18bfee85c27fd6328637b267088c1819 diff --git a/metadata/md5-cache/app-text/wv2-0.4.2-r3 b/metadata/md5-cache/app-text/wv2-0.4.2-r3 index 528c2e0d176e..a3443c7296ab 100644 --- a/metadata/md5-cache/app-text/wv2-0.4.2-r3 +++ b/metadata/md5-cache/app-text/wv2-0.4.2-r3 @@ -11,5 +11,5 @@ LICENSE=LGPL-2 RDEPEND=dev-libs/glib >=gnome-extra/libgsf-1.8:= virtual/libiconv zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://sourceforge/wvware/wv2-0.4.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a2092adaa2276d13842529e9e9410cd1 diff --git a/metadata/md5-cache/app-text/xiphos-4.2.1-r1 b/metadata/md5-cache/app-text/xiphos-4.2.1-r1 index b01698cd4915..83fab6ceea19 100644 --- a/metadata/md5-cache/app-text/xiphos-4.2.1-r1 +++ b/metadata/md5-cache/app-text/xiphos-4.2.1-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 FDL-1.1 LGPL-2 MIT MPL-1.1 RDEPEND=sys-apps/util-linux dev-libs/libxml2 dev-libs/libxslt dbus? ( dev-libs/dbus-glib ) >=app-text/sword-1.8.1 dev-libs/glib:2 dev-libs/icu >=net-libs/biblesync-1.2.0 net-libs/webkit-gtk:4 sys-libs/zlib[minizip] x11-libs/gtk+:3 SLOT=0 SRC_URI=https://github.com/crosswire/xiphos/releases/download/4.2.1/xiphos-4.2.1.tar.xz https://dev.gentoo.org/~marecki/dists/app-text/xiphos/xiphos-4.2.1-disable_webkit_editor.patch.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c8de92cde3daf463761afa434ce8d7d3 diff --git a/metadata/md5-cache/app-text/xiphos-4.2.1-r2 b/metadata/md5-cache/app-text/xiphos-4.2.1-r2 index e22293fbbcb3..06065c7491af 100644 --- a/metadata/md5-cache/app-text/xiphos-4.2.1-r2 +++ b/metadata/md5-cache/app-text/xiphos-4.2.1-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 FDL-1.1 LGPL-2 MIT MPL-1.1 RDEPEND=sys-apps/util-linux dev-libs/libxml2 dev-libs/libxslt dbus? ( dev-libs/dbus-glib ) >=app-text/sword-1.8.1 dev-libs/glib:2 dev-libs/icu >=net-libs/biblesync-1.2.0 net-libs/webkit-gtk:4.1 sys-libs/zlib[minizip] x11-libs/gtk+:3 SLOT=0 SRC_URI=https://github.com/crosswire/xiphos/releases/download/4.2.1/xiphos-4.2.1.tar.xz https://dev.gentoo.org/~marecki/dists/app-text/xiphos/xiphos-4.2.1-disable_webkit_editor.patch.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=143a53d753efb5fbe7b1f18769e2c7d6 diff --git a/metadata/md5-cache/app-text/xml2doc-20030510-r1 b/metadata/md5-cache/app-text/xml2doc-20030510-r1 deleted file mode 100644 index 45e2e3a92fde..000000000000 --- a/metadata/md5-cache/app-text/xml2doc-20030510-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install -DEPEND=dev-libs/libxml2:2 -DESCRIPTION=Tool to convert simple XML to a variety of formats (pdf, html, txt, manpage) -EAPI=7 -HOMEPAGE=http://xml2doc.sourceforge.net -INHERIT=toolchain-funcs -KEYWORDS=~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/libxml2:2 -SLOT=0 -SRC_URI=mirror://sourceforge/xml2doc/xml2doc-20030510.tgz -_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a0b139bb7e63182f6d05e721be791096 diff --git a/metadata/md5-cache/app-text/xml2doc-20030510-r2 b/metadata/md5-cache/app-text/xml2doc-20030510-r2 new file mode 100644 index 000000000000..e03b9a7f3ca9 --- /dev/null +++ b/metadata/md5-cache/app-text/xml2doc-20030510-r2 @@ -0,0 +1,14 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=compile configure install prepare +DEPEND=dev-libs/libxml2:2 +DESCRIPTION=Tool to convert simple XML to a variety of formats (pdf, html, txt, manpage) +EAPI=8 +HOMEPAGE=http://xml2doc.sourceforge.net +INHERIT=autotools toolchain-funcs +KEYWORDS=~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/libxml2:2 +SLOT=0 +SRC_URI=mirror://sourceforge/xml2doc/xml2doc-20030510.tgz +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=b1ee5c06d7cc1fb82f8d681202d2b460 diff --git a/metadata/md5-cache/app-text/xournalpp-1.1.1-r1 b/metadata/md5-cache/app-text/xournalpp-1.1.1-r1 index 31293c19265b..5171378d6743 100644 --- a/metadata/md5-cache/app-text/xournalpp-1.1.1-r1 +++ b/metadata/md5-cache/app-text/xournalpp-1.1.1-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=app-text/poppler[cairo] dev-libs/glib dev-libs/libxml2 dev-libs/libzip:= gnome-base/librsvg media-libs/portaudio[cxx] media-libs/libsndfile sys-libs/zlib:= x11-libs/gtk+:3 SLOT=0 SRC_URI=https://github.com/xournalpp/xournalpp/archive/refs/tags/v1.1.1.tar.gz -> xournalpp-1.1.1.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9be8a8f84a6e105fca09aa52f19f55b1 diff --git a/metadata/md5-cache/app-text/xournalpp-1.1.1-r2 b/metadata/md5-cache/app-text/xournalpp-1.1.1-r2 index 5539eaf1e530..8b3e492f6806 100644 --- a/metadata/md5-cache/app-text/xournalpp-1.1.1-r2 +++ b/metadata/md5-cache/app-text/xournalpp-1.1.1-r2 @@ -13,5 +13,5 @@ RDEPEND=lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) app-text/poppler[cairo] d REQUIRED_USE=^^ ( lua_single_target_lua5-3 ) SLOT=0 SRC_URI=https://github.com/xournalpp/xournalpp/archive/refs/tags/v1.1.1.tar.gz -> xournalpp-1.1.1.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c26a60fdc1cdc9843010ce9306786015 diff --git a/metadata/md5-cache/app-text/xournalpp-9999 b/metadata/md5-cache/app-text/xournalpp-9999 index b6c321a2fdeb..1bb7047a9744 100644 --- a/metadata/md5-cache/app-text/xournalpp-9999 +++ b/metadata/md5-cache/app-text/xournalpp-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) app-text/poppler[cairo] dev-libs/glib dev-libs/libxml2 dev-libs/libzip:= gnome-base/librsvg media-libs/portaudio[cxx] media-libs/libsndfile sys-libs/zlib:= x11-libs/gtk+:3 REQUIRED_USE=^^ ( lua_single_target_lua5-3 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c26a60fdc1cdc9843010ce9306786015 diff --git a/metadata/md5-cache/app-text/xpdf-4.04-r1 b/metadata/md5-cache/app-text/xpdf-4.04-r1 index 81420a742288..36f5d808cfb1 100644 --- a/metadata/md5-cache/app-text/xpdf-4.04-r1 +++ b/metadata/md5-cache/app-text/xpdf-4.04-r1 @@ -12,5 +12,5 @@ LICENSE=|| ( GPL-2 GPL-3 ) i18n? ( BSD ) RDEPEND=cups? ( dev-qt/qtprintsupport:5[cups] net-print/cups ) fontconfig? ( media-libs/fontconfig ) libpaper? ( app-text/libpaper:= ) utils? ( png? ( media-libs/libpng:0 ) ) dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-libs/freetype sys-libs/zlib dev-qt/qtsvg:5 media-fonts/urw-fonts SLOT=0 SRC_URI=https://dl.xpdfreader.com/xpdf-4.04.tar.gz i18n? ( https://dl.xpdfreader.com/xpdf-arabic.tar.gz https://dl.xpdfreader.com/xpdf-chinese-simplified.tar.gz -> xpdf-chinese-simplified-20201222.tar.gz https://dl.xpdfreader.com/xpdf-chinese-traditional.tar.gz -> xpdf-chinese-traditional-20201222.tar.gz https://dl.xpdfreader.com/xpdf-cyrillic.tar.gz https://dl.xpdfreader.com/xpdf-greek.tar.gz https://dl.xpdfreader.com/xpdf-hebrew.tar.gz https://dl.xpdfreader.com/xpdf-japanese.tar.gz -> xpdf-japanese-20201222.tar.gz https://dl.xpdfreader.com/xpdf-korean.tar.gz -> xpdf-korean-20201222.tar.gz https://dl.xpdfreader.com/xpdf-latin2.tar.gz https://dl.xpdfreader.com/xpdf-thai.tar.gz https://dl.xpdfreader.com/xpdf-turkish.tar.gz ) verify-sig? ( https://dl.xpdfreader.com/xpdf-4.04.tar.gz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=382e7cd275429e6b7d47bd854669127d diff --git a/metadata/md5-cache/dev-ada/Manifest.gz b/metadata/md5-cache/dev-ada/Manifest.gz index 8fbd522d600e..1f2dd5aa7f96 100644 Binary files a/metadata/md5-cache/dev-ada/Manifest.gz and b/metadata/md5-cache/dev-ada/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ada/VSS-22.0.0 b/metadata/md5-cache/dev-ada/VSS-22.0.0-r1 similarity index 65% rename from metadata/md5-cache/dev-ada/VSS-22.0.0 rename to metadata/md5-cache/dev-ada/VSS-22.0.0-r1 index c9d5891d7f86..1f3524816276 100644 --- a/metadata/md5-cache/dev-ada/VSS-22.0.0 +++ b/metadata/md5-cache/dev-ada/VSS-22.0.0-r1 @@ -1,17 +1,17 @@ -BDEPEND=dev-ada/gprbuild[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-)] test? ( app-i18n/unicode-data ) +BDEPEND=dev-ada/gprbuild[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?] test? ( app-i18n/unicode-data ) DEFINED_PHASES=compile prepare setup test -DEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) +DEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) ada_target_gcc_12? ( sys-devel/gcc:12[ada] ) DESCRIPTION=A high level string and text processing library -EAPI=7 +EAPI=8 HOMEPAGE=https://github.com/AdaCore/VSS INHERIT=ada multiprocessing IUSE=test ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 KEYWORDS=amd64 x86 LICENSE=GPL-3 gcc-runtime-library-exception-3.1 -RDEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) -REQUIRED_USE=^^ ( ada_target_gnat_2021 ada_target_gcc_12_2_0 ) +RDEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) ada_target_gcc_12? ( sys-devel/gcc:12[ada] ) +REQUIRED_USE=^^ ( ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 ) RESTRICT=!test? ( test ) SLOT=0/22.0.0 SRC_URI=https://github.com/AdaCore/VSS/archive/refs/tags/v22.0.0.tar.gz -> VSS-22.0.0.tar.gz _eclasses_=ada 16715c066d0691a4c61581d946cd3676 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 -_md5_=76b0f7076a18621511c2d1de95dc76f3 +_md5_=9c71f5246edb8276d4d4291e4ef20bb9 diff --git a/metadata/md5-cache/dev-ada/VSS-23.0.0 b/metadata/md5-cache/dev-ada/VSS-23.0.0 deleted file mode 100644 index fb8184d92150..000000000000 --- a/metadata/md5-cache/dev-ada/VSS-23.0.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=dev-ada/gprbuild[ada_target_gcc_12_2_0(-)?,-ada_target_gnat_2021(-),-ada_target_gcc_12(-)] test? ( app-i18n/unicode-data dev-ada/xmlada[ada_target_gcc_12_2_0(-)?,-ada_target_gnat_2021(-),-ada_target_gcc_12(-)] ) -DEFINED_PHASES=compile prepare setup test -DEPEND=ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) dev-ada/xmlada[ada_target_gcc_12_2_0(-)?,-ada_target_gnat_2021(-),-ada_target_gcc_12(-)] -DESCRIPTION=A high level string and text processing library -EAPI=7 -HOMEPAGE=https://github.com/AdaCore/VSS -INHERIT=ada multiprocessing -IUSE=test ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 -KEYWORDS=amd64 x86 -LICENSE=GPL-3 gcc-runtime-library-exception-3.1 -RDEPEND=ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) dev-ada/xmlada[ada_target_gcc_12_2_0(-)?,-ada_target_gnat_2021(-),-ada_target_gcc_12(-)] -REQUIRED_USE=ada_target_gcc_12_2_0 -RESTRICT=!test? ( test ) -SLOT=0/23.0.0 -SRC_URI=https://github.com/AdaCore/VSS/archive/refs/tags/v23.0.0.tar.gz -> VSS-23.0.0.tar.gz -_eclasses_=ada 16715c066d0691a4c61581d946cd3676 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 -_md5_=fc14653819d7482fd285af7ce46e9e0d diff --git a/metadata/md5-cache/dev-ada/VSS-23.0.0-r1 b/metadata/md5-cache/dev-ada/VSS-23.0.0-r1 new file mode 100644 index 000000000000..07e3a950f862 --- /dev/null +++ b/metadata/md5-cache/dev-ada/VSS-23.0.0-r1 @@ -0,0 +1,17 @@ +BDEPEND=dev-ada/gprbuild[ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?,-ada_target_gnat_2021(-)] test? ( app-i18n/unicode-data dev-ada/xmlada[ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?,-ada_target_gnat_2021(-)] ) +DEFINED_PHASES=compile prepare setup test +DEPEND=ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) ada_target_gcc_12? ( sys-devel/gcc:12[ada] ) dev-ada/xmlada[ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?,-ada_target_gnat_2021(-)] +DESCRIPTION=A high level string and text processing library +EAPI=8 +HOMEPAGE=https://github.com/AdaCore/VSS +INHERIT=ada multiprocessing +IUSE=test ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 +KEYWORDS=amd64 x86 +LICENSE=GPL-3 gcc-runtime-library-exception-3.1 +RDEPEND=ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) ada_target_gcc_12? ( sys-devel/gcc:12[ada] ) dev-ada/xmlada[ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?,-ada_target_gnat_2021(-)] +REQUIRED_USE=^^ ( ada_target_gcc_12_2_0 ada_target_gcc_12 ) +RESTRICT=!test? ( test ) +SLOT=0/23.0.0 +SRC_URI=https://github.com/AdaCore/VSS/archive/refs/tags/v23.0.0.tar.gz -> VSS-23.0.0.tar.gz +_eclasses_=ada 16715c066d0691a4c61581d946cd3676 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_md5_=82e834307055ba2062af23ac0af702e6 diff --git a/metadata/md5-cache/dev-ada/gprbuild-23.0.0 b/metadata/md5-cache/dev-ada/gprbuild-23.0.0 deleted file mode 100644 index cb39cefdcb44..000000000000 --- a/metadata/md5-cache/dev-ada/gprbuild-23.0.0 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install prepare setup -DEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) dev-ada/gprconfig_kb[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-)] -DESCRIPTION=Multi-Language Management -EAPI=7 -HOMEPAGE=http://libre.adacore.com/ -INHERIT=ada multiprocessing -IUSE=ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) dev-ada/gprconfig_kb[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-)] -REQUIRED_USE=^^ ( ada_target_gnat_2021 ada_target_gcc_12_2_0 ) -SLOT=0 -SRC_URI=https://github.com/AdaCore/gprbuild/archive/refs/tags/v23.0.0.tar.gz -> gprbuild-23.0.0.tar.gz https://github.com/AdaCore/xmlada/archive/refs/tags/v23.0.0.tar.gz -> xmlada-23.0.0.tar.gz -_eclasses_=ada 16715c066d0691a4c61581d946cd3676 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 -_md5_=d550b524ff27fe44deb934b954b9f0fd diff --git a/metadata/md5-cache/dev-ada/gprbuild-23.0.0-r1 b/metadata/md5-cache/dev-ada/gprbuild-23.0.0-r1 index 2b028e9dcc68..dbd28e63b1bd 100644 --- a/metadata/md5-cache/dev-ada/gprbuild-23.0.0-r1 +++ b/metadata/md5-cache/dev-ada/gprbuild-23.0.0-r1 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=http://libre.adacore.com/ INHERIT=ada multiprocessing IUSE=ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) ada_target_gcc_12? ( sys-devel/gcc:12[ada] ) dev-ada/gprconfig_kb[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?] REQUIRED_USE=^^ ( ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 ) SLOT=0 SRC_URI=https://github.com/AdaCore/gprbuild/archive/refs/tags/v23.0.0.tar.gz -> gprbuild-23.0.0.tar.gz https://github.com/AdaCore/xmlada/archive/refs/tags/v23.0.0.tar.gz -> xmlada-23.0.0.tar.gz _eclasses_=ada 16715c066d0691a4c61581d946cd3676 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 -_md5_=ea10c4f8ad843e29351db430400c93de +_md5_=2909691f49c7e93114712f9dc283a212 diff --git a/metadata/md5-cache/dev-ada/gprconfig_kb-23.0.0-r1 b/metadata/md5-cache/dev-ada/gprconfig_kb-23.0.0-r1 deleted file mode 100644 index c6bdd4e09f16..000000000000 --- a/metadata/md5-cache/dev-ada/gprconfig_kb-23.0.0-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=install prepare setup -DESCRIPTION=GPR configuration knowledge base -EAPI=7 -HOMEPAGE=https://www.adacore.com/ -INHERIT=ada -IUSE=ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=!=dev-ada/gprbuild-2021* -REQUIRED_USE=^^ ( ada_target_gnat_2021 ada_target_gcc_12_2_0 ) -SLOT=0 -SRC_URI=https://github.com/AdaCore/gprconfig_kb/archive/refs/tags/v23.0.0.tar.gz -> gprconfig_kb-23.0.0.tar.gz -_eclasses_=ada 16715c066d0691a4c61581d946cd3676 -_md5_=cd013fd283e87ddaa0de0c764b8defb5 diff --git a/metadata/md5-cache/dev-ada/gprconfig_kb-23.0.0-r2 b/metadata/md5-cache/dev-ada/gprconfig_kb-23.0.0-r2 index 88807c99d106..de1882161c18 100644 --- a/metadata/md5-cache/dev-ada/gprconfig_kb-23.0.0-r2 +++ b/metadata/md5-cache/dev-ada/gprconfig_kb-23.0.0-r2 @@ -4,11 +4,10 @@ EAPI=8 HOMEPAGE=https://www.adacore.com/ INHERIT=ada IUSE=ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 -RDEPEND=!=dev-ada/gprbuild-2021* REQUIRED_USE=^^ ( ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 ) SLOT=0 SRC_URI=https://github.com/AdaCore/gprconfig_kb/archive/refs/tags/v23.0.0.tar.gz -> gprconfig_kb-23.0.0.tar.gz _eclasses_=ada 16715c066d0691a4c61581d946cd3676 -_md5_=db95da83cf9debd389b346ce16abe267 +_md5_=aade170a5aad20324319106cb5009bcd diff --git a/metadata/md5-cache/dev-ada/langkit-22.0.0-r3 b/metadata/md5-cache/dev-ada/langkit-22.0.0-r3 deleted file mode 100644 index 5e3bcea41021..000000000000 --- a/metadata/md5-cache/dev-ada/langkit-22.0.0-r3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) dev-ada/gnatcoll-bindings[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-),gmp,iconv,shared?,static-libs?,static-pic?] dev-python/mako[python_targets_python3_10(-)?] dev-python/pyyaml[python_targets_python3_10(-)?] dev-python/funcy[python_targets_python3_10(-)?] dev-python/docutils[python_targets_python3_10(-)?] dev-ada/e3-core[python_targets_python3_10(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -DEFINED_PHASES=compile configure install prepare setup test -DESCRIPTION=A Python framework to generate language parsers -EAPI=7 -HOMEPAGE=https://www.adacore.com/community -INHERIT=distutils-r1 ada multiprocessing -IUSE=+shared static-libs static-pic python_targets_python3_10 ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) dev-ada/gnatcoll-bindings[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-),gmp,iconv,shared?,static-libs?,static-pic?] dev-python/mako[python_targets_python3_10(-)?] dev-python/pyyaml[python_targets_python3_10(-)?] dev-python/funcy[python_targets_python3_10(-)?] dev-python/docutils[python_targets_python3_10(-)?] dev-ada/e3-core[python_targets_python3_10(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_10 ) ^^ ( ada_target_gnat_2021 ada_target_gcc_12_2_0 ) || ( shared static-libs static-pic ) || ( python_targets_python3_10 ) -SLOT=0/22.0.0 -SRC_URI=https://github.com/AdaCore/langkit/archive/refs/tags/v22.0.0.tar.gz -> langkit-22.0.0.tar.gz -_eclasses_=ada 16715c066d0691a4c61581d946cd3676 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b eapi8-dosym 741bfa77afb2a9321261501aca58c208 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=e40144a79fe5037d56be861c64952d72 diff --git a/metadata/md5-cache/dev-ada/libadalang-22.0.0 b/metadata/md5-cache/dev-ada/libadalang-22.0.0 deleted file mode 100644 index f782b417b5b3..000000000000 --- a/metadata/md5-cache/dev-ada/libadalang-22.0.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=test? ( dev-ml/dune dev-ml/zarith dev-ml/camomile dev-ml/ocaml-ctypes dev-ada/e3-testsuite =dev-lang/python-3.10.9-r1:3.10 ) ~dev-ada/langkit-22.0.0[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-),shared,static-libs?,static-pic?] python_single_target_python3_10? ( dev-ada/langkit[python_targets_python3_10(-)] ) dev-ada/gprbuild[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-)] -DESCRIPTION=high performance semantic engine for the Ada programming language -EAPI=7 -HOMEPAGE=https://libre.adacore.com/ -INHERIT=ada python-single-r1 multiprocessing -IUSE=test +static-libs static-pic ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 +python_single_target_python3_10 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 gcc-runtime-library-exception-3.1 -RDEPEND=dev-python/pyyaml dev-ada/gnatcoll-bindings[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-),gmp,iconv,shared,static-libs?,static-pic?] ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) ~dev-ada/langkit-22.0.0[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-),shared,static-libs?,static-pic?] python_single_target_python3_10? ( dev-ada/langkit[python_targets_python3_10(-)] ) -REQUIRED_USE=^^ ( python_single_target_python3_10 ) ^^ ( ada_target_gnat_2021 ada_target_gcc_12_2_0 ) -RESTRICT=!test? ( test ) -SLOT=0/22.0.0 -SRC_URI=https://github.com/AdaCore/libadalang/archive/refs/tags/v22.0.0.tar.gz -> libadalang-22.0.0.tar.gz -_eclasses_=ada 16715c066d0691a4c61581d946cd3676 eapi8-dosym 741bfa77afb2a9321261501aca58c208 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=fb7b0d3bcd10ce5847d38258ffd872c0 diff --git a/metadata/md5-cache/dev-ada/libadalang-23.0.0-r1 b/metadata/md5-cache/dev-ada/libadalang-23.0.0-r1 deleted file mode 100644 index 44f1aaa6dcb8..000000000000 --- a/metadata/md5-cache/dev-ada/libadalang-23.0.0-r1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=test? ( dev-ml/dune dev-ml/zarith dev-ml/camomile dev-ml/ocaml-ctypes dev-ada/e3-testsuite =dev-ada/gnatcoll-bindings-23.0.0[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?,gmp,iconv] dev-ada/gnatcoll-bindings[shared,static-libs?,static-pic?] ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) ada_target_gcc_12? ( sys-devel/gcc:12[ada] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-ada/langkit[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?,shared,static-libs?,static-pic?] python_single_target_python3_10? ( dev-ada/langkit[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-ada/langkit[python_targets_python3_11(-)] ) dev-ada/gprbuild[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?] -DESCRIPTION=high performance semantic engine for the Ada programming language -EAPI=8 -HOMEPAGE=https://libre.adacore.com/ -INHERIT=ada python-single-r1 multiprocessing -IUSE=test +static-libs static-pic ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=dev-python/pyyaml =dev-ada/gnatcoll-bindings-23.0.0[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?,gmp,iconv] dev-ada/gnatcoll-bindings[shared,static-libs?,static-pic?] ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) ada_target_gcc_12? ( sys-devel/gcc:12[ada] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-ada/langkit[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?,shared,static-libs?,static-pic?] python_single_target_python3_10? ( dev-ada/langkit[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-ada/langkit[python_targets_python3_11(-)] ) -REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 ) ^^ ( ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 ) -RESTRICT=!test? ( test ) -SLOT=0/23.0.0 -SRC_URI=https://github.com/AdaCore/libadalang/archive/refs/tags/v23.0.0.tar.gz -> libadalang-23.0.0.tar.gz -_eclasses_=ada 16715c066d0691a4c61581d946cd3676 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=cf24ade2d22378f480789524d7a61bd0 diff --git a/metadata/md5-cache/dev-ada/libadalang-23.0.0-r2 b/metadata/md5-cache/dev-ada/libadalang-23.0.0-r2 new file mode 100644 index 000000000000..afb912c689ba --- /dev/null +++ b/metadata/md5-cache/dev-ada/libadalang-23.0.0-r2 @@ -0,0 +1,17 @@ +BDEPEND=test? ( dev-ml/dune dev-ml/zarith dev-ml/camomile dev-ml/ocaml-ctypes dev-ada/e3-testsuite =dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-ada/langkit[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?,shared,static-libs?,static-pic?] python_single_target_python3_10? ( dev-ada/langkit[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-ada/langkit[python_targets_python3_11(-)] ) dev-ada/gprbuild[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?] +DESCRIPTION=high performance semantic engine for the Ada programming language +EAPI=8 +HOMEPAGE=https://libre.adacore.com/ +INHERIT=ada python-single-r1 multiprocessing +IUSE=test +static-libs static-pic ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=dev-python/pyyaml dev-ada/gnatcoll-bindings[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?,gmp,iconv] dev-ada/gnatcoll-bindings[shared,static-libs?,static-pic?] ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) ada_target_gcc_12? ( sys-devel/gcc:12[ada] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-ada/langkit[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?,shared,static-libs?,static-pic?] python_single_target_python3_10? ( dev-ada/langkit[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-ada/langkit[python_targets_python3_11(-)] ) +REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 ) ^^ ( ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 ) +RESTRICT=!test? ( test ) +SLOT=0/23.0.0 +SRC_URI=https://github.com/AdaCore/libadalang/archive/refs/tags/v23.0.0.tar.gz -> libadalang-23.0.0.tar.gz +_eclasses_=ada 16715c066d0691a4c61581d946cd3676 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=a75d1e22f56c784286839dae6cfc3db9 diff --git a/metadata/md5-cache/dev-ada/markdown-23.0.0 b/metadata/md5-cache/dev-ada/markdown-23.0.0 index 2ca8a58ffc80..c68f21225936 100644 --- a/metadata/md5-cache/dev-ada/markdown-23.0.0 +++ b/metadata/md5-cache/dev-ada/markdown-23.0.0 @@ -1,5 +1,5 @@ DEFINED_PHASES=setup -DEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) dev-ada/gprbuild[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-)] dev-ada/VSS[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-)] +DEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) ada_target_gcc_12? ( sys-devel/gcc:12[ada] ) dev-ada/gprbuild[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?] dev-ada/VSS[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?] DESCRIPTION=Provides a markdown parser written in Ada EAPI=7 HOMEPAGE=https://github.com/AdaCore/markdown @@ -7,8 +7,8 @@ INHERIT=ada IUSE=ada_target_gnat_2021 ada_target_gcc_12_2_0 ada_target_gcc_12 KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 -RDEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) dev-ada/gprbuild[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-)] dev-ada/VSS[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,-ada_target_gcc_12(-)] +RDEPEND=ada_target_gnat_2021? ( dev-lang/gnat-gpl:10[ada] ) ada_target_gcc_12_2_0? ( =sys-devel/gcc-12.2.0*[ada] ) ada_target_gcc_12? ( sys-devel/gcc:12[ada] ) dev-ada/gprbuild[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?] dev-ada/VSS[ada_target_gnat_2021(-)?,ada_target_gcc_12_2_0(-)?,ada_target_gcc_12(-)?] SLOT=0 SRC_URI=https://github.com/AdaCore/markdown/archive/refs/tags/v23.0.0.tar.gz -> markdown-23.0.0.tar.gz _eclasses_=ada 16715c066d0691a4c61581d946cd3676 -_md5_=f8b7dffcba3cdbc196678aaf7d1a0918 +_md5_=43b38a438536bf5554608c96dca4f132 diff --git a/metadata/md5-cache/dev-cpp/Manifest.gz b/metadata/md5-cache/dev-cpp/Manifest.gz index 17cd1a6871f2..83af68c84d68 100644 Binary files a/metadata/md5-cache/dev-cpp/Manifest.gz and b/metadata/md5-cache/dev-cpp/Manifest.gz differ diff --git a/metadata/md5-cache/dev-cpp/abseil-cpp-20200923.3 b/metadata/md5-cache/dev-cpp/abseil-cpp-20200923.3 index 327627d27d08..6f63a56829d9 100644 --- a/metadata/md5-cache/dev-cpp/abseil-cpp-20200923.3 +++ b/metadata/md5-cache/dev-cpp/abseil-cpp-20200923.3 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 test? ( BSD ) RESTRICT=!test? ( test ) SLOT=0/20200923 SRC_URI=https://github.com/abseil/abseil-cpp/archive/20200923.3.tar.gz -> abseil-cpp-20200923.3.tar.gz https://github.com/google/googletest/archive/aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e.tar.gz -> gtest-1.10.0_p20200702.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0f9b811b4e35e747432e02e54ea8b9a3 diff --git a/metadata/md5-cache/dev-cpp/abseil-cpp-20211102.0-r2 b/metadata/md5-cache/dev-cpp/abseil-cpp-20211102.0-r2 index 303754b9bbd1..6502f493db8f 100644 --- a/metadata/md5-cache/dev-cpp/abseil-cpp-20211102.0-r2 +++ b/metadata/md5-cache/dev-cpp/abseil-cpp-20211102.0-r2 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 test? ( BSD ) RESTRICT=!test? ( test ) SLOT=0/20211102 SRC_URI=https://github.com/abseil/abseil-cpp/archive/20211102.0.tar.gz -> abseil-cpp-20211102.0.tar.gz test? ( https://github.com/google/googletest/archive/1b18723e874b256c1e39378c6774a90701d70f7a.tar.gz -> gtest-1b18723e874b256c1e39378c6774a90701d70f7a.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c6e75b2bbde6f43d8cf25fdfa73eca90 diff --git a/metadata/md5-cache/dev-cpp/abseil-cpp-20220623.1 b/metadata/md5-cache/dev-cpp/abseil-cpp-20220623.1 index 880c9268e2d9..33de6e646c9b 100644 --- a/metadata/md5-cache/dev-cpp/abseil-cpp-20220623.1 +++ b/metadata/md5-cache/dev-cpp/abseil-cpp-20220623.1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 test? ( BSD ) RESTRICT=!test? ( test ) SLOT=0/20220623 SRC_URI=https://github.com/abseil/abseil-cpp/archive/20220623.1.tar.gz -> abseil-cpp-20220623.1.tar.gz test? ( https://github.com/google/googletest/archive/e68764c147ea0dac1e8811925c531d937396878e.tar.gz -> gtest-e68764c147ea0dac1e8811925c531d937396878e.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=21b46f3562358f4e3d2d2d4a619f3870 diff --git a/metadata/md5-cache/dev-cpp/aixlog-1.5.0 b/metadata/md5-cache/dev-cpp/aixlog-1.5.0 index 040a29efb7c7..1aabadecd1fc 100644 --- a/metadata/md5-cache/dev-cpp/aixlog-1.5.0 +++ b/metadata/md5-cache/dev-cpp/aixlog-1.5.0 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm ppc ppc64 ~riscv x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/badaix/aixlog/archive/v1.5.0.tar.gz -> aixlog-1.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=479780ece96f90f85721c8a408bdfa64 diff --git a/metadata/md5-cache/dev-cpp/aixlog-9999 b/metadata/md5-cache/dev-cpp/aixlog-9999 index 2563f30469a5..45a0192413ba 100644 --- a/metadata/md5-cache/dev-cpp/aixlog-9999 +++ b/metadata/md5-cache/dev-cpp/aixlog-9999 @@ -7,5 +7,5 @@ INHERIT=cmake git-r3 LICENSE=MIT PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=824a030df81dd9319ac12c5875cb3dc7 diff --git a/metadata/md5-cache/dev-cpp/amqp-cpp-4.3.18 b/metadata/md5-cache/dev-cpp/amqp-cpp-4.3.18 index d072537b2097..ba988616a361 100644 --- a/metadata/md5-cache/dev-cpp/amqp-cpp-4.3.18 +++ b/metadata/md5-cache/dev-cpp/amqp-cpp-4.3.18 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=Apache-2.0 SLOT=0 SRC_URI=https://github.com/CopernicaMarketingSoftware/AMQP-CPP/archive/v4.3.18.tar.gz -> AMQP-CPP-4.3.18.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=14b45a91747b1384ae27d03d2597eed8 diff --git a/metadata/md5-cache/dev-cpp/antlr-cpp-4.11.1 b/metadata/md5-cache/dev-cpp/antlr-cpp-4.11.1 index 438b3ab29a97..82a77b9a5231 100644 --- a/metadata/md5-cache/dev-cpp/antlr-cpp-4.11.1 +++ b/metadata/md5-cache/dev-cpp/antlr-cpp-4.11.1 @@ -11,5 +11,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=4 SRC_URI=https://www.antlr.org/download/antlr4-cpp-runtime-4.11.1-source.zip -> antlr-cpp-4.11.1.zip -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e301f51543ff67d7e989aa56c0eb2d5c diff --git a/metadata/md5-cache/dev-cpp/antlr-cpp-4.7.2 b/metadata/md5-cache/dev-cpp/antlr-cpp-4.7.2 index af5eb237fed1..a075d933f84c 100644 --- a/metadata/md5-cache/dev-cpp/antlr-cpp-4.7.2 +++ b/metadata/md5-cache/dev-cpp/antlr-cpp-4.7.2 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm ~ppc x86 LICENSE=BSD SLOT=4 SRC_URI=https://www.antlr.org/download/antlr4-cpp-runtime-4.7.2-source.zip -> antlr-cpp-4.7.2.zip -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c679f6315a1f9a2a2c27fabedd05de77 diff --git a/metadata/md5-cache/dev-cpp/argparse-2.9 b/metadata/md5-cache/dev-cpp/argparse-2.9 index dc87062ec1c7..6ea827a82b07 100644 --- a/metadata/md5-cache/dev-cpp/argparse-2.9 +++ b/metadata/md5-cache/dev-cpp/argparse-2.9 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/p-ranav/argparse/archive/v2.9.tar.gz -> argparse-2.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c2892910faf2784f26084d2ae47c7b28 diff --git a/metadata/md5-cache/dev-cpp/benchmark-1.7.1 b/metadata/md5-cache/dev-cpp/benchmark-1.7.1 index 629f78bc2872..05dbb6cfd0cf 100644 --- a/metadata/md5-cache/dev-cpp/benchmark-1.7.1 +++ b/metadata/md5-cache/dev-cpp/benchmark-1.7.1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/benchmark/archive/v1.7.1.tar.gz -> benchmark-1.7.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ecee529d699ad567da9207e3afb68dcc diff --git a/metadata/md5-cache/dev-cpp/catch-1.12.2-r1 b/metadata/md5-cache/dev-cpp/catch-1.12.2-r1 index 1950dd74b521..8380eca23e40 100644 --- a/metadata/md5-cache/dev-cpp/catch-1.12.2-r1 +++ b/metadata/md5-cache/dev-cpp/catch-1.12.2-r1 @@ -10,5 +10,5 @@ LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://github.com/catchorg/Catch2/archive/v1.12.2.tar.gz -> Catch-1.12.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6d508a92f4150c70b6a7dc66cc3a84ba diff --git a/metadata/md5-cache/dev-cpp/catch-1.9999 b/metadata/md5-cache/dev-cpp/catch-1.9999 index 07c6c80e59ed..654154eac0e5 100644 --- a/metadata/md5-cache/dev-cpp/catch-1.9999 +++ b/metadata/md5-cache/dev-cpp/catch-1.9999 @@ -9,5 +9,5 @@ LICENSE=Boost-1.0 PROPERTIES=live RESTRICT=!test? ( test ) SLOT=1 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cd1088d26d5eee0df839c52075aa43ce diff --git a/metadata/md5-cache/dev-cpp/catch-2.13.8 b/metadata/md5-cache/dev-cpp/catch-2.13.8 index 6865305ec8b9..b06eed7cc43d 100644 --- a/metadata/md5-cache/dev-cpp/catch-2.13.8 +++ b/metadata/md5-cache/dev-cpp/catch-2.13.8 @@ -10,5 +10,5 @@ LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/catchorg/Catch2/archive/v2.13.8.tar.gz -> Catch2-2.13.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=82fa2dbd3f36f5d2d6cc032646ec76cc diff --git a/metadata/md5-cache/dev-cpp/catch-3.0.1 b/metadata/md5-cache/dev-cpp/catch-3.0.1 index b8973d95f89c..e555d13f691c 100644 --- a/metadata/md5-cache/dev-cpp/catch-3.0.1 +++ b/metadata/md5-cache/dev-cpp/catch-3.0.1 @@ -10,5 +10,5 @@ LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/catchorg/Catch2/archive/v3.0.1.tar.gz -> Catch2-3.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=948c348c6c2286a048898e0a5558a272 diff --git a/metadata/md5-cache/dev-cpp/catch-3.3.2 b/metadata/md5-cache/dev-cpp/catch-3.3.2 index b69fc0cf2f30..88e740c97b25 100644 --- a/metadata/md5-cache/dev-cpp/catch-3.3.2 +++ b/metadata/md5-cache/dev-cpp/catch-3.3.2 @@ -10,5 +10,5 @@ LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/catchorg/Catch2/archive/v3.3.2.tar.gz -> Catch2-3.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9c93e2d73c56d0c6ad5aa94869e27b34 diff --git a/metadata/md5-cache/dev-cpp/catch-9999 b/metadata/md5-cache/dev-cpp/catch-9999 index 8ad24d24b67d..effb3898dcd2 100644 --- a/metadata/md5-cache/dev-cpp/catch-9999 +++ b/metadata/md5-cache/dev-cpp/catch-9999 @@ -9,5 +9,5 @@ LICENSE=Boost-1.0 PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=72ca8de060841751a7345d9c6b410835 diff --git a/metadata/md5-cache/dev-cpp/cctz-2.3_p20230228 b/metadata/md5-cache/dev-cpp/cctz-2.3_p20230228 index 3c3b6efd5e61..0af09a759376 100644 --- a/metadata/md5-cache/dev-cpp/cctz-2.3_p20230228 +++ b/metadata/md5-cache/dev-cpp/cctz-2.3_p20230228 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/cctz/archive/3803b96130934f48b1fc1d47c5da5f542949c4b0.tar.gz -> cctz-2.3_p20230228.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1cd56469ebc89a70763c5189bc29469a diff --git a/metadata/md5-cache/dev-cpp/clucene-2.3.3.4-r8 b/metadata/md5-cache/dev-cpp/clucene-2.3.3.4-r8 index a4521c3d6185..b1fb4ec0f95f 100644 --- a/metadata/md5-cache/dev-cpp/clucene-2.3.3.4-r8 +++ b/metadata/md5-cache/dev-cpp/clucene-2.3.3.4-r8 @@ -10,5 +10,5 @@ LICENSE=|| ( Apache-2.0 LGPL-2.1 ) RESTRICT=test SLOT=1 SRC_URI=mirror://sourceforge/clucene/clucene-core-2.3.3.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=703550d1be945bb65decf102b51f978a diff --git a/metadata/md5-cache/dev-cpp/cpp-hocon-0.3.0-r1 b/metadata/md5-cache/dev-cpp/cpp-hocon-0.3.0-r1 index 4b02c666a015..fac92b120de2 100644 --- a/metadata/md5-cache/dev-cpp/cpp-hocon-0.3.0-r1 +++ b/metadata/md5-cache/dev-cpp/cpp-hocon-0.3.0-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:=[nls] >=dev-libs/leatherman-0.9.3:= RESTRICT=!test? ( test ) SLOT=0/0.3.0 SRC_URI=https://github.com/puppetlabs/cpp-hocon/archive/0.3.0.tar.gz -> cpp-hocon-0.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a246a565526a96d8c3f0af92d1725d36 diff --git a/metadata/md5-cache/dev-cpp/cpp-httplib-0.11.3 b/metadata/md5-cache/dev-cpp/cpp-httplib-0.11.3 index ae4b8aea720f..4c9ed0cab846 100644 --- a/metadata/md5-cache/dev-cpp/cpp-httplib-0.11.3 +++ b/metadata/md5-cache/dev-cpp/cpp-httplib-0.11.3 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=brotli? ( app-arch/brotli:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( dev-libs/openssl:=[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? ( sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0/0.11 SRC_URI=https://github.com/yhirose/cpp-httplib/archive/refs/tags/v0.11.3.tar.gz -> cpp-httplib-0.11.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3a9c61ec679cbb364c77efb4be2aed2b diff --git a/metadata/md5-cache/dev-cpp/cpp-httplib-0.11.4 b/metadata/md5-cache/dev-cpp/cpp-httplib-0.11.4 index c4c5e4b57d70..84bbd024a856 100644 --- a/metadata/md5-cache/dev-cpp/cpp-httplib-0.11.4 +++ b/metadata/md5-cache/dev-cpp/cpp-httplib-0.11.4 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( brotli ssl zlib ) RESTRICT=!test? ( test ) SLOT=0/0.11 SRC_URI=https://github.com/yhirose/cpp-httplib/archive/refs/tags/v0.11.4.tar.gz -> cpp-httplib-0.11.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8d9105a020270605bb9b7b3736cfab9f diff --git a/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.0 b/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.0 index f670a63a427a..c9f501946aa5 100644 --- a/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.0 +++ b/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.0 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( brotli ssl zlib ) RESTRICT=!test? ( test ) SLOT=0/0.11 SRC_URI=https://github.com/yhirose/cpp-httplib/archive/v0.12.0.tar.gz -> cpp-httplib-0.12.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=096df3e9e11d942050d4fe095e2cf7d9 diff --git a/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.1 b/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.1 index bb15faca1bc1..8b34e8d42d19 100644 --- a/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.1 +++ b/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.1 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( brotli ssl zlib ) RESTRICT=!test? ( test ) SLOT=0/0.11 SRC_URI=https://github.com/yhirose/cpp-httplib/archive/v0.12.1.tar.gz -> cpp-httplib-0.12.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b5d1c88f1d2c8c247614d470c6caecd diff --git a/metadata/md5-cache/dev-cpp/curlpp-0.8.1 b/metadata/md5-cache/dev-cpp/curlpp-0.8.1 index 34168e30f38a..95996975c2b3 100644 --- a/metadata/md5-cache/dev-cpp/curlpp-0.8.1 +++ b/metadata/md5-cache/dev-cpp/curlpp-0.8.1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=net-misc/curl SLOT=0 SRC_URI=https://github.com/jpbarrette/curlpp/archive/v0.8.1.tar.gz -> curlpp-0.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8f23f57a0564ffe5ea7ccce82de24ce5 diff --git a/metadata/md5-cache/dev-cpp/doctest-2.4.10 b/metadata/md5-cache/dev-cpp/doctest-2.4.10 index 7ee5a40b8101..15a7c5ada042 100644 --- a/metadata/md5-cache/dev-cpp/doctest-2.4.10 +++ b/metadata/md5-cache/dev-cpp/doctest-2.4.10 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/doctest/doctest/archive/v2.4.10.tar.gz -> doctest-2.4.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a0cedf90ee3696d18d4faa9051472c42 diff --git a/metadata/md5-cache/dev-cpp/doctest-2.4.11 b/metadata/md5-cache/dev-cpp/doctest-2.4.11 new file mode 100644 index 000000000000..fb4677084475 --- /dev/null +++ b/metadata/md5-cache/dev-cpp/doctest-2.4.11 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=The fastest feature-rich C++11/14/17/20 single-header testing framework +EAPI=8 +HOMEPAGE=https://github.com/doctest/doctest +INHERIT=cmake +IUSE=test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=MIT +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/doctest/doctest/archive/v2.4.11.tar.gz -> doctest-2.4.11.tar.gz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=a0cedf90ee3696d18d4faa9051472c42 diff --git a/metadata/md5-cache/dev-cpp/doctest-2.4.9 b/metadata/md5-cache/dev-cpp/doctest-2.4.9 index 2e07c745bcb7..409fc61e842d 100644 --- a/metadata/md5-cache/dev-cpp/doctest-2.4.9 +++ b/metadata/md5-cache/dev-cpp/doctest-2.4.9 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/doctest/doctest/archive/v2.4.9.tar.gz -> doctest-2.4.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4aa542989c32e6e238b711f985dfc54d diff --git a/metadata/md5-cache/dev-cpp/edencommon-2022.08.29.00 b/metadata/md5-cache/dev-cpp/edencommon-2022.08.29.00 index b3ddbbe915a9..39bd64e61ea0 100644 --- a/metadata/md5-cache/dev-cpp/edencommon-2022.08.29.00 +++ b/metadata/md5-cache/dev-cpp/edencommon-2022.08.29.00 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-cpp/gflags:= dev-cpp/glog:=[gflags] dev-cpp/folly:= llvm-libunwind? ( sys-libs/llvm-libunwind:= ) !llvm-libunwind? ( sys-libs/libunwind:= ) SLOT=0/2022.08.29.00 SRC_URI=https://github.com/facebookexperimental/edencommon/archive/refs/tags/v2022.08.29.00.tar.gz -> edencommon-2022.08.29.00.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa80578078b8bf3061f5faab731a74bd diff --git a/metadata/md5-cache/dev-cpp/edencommon-2023.02.06.00 b/metadata/md5-cache/dev-cpp/edencommon-2023.02.06.00 index 2fa3668efffc..623eec77f622 100644 --- a/metadata/md5-cache/dev-cpp/edencommon-2023.02.06.00 +++ b/metadata/md5-cache/dev-cpp/edencommon-2023.02.06.00 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-cpp/gflags:= dev-cpp/glog:=[gflags] dev-cpp/folly:= llvm-libunwind? ( sys-libs/llvm-libunwind:= ) !llvm-libunwind? ( sys-libs/libunwind:= ) SLOT=0/2023.02.06.00 SRC_URI=https://github.com/facebookexperimental/edencommon/archive/refs/tags/v2023.02.06.00.tar.gz -> edencommon-2023.02.06.00.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1b309e37af19e9f6c09e91748bef4382 diff --git a/metadata/md5-cache/dev-cpp/eigen-3.4.0-r1 b/metadata/md5-cache/dev-cpp/eigen-3.4.0-r1 index 1871225852bb..29e1f54766cc 100644 --- a/metadata/md5-cache/dev-cpp/eigen-3.4.0-r1 +++ b/metadata/md5-cache/dev-cpp/eigen-3.4.0-r1 @@ -11,5 +11,5 @@ LICENSE=MPL-2.0 RESTRICT=!test? ( test ) test SLOT=3 SRC_URI=https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9c647c5fbb99a4bdc25329176c038361 diff --git a/metadata/md5-cache/dev-cpp/elfio-3.11 b/metadata/md5-cache/dev-cpp/elfio-3.11 index 3cfb34d77b8b..45ccb041641c 100644 --- a/metadata/md5-cache/dev-cpp/elfio-3.11 +++ b/metadata/md5-cache/dev-cpp/elfio-3.11 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/serge1/elfio/archive/Release_3.11.tar.gz -> elfio-3.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=580844e4744f74216b9eedc685bba2ac diff --git a/metadata/md5-cache/dev-cpp/folly-2022.08.29.00 b/metadata/md5-cache/dev-cpp/folly-2022.08.29.00 index cb93159aef6f..739718571073 100644 --- a/metadata/md5-cache/dev-cpp/folly-2022.08.29.00 +++ b/metadata/md5-cache/dev-cpp/folly-2022.08.29.00 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2 app-arch/lz4:= app-arch/snappy:= app-arch/xz-utils app-ar RESTRICT=!test? ( test ) SLOT=0/2022.08.29.00 SRC_URI=https://github.com/facebook/folly/releases/download/v2022.08.29.00/folly-v2022.08.29.00.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ad40dc2a85f98741544e0b391e1368d3 diff --git a/metadata/md5-cache/dev-cpp/folly-2023.02.06.00 b/metadata/md5-cache/dev-cpp/folly-2023.02.06.00 index 8bc0798bc03b..2c4c6d42be83 100644 --- a/metadata/md5-cache/dev-cpp/folly-2023.02.06.00 +++ b/metadata/md5-cache/dev-cpp/folly-2023.02.06.00 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2 app-arch/lz4:= app-arch/snappy:= app-arch/xz-utils app-ar RESTRICT=!test? ( test ) SLOT=0/2023.02.06.00 SRC_URI=https://github.com/facebook/folly/releases/download/v2023.02.06.00/folly-v2023.02.06.00.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4f3a3a90267d78eff77f965cec5ecfd9 diff --git a/metadata/md5-cache/dev-cpp/gemmlowp-2021.12.20 b/metadata/md5-cache/dev-cpp/gemmlowp-2021.12.20 index b45da07205a1..f9475ac5874f 100644 --- a/metadata/md5-cache/dev-cpp/gemmlowp-2021.12.20 +++ b/metadata/md5-cache/dev-cpp/gemmlowp-2021.12.20 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/gemmlowp/archive/e844ffd17118c1e17d94e1ba4354c075a4577b88.tar.gz -> gemmlowp-2021.12.20.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=451c358a0f4186de11d5e94bcc32c20c diff --git a/metadata/md5-cache/dev-cpp/gflags-2.2.2 b/metadata/md5-cache/dev-cpp/gflags-2.2.2 index b3f33966656f..78f68cbdf32a 100644 --- a/metadata/md5-cache/dev-cpp/gflags-2.2.2 +++ b/metadata/md5-cache/dev-cpp/gflags-2.2.2 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0/2.2 SRC_URI=https://github.com/gflags/gflags/archive/v2.2.2.tar.gz -> gflags-2.2.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=22e62201c1b5dd92cdfe07ecb6e3ad82 diff --git a/metadata/md5-cache/dev-cpp/gflags-9999 b/metadata/md5-cache/dev-cpp/gflags-9999 index fb5d27e31914..4506e7251d3d 100644 --- a/metadata/md5-cache/dev-cpp/gflags-9999 +++ b/metadata/md5-cache/dev-cpp/gflags-9999 @@ -9,5 +9,5 @@ LICENSE=BSD PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0/2.2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e1c47360a7dfe90780b8e5cea308af8 diff --git a/metadata/md5-cache/dev-cpp/glog-0.5.0 b/metadata/md5-cache/dev-cpp/glog-0.5.0 index 2dffe9f1758f..f330fff3ffb9 100644 --- a/metadata/md5-cache/dev-cpp/glog-0.5.0 +++ b/metadata/md5-cache/dev-cpp/glog-0.5.0 @@ -12,5 +12,5 @@ RDEPEND=gflags? ( dev-cpp/gflags:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/glog/archive/v0.5.0.tar.gz -> glog-0.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c34ff1e1cf82841f54f0cc3dfb94037 diff --git a/metadata/md5-cache/dev-cpp/glog-0.6.0 b/metadata/md5-cache/dev-cpp/glog-0.6.0 index 234397738be8..88c3b444aa6e 100644 --- a/metadata/md5-cache/dev-cpp/glog-0.6.0 +++ b/metadata/md5-cache/dev-cpp/glog-0.6.0 @@ -12,5 +12,5 @@ RDEPEND=gflags? ( dev-cpp/gflags:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-) RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/google/glog/archive/v0.6.0.tar.gz -> glog-0.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3297eea2ece2a9efea19f61d5661cfa1 diff --git a/metadata/md5-cache/dev-cpp/gtest-1.11.0 b/metadata/md5-cache/dev-cpp/gtest-1.11.0 index c9ee0d269a61..24d50c026921 100644 --- a/metadata/md5-cache/dev-cpp/gtest-1.11.0 +++ b/metadata/md5-cache/dev-cpp/gtest-1.11.0 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/googletest/archive/refs/tags/release-1.11.0.tar.gz -> gtest-1.11.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9a641d35e4b7e1ee2557650d1de46dc8 diff --git a/metadata/md5-cache/dev-cpp/gtest-1.13.0 b/metadata/md5-cache/dev-cpp/gtest-1.13.0 index df267ad3a74b..e903f8357830 100644 --- a/metadata/md5-cache/dev-cpp/gtest-1.13.0 +++ b/metadata/md5-cache/dev-cpp/gtest-1.13.0 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/googletest/archive/refs/tags/v1.13.0.tar.gz -> gtest-1.13.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cb5e76d18aaf8720d7e31791546e0ee9 diff --git a/metadata/md5-cache/dev-cpp/gtest-9999 b/metadata/md5-cache/dev-cpp/gtest-9999 index e7b84c5feff1..eb2dd9145c7a 100644 --- a/metadata/md5-cache/dev-cpp/gtest-9999 +++ b/metadata/md5-cache/dev-cpp/gtest-9999 @@ -9,5 +9,5 @@ LICENSE=BSD PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cb5e76d18aaf8720d7e31791546e0ee9 diff --git a/metadata/md5-cache/dev-cpp/gulrak-filesystem-1.5.12 b/metadata/md5-cache/dev-cpp/gulrak-filesystem-1.5.12 index 83b1ccbfdd18..697fe7a5106c 100644 --- a/metadata/md5-cache/dev-cpp/gulrak-filesystem-1.5.12 +++ b/metadata/md5-cache/dev-cpp/gulrak-filesystem-1.5.12 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/gulrak/filesystem/archive/v1.5.12.tar.gz -> gulrak-filesystem-1.5.12.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f6945788334ae744f0aaae1eeca8bc5e diff --git a/metadata/md5-cache/dev-cpp/gulrak-filesystem-1.5.14 b/metadata/md5-cache/dev-cpp/gulrak-filesystem-1.5.14 index 5b720fdb6cd7..a821ae280f8c 100644 --- a/metadata/md5-cache/dev-cpp/gulrak-filesystem-1.5.14 +++ b/metadata/md5-cache/dev-cpp/gulrak-filesystem-1.5.14 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/gulrak/filesystem/archive/v1.5.14.tar.gz -> gulrak-filesystem-1.5.14.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=903c07a9bf12569d14e6df41ddb73e3c diff --git a/metadata/md5-cache/dev-cpp/highway-1.0.1-r1 b/metadata/md5-cache/dev-cpp/highway-1.0.1-r1 index 9a885eedf391..9bade537e786 100644 --- a/metadata/md5-cache/dev-cpp/highway-1.0.1-r1 +++ b/metadata/md5-cache/dev-cpp/highway-1.0.1-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/highway/archive/refs/tags/1.0.1.tar.gz -> highway-1.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0d321500d4cfbca026351cbf34b68448 diff --git a/metadata/md5-cache/dev-cpp/highway-1.0.3 b/metadata/md5-cache/dev-cpp/highway-1.0.3 index 8d5d792aff42..2ea468b78b61 100644 --- a/metadata/md5-cache/dev-cpp/highway-1.0.3 +++ b/metadata/md5-cache/dev-cpp/highway-1.0.3 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/highway/archive/refs/tags/1.0.3.tar.gz -> highway-1.0.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=154afc8002e8465021d08bc41b75deb2 diff --git a/metadata/md5-cache/dev-cpp/highway-1.0.3-r1 b/metadata/md5-cache/dev-cpp/highway-1.0.3-r1 index bb280e809d84..e328fb6365a3 100644 --- a/metadata/md5-cache/dev-cpp/highway-1.0.3-r1 +++ b/metadata/md5-cache/dev-cpp/highway-1.0.3-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/highway/archive/refs/tags/1.0.3.tar.gz -> highway-1.0.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=df1852e9b3be60ac19b5206cc47233ab diff --git a/metadata/md5-cache/dev-cpp/highway-9999 b/metadata/md5-cache/dev-cpp/highway-9999 index 24410376c4bd..9cce92869599 100644 --- a/metadata/md5-cache/dev-cpp/highway-9999 +++ b/metadata/md5-cache/dev-cpp/highway-9999 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a6208e8e01ec9f823cb8e2e02d1c830f diff --git a/metadata/md5-cache/dev-cpp/json11-1.0.0 b/metadata/md5-cache/dev-cpp/json11-1.0.0 index 6544c7077674..5246bbcb11dd 100644 --- a/metadata/md5-cache/dev-cpp/json11-1.0.0 +++ b/metadata/md5-cache/dev-cpp/json11-1.0.0 @@ -8,5 +8,5 @@ KEYWORDS=amd64 x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/dropbox/json11/archive/refs/tags/v1.0.0.tar.gz -> json11-1.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f97719641acefa411825f6b89b705a8f diff --git a/metadata/md5-cache/dev-cpp/json11-1.0.0-r1 b/metadata/md5-cache/dev-cpp/json11-1.0.0-r1 index f93c9aac7e9e..9e6e10dfd312 100644 --- a/metadata/md5-cache/dev-cpp/json11-1.0.0-r1 +++ b/metadata/md5-cache/dev-cpp/json11-1.0.0-r1 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/dropbox/json11/archive/refs/tags/v1.0.0.tar.gz -> json11-1.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8634af433a1a2ff64626f81a29dd2bad diff --git a/metadata/md5-cache/dev-cpp/kokkos-3.1.01-r1 b/metadata/md5-cache/dev-cpp/kokkos-3.1.01-r1 index 889698851a01..683cf785bc62 100644 --- a/metadata/md5-cache/dev-cpp/kokkos-3.1.01-r1 +++ b/metadata/md5-cache/dev-cpp/kokkos-3.1.01-r1 @@ -12,5 +12,5 @@ RDEPEND=sys-apps/hwloc:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/kokkos/kokkos/archive/3.1.01.tar.gz -> kokkos-3.1.01.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=923eb3804c0c191127b29c83a82283e9 diff --git a/metadata/md5-cache/dev-cpp/kokkos-3.7.0 b/metadata/md5-cache/dev-cpp/kokkos-3.7.0 index 5ef4fed4791a..cd82ec7f5bcb 100644 --- a/metadata/md5-cache/dev-cpp/kokkos-3.7.0 +++ b/metadata/md5-cache/dev-cpp/kokkos-3.7.0 @@ -12,5 +12,5 @@ RDEPEND=sys-apps/hwloc:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/kokkos/kokkos/archive/refs/tags/3.7.00.tar.gz -> kokkos-3.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=51fb2a4426af9c42a9d36d3cd8472538 diff --git a/metadata/md5-cache/dev-cpp/kokkos-3.7.1 b/metadata/md5-cache/dev-cpp/kokkos-3.7.1 index 790a30d462b7..37d6468367bb 100644 --- a/metadata/md5-cache/dev-cpp/kokkos-3.7.1 +++ b/metadata/md5-cache/dev-cpp/kokkos-3.7.1 @@ -12,5 +12,5 @@ RDEPEND=sys-apps/hwloc:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/kokkos/kokkos/archive/refs/tags/3.7.01.tar.gz -> kokkos-3.7.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a979831d38cdefd53affedc65c6f7646 diff --git a/metadata/md5-cache/dev-cpp/libjson-rpc-cpp-1.4.0 b/metadata/md5-cache/dev-cpp/libjson-rpc-cpp-1.4.0 index 9973cb1c148c..bab0c2a446a4 100644 --- a/metadata/md5-cache/dev-cpp/libjson-rpc-cpp-1.4.0 +++ b/metadata/md5-cache/dev-cpp/libjson-rpc-cpp-1.4.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/jsoncpp:= http-client? ( net-misc/curl:= ) http-server? ( net-l RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/cinemast/libjson-rpc-cpp/archive/v1.4.0.tar.gz -> libjson-rpc-cpp-1.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a353ab62dfb7346668756fb072b2be5 diff --git a/metadata/md5-cache/dev-cpp/lucene++-3.0.7-r3 b/metadata/md5-cache/dev-cpp/lucene++-3.0.7-r3 index 53c81d0580c5..8ba805031c06 100644 --- a/metadata/md5-cache/dev-cpp/lucene++-3.0.7-r3 +++ b/metadata/md5-cache/dev-cpp/lucene++-3.0.7-r3 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:=[zlib] RESTRICT=test SLOT=0 SRC_URI=https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_3.0.7.tar.gz -> lucene++-3.0.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=68906bf4e4a1fda8a846d17e3cd332f5 diff --git a/metadata/md5-cache/dev-cpp/magic_enum-0.8.2 b/metadata/md5-cache/dev-cpp/magic_enum-0.8.2 index fcc2cf6710eb..ca2fdeb551a4 100644 --- a/metadata/md5-cache/dev-cpp/magic_enum-0.8.2 +++ b/metadata/md5-cache/dev-cpp/magic_enum-0.8.2 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://github.com/Neargye/magic_enum/archive/refs/tags/v0.8.2.tar.gz -> magic_enum-0.8.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e4790182551c217522e44d1d0c723e53 diff --git a/metadata/md5-cache/dev-cpp/ms-gsl-4.0.0 b/metadata/md5-cache/dev-cpp/ms-gsl-4.0.0 index c9887ec27a85..cb404892ae9a 100644 --- a/metadata/md5-cache/dev-cpp/ms-gsl-4.0.0 +++ b/metadata/md5-cache/dev-cpp/ms-gsl-4.0.0 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Microsoft/GSL/archive/v4.0.0.tar.gz -> ms-gsl-4.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a464b49d65f3f2690f72ce6d0c59011b diff --git a/metadata/md5-cache/dev-cpp/ms-gsl-9999 b/metadata/md5-cache/dev-cpp/ms-gsl-9999 index dd297277ffc7..c62f50ed55f4 100644 --- a/metadata/md5-cache/dev-cpp/ms-gsl-9999 +++ b/metadata/md5-cache/dev-cpp/ms-gsl-9999 @@ -10,5 +10,5 @@ LICENSE=MIT PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=df08dac91dddf6f4c64ce606ab70b1c1 diff --git a/metadata/md5-cache/dev-cpp/msgpack-cxx-5.0.0 b/metadata/md5-cache/dev-cpp/msgpack-cxx-5.0.0 index 4b01ae7a50bf..bb5a607510b0 100644 --- a/metadata/md5-cache/dev-cpp/msgpack-cxx-5.0.0 +++ b/metadata/md5-cache/dev-cpp/msgpack-cxx-5.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( boost ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/msgpack/msgpack-c/releases/download/cpp-5.0.0/msgpack-cxx-5.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9539cf3924a261fa75c00878068c94db diff --git a/metadata/md5-cache/dev-cpp/muParser-2.3.3-r2 b/metadata/md5-cache/dev-cpp/muParser-2.3.3-r2 index 7fcbdb7f1b18..fd9d855f0496 100644 --- a/metadata/md5-cache/dev-cpp/muParser-2.3.3-r2 +++ b/metadata/md5-cache/dev-cpp/muParser-2.3.3-r2 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/beltoforion/muparser/archive/refs/tags/v2.3.3-1.tar.gz -> muParser-2.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5048eb07df7560dfffa069cbf3fe24f3 diff --git a/metadata/md5-cache/dev-cpp/muParser-2.3.4-r1 b/metadata/md5-cache/dev-cpp/muParser-2.3.4-r1 index df837a0d71cf..ed2a402c1dc0 100644 --- a/metadata/md5-cache/dev-cpp/muParser-2.3.4-r1 +++ b/metadata/md5-cache/dev-cpp/muParser-2.3.4-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/beltoforion/muparser/archive/refs/tags/v2.3.4.tar.gz -> muParser-2.3.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=806e285a256fe0a6421f203bddfe4042 diff --git a/metadata/md5-cache/dev-cpp/muParserX-4.0.11 b/metadata/md5-cache/dev-cpp/muParserX-4.0.11 index a31dceb6e36f..28c18fd42405 100644 --- a/metadata/md5-cache/dev-cpp/muParserX-4.0.11 +++ b/metadata/md5-cache/dev-cpp/muParserX-4.0.11 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 LICENSE=BSD-2 SLOT=0 SRC_URI=https://github.com/beltoforion/muparserx/archive/refs/tags/v4.0.11.tar.gz -> muParserX-4.0.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f918031061d8b92e87820473740c8252 diff --git a/metadata/md5-cache/dev-cpp/nlohmann_json-3.11.2 b/metadata/md5-cache/dev-cpp/nlohmann_json-3.11.2 index bb5626df54d9..100e7c535ce2 100644 --- a/metadata/md5-cache/dev-cpp/nlohmann_json-3.11.2 +++ b/metadata/md5-cache/dev-cpp/nlohmann_json-3.11.2 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/nlohmann/json/archive/v3.11.2.tar.gz -> nlohmann_json-3.11.2.tar.gz test? ( https://github.com/nlohmann/json_test_data/archive/v3.1.0.tar.gz -> nlohmann_json-testdata-3.1.0.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2dc9cd24da9042cc68fe137ebb8cb349 diff --git a/metadata/md5-cache/dev-cpp/nlohmann_json-3.11.2-r1 b/metadata/md5-cache/dev-cpp/nlohmann_json-3.11.2-r1 index 61f59fdb54e4..953d65949602 100644 --- a/metadata/md5-cache/dev-cpp/nlohmann_json-3.11.2-r1 +++ b/metadata/md5-cache/dev-cpp/nlohmann_json-3.11.2-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/nlohmann/json/archive/v3.11.2.tar.gz -> nlohmann_json-3.11.2.tar.gz test? ( https://github.com/nlohmann/json_test_data/archive/v3.1.0.tar.gz -> nlohmann_json-testdata-3.1.0.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5c109699ba2130d3e73ca783370c6e56 diff --git a/metadata/md5-cache/dev-cpp/notcurses-3.0.5-r1 b/metadata/md5-cache/dev-cpp/notcurses-3.0.5-r1 index 17517e012429..992fe7928642 100644 --- a/metadata/md5-cache/dev-cpp/notcurses-3.0.5-r1 +++ b/metadata/md5-cache/dev-cpp/notcurses-3.0.5-r1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-libs/libunistring:= media-video/ffmpeg:= sys-libs/gpm sys-libs/ncurses:= SLOT=0 SRC_URI=https://github.com/dankamongmen/notcurses/archive/v3.0.5.tar.gz -> notcurses-3.0.5.tar.gz https://github.com/dankamongmen/notcurses/releases/download/v3.0.5/notcurses-doc-3.0.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0277bebe060b9e89720136d621b8a138 diff --git a/metadata/md5-cache/dev-cpp/notcurses-3.0.8 b/metadata/md5-cache/dev-cpp/notcurses-3.0.8 index e69a25a2a013..5f7ac498112e 100644 --- a/metadata/md5-cache/dev-cpp/notcurses-3.0.8 +++ b/metadata/md5-cache/dev-cpp/notcurses-3.0.8 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libunistring:= media-video/ffmpeg:= sys-libs/gpm sys-libs/ncurs RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dankamongmen/notcurses/archive/v3.0.8.tar.gz -> notcurses-3.0.8.tar.gz https://github.com/dankamongmen/notcurses/releases/download/v3.0.8/notcurses-doc-3.0.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5389d702cc7dc0d53186b22466569c2e diff --git a/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.3.0-r2 b/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.3.0-r2 index 3992cbc79957..e46b4693414e 100644 --- a/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.3.0-r2 +++ b/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.3.0-r2 @@ -12,5 +12,5 @@ RDEPEND=net-misc/curl:= dev-libs/thrift:= dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/open-telemetry/opentelemetry-cpp/archive/refs/tags/v1.3.0.tar.gz -> opentelemetry-cpp-1.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d4614d573b00a871520588092511c9ae diff --git a/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.4.0 b/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.4.0 index 86d666f2e132..d908b5d6e817 100644 --- a/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.4.0 +++ b/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.4.0 @@ -12,5 +12,5 @@ RDEPEND=net-misc/curl:= dev-libs/thrift:= dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/open-telemetry/opentelemetry-cpp/archive/refs/tags/v1.4.0.tar.gz -> opentelemetry-cpp-1.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d4614d573b00a871520588092511c9ae diff --git a/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.6.0 b/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.6.0 index ede21d209f28..7554b0daeb32 100644 --- a/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.6.0 +++ b/metadata/md5-cache/dev-cpp/opentelemetry-cpp-1.6.0 @@ -12,5 +12,5 @@ RDEPEND=net-misc/curl:= dev-libs/thrift:= dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/open-telemetry/opentelemetry-cpp/archive/refs/tags/v1.6.0.tar.gz -> opentelemetry-cpp-1.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a550e140f2b2a86f10f38333b6fd30dc diff --git a/metadata/md5-cache/dev-cpp/popl-1.2.0 b/metadata/md5-cache/dev-cpp/popl-1.2.0 index 8fab4355f6f0..ae8848d6a364 100644 --- a/metadata/md5-cache/dev-cpp/popl-1.2.0 +++ b/metadata/md5-cache/dev-cpp/popl-1.2.0 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm ppc ppc64 ~riscv x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/badaix/popl/archive/v1.2.0.tar.gz -> popl-1.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8fcf6baf498d44c16bba183b9e0c3dce diff --git a/metadata/md5-cache/dev-cpp/popl-9999 b/metadata/md5-cache/dev-cpp/popl-9999 index 5e335e331fc0..8fbb2efa99ea 100644 --- a/metadata/md5-cache/dev-cpp/popl-9999 +++ b/metadata/md5-cache/dev-cpp/popl-9999 @@ -7,5 +7,5 @@ INHERIT=cmake git-r3 LICENSE=MIT PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=76fe1f20e141c55cf3992e293604903b diff --git a/metadata/md5-cache/dev-cpp/prometheus-cpp-1.0.1 b/metadata/md5-cache/dev-cpp/prometheus-cpp-1.0.1 index fe4ade8aa5c4..2c08c8c5ee3a 100644 --- a/metadata/md5-cache/dev-cpp/prometheus-cpp-1.0.1 +++ b/metadata/md5-cache/dev-cpp/prometheus-cpp-1.0.1 @@ -12,5 +12,5 @@ RDEPEND=net-misc/curl sys-libs/zlib www-servers/civetweb[cxx] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jupp0r/prometheus-cpp/archive/v1.0.1.tar.gz -> prometheus-cpp-1.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d39c627b360f11c7b1d0b2262c04c48 diff --git a/metadata/md5-cache/dev-cpp/prometheus-cpp-1.1.0 b/metadata/md5-cache/dev-cpp/prometheus-cpp-1.1.0 index 42be244a4748..f25cf3ccbce5 100644 --- a/metadata/md5-cache/dev-cpp/prometheus-cpp-1.1.0 +++ b/metadata/md5-cache/dev-cpp/prometheus-cpp-1.1.0 @@ -12,5 +12,5 @@ RDEPEND=net-misc/curl sys-libs/zlib www-servers/civetweb[cxx] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jupp0r/prometheus-cpp/archive/v1.1.0.tar.gz -> prometheus-cpp-1.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d39c627b360f11c7b1d0b2262c04c48 diff --git a/metadata/md5-cache/dev-cpp/pystring-1.1.3-r1 b/metadata/md5-cache/dev-cpp/pystring-1.1.3-r1 index a3f4710bc848..e579c98276b3 100644 --- a/metadata/md5-cache/dev-cpp/pystring-1.1.3-r1 +++ b/metadata/md5-cache/dev-cpp/pystring-1.1.3-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=mirror SLOT=0 SRC_URI=https://github.com/imageworks/pystring/archive/v1.1.3.tar.gz -> pystring-1.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3f02a15ab2948dbd994cf26429aa1325 diff --git a/metadata/md5-cache/dev-cpp/range-v3-0.12.0 b/metadata/md5-cache/dev-cpp/range-v3-0.12.0 index 5f8d3e6cf71c..aa8c788bc3a4 100644 --- a/metadata/md5-cache/dev-cpp/range-v3-0.12.0 +++ b/metadata/md5-cache/dev-cpp/range-v3-0.12.0 @@ -10,5 +10,5 @@ LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ericniebler/range-v3/archive/0.12.0.tar.gz -> range-v3-0.12.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=02b8c701725326c3e9171dfcae644754 diff --git a/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.1 b/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.1 index fd1b788bf639..328b6a4b492b 100644 --- a/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.1 +++ b/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.1 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/maxbachmann/rapidfuzz-cpp/archive/v1.10.1.tar.gz -> rapidfuzz-cpp-1.10.1.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2360b736ef35c1bc5cec31fe3d4006d3 diff --git a/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.2 b/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.2 index 2cb48af5f19c..cb2bcba58623 100644 --- a/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.2 +++ b/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.2 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/maxbachmann/rapidfuzz-cpp/archive/v1.10.2.tar.gz -> rapidfuzz-cpp-1.10.2.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2360b736ef35c1bc5cec31fe3d4006d3 diff --git a/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.4 b/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.4 index 85c0abcf02ce..45a4f2f0b964 100644 --- a/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.4 +++ b/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.10.4 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/maxbachmann/rapidfuzz-cpp/archive/v1.10.4.tar.gz -> rapidfuzz-cpp-1.10.4.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=155d65d3d4bf2282e4e389ed4022ca3b diff --git a/metadata/md5-cache/dev-cpp/rapidyaml-0.5.0 b/metadata/md5-cache/dev-cpp/rapidyaml-0.5.0 index c07c06fb31e1..be43e7bcfb18 100644 --- a/metadata/md5-cache/dev-cpp/rapidyaml-0.5.0 +++ b/metadata/md5-cache/dev-cpp/rapidyaml-0.5.0 @@ -11,5 +11,5 @@ LICENSE=MIT Boost-1.0 BSD RESTRICT=!test? ( test ) SLOT=0/0.5.0 SRC_URI=https://github.com/biojppm/rapidyaml/releases/download/v0.5.0/rapidyaml-0.5.0-src.tgz test? ( https://github.com/biojppm/c4fs/archive/0130061b804ae2af0d6cd5919275d552eb1f2414.tar.gz -> rapidyaml-c4fs-0130061b804ae2af0d6cd5919275d552eb1f2414.tar.gz https://github.com/biojppm/c4log/archive/00066ad7f624556f066f3d60766a2c33aeb3c6f0.tar.gz -> rapidyaml-c4log-00066ad7f624556f066f3d60766a2c33aeb3c6f0.tar.gz https://github.com/yaml/yaml-test-suite/archive/6e6c296ae9c9d2d5c4134b4b64d01b29ac19ff6f.tar.gz -> rapidyaml-yaml-test-suite-6e6c296ae9c9d2d5c4134b4b64d01b29ac19ff6f.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43043dc78038435c9234811e786c3bc9 diff --git a/metadata/md5-cache/dev-cpp/robin-hood-hashing-3.11.5-r1 b/metadata/md5-cache/dev-cpp/robin-hood-hashing-3.11.5-r1 index 8d8a06fe990b..39b96445e46d 100644 --- a/metadata/md5-cache/dev-cpp/robin-hood-hashing-3.11.5-r1 +++ b/metadata/md5-cache/dev-cpp/robin-hood-hashing-3.11.5-r1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/martinus/robin-hood-hashing/archive/3.11.5.tar.gz -> robin-hood-hashing-3.11.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=96f6fcd2a1580b269eb18a56ff27231c diff --git a/metadata/md5-cache/dev-cpp/robin-map-0.6.3 b/metadata/md5-cache/dev-cpp/robin-map-0.6.3 index 864f66925c96..dbe7c74758cb 100644 --- a/metadata/md5-cache/dev-cpp/robin-map-0.6.3 +++ b/metadata/md5-cache/dev-cpp/robin-map-0.6.3 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~riscv x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/Tessil/robin-map/archive/v0.6.3.tar.gz -> robin-map-0.6.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a389a91447dd32acba03d071c378ea70 diff --git a/metadata/md5-cache/dev-cpp/robin-map-9999 b/metadata/md5-cache/dev-cpp/robin-map-9999 index 3e357951a18c..cbd6d9c7b25f 100644 --- a/metadata/md5-cache/dev-cpp/robin-map-9999 +++ b/metadata/md5-cache/dev-cpp/robin-map-9999 @@ -7,5 +7,5 @@ INHERIT=cmake git-r3 LICENSE=MIT PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e37c7a3b91e68626bf606c0be0c99504 diff --git a/metadata/md5-cache/dev-cpp/sdbus-c++-0.9.0-r5 b/metadata/md5-cache/dev-cpp/sdbus-c++-0.9.0-r5 index 2f2c12fb8ed0..38bfed64db4e 100644 --- a/metadata/md5-cache/dev-cpp/sdbus-c++-0.9.0-r5 +++ b/metadata/md5-cache/dev-cpp/sdbus-c++-0.9.0-r5 @@ -12,5 +12,5 @@ RDEPEND=!systemd? ( sys-libs/libcap ) systemd? ( >=sys-apps/systemd-236:= ) tool RESTRICT=!test? ( test ) SLOT=0/0 SRC_URI=https://github.com/Kistler-Group/sdbus-cpp/archive/refs/tags/v0.9.0.tar.gz -> sdbus-c++-0.9.0.tar.gz !systemd? ( https://github.com/systemd/systemd-stable/archive/v252.6/systemd-stable-252.6.tar.gz elibc_musl? ( https://dev.gentoo.org/~floppym/distfiles/systemd-musl-patches-252.4.tar.gz https://dev.gentoo.org/~gyakovlev/distfiles/systemd-musl-patches-252.4.tar.gz https://dev.gentoo.org/~soap/distfiles/systemd-musl-patches-252.4.tar.gz ) ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=839b6d5369078d44f415fc1cfdda0763 diff --git a/metadata/md5-cache/dev-cpp/sdbus-c++-1.2.0-r1 b/metadata/md5-cache/dev-cpp/sdbus-c++-1.2.0-r1 index 073dcebeb9b5..1699b44f947e 100644 --- a/metadata/md5-cache/dev-cpp/sdbus-c++-1.2.0-r1 +++ b/metadata/md5-cache/dev-cpp/sdbus-c++-1.2.0-r1 @@ -12,5 +12,5 @@ RDEPEND=!systemd? ( sys-libs/libcap ) systemd? ( >=sys-apps/systemd-236:= ) tool RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/Kistler-Group/sdbus-cpp/archive/refs/tags/v1.2.0.tar.gz -> sdbus-c++-1.2.0.tar.gz !systemd? ( https://github.com/systemd/systemd-stable/archive/v252.6/systemd-stable-252.6.tar.gz elibc_musl? ( https://dev.gentoo.org/~floppym/distfiles/systemd-musl-patches-252.4.tar.gz https://dev.gentoo.org/~gyakovlev/distfiles/systemd-musl-patches-252.4.tar.gz https://dev.gentoo.org/~soap/distfiles/systemd-musl-patches-252.4.tar.gz ) ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fb06dfdf6cd39f728320657776a13c53 diff --git a/metadata/md5-cache/dev-cpp/sol2-3.3.0 b/metadata/md5-cache/dev-cpp/sol2-3.3.0 index b067929933d5..7af3d4947e9d 100644 --- a/metadata/md5-cache/dev-cpp/sol2-3.3.0 +++ b/metadata/md5-cache/dev-cpp/sol2-3.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-3 lua_t RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ThePhD/sol2/archive/refs/tags/v3.3.0.tar.gz -> sol2-3.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua 8f9406bfff123a92ad04e4ace3e7f89b lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua 8f9406bfff123a92ad04e4ace3e7f89b lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a6f3b74b5eade0856b445edd28437a75 diff --git a/metadata/md5-cache/dev-cpp/string-theory-3.5 b/metadata/md5-cache/dev-cpp/string-theory-3.5 index 97cccea721d4..a515e5c090f3 100644 --- a/metadata/md5-cache/dev-cpp/string-theory-3.5 +++ b/metadata/md5-cache/dev-cpp/string-theory-3.5 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/zrax/string_theory/archive/3.5.tar.gz -> string-theory-3.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1232bc65d0ae7043e488ad5acf86e77a diff --git a/metadata/md5-cache/dev-cpp/string-theory-3.6 b/metadata/md5-cache/dev-cpp/string-theory-3.6 index bfae3b4c158b..4addc350f937 100644 --- a/metadata/md5-cache/dev-cpp/string-theory-3.6 +++ b/metadata/md5-cache/dev-cpp/string-theory-3.6 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/zrax/string_theory/archive/3.6.tar.gz -> string-theory-3.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1232bc65d0ae7043e488ad5acf86e77a diff --git a/metadata/md5-cache/dev-cpp/taskflow-3.3.0 b/metadata/md5-cache/dev-cpp/taskflow-3.3.0 index cec1a8184df6..354e143260c6 100644 --- a/metadata/md5-cache/dev-cpp/taskflow-3.3.0 +++ b/metadata/md5-cache/dev-cpp/taskflow-3.3.0 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/taskflow/taskflow/archive/v3.3.0.tar.gz -> taskflow-3.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=725a59a6daf6c50672f50d8cedf8750b diff --git a/metadata/md5-cache/dev-cpp/taskflow-3.4.0 b/metadata/md5-cache/dev-cpp/taskflow-3.4.0 index 28ef619b44a4..ab09191b0194 100644 --- a/metadata/md5-cache/dev-cpp/taskflow-3.4.0 +++ b/metadata/md5-cache/dev-cpp/taskflow-3.4.0 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/taskflow/taskflow/archive/v3.4.0.tar.gz -> taskflow-3.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d5d192dea943fdff83c3264e980ce161 diff --git a/metadata/md5-cache/dev-cpp/taskflow-9999 b/metadata/md5-cache/dev-cpp/taskflow-9999 index bf1cbd32dbe8..9c3edd1cec7c 100644 --- a/metadata/md5-cache/dev-cpp/taskflow-9999 +++ b/metadata/md5-cache/dev-cpp/taskflow-9999 @@ -10,5 +10,5 @@ LICENSE=MIT PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=157ce07494170606f42f0e8a7ddc1521 diff --git a/metadata/md5-cache/dev-cpp/tbb-2021.5.0-r1 b/metadata/md5-cache/dev-cpp/tbb-2021.5.0-r1 index 3191c8818c0c..56e724ea4404 100644 --- a/metadata/md5-cache/dev-cpp/tbb-2021.5.0-r1 +++ b/metadata/md5-cache/dev-cpp/tbb-2021.5.0-r1 @@ -12,5 +12,5 @@ RDEPEND=!kernel_Darwin? ( sys-apps/hwloc:= ) RESTRICT=!test? ( test ) SLOT=0/12.5-2.5-3.5 SRC_URI=https://github.com/oneapi-src/oneTBB/archive/refs/tags/v2021.5.0.tar.gz -> tbb-2021.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=74f80dcf278fdc42df207a77b204ca11 diff --git a/metadata/md5-cache/dev-cpp/tbb-2021.7.0 b/metadata/md5-cache/dev-cpp/tbb-2021.7.0 index c61ee553f20b..cdc4f953956f 100644 --- a/metadata/md5-cache/dev-cpp/tbb-2021.7.0 +++ b/metadata/md5-cache/dev-cpp/tbb-2021.7.0 @@ -12,5 +12,5 @@ RDEPEND=!kernel_Darwin? ( sys-apps/hwloc:= ) RESTRICT=!test? ( test ) SLOT=0/12.5-2.5-3.5 SRC_URI=https://github.com/oneapi-src/oneTBB/archive/refs/tags/v2021.7.0.tar.gz -> tbb-2021.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=620d3effd27fbfb5292f0b41c9a9afef diff --git a/metadata/md5-cache/dev-cpp/tbb-2021.7.0-r1 b/metadata/md5-cache/dev-cpp/tbb-2021.7.0-r1 index f1878fb725e0..b236da445525 100644 --- a/metadata/md5-cache/dev-cpp/tbb-2021.7.0-r1 +++ b/metadata/md5-cache/dev-cpp/tbb-2021.7.0-r1 @@ -12,5 +12,5 @@ RDEPEND=!kernel_Darwin? ( sys-apps/hwloc:= ) RESTRICT=!test? ( test ) SLOT=0/12.5-2.5-3.5 SRC_URI=https://github.com/oneapi-src/oneTBB/archive/refs/tags/v2021.7.0.tar.gz -> tbb-2021.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f5dc01dc378b43a69e97208361623f38 diff --git a/metadata/md5-cache/dev-cpp/tbb-2021.8.0 b/metadata/md5-cache/dev-cpp/tbb-2021.8.0 index 5ef3aaa9719c..6f4d4061ff5f 100644 --- a/metadata/md5-cache/dev-cpp/tbb-2021.8.0 +++ b/metadata/md5-cache/dev-cpp/tbb-2021.8.0 @@ -12,5 +12,5 @@ RDEPEND=!kernel_Darwin? ( sys-apps/hwloc:= ) RESTRICT=!test? ( test ) SLOT=0/12.5-2.5-3.5 SRC_URI=https://github.com/oneapi-src/oneTBB/archive/refs/tags/v2021.8.0.tar.gz -> tbb-2021.8.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a26d96a3e43da5cddf2453866e1d1d6 diff --git a/metadata/md5-cache/dev-cpp/termcolor-2.1.0 b/metadata/md5-cache/dev-cpp/termcolor-2.1.0 index bbc18eda19ac..deba093de141 100644 --- a/metadata/md5-cache/dev-cpp/termcolor-2.1.0 +++ b/metadata/md5-cache/dev-cpp/termcolor-2.1.0 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://github.com/ikalnytskyi/termcolor/archive/v2.1.0.tar.gz -> termcolor-2.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2015d4213b42f655699acd7ead9b1e97 diff --git a/metadata/md5-cache/dev-cpp/valijson-0.7 b/metadata/md5-cache/dev-cpp/valijson-0.7 index 7d2ca4c8729a..6c3f47093ce8 100644 --- a/metadata/md5-cache/dev-cpp/valijson-0.7 +++ b/metadata/md5-cache/dev-cpp/valijson-0.7 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/tristanpenman/valijson/archive/v0.7.tar.gz -> valijson-0.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=267b4632b6071a383f4c40144f541094 diff --git a/metadata/md5-cache/dev-cpp/valijson-1.0 b/metadata/md5-cache/dev-cpp/valijson-1.0 index a6cb10fc49b8..f69a7ad9f64a 100644 --- a/metadata/md5-cache/dev-cpp/valijson-1.0 +++ b/metadata/md5-cache/dev-cpp/valijson-1.0 @@ -9,5 +9,5 @@ LICENSE=BSD-2 Boost-1.0 RESTRICT=test SLOT=0 SRC_URI=https://github.com/tristanpenman/valijson/archive/v1.0.tar.gz -> valijson-1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5a3818087660299d450ae8c590392b6a diff --git a/metadata/md5-cache/dev-cpp/waylandpp-1.0.0 b/metadata/md5-cache/dev-cpp/waylandpp-1.0.0 index dde1d9b0ce83..116fa16279dc 100644 --- a/metadata/md5-cache/dev-cpp/waylandpp-1.0.0 +++ b/metadata/md5-cache/dev-cpp/waylandpp-1.0.0 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=>=dev-libs/wayland-1.11.0 media-libs/mesa[wayland] >=dev-libs/pugixml-1.9-r1 SLOT=0/1.0 SRC_URI=https://github.com/NilsBrause/waylandpp/archive/1.0.0.tar.gz -> waylandpp-1.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57b24367a13eb72f2218deef5b9d4210 diff --git a/metadata/md5-cache/dev-cpp/waylandpp-1.0.0-r1 b/metadata/md5-cache/dev-cpp/waylandpp-1.0.0-r1 index 9a4f684f0180..110d23294617 100644 --- a/metadata/md5-cache/dev-cpp/waylandpp-1.0.0-r1 +++ b/metadata/md5-cache/dev-cpp/waylandpp-1.0.0-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=>=dev-libs/wayland-1.11.0 media-libs/mesa[wayland] >=dev-libs/pugixml-1.9-r1 SLOT=0/1.0 SRC_URI=https://github.com/NilsBrause/waylandpp/archive/1.0.0.tar.gz -> waylandpp-1.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ce5b4bb236a4a32320b7bcba03d5edcf diff --git a/metadata/md5-cache/dev-cpp/waylandpp-9999 b/metadata/md5-cache/dev-cpp/waylandpp-9999 index ef6c9cdcedf4..c7dee629b2a4 100644 --- a/metadata/md5-cache/dev-cpp/waylandpp-9999 +++ b/metadata/md5-cache/dev-cpp/waylandpp-9999 @@ -10,5 +10,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=>=dev-libs/wayland-1.11.0 media-libs/mesa[wayland] >=dev-libs/pugixml-1.9-r1 SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=03a0a1c9afc2e69440b94bd1a14a6dc2 diff --git a/metadata/md5-cache/dev-cpp/websocketpp-0.8.2 b/metadata/md5-cache/dev-cpp/websocketpp-0.8.2 index 8f3436137f79..1ce2fb03d11b 100644 --- a/metadata/md5-cache/dev-cpp/websocketpp-0.8.2 +++ b/metadata/md5-cache/dev-cpp/websocketpp-0.8.2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/zaphoyd/websocketpp/archive/0.8.2.tar.gz -> websocketpp-0.8.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d5eb54e4b6d5549bdd10e15bdf80d5b7 diff --git a/metadata/md5-cache/dev-cpp/yaml-cpp-0.7.0-r2 b/metadata/md5-cache/dev-cpp/yaml-cpp-0.7.0-r2 index fef6505396db..5aa71d05561a 100644 --- a/metadata/md5-cache/dev-cpp/yaml-cpp-0.7.0-r2 +++ b/metadata/md5-cache/dev-cpp/yaml-cpp-0.7.0-r2 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/0.7 SRC_URI=https://github.com/jbeder/yaml-cpp/archive/yaml-cpp-0.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c39550b989366c72b50a8479c94f01d7 diff --git a/metadata/md5-cache/dev-db/Manifest.gz b/metadata/md5-cache/dev-db/Manifest.gz index 89c22db73f62..4c02ad6314c1 100644 Binary files a/metadata/md5-cache/dev-db/Manifest.gz and b/metadata/md5-cache/dev-db/Manifest.gz differ diff --git a/metadata/md5-cache/dev-db/kdb-3.2.0-r2 b/metadata/md5-cache/dev-db/kdb-3.2.0-r2 index aa7176ba8403..1f4b23bfb36f 100644 --- a/metadata/md5-cache/dev-db/kdb-3.2.0-r2 +++ b/metadata/md5-cache/dev-db/kdb-3.2.0-r2 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/icu:= >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtnetwork-5.15.2:5 >=dev RESTRICT=!test? ( test ) SLOT=5/4 SRC_URI=mirror://kde/stable/kdb/src/kdb-3.2.0.tar.xz https://dev.gentoo.org/~asturm/distfiles/kdb-3.2.0-patches.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa777234fbad2bf7bad7a9c79ad0f2ec diff --git a/metadata/md5-cache/dev-db/mariadb-10.11.1 b/metadata/md5-cache/dev-db/mariadb-10.11.1-r2 similarity index 52% rename from metadata/md5-cache/dev-db/mariadb-10.11.1 rename to metadata/md5-cache/dev-db/mariadb-10.11.1-r2 index f8be1fdb5d0d..08b3023d8000 100644 --- a/metadata/md5-cache/dev-db/mariadb-10.11.1 +++ b/metadata/md5-cache/dev-db/mariadb-10.11.1-r2 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack -DEPEND=dev-libs/libfmt:= >=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=dev-libs/libfmt:= >=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=An enhanced, drop-in replacement for MySQL EAPI=8 HOMEPAGE=https://mariadb.org/ @@ -8,10 +8,10 @@ INHERIT=systemd flag-o-matic prefix toolchain-funcs multiprocessing java-pkg-opt IUSE=+backup bindist columnstore cracklib debug extraengine galera innodb-lz4 innodb-lzo innodb-snappy jdbc jemalloc kerberos latin1 mroonga numa odbc oqgraph pam +perl profiling rocksdb selinux +server sphinx sst-rsync sst-mariabackup static systemd systemtap s3 tcmalloc test xml yassl jdbc LICENSE=GPL-2 LGPL-2.1+ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) -RDEPEND=dev-libs/libfmt:= >=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/percona-server !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.5 !dev-db/mariadb:10.6 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !dev-db/mariadb:10.9 !dev-db/mariadb:10.10 !dev-db/mariadb:11.0 selinux? ( sec-policy/selinux-mysql ) server? ( columnstore? ( dev-db/mariadb-connector-c ) extraengine? ( jdbc? ( >=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=dev-libs/libfmt:= >=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/percona-server !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.5 !dev-db/mariadb:10.6 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !dev-db/mariadb:10.9 !dev-db/mariadb:10.10 !dev-db/mariadb:11.0 selinux? ( sec-policy/selinux-mysql ) server? ( columnstore? ( dev-db/mariadb-connector-c ) extraengine? ( jdbc? ( >=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=jdbc? ( extraengine server !static ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) RESTRICT=!bindist? ( bindist ) !test? ( test ) SLOT=10.11/18 SRC_URI=mirror://mariadb/mariadb-10.11.1/source/mariadb-10.11.1.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.11.1-patches-01.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=1aa63fa020d38a0ec106784a340eb482 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=9dc53b2bcdf1b0043068343f3777a997 diff --git a/metadata/md5-cache/dev-db/mariadb-10.4.26 b/metadata/md5-cache/dev-db/mariadb-10.4.26-r1 similarity index 77% rename from metadata/md5-cache/dev-db/mariadb-10.4.26 rename to metadata/md5-cache/dev-db/mariadb-10.4.26-r1 index 7834ad8dc228..555732e212f2 100644 --- a/metadata/md5-cache/dev-db/mariadb-10.4.26 +++ b/metadata/md5-cache/dev-db/mariadb-10.4.26-r1 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack -DEPEND=static? ( sys-libs/ncurses[static-libs] ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) >=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) sys-libs/ncurses:0= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=static? ( sys-libs/ncurses[static-libs] ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) >=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) sys-libs/ncurses:0= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy:= ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= jdbc? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=An enhanced, drop-in replacement for MySQL EAPI=7 HOMEPAGE=https://mariadb.org/ @@ -9,10 +9,10 @@ IUSE=+backup bindist cracklib debug extraengine galera innodb-lz4 innodb-lzo inn KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1+ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) -RDEPEND=selinux? ( sec-policy/selinux-mysql ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.5 !dev-db/mariadb:10.6 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) sys-libs/ncurses:0= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= server? ( galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) extraengine? ( jdbc? ( >=virtual/jre-1.8 ) ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=selinux? ( sec-policy/selinux-mysql ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.5 !dev-db/mariadb:10.6 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) sys-libs/ncurses:0= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy:= ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= server? ( galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) extraengine? ( jdbc? ( >=virtual/jre-1.8 ) ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=jdbc? ( extraengine server !static ) server? ( tokudb? ( jemalloc !tcmalloc ) ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) test? ( extraengine perl server xml ) RESTRICT=!bindist? ( bindist ) !test? ( test ) SLOT=10.4/18 SRC_URI=mirror://mariadb/mariadb-10.4.26/source/mariadb-10.4.26.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.4.26-patches-01.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=8fc9809289ed023dd2df295a7519691f +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=68afb7d2c617b7a6a4ed00da7bafb85d diff --git a/metadata/md5-cache/dev-db/mariadb-10.4.27 b/metadata/md5-cache/dev-db/mariadb-10.4.27-r1 similarity index 76% rename from metadata/md5-cache/dev-db/mariadb-10.4.27 rename to metadata/md5-cache/dev-db/mariadb-10.4.27-r1 index e5d76ad2303a..d58b333c8199 100644 --- a/metadata/md5-cache/dev-db/mariadb-10.4.27 +++ b/metadata/md5-cache/dev-db/mariadb-10.4.27-r1 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack -DEPEND=static? ( sys-libs/ncurses[static-libs] ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) >=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=static? ( sys-libs/ncurses[static-libs] ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) >=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy:= ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= jdbc? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=An enhanced, drop-in replacement for MySQL EAPI=7 HOMEPAGE=https://mariadb.org/ @@ -9,10 +9,10 @@ IUSE=+backup bindist cracklib debug extraengine galera innodb-lz4 innodb-lzo inn KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1+ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) -RDEPEND=selinux? ( sec-policy/selinux-mysql ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.5 !dev-db/mariadb:10.6 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= server? ( galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) extraengine? ( jdbc? ( >=virtual/jre-1.8 ) ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=selinux? ( sec-policy/selinux-mysql ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.5 !dev-db/mariadb:10.6 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy:= ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= server? ( galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) extraengine? ( jdbc? ( >=virtual/jre-1.8 ) ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=jdbc? ( extraengine server !static ) server? ( tokudb? ( jemalloc !tcmalloc ) ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) test? ( extraengine perl server xml ) RESTRICT=!bindist? ( bindist ) !test? ( test ) SLOT=10.4/18 SRC_URI=mirror://mariadb/mariadb-10.4.27/source/mariadb-10.4.27.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.4.26-patches-01.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=10e692466e178bf19eb683f3357ebafa +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=469287c50c0752d834ff25764156c17a diff --git a/metadata/md5-cache/dev-db/mariadb-10.4.28 b/metadata/md5-cache/dev-db/mariadb-10.4.28-r1 similarity index 76% rename from metadata/md5-cache/dev-db/mariadb-10.4.28 rename to metadata/md5-cache/dev-db/mariadb-10.4.28-r1 index 1eae00e2141c..e163c997ca69 100644 --- a/metadata/md5-cache/dev-db/mariadb-10.4.28 +++ b/metadata/md5-cache/dev-db/mariadb-10.4.28-r1 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack -DEPEND=static? ( sys-libs/ncurses[static-libs] ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) >=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=static? ( sys-libs/ncurses[static-libs] ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) >=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy:= ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= jdbc? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=An enhanced, drop-in replacement for MySQL EAPI=8 HOMEPAGE=https://mariadb.org/ @@ -9,10 +9,10 @@ IUSE=+backup bindist cracklib debug extraengine galera innodb-lz4 innodb-lzo inn KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1+ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) -RDEPEND=selinux? ( sec-policy/selinux-mysql ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.5 !dev-db/mariadb:10.6 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !dev-db/mariadb:10.9 !dev-db/mariadb:10.10 !dev-db/mariadb:10.11 !dev-db/mariadb:11.0 !=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= server? ( galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) extraengine? ( jdbc? ( >=virtual/jre-1.8 ) ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=selinux? ( sec-policy/selinux-mysql ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.5 !dev-db/mariadb:10.6 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !dev-db/mariadb:10.9 !dev-db/mariadb:10.10 !dev-db/mariadb:10.11 !dev-db/mariadb:11.0 !=sys-apps/texinfo-4.7-r1 jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) >=sys-libs/zlib-1.2.3:0= kerberos? ( virtual/krb5 ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =sys-libs/readline-4.1:0= ) server? ( backup? ( app-arch/libarchive:0= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) systemd? ( sys-apps/systemd:= ) tokudb? ( app-arch/snappy:= ) ) >=dev-libs/libpcre-8.41-r1:3= virtual/libcrypt:= server? ( galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) extraengine? ( jdbc? ( >=virtual/jre-1.8 ) ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=jdbc? ( extraengine server !static ) server? ( tokudb? ( jemalloc !tcmalloc ) ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) RESTRICT=!bindist? ( bindist ) !test? ( test ) SLOT=10.4/18 SRC_URI=mirror://mariadb/mariadb-10.4.28/source/mariadb-10.4.28.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.4.26-patches-01.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=1800ee67151af4f830da26c406b29afc +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=a2ae9a84dcb7a8a4fe76384ba10d8d77 diff --git a/metadata/md5-cache/dev-db/mariadb-10.5.17 b/metadata/md5-cache/dev-db/mariadb-10.5.17-r1 similarity index 52% rename from metadata/md5-cache/dev-db/mariadb-10.5.17 rename to metadata/md5-cache/dev-db/mariadb-10.5.17-r1 index 61209e544d8a..1c2983886ae5 100644 --- a/metadata/md5-cache/dev-db/mariadb-10.5.17 +++ b/metadata/md5-cache/dev-db/mariadb-10.5.17-r1 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack -DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=An enhanced, drop-in replacement for MySQL EAPI=7 HOMEPAGE=https://mariadb.org/ @@ -9,10 +9,10 @@ IUSE=+backup bindist columnstore cracklib debug extraengine galera innodb-lz4 in KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1+ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) -RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.6 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.6 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=jdbc? ( extraengine server !static ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) test? ( extraengine perl server xml ) RESTRICT=!bindist? ( bindist ) !test? ( test ) SLOT=10.5/18 SRC_URI=mirror://mariadb/mariadb-10.5.17/source/mariadb-10.5.17.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.5.17-patches-01.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=7ae2663b901d4c078febe4b4bc02d470 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=f96008b13d9e7c6ca72b8b4108785ef9 diff --git a/metadata/md5-cache/dev-db/mariadb-10.5.18 b/metadata/md5-cache/dev-db/mariadb-10.5.18-r1 similarity index 53% rename from metadata/md5-cache/dev-db/mariadb-10.5.18 rename to metadata/md5-cache/dev-db/mariadb-10.5.18-r1 index e917fa97aa52..4a8531be310c 100644 --- a/metadata/md5-cache/dev-db/mariadb-10.5.18 +++ b/metadata/md5-cache/dev-db/mariadb-10.5.18-r1 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack -DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=An enhanced, drop-in replacement for MySQL EAPI=7 HOMEPAGE=https://mariadb.org/ @@ -9,10 +9,10 @@ IUSE=+backup bindist columnstore cracklib debug extraengine galera innodb-lz4 in KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1+ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) -RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=jdbc? ( extraengine server !static ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) test? ( extraengine perl server xml ) RESTRICT=!bindist? ( bindist ) !test? ( test ) SLOT=10.5/18 SRC_URI=mirror://mariadb/mariadb-10.5.18/source/mariadb-10.5.18.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.5.17-patches-01.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=0b4fda506a983f0fde9a826e9c14e7fc +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=438ebaa018612220755a18fc49331274 diff --git a/metadata/md5-cache/dev-db/mariadb-10.5.19 b/metadata/md5-cache/dev-db/mariadb-10.5.19-r1 similarity index 50% rename from metadata/md5-cache/dev-db/mariadb-10.5.19 rename to metadata/md5-cache/dev-db/mariadb-10.5.19-r1 index 41da8b86af2c..517814745525 100644 --- a/metadata/md5-cache/dev-db/mariadb-10.5.19 +++ b/metadata/md5-cache/dev-db/mariadb-10.5.19-r1 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack -DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=An enhanced, drop-in replacement for MySQL EAPI=8 HOMEPAGE=https://mariadb.org/ @@ -9,10 +9,10 @@ IUSE=+backup bindist columnstore cracklib debug extraengine galera innodb-lz4 in KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1+ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) -RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( =virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=jdbc? ( extraengine server !static ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) RESTRICT=!bindist? ( bindist ) !test? ( test ) SLOT=10.5/18 SRC_URI=mirror://mariadb/mariadb-10.5.19/source/mariadb-10.5.19.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.5.19-patches-01.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=c0873c9f681c92e2563707bf2da258aa +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=3c3c7e232a5c03a9b9214f2c4b428cf7 diff --git a/metadata/md5-cache/dev-db/mariadb-10.6.10 b/metadata/md5-cache/dev-db/mariadb-10.6.10-r2 similarity index 52% rename from metadata/md5-cache/dev-db/mariadb-10.6.10 rename to metadata/md5-cache/dev-db/mariadb-10.6.10-r2 index fe90d1d306a9..33b25ee96c2b 100644 --- a/metadata/md5-cache/dev-db/mariadb-10.6.10 +++ b/metadata/md5-cache/dev-db/mariadb-10.6.10-r2 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack -DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=An enhanced, drop-in replacement for MySQL EAPI=7 HOMEPAGE=https://mariadb.org/ @@ -9,10 +9,10 @@ IUSE=+backup bindist columnstore cracklib debug extraengine galera innodb-lz4 in KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1+ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) -RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.5 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.5 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=jdbc? ( extraengine server !static ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) test? ( extraengine perl server xml ) RESTRICT=!bindist? ( bindist ) !test? ( test ) SLOT=10.6/18 SRC_URI=mirror://mariadb/mariadb-10.6.10/source/mariadb-10.6.10.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.6.10-patches-01.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=f6a88cae94d9e4d2cb8cc54e37a65b7b +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=c423f50c6a3b5d36edd852fc4e52a769 diff --git a/metadata/md5-cache/dev-db/mariadb-10.6.11 b/metadata/md5-cache/dev-db/mariadb-10.6.11 index 33df82b68bc8..55986798a917 100644 --- a/metadata/md5-cache/dev-db/mariadb-10.6.11 +++ b/metadata/md5-cache/dev-db/mariadb-10.6.11 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack -DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=An enhanced, drop-in replacement for MySQL EAPI=7 HOMEPAGE=https://mariadb.org/ @@ -9,10 +9,10 @@ IUSE=+backup bindist columnstore cracklib debug extraengine galera innodb-lz4 in KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1+ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) -RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.5 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.5 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=jdbc? ( extraengine server !static ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) test? ( extraengine perl server xml ) RESTRICT=!bindist? ( bindist ) !test? ( test ) SLOT=10.6/18 SRC_URI=mirror://mariadb/mariadb-10.6.11/source/mariadb-10.6.11.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.6.10-patches-01.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=d05953913c08703bb5a65fa13f033611 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=9a8a06261341608e1bced68c1a3d2193 diff --git a/metadata/md5-cache/dev-db/mariadb-10.6.11-r1 b/metadata/md5-cache/dev-db/mariadb-10.6.11-r3 similarity index 50% rename from metadata/md5-cache/dev-db/mariadb-10.6.11-r1 rename to metadata/md5-cache/dev-db/mariadb-10.6.11-r3 index e84f2ca79101..1a237ad3c69c 100644 --- a/metadata/md5-cache/dev-db/mariadb-10.6.11-r1 +++ b/metadata/md5-cache/dev-db/mariadb-10.6.11-r3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack -DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=An enhanced, drop-in replacement for MySQL EAPI=8 HOMEPAGE=https://mariadb.org/ @@ -9,10 +9,10 @@ IUSE=+backup bindist columnstore cracklib debug extraengine galera innodb-lz4 in KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1+ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) -RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.5 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.5 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=jdbc? ( extraengine server !static ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) test? ( extraengine perl server xml ) RESTRICT=!bindist? ( bindist ) !test? ( test ) SLOT=10.6/18 SRC_URI=mirror://mariadb/mariadb-10.6.11/source/mariadb-10.6.11.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.6.10-patches-01.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=67d3f4caab3fabea358e9051ecead4eb +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=f66a5fb34c5e03920483d5326764573a diff --git a/metadata/md5-cache/dev-db/mariadb-10.6.12 b/metadata/md5-cache/dev-db/mariadb-10.6.12 deleted file mode 100644 index cb41f0387985..000000000000 --- a/metadata/md5-cache/dev-db/mariadb-10.6.12 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack -DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=An enhanced, drop-in replacement for MySQL -EAPI=8 -HOMEPAGE=https://mariadb.org/ -INHERIT=systemd flag-o-matic prefix toolchain-funcs multiprocessing java-pkg-opt-2 cmake -IUSE=+backup bindist columnstore cracklib debug extraengine galera innodb-lz4 innodb-lzo innodb-snappy jdbc jemalloc kerberos latin1 mroonga numa odbc oqgraph pam +perl profiling rocksdb selinux +server sphinx sst-rsync sst-mariabackup static systemd systemtap s3 tcmalloc test xml yassl jdbc -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris -LICENSE=GPL-2 LGPL-2.1+ -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) -RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.5 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !dev-db/mariadb:10.9 !dev-db/mariadb:10.10 !dev-db/mariadb:10.11 !dev-db/mariadb:11.0 !=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) -REQUIRED_USE=jdbc? ( extraengine server !static ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) -RESTRICT=!bindist? ( bindist ) !test? ( test ) -SLOT=10.6/18 -SRC_URI=mirror://mariadb/mariadb-10.6.12/source/mariadb-10.6.12.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.6.12-patches-01.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=6ca5dcf45c47c4c6c8f5a111ebe5796a diff --git a/metadata/md5-cache/dev-db/mariadb-10.6.12-r1 b/metadata/md5-cache/dev-db/mariadb-10.6.12-r1 new file mode 100644 index 000000000000..0e4af21d5045 --- /dev/null +++ b/metadata/md5-cache/dev-db/mariadb-10.6.12-r1 @@ -0,0 +1,18 @@ +BDEPEND=app-alternatives/yacc virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack +DEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.8 ) ) test? ( acct-group/mysql acct-user/mysql ) ) static? ( sys-libs/ncurses[static-libs] ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +DESCRIPTION=An enhanced, drop-in replacement for MySQL +EAPI=8 +HOMEPAGE=https://mariadb.org/ +INHERIT=systemd flag-o-matic prefix toolchain-funcs multiprocessing java-pkg-opt-2 cmake +IUSE=+backup bindist columnstore cracklib debug extraengine galera innodb-lz4 innodb-lzo innodb-snappy jdbc jemalloc kerberos latin1 mroonga numa odbc oqgraph pam +perl profiling rocksdb selinux +server sphinx sst-rsync sst-mariabackup static systemd systemtap s3 tcmalloc test xml yassl jdbc +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris +LICENSE=GPL-2 LGPL-2.1+ +PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) +RDEPEND=>=dev-libs/libpcre2-10.34:= >=sys-apps/texinfo-4.7-r1 sys-libs/ncurses:0= >=sys-libs/zlib-1.2.3:0= virtual/libcrypt:= !bindist? ( sys-libs/binutils-libs:0= >=sys-libs/readline-4.1:0= ) jemalloc? ( dev-libs/jemalloc:0= ) kerberos? ( virtual/krb5 ) kernel_linux? ( dev-libs/libaio:0= sys-libs/liburing:= sys-process/procps:0= ) server? ( app-arch/bzip2 app-arch/xz-utils backup? ( app-arch/libarchive:0= ) columnstore? ( app-arch/snappy:= dev-libs/boost:= dev-libs/libxml2:2= ) cracklib? ( sys-libs/cracklib:0= ) extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) innodb-lz4? ( app-arch/lz4 ) innodb-lzo? ( dev-libs/lzo ) innodb-snappy? ( app-arch/snappy:= ) mroonga? ( app-text/groonga-normalizer-mysql >=app-text/groonga-7.0.4 ) numa? ( sys-process/numactl ) oqgraph? ( dev-libs/boost:= dev-libs/judy:0= ) pam? ( sys-libs/pam:0= ) s3? ( net-misc/curl ) systemd? ( sys-apps/systemd:= ) ) systemtap? ( >=dev-util/systemtap-1.3:0= ) tcmalloc? ( dev-util/google-perftools:0= ) yassl? ( net-libs/gnutls:0= ) !yassl? ( >=dev-libs/openssl-1.0.0:0= ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !dev-db/mariadb:0 !dev-db/mariadb:5.5 !dev-db/mariadb:10.1 !dev-db/mariadb:10.2 !dev-db/mariadb:10.3 !dev-db/mariadb:10.4 !dev-db/mariadb:10.5 !dev-db/mariadb:10.7 !dev-db/mariadb:10.8 !dev-db/mariadb:10.9 !dev-db/mariadb:10.10 !dev-db/mariadb:10.11 !dev-db/mariadb:11.0 !=virtual/jre-1.8 ) ) galera? ( sys-apps/iproute2 =sys-cluster/galera-26* sst-rsync? ( sys-process/lsof ) sst-mariabackup? ( net-misc/socat[ssl] ) ) !prefix? ( dev-db/mysql-init-scripts acct-group/mysql acct-user/mysql ) ) jdbc? ( >=dev-java/java-config-2.2.0-r3 ) +REQUIRED_USE=jdbc? ( extraengine server !static ) ?? ( tcmalloc jemalloc ) static? ( yassl !pam ) +RESTRICT=!bindist? ( bindist ) !test? ( test ) +SLOT=10.6/18 +SRC_URI=mirror://mariadb/mariadb-10.6.12/source/mariadb-10.6.12.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/mariadb/mariadb-10.6.12-patches-01.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=f8932d593e3586939c4275b8550f2f88 diff --git a/metadata/md5-cache/dev-db/mariadb-connector-c-3.1.13 b/metadata/md5-cache/dev-db/mariadb-connector-c-3.1.13 index b1243059bfca..462b5d61a6ed 100644 --- a/metadata/md5-cache/dev-db/mariadb-connector-c-3.1.13 +++ b/metadata/md5-cache/dev-db/mariadb-connector-c-3.1.13 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=https://downloads.mariadb.org/f/connector-c-3.1.13/mariadb-connector-c-3.1.13-src.tar.gz?serve -> mariadb-connector-c-3.1.13-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cd43504bf3d59fc1c96282ccb84606e2 diff --git a/metadata/md5-cache/dev-db/mariadb-connector-c-3.2.5 b/metadata/md5-cache/dev-db/mariadb-connector-c-3.2.5 index 9c32b53ddc4c..9b0c06dfedd6 100644 --- a/metadata/md5-cache/dev-db/mariadb-connector-c-3.2.5 +++ b/metadata/md5-cache/dev-db/mariadb-connector-c-3.2.5 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=https://downloads.mariadb.com/Connectors/c/connector-c-3.2.5/mariadb-connector-c-3.2.5-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1baef328667b75977f0996ab05ac8dc0 diff --git a/metadata/md5-cache/dev-db/mariadb-connector-c-3.2.7 b/metadata/md5-cache/dev-db/mariadb-connector-c-3.2.7 index d869572413ec..26e522d1834f 100644 --- a/metadata/md5-cache/dev-db/mariadb-connector-c-3.2.7 +++ b/metadata/md5-cache/dev-db/mariadb-connector-c-3.2.7 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=https://downloads.mariadb.com/Connectors/c/connector-c-3.2.7/mariadb-connector-c-3.2.7-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7bfbd17f0af30466bb9794c450b77a84 diff --git a/metadata/md5-cache/dev-db/mariadb-connector-c-9999 b/metadata/md5-cache/dev-db/mariadb-connector-c-9999 index 1df61fb5c907..2b1d48a8eca0 100644 --- a/metadata/md5-cache/dev-db/mariadb-connector-c-9999 +++ b/metadata/md5-cache/dev-db/mariadb-connector-c-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=sys-libs/zlib:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/libiconv:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] curl? ( net-misc/curl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( || ( app-crypt/mit-krb5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] app-crypt/heimdal[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) ssl? ( gnutls? ( >=net-libs/gnutls-3.3.24:=[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? ( dev-libs/openssl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) RESTRICT=!test? ( test ) SLOT=0/3 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5433331abd22ed2b7a58d74f060047cb diff --git a/metadata/md5-cache/dev-db/mariadb-connector-odbc-3.1.14 b/metadata/md5-cache/dev-db/mariadb-connector-odbc-3.1.14 index f157ef2bb08d..f90c864b4fc0 100644 --- a/metadata/md5-cache/dev-db/mariadb-connector-odbc-3.1.14 +++ b/metadata/md5-cache/dev-db/mariadb-connector-odbc-3.1.14 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND==dev-db/mariadb-connector-c-3.1*:=[ssl?] dev-db/unixODBC SLOT=0/3.1 SRC_URI=mirror://mariadb/connector-odbc-3.1.14/mariadb-connector-odbc-3.1.14-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ec24349064cc495c50cd85b53d749641 diff --git a/metadata/md5-cache/dev-db/mydumper-0.12.5.3 b/metadata/md5-cache/dev-db/mydumper-0.12.5.3 index 613cccf5c373..4f8ae4c89246 100644 --- a/metadata/md5-cache/dev-db/mydumper-0.12.5.3 +++ b/metadata/md5-cache/dev-db/mydumper-0.12.5.3 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=app-arch/zstd dev-db/mysql-connector-c:= dev-libs/glib:2 dev-libs/libpcre dev-libs/openssl:= sys-libs/zlib:= SLOT=0 SRC_URI=https://github.com/maxbube/mydumper/archive/v0.12.5-3.tar.gz -> mydumper-0.12.5-3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bde9ae9c1620d61441fa6e261425598b diff --git a/metadata/md5-cache/dev-db/mydumper-0.12.7.3 b/metadata/md5-cache/dev-db/mydumper-0.12.7.3 index 4fa9adaa4bfe..c170be65c865 100644 --- a/metadata/md5-cache/dev-db/mydumper-0.12.7.3 +++ b/metadata/md5-cache/dev-db/mydumper-0.12.7.3 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=app-arch/zstd dev-db/mysql-connector-c:= dev-libs/glib:2 dev-libs/libpcre dev-libs/openssl:= sys-libs/zlib:= SLOT=0 SRC_URI=https://github.com/maxbube/mydumper/archive/v0.12.7-3.tar.gz -> mydumper-0.12.7-3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ff506b56d84a18840d5cb5002d548c77 diff --git a/metadata/md5-cache/dev-db/mydumper-0.13.1.2 b/metadata/md5-cache/dev-db/mydumper-0.13.1.2 index 25cb47931625..61bb703f153f 100644 --- a/metadata/md5-cache/dev-db/mydumper-0.13.1.2 +++ b/metadata/md5-cache/dev-db/mydumper-0.13.1.2 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=app-arch/zstd dev-db/mysql-connector-c:= dev-libs/glib:2 dev-libs/libpcre dev-libs/openssl:= sys-libs/zlib:= SLOT=0 SRC_URI=https://github.com/maxbube/mydumper/archive/v0.13.1-2.tar.gz -> mydumper-0.13.1-2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b67e534a6afb150239f0b2aa50d95396 diff --git a/metadata/md5-cache/dev-db/myodbc-8.0.27-r1 b/metadata/md5-cache/dev-db/myodbc-8.0.27-r1 index 44fe80385b7c..27b5133a1c4f 100644 --- a/metadata/md5-cache/dev-db/myodbc-8.0.27-r1 +++ b/metadata/md5-cache/dev-db/myodbc-8.0.27-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-db/unixODBC[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-db/mysql-connector-c-8.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(-)?] SLOT=8.0 SRC_URI=https://dev.mysql.com/get/Downloads/Connector-ODBC/8.0/mysql-connector-odbc-8.0.27-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=04c142cd81dec138e648368ddaba0cf1 diff --git a/metadata/md5-cache/dev-db/mysql-5.7.36-r1 b/metadata/md5-cache/dev-db/mysql-5.7.36-r1 index db0459ead674..f82b20176d20 100644 --- a/metadata/md5-cache/dev-db/mysql-5.7.36-r1 +++ b/metadata/md5-cache/dev-db/mysql-5.7.36-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( tcmalloc jemalloc ) RESTRICT=!test? ( test ) SLOT=5.7/18 SRC_URI=https://cdn.mysql.com/Downloads/MySQL-5.7/mysql-boost-5.7.36.tar.gz https://cdn.mysql.com/archives/mysql-5.7/mysql-boost-5.7.36.tar.gz http://downloads.mysql.com/archives/MySQL-5.7/mysql-boost-5.7.36.tar.gz https://dev.gentoo.org/~whissi/dist/mysql/mysql-5.7.36-patches-01.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca6e52536f4505bb3dbb2868031f8ebe diff --git a/metadata/md5-cache/dev-db/mysql-5.7.40 b/metadata/md5-cache/dev-db/mysql-5.7.40 index 359381f33bd5..696f9ff236c9 100644 --- a/metadata/md5-cache/dev-db/mysql-5.7.40 +++ b/metadata/md5-cache/dev-db/mysql-5.7.40 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( tcmalloc jemalloc ) RESTRICT=!test? ( test ) SLOT=5.7/18 SRC_URI=https://cdn.mysql.com/Downloads/MySQL-5.7/mysql-boost-5.7.40.tar.gz https://cdn.mysql.com/archives/mysql-5.7/mysql-boost-5.7.40.tar.gz http://downloads.mysql.com/archives/MySQL-5.7/mysql-boost-5.7.40.tar.gz https://dev.gentoo.org/~whissi/dist/mysql/mysql-5.7.36-patches-01.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e3d72a45028fb42b7723ed932a008d8b diff --git a/metadata/md5-cache/dev-db/mysql-5.7.41 b/metadata/md5-cache/dev-db/mysql-5.7.41 index f46b40a3f5c9..d62ac11d7220 100644 --- a/metadata/md5-cache/dev-db/mysql-5.7.41 +++ b/metadata/md5-cache/dev-db/mysql-5.7.41 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( tcmalloc jemalloc ) RESTRICT=!test? ( test ) SLOT=5.7/18 SRC_URI=https://cdn.mysql.com/Downloads/MySQL-5.7/mysql-boost-5.7.41.tar.gz https://cdn.mysql.com/archives/mysql-5.7/mysql-boost-5.7.41.tar.gz http://downloads.mysql.com/archives/MySQL-5.7/mysql-boost-5.7.41.tar.gz https://dev.gentoo.org/~whissi/dist/mysql/mysql-5.7.36-patches-01.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a66c0d6dcac3a1b9e340205e77a46ecc diff --git a/metadata/md5-cache/dev-db/mysql-8.0.27-r1 b/metadata/md5-cache/dev-db/mysql-8.0.27-r1 index 96bbdff320c7..0b9b4dc9b45d 100644 --- a/metadata/md5-cache/dev-db/mysql-8.0.27-r1 +++ b/metadata/md5-cache/dev-db/mysql-8.0.27-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( tcmalloc jemalloc ) cjk? ( server ) jemalloc? ( server ) numa? RESTRICT=!test? ( test ) SLOT=8.0 SRC_URI=https://cdn.mysql.com/Downloads/MySQL-8.0/mysql-boost-8.0.27.tar.gz https://cdn.mysql.com/archives/mysql-8.0/mysql-boost-8.0.27.tar.gz http://downloads.mysql.com/archives/MySQL-8.0/mysql-boost-8.0.27.tar.gz https://dev.gentoo.org/~whissi/dist/mysql/mysql-8.0.27-patches-03.tar.xz https://dev.gentoo.org/~dlan/dist/mysql/mysql-8.0.27-patches-03.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=557e2d937e50ca76912b2b8591547768 diff --git a/metadata/md5-cache/dev-db/mysql-8.0.31-r2 b/metadata/md5-cache/dev-db/mysql-8.0.31-r2 index 16fb69bd1261..ee3a96009ece 100644 --- a/metadata/md5-cache/dev-db/mysql-8.0.31-r2 +++ b/metadata/md5-cache/dev-db/mysql-8.0.31-r2 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( tcmalloc jemalloc ) cjk? ( server ) jemalloc? ( server ) numa? RESTRICT=!test? ( test ) SLOT=8.0 SRC_URI=https://cdn.mysql.com/Downloads/MySQL-8.0/mysql-boost-8.0.31.tar.gz https://cdn.mysql.com/archives/mysql-8.0/mysql-boost-8.0.31.tar.gz https://downloads.mysql.com/archives/MySQL-8.0/mysql-boost-8.0.31.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-db/mysql/mysql-8.0.31-patches-01.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0251961944e3f404ed1b124c6280a7bb diff --git a/metadata/md5-cache/dev-db/mysql-8.0.32-r2 b/metadata/md5-cache/dev-db/mysql-8.0.32-r2 index 36fcc2856177..638d37d28e56 100644 --- a/metadata/md5-cache/dev-db/mysql-8.0.32-r2 +++ b/metadata/md5-cache/dev-db/mysql-8.0.32-r2 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( tcmalloc jemalloc ) cjk? ( server ) jemalloc? ( server ) numa? RESTRICT=!test? ( test ) SLOT=8.0 SRC_URI=https://cdn.mysql.com/Downloads/MySQL-8.0/mysql-boost-8.0.32.tar.gz https://cdn.mysql.com/archives/mysql-8.0/mysql-boost-8.0.32.tar.gz https://downloads.mysql.com/archives/MySQL-8.0/mysql-boost-8.0.32.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-db/mysql/mysql-8.0.31-patches-01.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d51de7936a10402dd40945a02a6c1717 diff --git a/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.27 b/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.27 index 0980fe5cb8eb..d0c4d40f44e3 100644 --- a/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.27 +++ b/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.27 @@ -11,5 +11,5 @@ LICENSE=Artistic GPL-2 RDEPEND=dev-libs/protobuf:= legacy? ( dev-libs/boost:= >=dev-db/mysql-connector-c-8.0.27:= ) dev-libs/openssl:0= SLOT=0 SRC_URI=https://dev.mysql.com/get/Downloads/Connector-C++/mysql-connector-c++-8.0.27-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d837dd1616e348b33b407bf3151728f0 diff --git a/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.27-r1 b/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.27-r1 index a127d43a957f..1e6cd5ff5de9 100644 --- a/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.27-r1 +++ b/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.27-r1 @@ -11,5 +11,5 @@ LICENSE=Artistic GPL-2 RDEPEND=dev-libs/protobuf:= legacy? ( dev-libs/boost:= >=dev-db/mysql-connector-c-8.0.27:= ) dev-libs/openssl:0= SLOT=0 SRC_URI=https://dev.mysql.com/get/Downloads/Connector-C++/mysql-connector-c++-8.0.27-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=150269b40bbe99a51004bbef1e1be3d0 diff --git a/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.31 b/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.31 index ac5e201c9603..527addacedcf 100644 --- a/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.31 +++ b/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.31 @@ -11,5 +11,5 @@ LICENSE=Artistic GPL-2 RDEPEND=app-arch/lz4:= app-arch/zstd:= dev-libs/openssl:= dev-libs/protobuf:= sys-libs/zlib legacy? ( dev-libs/boost:= >=dev-db/mysql-connector-c-8.0.27:= ) SLOT=0 SRC_URI=https://dev.mysql.com/get/Downloads/Connector-C++/mysql-connector-c++-8.0.31-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ad4c7ea75337ad6ffb9add7b5737c7de diff --git a/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.32 b/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.32 index f3272c2d0e78..ec79d2d19f39 100644 --- a/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.32 +++ b/metadata/md5-cache/dev-db/mysql-connector-c++-8.0.32 @@ -11,5 +11,5 @@ LICENSE=Artistic GPL-2 RDEPEND=app-arch/lz4:= app-arch/zstd:= dev-libs/openssl:= >=dev-libs/protobuf-3.19.6:= sys-libs/zlib legacy? ( dev-libs/boost:= >=dev-db/mysql-connector-c-8.0.27:= ) SLOT=0 SRC_URI=https://dev.mysql.com/get/Downloads/Connector-C++/mysql-connector-c++-8.0.32-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6aed28c01971ede5dcd4f946fbe6db53 diff --git a/metadata/md5-cache/dev-db/mysql-connector-c-8.0.27-r1 b/metadata/md5-cache/dev-db/mysql-connector-c-8.0.27-r1 index 9c17cb3a8cf4..2061d7bf5597 100644 --- a/metadata/md5-cache/dev-db/mysql-connector-c-8.0.27-r1 +++ b/metadata/md5-cache/dev-db/mysql-connector-c-8.0.27-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=>=app-arch/lz4-0_p131:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] 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(-)?] sys-libs/zlib:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ldap? ( dev-libs/cyrus-sasl:=[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/openssl: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(-)?] !=app-arch/lz4-0_p131:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] 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(-)?] sys-libs/zlib:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ldap? ( dev-libs/cyrus-sasl:=[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/openssl: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(-)?] !=app-arch/lz4-1.9.4:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] 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(-)?] dev-libs/openssl:=[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/zlib-1.2.13:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ldap? ( dev-libs/cyrus-sasl:=[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/python-3.9.16-r1:3.9[sqlite REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.31-src.tar.gz https://www.antlr.org/download/antlr-4.9.1-complete.jar -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=249cd866f47aa3e4f1a8e3674049ed3c diff --git a/metadata/md5-cache/dev-db/mysql-workbench-8.0.32 b/metadata/md5-cache/dev-db/mysql-workbench-8.0.32 index a382b57b821a..e34cbba85001 100644 --- a/metadata/md5-cache/dev-db/mysql-workbench-8.0.32 +++ b/metadata/md5-cache/dev-db/mysql-workbench-8.0.32 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.32-src.tar.gz https://www.antlr.org/download/antlr-4.9.1-complete.jar -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f4ebb1ddd70ce15fbd5f11ee51eb5bf8 diff --git a/metadata/md5-cache/dev-db/percona-server-8.0.26.16-r2 b/metadata/md5-cache/dev-db/percona-server-8.0.26.16-r2 index 4615324b12bd..7568822a303b 100644 --- a/metadata/md5-cache/dev-db/percona-server-8.0.26.16-r2 +++ b/metadata/md5-cache/dev-db/percona-server-8.0.26.16-r2 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( tcmalloc jemalloc ) cjk? ( server ) jemalloc? ( server ) numa? RESTRICT=!test? ( test ) SLOT=8.0 SRC_URI=https://www.percona.com/downloads/Percona-Server-8.0/Percona-Server-8.0.26-16/source/tarball/percona-server-8.0.26-16.tar.gz https://dl.bintray.com/boostorg/release/1.73.0/source/boost_1_73_0.tar.bz2 https://dev.gentoo.org/~whissi/dist/percona-server/percona-server-8.0.26.16-patches-01.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=245f9fbcfc9831d22773534a69fcb39d diff --git a/metadata/md5-cache/dev-db/percona-xtrabackup-2.4.15 b/metadata/md5-cache/dev-db/percona-xtrabackup-2.4.15 index 09cf11d7cf42..7e36d88998c4 100644 --- a/metadata/md5-cache/dev-db/percona-xtrabackup-2.4.15 +++ b/metadata/md5-cache/dev-db/percona-xtrabackup-2.4.15 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/lz4:0= app-editors/vim-core dev-libs/libaio dev-libs/libedit dev-libs/libev dev-libs/libevent:0= dev-libs/libgcrypt:0= dev-libs/libgpg-error dev-python/sphinx net-misc/curl sys-libs/zlib:= !dev-db/percona-xtrabackup-bin dev-perl/DBD-mysql SLOT=0 SRC_URI=https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-2.4.15/source/tarball/percona-xtrabackup-2.4.15.tar.gz mirror://sourceforge/boost/boost_1_59_0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=058a7bdd98bef4f2219ba5d15b274340 diff --git a/metadata/md5-cache/dev-db/percona-xtrabackup-2.4.24 b/metadata/md5-cache/dev-db/percona-xtrabackup-2.4.24 index 5b3d4ae471fe..2671772b42b5 100644 --- a/metadata/md5-cache/dev-db/percona-xtrabackup-2.4.24 +++ b/metadata/md5-cache/dev-db/percona-xtrabackup-2.4.24 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/lz4:0= app-editors/vim-core dev-libs/libaio dev-libs/libedit dev-libs/libev dev-libs/libevent:0= dev-libs/libgcrypt:0= dev-libs/libgpg-error dev-python/sphinx net-misc/curl sys-libs/zlib:= !dev-db/percona-xtrabackup-bin dev-perl/DBD-mysql SLOT=0 SRC_URI=https://www.percona.com/downloads/Percona-XtraBackup-2.4/Percona-XtraBackup-2.4.24/source/tarball/percona-xtrabackup-2.4.24.tar.gz mirror://sourceforge/boost/boost_1_59_0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=448378ea49504fde965e050775a7d0ea diff --git a/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.26.18 b/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.26.18 index f91e7c2aa6e6..d9d49a4feaf9 100644 --- a/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.26.18 +++ b/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.26.18 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/lz4:0= app-editors/vim-core dev-libs/icu:= dev-libs/libaio dev-libs/libedit dev-libs/libev dev-libs/libevent:0= dev-libs/libgcrypt:0= dev-libs/libgpg-error dev-libs/openssl:0= dev-libs/protobuf:= dev-libs/rapidjson dev-libs/re2:= dev-python/sphinx net-misc/curl sys-libs/zlib:= !dev-db/percona-xtrabackup-bin dev-perl/DBD-mysql SLOT=0 SRC_URI=https://www.percona.com/downloads/Percona-XtraBackup-8.0/Percona-XtraBackup-8.0.26-18/source/tarball/percona-xtrabackup-8.0.26-18.tar.gz https://dl.bintray.com/boostorg/release/1.73.0/source/boost_1_73_0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=37ecafae7e768cbdb8bead8b499e655d diff --git a/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.30.23 b/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.30.23 index 7ca02a414de4..d032b2859b88 100644 --- a/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.30.23 +++ b/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.30.23 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/lz4:0= app-editors/vim-core dev-libs/icu:= dev-libs/libaio dev-libs/libedit dev-libs/libev dev-libs/libevent:0= dev-libs/libfido2:= dev-libs/libgcrypt:0= dev-libs/libgpg-error dev-libs/openssl:0= dev-libs/protobuf:= dev-libs/rapidjson dev-libs/re2:= dev-python/sphinx net-misc/curl sys-libs/zlib:= !dev-db/percona-xtrabackup-bin dev-perl/DBD-mysql SLOT=0 SRC_URI=https://www.percona.com/downloads/Percona-XtraBackup-8.0/Percona-XtraBackup-8.0.30-23/source/tarball/percona-xtrabackup-8.0.30-23.tar.gz https://boostorg.jfrog.io/artifactory/main/release/1.77.0/source/boost_1_77_0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b6f988bc7d124578b188c1b1c693b540 diff --git a/metadata/md5-cache/dev-db/pg_top-4.0.0-r3 b/metadata/md5-cache/dev-db/pg_top-4.0.0-r3 index e2a7916217ac..a13dc0a0015d 100644 --- a/metadata/md5-cache/dev-db/pg_top-4.0.0-r3 +++ b/metadata/md5-cache/dev-db/pg_top-4.0.0-r3 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=dev-db/postgresql:= dev-libs/libbsd sys-libs/ncurses:= virtual/libelf:= SLOT=0 SRC_URI=https://pg_top.gitlab.io/source/pg_top-4.0.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f61603a2a92a7ac87d908e0fb001053b diff --git a/metadata/md5-cache/dev-db/pgagent-4.2.1 b/metadata/md5-cache/dev-db/pgagent-4.2.1 index 936c463115a2..b64420fb3e98 100644 --- a/metadata/md5-cache/dev-db/pgagent-4.2.1 +++ b/metadata/md5-cache/dev-db/pgagent-4.2.1 @@ -10,5 +10,5 @@ LICENSE=POSTGRESQL GPL-2 RDEPEND=acct-user/pgagent dev-db/postgresql:* dev-libs/boost SLOT=0 SRC_URI=https://ftp.postgresql.org/pub/pgadmin/pgagent/pgAgent-4.2.1-Source.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=428654f052b9d4dcf70458f1d0c0e92f diff --git a/metadata/md5-cache/dev-db/pgrouting-3.1.1 b/metadata/md5-cache/dev-db/pgrouting-3.1.1 index b4ca4dc4efba..843388d0682e 100644 --- a/metadata/md5-cache/dev-db/pgrouting-3.1.1 +++ b/metadata/md5-cache/dev-db/pgrouting-3.1.1 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres13? ( dev-db/postgresql:13=[server] ) postgres_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/pgRouting/pgrouting/archive/v3.1.1.tar.gz -> pgrouting-3.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3f79ef7b92c88d80d6845913ac0d77b7 diff --git a/metadata/md5-cache/dev-db/pgrouting-3.1.2 b/metadata/md5-cache/dev-db/pgrouting-3.1.2 index 3aa709907d41..4c6121ec41c8 100644 --- a/metadata/md5-cache/dev-db/pgrouting-3.1.2 +++ b/metadata/md5-cache/dev-db/pgrouting-3.1.2 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres13? ( dev-db/postgresql:13=[server] ) postgres_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/pgRouting/pgrouting/archive/v3.1.2.tar.gz -> pgrouting-3.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=55930a992316e5a0e458bb62a1b67976 diff --git a/metadata/md5-cache/dev-db/pgrouting-3.1.3 b/metadata/md5-cache/dev-db/pgrouting-3.1.3 index e9083b4c479b..d8c9d152bb94 100644 --- a/metadata/md5-cache/dev-db/pgrouting-3.1.3 +++ b/metadata/md5-cache/dev-db/pgrouting-3.1.3 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres13? ( dev-db/postgresql:13=[server] ) postgres_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/pgRouting/pgrouting/archive/v3.1.3.tar.gz -> pgrouting-3.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a14e4e04f22c0341a42743cba0ccb765 diff --git a/metadata/md5-cache/dev-db/pgrouting-3.2.1 b/metadata/md5-cache/dev-db/pgrouting-3.2.1 index 9f15f455e174..ccbe33e2fefb 100644 --- a/metadata/md5-cache/dev-db/pgrouting-3.2.1 +++ b/metadata/md5-cache/dev-db/pgrouting-3.2.1 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres14? ( dev-db/postgresql:14=[server] ) postgres_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/pgRouting/pgrouting/archive/v3.2.1.tar.gz -> pgrouting-3.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0c9bda0283b5f236bf3c36cc7ba44dc0 diff --git a/metadata/md5-cache/dev-db/postgresql-11.19 b/metadata/md5-cache/dev-db/postgresql-11.19 index 8f06a62d83b9..af18f7025bd8 100644 --- a/metadata/md5-cache/dev-db/postgresql-11.19 +++ b/metadata/md5-cache/dev-db/postgresql-11.19 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig DEFINED_PHASES=compile config configure install postinst postrm prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) !!sys-devel/llvm:0 +DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) !!sys-devel/llvm:0 DESCRIPTION=PostgreSQL RDBMS EAPI=8 HOMEPAGE=https://www.postgresql.org/ @@ -8,9 +8,9 @@ INHERIT=flag-o-matic linux-info llvm pam python-single-r1 systemd tmpfiles IUSE=debug doc icu kerberos ldap llvm nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=POSTGRESQL GPL-2 -RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) selinux? ( sec-policy/selinux-postgresql ) virtual/tmpfiles +RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) selinux? ( sec-policy/selinux-postgresql ) virtual/tmpfiles REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=11 SRC_URI=https://ftp.postgresql.org/pub/source/v11.19/postgresql-11.19.tar.bz2 _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pam 01b77091d5b6560b0aeafa7fbb1bd818 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=c84ee635445470b19cba7dda61565c9e +_md5_=29c580ec01523f265a0c51e1c03a2d2e diff --git a/metadata/md5-cache/dev-db/postgresql-12.14 b/metadata/md5-cache/dev-db/postgresql-12.14 index 18bc6236651c..ef2f9024fd57 100644 --- a/metadata/md5-cache/dev-db/postgresql-12.14 +++ b/metadata/md5-cache/dev-db/postgresql-12.14 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig DEFINED_PHASES=compile config configure install postinst postrm prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) !!sys-devel/llvm:0 +DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) !!sys-devel/llvm:0 DESCRIPTION=PostgreSQL RDBMS EAPI=8 HOMEPAGE=https://www.postgresql.org/ @@ -8,9 +8,9 @@ INHERIT=flag-o-matic linux-info llvm pam python-single-r1 systemd tmpfiles IUSE=debug doc icu kerberos ldap llvm nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=POSTGRESQL GPL-2 -RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) selinux? ( sec-policy/selinux-postgresql ) virtual/tmpfiles +RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) selinux? ( sec-policy/selinux-postgresql ) virtual/tmpfiles REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=12 SRC_URI=https://ftp.postgresql.org/pub/source/v12.14/postgresql-12.14.tar.bz2 _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pam 01b77091d5b6560b0aeafa7fbb1bd818 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=ec1ff8de47b0d375c1fefd942c19da01 +_md5_=72e16da3d372556cc8a0429f41a97c98 diff --git a/metadata/md5-cache/dev-db/postgresql-13.10 b/metadata/md5-cache/dev-db/postgresql-13.10 index c4b7a90adbb8..8e8829874db3 100644 --- a/metadata/md5-cache/dev-db/postgresql-13.10 +++ b/metadata/md5-cache/dev-db/postgresql-13.10 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig DEFINED_PHASES=compile config configure install postinst postrm prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) !!sys-devel/llvm:0 +DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) !!sys-devel/llvm:0 DESCRIPTION=PostgreSQL RDBMS EAPI=8 HOMEPAGE=https://www.postgresql.org/ @@ -8,9 +8,9 @@ INHERIT=flag-o-matic linux-info llvm pam python-single-r1 systemd tmpfiles IUSE=debug doc icu kerberos ldap llvm nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=POSTGRESQL GPL-2 -RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) selinux? ( sec-policy/selinux-postgresql ) virtual/tmpfiles +RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) selinux? ( sec-policy/selinux-postgresql ) virtual/tmpfiles REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=13 SRC_URI=https://ftp.postgresql.org/pub/source/v13.10/postgresql-13.10.tar.bz2 _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pam 01b77091d5b6560b0aeafa7fbb1bd818 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=9558308d3a18a173e46c5929df1a648b +_md5_=3412bd9e2637454ddbde57ba6a94e058 diff --git a/metadata/md5-cache/dev-db/postgresql-14.7 b/metadata/md5-cache/dev-db/postgresql-14.7 index b86a4ac369d3..736a23256a6c 100644 --- a/metadata/md5-cache/dev-db/postgresql-14.7 +++ b/metadata/md5-cache/dev-db/postgresql-14.7 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig DEFINED_PHASES=compile config configure install postinst postrm prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) !!sys-devel/llvm:0 +DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) !!sys-devel/llvm:0 DESCRIPTION=PostgreSQL RDBMS EAPI=8 HOMEPAGE=https://www.postgresql.org/ @@ -8,9 +8,9 @@ INHERIT=flag-o-matic linux-info llvm pam python-single-r1 systemd tmpfiles IUSE=debug doc icu kerberos ldap llvm lz4 nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=POSTGRESQL GPL-2 -RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) selinux? ( sec-policy/selinux-postgresql ) virtual/tmpfiles +RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) selinux? ( sec-policy/selinux-postgresql ) virtual/tmpfiles REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=14 SRC_URI=https://ftp.postgresql.org/pub/source/v14.7/postgresql-14.7.tar.bz2 _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pam 01b77091d5b6560b0aeafa7fbb1bd818 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=aff10d60553dac7156b3017d5309c390 +_md5_=9dcf72e2aceee57b1c428e9390d4ff90 diff --git a/metadata/md5-cache/dev-db/postgresql-15.2 b/metadata/md5-cache/dev-db/postgresql-15.2 index 006a7f87ecb0..680575ff28a8 100644 --- a/metadata/md5-cache/dev-db/postgresql-15.2 +++ b/metadata/md5-cache/dev-db/postgresql-15.2 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig DEFINED_PHASES=compile config configure install postinst postrm prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) !!sys-devel/llvm:0 +DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) !!sys-devel/llvm:0 DESCRIPTION=PostgreSQL RDBMS EAPI=8 HOMEPAGE=https://www.postgresql.org/ @@ -8,9 +8,9 @@ INHERIT=flag-o-matic linux-info llvm pam python-single-r1 systemd tmpfiles IUSE=debug doc icu kerberos ldap llvm lz4 nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib zstd python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=POSTGRESQL GPL-2 -RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) selinux? ( sec-policy/selinux-postgresql ) virtual/tmpfiles +RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) llvm? ( =dev-lang/perl-5.8:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( >=dev-libs/openssl-0.9.6-r1:0= ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_musl? ( dev-libs/ossp-uuid ) ) ) selinux? ( sec-policy/selinux-postgresql ) virtual/tmpfiles REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=15 SRC_URI=https://ftp.postgresql.org/pub/source/v15.2/postgresql-15.2.tar.bz2 _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pam 01b77091d5b6560b0aeafa7fbb1bd818 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=0708369ecc49a1d24a2b185781839b1c +_md5_=daf9acedee4710b6ad824115f3322494 diff --git a/metadata/md5-cache/dev-db/postgresql-9999 b/metadata/md5-cache/dev-db/postgresql-9999 index ee065efe0cae..bb7759907b72 100644 --- a/metadata/md5-cache/dev-db/postgresql-9999 +++ b/metadata/md5-cache/dev-db/postgresql-9999 @@ -12,4 +12,4 @@ RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postg REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=9999 _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pam 01b77091d5b6560b0aeafa7fbb1bd818 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=e6fe1afd989e39432f3a59309e50612a +_md5_=f2d48ff63b810de1bf47d0c7851711eb diff --git a/metadata/md5-cache/dev-db/qt5-sqlcipher-1.0.11-r1 b/metadata/md5-cache/dev-db/qt5-sqlcipher-1.0.11-r1 index 5e1e6dad7975..35c161ce17dd 100644 --- a/metadata/md5-cache/dev-db/qt5-sqlcipher-1.0.11-r1 +++ b/metadata/md5-cache/dev-db/qt5-sqlcipher-1.0.11-r1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-db/sqlcipher-3.4.1 >=dev-qt/qtcore-5.12.3:5= >=dev-qt/qtsql-5.12.3:5=[sqlite] qt5-sqlcipher-1.0.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e81ebfe489401738d54b814e46f54fa diff --git a/metadata/md5-cache/dev-db/sqlitebrowser-3.12.2 b/metadata/md5-cache/dev-db/sqlitebrowser-3.12.2 index 86d854121b0f..0f4900c27b79 100644 --- a/metadata/md5-cache/dev-db/sqlitebrowser-3.12.2 +++ b/metadata/md5-cache/dev-db/sqlitebrowser-3.12.2 @@ -12,5 +12,5 @@ RDEPEND=app-editors/qhexedit2 dev-db/sqlite:3 dev-libs/qcustomplot >=dev-qt/qtco RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/sqlitebrowser/sqlitebrowser/archive/v3.12.2.tar.gz -> sqlitebrowser-3.12.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e752f4ffe8e0507f11cd2fd6dae7b87a diff --git a/metadata/md5-cache/dev-db/sqlitebrowser-9999 b/metadata/md5-cache/dev-db/sqlitebrowser-9999 index ef3e2873ec83..7a41cf9e93d9 100644 --- a/metadata/md5-cache/dev-db/sqlitebrowser-9999 +++ b/metadata/md5-cache/dev-db/sqlitebrowser-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=app-editors/qhexedit2 dev-db/sqlite:3 dev-libs/qcustomplot >=dev-qt/qtconcurrent-5.5:5 >=dev-qt/qtcore-5.5:5 >=dev-qt/qtgui-5.5:5 >=dev-qt/qtnetwork-5.5:5[ssl] >=dev-qt/qtprintsupport-5.5:5 >=dev-qt/qtwidgets-5.5:5 >=dev-qt/qtxml-5.5:5 >=x11-libs/qscintilla-2.8.10:= >=dev-qt/qtsvg-5.5:5 RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e2fe80274de4d7803f92688bd531cd65 diff --git a/metadata/md5-cache/dev-db/sqliteman-1.2.2-r5 b/metadata/md5-cache/dev-db/sqliteman-1.2.2-r5 index 468ef2751517..71f049158953 100644 --- a/metadata/md5-cache/dev-db/sqliteman-1.2.2-r5 +++ b/metadata/md5-cache/dev-db/sqliteman-1.2.2-r5 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsql:5[sqlite] dev-qt/qtwidgets:5 >=x11-libs/qscintilla-2.10.3:= SLOT=0 SRC_URI=mirror://sourceforge/sqliteman/sqliteman-1.2.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dbdf5b318a2704737488dc9efe15d6f4 diff --git a/metadata/md5-cache/dev-db/sqlmap-1.7 b/metadata/md5-cache/dev-db/sqlmap-1.7.3 similarity index 91% rename from metadata/md5-cache/dev-db/sqlmap-1.7 rename to metadata/md5-cache/dev-db/sqlmap-1.7.3 index 32f172135f2c..f4574c8e7687 100644 --- a/metadata/md5-cache/dev-db/sqlmap-1.7 +++ b/metadata/md5-cache/dev-db/sqlmap-1.7.3 @@ -4,11 +4,11 @@ EAPI=8 HOMEPAGE=https://sqlmap.org/ INHERIT=bash-completion-r1 python-single-r1 wrapper IUSE=python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=amd64 x86 +KEYWORDS=~amd64 ~x86 LICENSE=BSD BSD-2 GPL-2+ LGPL-2.1+ MIT public-domain RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 -SRC_URI=https://github.com/sqlmapproject/sqlmap/archive/refs/tags/1.7.tar.gz -> sqlmap-1.7.gh.tar.gz +SRC_URI=https://github.com/sqlmapproject/sqlmap/archive/refs/tags/1.7.3.tar.gz -> sqlmap-1.7.3.gh.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=ebea929e1df06df14bf753cacf4cd73a +_md5_=bb5c0373087a303f70bc7079cc631962 diff --git a/metadata/md5-cache/dev-db/timescaledb-2.10.0 b/metadata/md5-cache/dev-db/timescaledb-2.10.0 index e8a8601b7b3e..5f51c9807a8d 100644 --- a/metadata/md5-cache/dev-db/timescaledb-2.10.0 +++ b/metadata/md5-cache/dev-db/timescaledb-2.10.0 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres15? ( dev-db/postgresql:15=[ssl] ) postgres_tar RESTRICT=test SLOT=0 SRC_URI=https://github.com/timescale/timescaledb/archive/2.10.0.tar.gz -> timescaledb-2.10.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=19db5d2196504f07526b52ffab518dcf diff --git a/metadata/md5-cache/dev-db/timescaledb-2.10.1 b/metadata/md5-cache/dev-db/timescaledb-2.10.1 index acdd8d5c733b..cee06c137ef7 100644 --- a/metadata/md5-cache/dev-db/timescaledb-2.10.1 +++ b/metadata/md5-cache/dev-db/timescaledb-2.10.1 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres15? ( dev-db/postgresql:15=[ssl] ) postgres_tar RESTRICT=test SLOT=0 SRC_URI=https://github.com/timescale/timescaledb/archive/2.10.1.tar.gz -> timescaledb-2.10.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=19db5d2196504f07526b52ffab518dcf diff --git a/metadata/md5-cache/dev-db/timescaledb-2.9.2 b/metadata/md5-cache/dev-db/timescaledb-2.9.2 index 13cfaf080387..a1b13bbb59a1 100644 --- a/metadata/md5-cache/dev-db/timescaledb-2.9.2 +++ b/metadata/md5-cache/dev-db/timescaledb-2.9.2 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres15? ( dev-db/postgresql:15=[ssl] ) postgres_tar RESTRICT=test SLOT=0 SRC_URI=https://github.com/timescale/timescaledb/archive/2.9.2.tar.gz -> timescaledb-2.9.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=19db5d2196504f07526b52ffab518dcf diff --git a/metadata/md5-cache/dev-db/timescaledb-2.9.3 b/metadata/md5-cache/dev-db/timescaledb-2.9.3 index 73938385ed67..32f79e93ff32 100644 --- a/metadata/md5-cache/dev-db/timescaledb-2.9.3 +++ b/metadata/md5-cache/dev-db/timescaledb-2.9.3 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres15? ( dev-db/postgresql:15=[ssl] ) postgres_tar RESTRICT=test SLOT=0 SRC_URI=https://github.com/timescale/timescaledb/archive/2.9.3.tar.gz -> timescaledb-2.9.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=19db5d2196504f07526b52ffab518dcf diff --git a/metadata/md5-cache/dev-db/tora-3.2-r2 b/metadata/md5-cache/dev-db/tora-3.2-r2 index 9bfdb6ee1325..b2e9b4a62c91 100644 --- a/metadata/md5-cache/dev-db/tora-3.2-r2 +++ b/metadata/md5-cache/dev-db/tora-3.2-r2 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/ferrisloki dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 de REQUIRED_USE=|| ( mysql oracle postgres ) SLOT=0 SRC_URI=https://github.com/tora-tool/tora/archive/v3.2.tar.gz -> tora-3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=56fb0b8660dc5395c9ff1a7bacf29dfd diff --git a/metadata/md5-cache/dev-embedded/Manifest.gz b/metadata/md5-cache/dev-embedded/Manifest.gz index 9549a0f4dc0f..ad6384be72dd 100644 Binary files a/metadata/md5-cache/dev-embedded/Manifest.gz and b/metadata/md5-cache/dev-embedded/Manifest.gz differ diff --git a/metadata/md5-cache/dev-embedded/avrdude-7.0 b/metadata/md5-cache/dev-embedded/avrdude-7.0 index 3979725c279c..2e4ed3ba8859 100644 --- a/metadata/md5-cache/dev-embedded/avrdude-7.0 +++ b/metadata/md5-cache/dev-embedded/avrdude-7.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=dev-libs/hidapi virtual/libelf:= virtual/libusb:0 virtual/libusb:1 ftdi? ( dev-embedded/libftdi:1= ) readline? ( sys-libs/readline:0= ) SLOT=0 SRC_URI=https://github.com/avrdudes/avrdude/archive/refs/tags/v7.0.tar.gz -> avrdude-7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f0a8463b5176111a7abcb69339cf8774 diff --git a/metadata/md5-cache/dev-embedded/libftdi-0.20-r1 b/metadata/md5-cache/dev-embedded/libftdi-0.20-r1 index f470ce7c8022..530757a844a9 100644 --- a/metadata/md5-cache/dev-embedded/libftdi-0.20-r1 +++ b/metadata/md5-cache/dev-embedded/libftdi-0.20-r1 @@ -12,5 +12,5 @@ RDEPEND=virtual/libusb:0 cxx? ( dev-libs/boost ) python? ( python_single_target_ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) SLOT=0 SRC_URI=https://www.intra2net.com/en/developer/libftdi/download/libftdi-0.20.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=500cd35b5c55428ef5e9a65365e8e6ae diff --git a/metadata/md5-cache/dev-embedded/libftdi-1.5-r4 b/metadata/md5-cache/dev-embedded/libftdi-1.5-r4 index b1e9a50c0b67..491c672d16aa 100644 --- a/metadata/md5-cache/dev-embedded/libftdi-1.5-r4 +++ b/metadata/md5-cache/dev-embedded/libftdi-1.5-r4 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://www.intra2net.com/en/developer/libftdi/download/libftdi1-1.5.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7edebaca2dde4f3b6817cdd7bf2ee49a diff --git a/metadata/md5-cache/dev-embedded/libftdi-9999 b/metadata/md5-cache/dev-embedded/libftdi-9999 index b6ce48182b01..5c3dfef7aef6 100644 --- a/metadata/md5-cache/dev-embedded/libftdi-9999 +++ b/metadata/md5-cache/dev-embedded/libftdi-9999 @@ -12,5 +12,5 @@ RDEPEND=virtual/libusb:1 cxx? ( dev-libs/boost ) python? ( python_single_target_ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) RESTRICT=!test? ( test ) SLOT=1 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7e03af38d784b2c3b8d7846eafa274bf diff --git a/metadata/md5-cache/dev-embedded/mcu8051ide-1.4.10-r1 b/metadata/md5-cache/dev-embedded/mcu8051ide-1.4.10-r1 index bd33fc995d4a..3641157b7375 100644 --- a/metadata/md5-cache/dev-embedded/mcu8051ide-1.4.10-r1 +++ b/metadata/md5-cache/dev-embedded/mcu8051ide-1.4.10-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-doc/doxygen-1.7 >=app-text/hunspell-1.3 >=dev-embedded/sdcc-2.5[mcs51] >=dev-lang/tcl-8.5.9:* >=dev-lang/tk-8.5.9:* >=dev-tcltk/bwidget-1.8 >dev-tcltk/itcl-3.3 >=dev-tcltk/tcllib-1.11 >=dev-tcltk/tclx-8.4 >=dev-tcltk/tdom-0.8 >=dev-tcltk/tkimg-1.4 >=dev-util/indent-2.2 SLOT=0 SRC_URI=mirror://gentoo/mcu8051ide-1.4.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=472631500f0317b75ab733eb638a8cf3 diff --git a/metadata/md5-cache/dev-embedded/picotool-1.1.0 b/metadata/md5-cache/dev-embedded/picotool-1.1.0 index 45db4e995893..cbd89beeac58 100644 --- a/metadata/md5-cache/dev-embedded/picotool-1.1.0 +++ b/metadata/md5-cache/dev-embedded/picotool-1.1.0 @@ -10,5 +10,5 @@ LICENSE=BSD MIT RDEPEND=virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/raspberrypi/picotool/archive/refs/tags/1.1.0.tar.gz -> picotool-1.1.0.tar.gz https://github.com/raspberrypi/pico-sdk/archive/refs/tags/1.4.0.tar.gz -> pico-sdk-1.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=83d2138f910a02d9fbd45967a23cd954 diff --git a/metadata/md5-cache/dev-embedded/ponyprog-3.1.2 b/metadata/md5-cache/dev-embedded/ponyprog-3.1.2 index 095f50602e5d..c7a0532b7c48 100644 --- a/metadata/md5-cache/dev-embedded/ponyprog-3.1.2 +++ b/metadata/md5-cache/dev-embedded/ponyprog-3.1.2 @@ -11,5 +11,5 @@ LICENSE=LGPL-2 RDEPEND=>=app-editors/qhexedit2-0.8.6_p20190316 dev-embedded/libftdi:1[cxx] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 virtual/libusb:1 !=dev-embedded/libftdi-1.5-r2 SLOT=0 SRC_URI=https://github.com/lancos/ponyprog/archive/v3.1.2.tar.gz -> ponyprog-3.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2fa421f6976c86036db6814b40345ab9 diff --git a/metadata/md5-cache/dev-embedded/ponyprog-3.1.3 b/metadata/md5-cache/dev-embedded/ponyprog-3.1.3 index bafbeffd3301..2f81d226b8c7 100644 --- a/metadata/md5-cache/dev-embedded/ponyprog-3.1.3 +++ b/metadata/md5-cache/dev-embedded/ponyprog-3.1.3 @@ -11,5 +11,5 @@ LICENSE=LGPL-2 RDEPEND=>app-editors/qhexedit2-0.8.8_p20200625 dev-embedded/libftdi:1[cxx] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 virtual/libusb:1 !=dev-embedded/libftdi-1.5-r2 SLOT=0 SRC_URI=https://github.com/lancos/ponyprog/archive/v3.1.3.tar.gz -> ponyprog-3.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3e3473502acef77997d258acd01cf194 diff --git a/metadata/md5-cache/dev-embedded/stlink-1.7.0 b/metadata/md5-cache/dev-embedded/stlink-1.7.0 index 3dddcbf5b0af..1871974b64ce 100644 --- a/metadata/md5-cache/dev-embedded/stlink-1.7.0 +++ b/metadata/md5-cache/dev-embedded/stlink-1.7.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.7.0.tar.gz -> stlink-1.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=17d33970438306cf44669740652c7fa1 diff --git a/metadata/md5-cache/dev-embedded/stlink-9999 b/metadata/md5-cache/dev-embedded/stlink-9999 index b645f15b0a1e..7b31681e0ccf 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 a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef131998eefac5e16d0e1bf725d53903 diff --git a/metadata/md5-cache/dev-embedded/usbprog-0.3.0_p20140828-r1 b/metadata/md5-cache/dev-embedded/usbprog-0.3.0_p20140828-r1 index fcbe7dd8557e..804395c50f9e 100644 --- a/metadata/md5-cache/dev-embedded/usbprog-0.3.0_p20140828-r1 +++ b/metadata/md5-cache/dev-embedded/usbprog-0.3.0_p20140828-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=!minimal? ( gui? ( dev-qt/qtwidgets:5 ) dev-qt/qtcore:5 dev-qt/qtnetwork:5 dev-qt/qtxml:5 sys-libs/ncurses:= sys-libs/readline:= ) virtual/libusb:1 SLOT=0 SRC_URI=https://bitbucket.org/bwalle/usbprog-tools/get/293d559bac55.tar.bz2 -> usbprog-0.3.0_p20140828.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4741c9d98e5b642116479c5152fdb64f diff --git a/metadata/md5-cache/dev-games/Manifest.gz b/metadata/md5-cache/dev-games/Manifest.gz index 918775e6021c..aadc09d9977e 100644 Binary files a/metadata/md5-cache/dev-games/Manifest.gz and b/metadata/md5-cache/dev-games/Manifest.gz differ diff --git a/metadata/md5-cache/dev-games/aseprite-1.2.40 b/metadata/md5-cache/dev-games/aseprite-1.2.40 index 77a3eefc037d..96706baa6ab8 100644 --- a/metadata/md5-cache/dev-games/aseprite-1.2.40 +++ b/metadata/md5-cache/dev-games/aseprite-1.2.40 @@ -12,5 +12,5 @@ RDEPEND=app-arch/libarchive:= app-text/cmark:= dev-cpp/json11 dev-libs/tinyxml m RESTRICT=bindist mirror !test? ( test ) SLOT=0 SRC_URI=https://github.com/aseprite/aseprite/releases/download/v1.2.40/Aseprite-v1.2.40-Source.zip https://github.com/google/skia/archive/3338e90707323d2cd3a150276acb9f39933deee2.tar.gz -> skia-m102-3338e90707323d2cd3a150276acb9f39933deee2.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=629d0e46a5c5530bbc41cdf19c65418d diff --git a/metadata/md5-cache/dev-games/cegui-0.8.7-r100 b/metadata/md5-cache/dev-games/cegui-0.8.7-r100 index 6e47a324d93e..43361c58206c 100644 --- a/metadata/md5-cache/dev-games/cegui-0.8.7-r100 +++ b/metadata/md5-cache/dev-games/cegui-0.8.7-r100 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= virtual/libiconv bidi? ( dev-libs/fribidi ) devil? ( me REQUIRED_USE=|| ( expat tinyxml xerces-c xml ) lua? ( ^^ ( lua_single_target_lua5-1 ) ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) SLOT=0 SRC_URI=mirror://sourceforge/crayzedsgui/cegui-0.8.7.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ee12866239efac5ad11143cdca209d21 diff --git a/metadata/md5-cache/dev-games/freecell-solver-6.8.0 b/metadata/md5-cache/dev-games/freecell-solver-6.8.0 index 772f8cb15dfe..df05f80c2b4b 100644 --- a/metadata/md5-cache/dev-games/freecell-solver-6.8.0 +++ b/metadata/md5-cache/dev-games/freecell-solver-6.8.0 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://fc-solve.shlomifish.org/downloads/fc-solve/freecell-solver-6.8.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=060e645448108b83c569ecab93ccc7af diff --git a/metadata/md5-cache/dev-games/freesolid-2.1.2 b/metadata/md5-cache/dev-games/freesolid-2.1.2 index 8b74fa377753..c89c71aa947d 100644 --- a/metadata/md5-cache/dev-games/freesolid-2.1.2 +++ b/metadata/md5-cache/dev-games/freesolid-2.1.2 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2.1+ SLOT=0 SRC_URI=mirror://sourceforge/freesolid/FreeSOLID-2.1.2.zip -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=27065156997086f062812dc41d768740 diff --git a/metadata/md5-cache/dev-games/godot-4.0.1 b/metadata/md5-cache/dev-games/godot-4.0.1 new file mode 100644 index 000000000000..f5c28fd50836 --- /dev/null +++ b/metadata/md5-cache/dev-games/godot-4.0.1 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig || ( >dev-util/scons-4.5.1-r1 =dev-lang/python-3.11.1-r1:3.11 >=dev-util/scons-4.4.0[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-util/scons-4.4.0[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-util/scons-4.4.0[python_targets_python3_9(-)] ) ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test +DEPEND=app-arch/zstd:= dev-games/recastnavigation:= dev-libs/icu:= dev-libs/libpcre2:=[pcre32] media-libs/freetype[brotli,harfbuzz] media-libs/harfbuzz:=[icu] media-libs/libogg media-libs/libpng:= media-libs/libvorbis irrlicht-mt-1.9.0.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8ba3ec74c453c1ce95e5731489e92126 diff --git a/metadata/md5-cache/dev-games/mygui-3.4.1 b/metadata/md5-cache/dev-games/mygui-3.4.1 index a0638e733ae1..0be60e123012 100644 --- a/metadata/md5-cache/dev-games/mygui-3.4.1 +++ b/metadata/md5-cache/dev-games/mygui-3.4.1 @@ -13,5 +13,5 @@ REQUIRED_USE=ogre? ( !opengl ) opengl? ( !ogre ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/MyGUI/mygui/archive/MyGUI3.4.1.tar.gz -> mygui-3.4.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd0d74ed4a315f4912bf0e63f4eccbde diff --git a/metadata/md5-cache/dev-games/newton-3.14 b/metadata/md5-cache/dev-games/newton-3.14 index e37387e3daf6..965b41d974eb 100644 --- a/metadata/md5-cache/dev-games/newton-3.14 +++ b/metadata/md5-cache/dev-games/newton-3.14 @@ -9,5 +9,5 @@ KEYWORDS=amd64 x86 LICENSE=ZLIB SLOT=0 SRC_URI=https://github.com/MADEAPPS/newton-dynamics/archive/newton-3.14.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bcae931276691256e96f12d64414624a diff --git a/metadata/md5-cache/dev-games/ogre-1.12.9-r3 b/metadata/md5-cache/dev-games/ogre-1.12.9-r3 index 84c5b7d0fe1c..95194aa27666 100644 --- a/metadata/md5-cache/dev-games/ogre-1.12.9-r3 +++ b/metadata/md5-cache/dev-games/ogre-1.12.9-r3 @@ -13,5 +13,5 @@ REQUIRED_USE=examples? ( opengl ) RESTRICT=test SLOT=0/1.12 SRC_URI=https://github.com/OGRECave/ogre/archive/v1.12.9.tar.gz -> ogre-1.12.9.tar.gz https://github.com/ocornut/imgui/archive/v1.77.tar.gz -> imgui-1.77.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5a9198e58c76facff062b8981bb76d03 diff --git a/metadata/md5-cache/dev-games/ogre-1.9.0-r3 b/metadata/md5-cache/dev-games/ogre-1.9.0-r3 index 9d50f9eef62d..09d8beed9279 100644 --- a/metadata/md5-cache/dev-games/ogre-1.9.0-r3 +++ b/metadata/md5-cache/dev-games/ogre-1.9.0-r3 @@ -13,5 +13,5 @@ REQUIRED_USE=threads? ( ^^ ( boost poco tbb ) ) examples? ( ois ) poco? ( thread RESTRICT=test SLOT=0/1.9.0 SRC_URI=https://bitbucket.org/sinbad/ogre/get/v1-9-0.tar.bz2 -> ogre-1.9.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=425b2c9158a7b386a14c4f9f0e00308f diff --git a/metadata/md5-cache/dev-games/ogre-13.6.1 b/metadata/md5-cache/dev-games/ogre-13.6.1 index 893437d86303..4b30d1e95347 100644 --- a/metadata/md5-cache/dev-games/ogre-13.6.1 +++ b/metadata/md5-cache/dev-games/ogre-13.6.1 @@ -13,5 +13,5 @@ REQUIRED_USE=examples? ( opengl ) RESTRICT=test SLOT=0/13.6 SRC_URI=https://github.com/OGRECave/ogre/archive/v13.6.1.tar.gz -> ogre-13.6.1.tar.gz https://github.com/ocornut/imgui/archive/v1.87.tar.gz -> imgui-1.87.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5d17cffd014316a84c6986ce756711ca diff --git a/metadata/md5-cache/dev-games/ogre-2.1-r1 b/metadata/md5-cache/dev-games/ogre-2.1-r1 index 1ebc6c6e873b..d8e96e6e99ce 100644 --- a/metadata/md5-cache/dev-games/ogre-2.1-r1 +++ b/metadata/md5-cache/dev-games/ogre-2.1-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-games/ois dev-libs/zziplib media-libs/freetype:2 x11-libs/libX11 x11 RESTRICT=test SLOT=0/2.1 SRC_URI=https://github.com/OGRECave/ogre-next/archive/2.1.tar.gz -> ogre-2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c40b682ca3d89568285d950c6e76a09f diff --git a/metadata/md5-cache/dev-games/ois-1.5.1 b/metadata/md5-cache/dev-games/ois-1.5.1 index 63b11c1d2376..45a7f3489489 100644 --- a/metadata/md5-cache/dev-games/ois-1.5.1 +++ b/metadata/md5-cache/dev-games/ois-1.5.1 @@ -10,5 +10,5 @@ LICENSE=ZLIB RDEPEND=x11-libs/libXaw x11-libs/libX11 SLOT=0 SRC_URI=https://github.com/wgois/OIS/archive/v1.5.1.tar.gz -> ois-1.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8575c3d9c0c9c98f250e559ba48975fd diff --git a/metadata/md5-cache/dev-games/openscenegraph-3.6.5-r114 b/metadata/md5-cache/dev-games/openscenegraph-3.6.5-r114 index 10a78bb3faf4..91626721c2b6 100644 --- a/metadata/md5-cache/dev-games/openscenegraph-3.6.5-r114 +++ b/metadata/md5-cache/dev-games/openscenegraph-3.6.5-r114 @@ -12,5 +12,5 @@ RDEPEND=media-libs/mesa[egl(+)?] virtual/glu virtual/opengl x11-libs/libSM x11-l REQUIRED_USE=dicom? ( zlib ) lua? ( ^^ ( lua_single_target_lua5-1 ) ) openexr? ( zlib ) sdl2? ( sdl ) SLOT=0/161 SRC_URI=https://github.com/openscenegraph/OpenSceneGraph/archive/OpenSceneGraph-3.6.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6778182a87a635c2ba3a18a0c45a6038 diff --git a/metadata/md5-cache/dev-games/openscenegraph-openmw-3.6_p20221115 b/metadata/md5-cache/dev-games/openscenegraph-openmw-3.6_p20221115 index 1520e8e30edc..738f93284656 100644 --- a/metadata/md5-cache/dev-games/openscenegraph-openmw-3.6_p20221115 +++ b/metadata/md5-cache/dev-games/openscenegraph-openmw-3.6_p20221115 @@ -12,5 +12,5 @@ RDEPEND=!dev-games/openscenegraph dev-libs/glib:2 media-libs/fontconfig media-li REQUIRED_USE=dicom? ( zlib ) lua? ( ^^ ( lua_single_target_lua5-1 ) ) openexr? ( zlib ) sdl2? ( sdl ) SLOT=0/162 SRC_URI=https://github.com/OpenMW/osg/archive/69cfecebfb6dc703b42e8de39eed750a84a87489.tar.gz -> openscenegraph-openmw-3.6_p20221115.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b68e8d0a2e43c2be965c393afd699041 diff --git a/metadata/md5-cache/dev-games/openscenegraph-qt-3.5.7-r1 b/metadata/md5-cache/dev-games/openscenegraph-qt-3.5.7-r1 index 45994cc40a81..6a7cf7a269fb 100644 --- a/metadata/md5-cache/dev-games/openscenegraph-qt-3.5.7-r1 +++ b/metadata/md5-cache/dev-games/openscenegraph-qt-3.5.7-r1 @@ -11,5 +11,5 @@ LICENSE=wxWinLL-3 LGPL-2.1 RDEPEND=>=dev-games/openscenegraph-3.6.3:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 SLOT=0/145 SRC_URI=https://github.com/openscenegraph/osgQt/archive/3.5.7.tar.gz -> osgQt-3.5.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0c7a451638acd8946e0493cb35e05153 diff --git a/metadata/md5-cache/dev-games/physfs-3.0.2-r1 b/metadata/md5-cache/dev-games/physfs-3.0.2-r1 index b9b8571ed2a5..07c84cd505d5 100644 --- a/metadata/md5-cache/dev-games/physfs-3.0.2-r1 +++ b/metadata/md5-cache/dev-games/physfs-3.0.2-r1 @@ -9,5 +9,5 @@ KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~loong ppc64 ~riscv x86 LICENSE=ZLIB SLOT=0 SRC_URI=https://icculus.org/physfs/downloads/physfs-3.0.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f67a11f7203d22160bcd431ab3ea298d diff --git a/metadata/md5-cache/dev-games/physfs-9999 b/metadata/md5-cache/dev-games/physfs-9999 index 0ba20392a600..22bea24bf461 100644 --- a/metadata/md5-cache/dev-games/physfs-9999 +++ b/metadata/md5-cache/dev-games/physfs-9999 @@ -8,5 +8,5 @@ IUSE=7zip doc grp hog iso mvl qpak slb static-libs vdf wad +zip abi_x86_32 abi_x LICENSE=ZLIB PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 mercurial 9d4fc47e076850b06fede471ee147ec5 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 mercurial 9d4fc47e076850b06fede471ee147ec5 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b8465604d9734e697a9f7be4d70c3cc9 diff --git a/metadata/md5-cache/dev-games/recastnavigation-1.5.1_p20230102 b/metadata/md5-cache/dev-games/recastnavigation-1.5.1_p20230102 index 24263b43a057..161de25e6ac4 100644 --- a/metadata/md5-cache/dev-games/recastnavigation-1.5.1_p20230102 +++ b/metadata/md5-cache/dev-games/recastnavigation-1.5.1_p20230102 @@ -11,5 +11,5 @@ LICENSE=ZLIB RESTRICT=!test? ( test ) SLOT=0/1.5.1 SRC_URI=https://github.com/recastnavigation/recastnavigation/archive/405cc095ab3a2df976a298421974a2af83843baf.tar.gz -> recastnavigation-1.5.1_p20230102.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f240f96eb24c42ed3dac2c3d0ebe4812 diff --git a/metadata/md5-cache/dev-games/simgear-2020.3.17-r1 b/metadata/md5-cache/dev-games/simgear-2020.3.17-r1 index 9468a63900ee..3133aeb6eb58 100644 --- a/metadata/md5-cache/dev-games/simgear-2020.3.17-r1 +++ b/metadata/md5-cache/dev-games/simgear-2020.3.17-r1 @@ -12,5 +12,5 @@ RDEPEND=app-arch/xz-utils dev-libs/expat dev-games/openscenegraph media-libs/ope RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/flightgear/simgear-2020.3.17.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43748b12cd602c1d3aa99d085fcf7f14 diff --git a/metadata/md5-cache/dev-games/simgear-9999 b/metadata/md5-cache/dev-games/simgear-9999 index 4a85af03fc6d..1826c9d50415 100644 --- a/metadata/md5-cache/dev-games/simgear-9999 +++ b/metadata/md5-cache/dev-games/simgear-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/expat dev-games/openscenegraph media-libs/openal net-misc/curl sys-libs/zlib virtual/opengl dns? ( net-libs/udns ) gdal? ( sci-libs/gdal:= ) subversion? ( dev-vcs/subversion ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3616792f892853bf04b8f286b64430b1 diff --git a/metadata/md5-cache/dev-haskell/Manifest.gz b/metadata/md5-cache/dev-haskell/Manifest.gz index 8e00c8404c60..45ac0b039ab1 100644 Binary files a/metadata/md5-cache/dev-haskell/Manifest.gz and b/metadata/md5-cache/dev-haskell/Manifest.gz differ diff --git a/metadata/md5-cache/dev-haskell/wai-logger-2.3.6 b/metadata/md5-cache/dev-haskell/wai-logger-2.3.6 index 8f2b8ac2d64a..90987d8ee592 100644 --- a/metadata/md5-cache/dev-haskell/wai-logger-2.3.6 +++ b/metadata/md5-cache/dev-haskell/wai-logger-2.3.6 @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/2.3.6 SRC_URI=https://hackage.haskell.org/package/wai-logger-2.3.6/wai-logger-2.3.6.tar.gz _eclasses_=ghc-package dbe1a8d17cacb390a3df7bbba6617679 haskell-cabal ac56c62fdcc7d2fedefe4e04ed40e1a7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=bb1867fbb99808e809cb3f1e09587a72 +_md5_=d56b4e831c9c6bd8d9d7ec8fa5826b5a diff --git a/metadata/md5-cache/dev-java/Manifest.gz b/metadata/md5-cache/dev-java/Manifest.gz index 5000b3a05050..3eee6348a036 100644 Binary files a/metadata/md5-cache/dev-java/Manifest.gz and b/metadata/md5-cache/dev-java/Manifest.gz differ diff --git a/metadata/md5-cache/dev-java/commons-logging-1.3.0_pre20230317 b/metadata/md5-cache/dev-java/commons-logging-1.3.0_pre20230317 new file mode 100644 index 000000000000..4400c7707b82 --- /dev/null +++ b/metadata/md5-cache/dev-java/commons-logging-1.3.0_pre20230317 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install preinst prepare setup test +DEPEND=log4j? ( dev-java/log4j-12-api:2 dev-java/log4j-api:2 dev-java/log4j-core:2 ) dev-java/javax-servlet-api:2.5 >=virtual/jdk-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +DESCRIPTION=Thin adapter allowing configurable bridging to other well known logging systems +EAPI=8 +HOMEPAGE=https://commons.apache.org/proper/commons-logging/ +INHERIT=java-pkg-2 java-pkg-simple +IUSE=log4j doc source test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=Apache-2.0 +RDEPEND=log4j? ( dev-java/log4j-12-api:2 dev-java/log4j-api:2 dev-java/log4j-core:2 ) >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/apache/commons-logging/archive/058cf5ee350cd83d1ab28b000ad6be903ca160c5.tar.gz -> commons-logging-1.3.0_pre20230317.tar.gz +_eclasses_=java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-pkg-simple 0389d2b96f7da44c3dbabe920bbe5531 java-utils-2 eefed04ac580a259ecda1fbd966640b7 +_md5_=d26cd0032b5f7bd8ea7ed2d970da954f diff --git a/metadata/md5-cache/dev-java/java-dep-check-0.5-r1 b/metadata/md5-cache/dev-java/java-dep-check-0.5-r2 similarity index 100% rename from metadata/md5-cache/dev-java/java-dep-check-0.5-r1 rename to metadata/md5-cache/dev-java/java-dep-check-0.5-r2 diff --git a/metadata/md5-cache/dev-java/maven-bin-3.8.8 b/metadata/md5-cache/dev-java/maven-bin-3.8.8 new file mode 100644 index 000000000000..a3a244af8387 --- /dev/null +++ b/metadata/md5-cache/dev-java/maven-bin-3.8.8 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup +DEPEND=>=virtual/jdk-1.8:* app-eselect/eselect-java >=dev-java/java-config-2.2.0-r3 +DESCRIPTION=Project Management and Comprehension Tool for Java +EAPI=8 +HOMEPAGE=https://maven.apache.org/ +INHERIT=java-pkg-2 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 +SLOT=3.8 +SRC_URI=mirror://apache/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz +_eclasses_=java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 +_md5_=1e10e94ec50fd530070a526b6138b3d7 diff --git a/metadata/md5-cache/dev-java/maven-bin-3.9.1 b/metadata/md5-cache/dev-java/maven-bin-3.9.1 new file mode 100644 index 000000000000..7f5d1dab10c6 --- /dev/null +++ b/metadata/md5-cache/dev-java/maven-bin-3.9.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup +DEPEND=>=virtual/jdk-1.8:* app-eselect/eselect-java >=dev-java/java-config-2.2.0-r3 +DESCRIPTION=Project Management and Comprehension Tool for Java +EAPI=8 +HOMEPAGE=https://maven.apache.org/ +INHERIT=java-pkg-2 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 +SLOT=3.9 +SRC_URI=mirror://apache/maven/maven-3/3.9.1/binaries/apache-maven-3.9.1-bin.tar.gz +_eclasses_=java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 +_md5_=8078a27d3932942bc5759ab1ebe69d7e diff --git a/metadata/md5-cache/dev-java/snakeyaml-2.0 b/metadata/md5-cache/dev-java/snakeyaml-2.0 new file mode 100644 index 000000000000..b7896850d74b --- /dev/null +++ b/metadata/md5-cache/dev-java/snakeyaml-2.0 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install preinst prepare setup test +DEPEND=>=virtual/jdk-11:* test? ( dev-java/velocity:0 dev-java/joda-time:0 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) test? ( dev-java/junit:4 ) +DESCRIPTION=YAML 1.1 parser and emitter for Java +EAPI=8 +HOMEPAGE=https://bitbucket.org/snakeyaml/snakeyaml +INHERIT=java-pkg-2 java-pkg-simple +IUSE=doc source test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +RESTRICT=!test? ( test ) +SLOT=2 +SRC_URI=https://bitbucket.org/snakeyaml/snakeyaml/get/snakeyaml-2.0.tar.gz +_eclasses_=java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-pkg-simple 0389d2b96f7da44c3dbabe920bbe5531 java-utils-2 eefed04ac580a259ecda1fbd966640b7 +_md5_=34096284163b4e977e4bf07c47ce0e21 diff --git a/metadata/md5-cache/dev-java/swt-3.8.2-r4 b/metadata/md5-cache/dev-java/swt-3.8.2-r4 deleted file mode 100644 index ff07f82af7c4..000000000000 --- a/metadata/md5-cache/dev-java/swt-3.8.2-r4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup unpack -DEPEND=>=dev-libs/atk-1.10.2 >=dev-libs/glib-2.6 >=x11-libs/gtk+-2.6.8:2 x11-libs/libXtst cairo? ( >=x11-libs/cairo-1.4.14 ) opengl? ( virtual/glu virtual/opengl ) app-arch/unzip virtual/jdk:1.8 virtual/pkgconfig x11-base/xorg-proto x11-libs/libX11 x11-libs/libXrender x11-libs/libXt >=x11-libs/libXtst-1.1.0 >=dev-java/java-config-2.2.0-r3 >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=GTK based SWT Library -EAPI=8 -HOMEPAGE=https://www.eclipse.org/ -INHERIT=java-pkg-2 java-ant-2 toolchain-funcs java-osgi -IUSE=cairo opengl -KEYWORDS=amd64 ppc64 x86 -LICENSE=CPL-1.0 LGPL-2.1 MPL-1.1 -RDEPEND=>=dev-libs/atk-1.10.2 >=dev-libs/glib-2.6 >=x11-libs/gtk+-2.6.8:2 x11-libs/libXtst cairo? ( >=x11-libs/cairo-1.4.14 ) opengl? ( virtual/glu virtual/opengl ) >=virtual/jre-1.4 >=dev-java/java-config-2.2.0-r3 -SLOT=3.8 -SRC_URI=amd64? ( https://archive.eclipse.org/eclipse/downloads/drops/R-3.8.2-201301310800/swt-3.8.2-gtk-linux-x86_64.zip ) ppc? ( https://archive.eclipse.org/eclipse/downloads/drops/R-3.8.2-201301310800/swt-3.8.2-gtk-linux-x86.zip ) ppc64? ( https://archive.eclipse.org/eclipse/downloads/drops/R-3.8.2-201301310800/swt-3.8.2-gtk-linux-ppc64.zip ) x86? ( https://archive.eclipse.org/eclipse/downloads/drops/R-3.8.2-201301310800/swt-3.8.2-gtk-linux-x86.zip ) -_eclasses_=java-ant-2 f9b70c3474c0b326c8102814719dc554 java-osgi c82db640aeccac34f009e90c7bb10a81 java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=b392cac1f63bdb57908b511c7a4cffbe diff --git a/metadata/md5-cache/dev-java/swt-4.27 b/metadata/md5-cache/dev-java/swt-4.27 new file mode 100644 index 000000000000..5cbb181b6c42 --- /dev/null +++ b/metadata/md5-cache/dev-java/swt-4.27 @@ -0,0 +1,15 @@ +BDEPEND=app-arch/unzip virtual/pkgconfig +DEFINED_PHASES=compile install preinst prepare setup test unpack +DEPEND=app-accessibility/at-spi2-core:2 dev-libs/glib x11-libs/gtk+:2 x11-libs/libXtst cairo? ( x11-libs/cairo ) opengl? ( virtual/glu virtual/opengl ) webkit? ( net-libs/webkit-gtk:4.1 ) >=virtual/jdk-11:*[-headless-awt] x11-base/xorg-proto x11-libs/libX11 x11-libs/libXrender x11-libs/libXt x11-libs/libXtst >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +DESCRIPTION=GTK based SWT Library +EAPI=8 +HOMEPAGE=https://www.eclipse.org/swt/ +INHERIT=flag-o-matic java-pkg-2 java-pkg-simple toolchain-funcs +IUSE=cairo opengl webkit doc source +KEYWORDS=~amd64 ~ppc64 +LICENSE=CPL-1.0 LGPL-2.1 MPL-1.1 +RDEPEND=app-accessibility/at-spi2-core:2 dev-libs/glib x11-libs/gtk+:2 x11-libs/libXtst cairo? ( x11-libs/cairo ) opengl? ( virtual/glu virtual/opengl ) webkit? ( net-libs/webkit-gtk:4.1 ) >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +SLOT=4.27 +SRC_URI=amd64? ( https://download.eclipse.org/eclipse/downloads/drops4/R-4.27-202303020300/swt-4.27-gtk-linux-x86_64.zip ) arm64? ( https://download.eclipse.org/eclipse/downloads/drops4/R-4.27-202303020300/swt-4.27-gtk-linux-aarch64.zip ) ppc64? ( https://download.eclipse.org/eclipse/downloads/drops4/R-4.27-202303020300/swt-4.27-gtk-linux-ppc64le.zip ) +_eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-pkg-simple 0389d2b96f7da44c3dbabe920bbe5531 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=c27a7c0d9b2cf3a9461d96f9cd575f72 diff --git a/metadata/md5-cache/dev-java/zstd-jni-1.5.2.5 b/metadata/md5-cache/dev-java/zstd-jni-1.5.2.5 index 364a1c427699..8308deca17e1 100644 --- a/metadata/md5-cache/dev-java/zstd-jni-1.5.2.5 +++ b/metadata/md5-cache/dev-java/zstd-jni-1.5.2.5 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) SLOT=0 SRC_URI=https://github.com/luben/zstd-jni/archive/c1.5.2-5.tar.gz -> zstd-jni-1.5.2.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-pkg-simple 0389d2b96f7da44c3dbabe920bbe5531 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-pkg-simple 0389d2b96f7da44c3dbabe920bbe5531 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b364aea5da8cf709ebb9db674de07ce diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index 77ca46a65cc3..731154797fa0 100644 Binary files a/metadata/md5-cache/dev-lang/Manifest.gz and b/metadata/md5-cache/dev-lang/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lang/duktape-2.7.0-r3 b/metadata/md5-cache/dev-lang/duktape-2.7.0-r3 index 75a9ee00ca81..9cb989b8f6e3 100644 --- a/metadata/md5-cache/dev-lang/duktape-2.7.0-r3 +++ b/metadata/md5-cache/dev-lang/duktape-2.7.0-r3 @@ -3,9 +3,9 @@ DESCRIPTION=Embeddable Javascript engine EAPI=8 HOMEPAGE=https://duktape.org INHERIT=toolchain-funcs -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT SLOT=0/2.7.0 SRC_URI=https://duktape.org/duktape-2.7.0.tar.xz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=6cc55433444a1db25e151a98a5c8ff1f +_md5_=6b87bedfc738063969e6c7e80541fd13 diff --git a/metadata/md5-cache/dev-lang/gdl-1.0.1-r1 b/metadata/md5-cache/dev-lang/gdl-1.0.1-r1 index 5fde5963c47f..78754a4dafd5 100644 --- a/metadata/md5-cache/dev-lang/gdl-1.0.1-r1 +++ b/metadata/md5-cache/dev-lang/gdl-1.0.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/gnudatalanguage/gdl/archive/v1.0.1.tar.gz -> gdl-1.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1c04cb09016e600e71059c764120213e diff --git a/metadata/md5-cache/dev-lang/ispc-1.18.0 b/metadata/md5-cache/dev-lang/ispc-1.18.0 index 01660e76e6ea..0d16af34c984 100644 --- a/metadata/md5-cache/dev-lang/ispc-1.18.0 +++ b/metadata/md5-cache/dev-lang/ispc-1.18.0 @@ -12,5 +12,5 @@ RDEPEND= ispc-1.18.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bcdec94289b3583214cceda9d1e8901c diff --git a/metadata/md5-cache/dev-lang/jerryscript-2.4.0-r4 b/metadata/md5-cache/dev-lang/jerryscript-2.4.0-r4 index 9c9b897b93d0..6388d0f6ba0e 100644 --- a/metadata/md5-cache/dev-lang/jerryscript-2.4.0-r4 +++ b/metadata/md5-cache/dev-lang/jerryscript-2.4.0-r4 @@ -12,5 +12,5 @@ REQUIRED_USE=debugger? ( ^^ ( python_single_target_python3_9 python_single_targe RESTRICT=test SLOT=0 SRC_URI=https://github.com/jerryscript-project/jerryscript/archive/refs/tags/v2.4.0.tar.gz -> jerryscript-2.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=76fa3b4a107b12e508b4a09ca2548d22 diff --git a/metadata/md5-cache/dev-lang/jsonnet-0.19.0-r1 b/metadata/md5-cache/dev-lang/jsonnet-0.19.0-r1 index 4ad26d18319c..9b329d323b8c 100644 --- a/metadata/md5-cache/dev-lang/jsonnet-0.19.0-r1 +++ b/metadata/md5-cache/dev-lang/jsonnet-0.19.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_pypy3 python_targets_python3_9 python RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/google/jsonnet/archive/v0.19.0.tar.gz -> jsonnet-0.19.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=065e88c5f55d7d681393607fc985239e diff --git a/metadata/md5-cache/dev-lang/jsonnet-0.19.1 b/metadata/md5-cache/dev-lang/jsonnet-0.19.1 index 89ba3cb830e9..5fba26b3aee1 100644 --- a/metadata/md5-cache/dev-lang/jsonnet-0.19.1 +++ b/metadata/md5-cache/dev-lang/jsonnet-0.19.1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_pypy3 python_targets_python3_9 python RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/google/jsonnet/archive/v0.19.1.tar.gz -> jsonnet-0.19.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4aa4a883dd07d26c670ace8003df9706 diff --git a/metadata/md5-cache/dev-lang/luajit-2.1.0_beta3_p20220613 b/metadata/md5-cache/dev-lang/luajit-2.1.0_beta3_p20220613 index 4a2bae1ba706..5f7c391cb6df 100644 --- a/metadata/md5-cache/dev-lang/luajit-2.1.0_beta3_p20220613 +++ b/metadata/md5-cache/dev-lang/luajit-2.1.0_beta3_p20220613 @@ -4,9 +4,9 @@ EAPI=7 HOMEPAGE=https://luajit.org/ INHERIT=pax-utils toolchain-funcs IUSE=lua52compat static-libs -KEYWORDS=~amd64 ~arm ~arm64 -hppa ~ppc -riscv -sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ~arm ~arm64 -hppa ~mips ~ppc -riscv -sparc ~x86 ~amd64-linux ~x86-linux LICENSE=MIT SLOT=2/2.1.0_beta3_p20220613 SRC_URI=https://github.com/LuaJIT/LuaJIT/archive/0065cff7e0222c234b75a71e72b8883df5d000c2.tar.gz -> luajit-2.1.0_beta3_p20220613.tar.gz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=665142e5eabcb8dc4d49836060d974c6 +_md5_=2a56fddfa3f490d9be426f5aac139ca1 diff --git a/metadata/md5-cache/dev-lang/mozart-2.0.1 b/metadata/md5-cache/dev-lang/mozart-2.0.1 index 61637fc40869..dcd9c3d4444a 100644 --- a/metadata/md5-cache/dev-lang/mozart-2.0.1 +++ b/metadata/md5-cache/dev-lang/mozart-2.0.1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= dev-libs/gmp:0 dev-lang/tcl:0 dev-lang/tk:0 emacs? ( >= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mozart/mozart2/archive/v2.0.1.tar.gz -> mozart-2.0.1.tar.gz https://dev.gentoo.org/~keri/distfiles/mozart/mozart-2.0.1-gentoo-patchset-2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-ant-2 f9b70c3474c0b326c8102814719dc554 java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-ant-2 f9b70c3474c0b326c8102814719dc554 java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8d6a6508b6d7621f4aedb600153cba06 diff --git a/metadata/md5-cache/dev-lang/mozart-stdlib-2.0.1 b/metadata/md5-cache/dev-lang/mozart-stdlib-2.0.1 index 05c964350be0..66d626f79f9f 100644 --- a/metadata/md5-cache/dev-lang/mozart-stdlib-2.0.1 +++ b/metadata/md5-cache/dev-lang/mozart-stdlib-2.0.1 @@ -10,5 +10,5 @@ LICENSE=Mozart RDEPEND=>=dev-lang/mozart-2.0.1 SLOT=0 SRC_URI=https://dev.gentoo.org/~keri/distfiles/mozart-stdlib/mozart2-stdlib-2.0.1.tar.gz https://dev.gentoo.org/~keri/distfiles/mozart-stdlib/mozart-stdlib-2.0.1-gentoo-patchset-0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9ab6b989faa480847aec722c18de04cc diff --git a/metadata/md5-cache/dev-lang/mujs-1.3.2 b/metadata/md5-cache/dev-lang/mujs-1.3.2 index 666955456f80..de7cfbc2e13d 100644 --- a/metadata/md5-cache/dev-lang/mujs-1.3.2 +++ b/metadata/md5-cache/dev-lang/mujs-1.3.2 @@ -4,10 +4,10 @@ DESCRIPTION=An embeddable JavaScript interpreter written in C EAPI=8 HOMEPAGE=https://mujs.com/ https://github.com/ccxvii/mujs INHERIT=flag-o-matic multilib toolchain-funcs -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos LICENSE=ISC RDEPEND=sys-libs/readline:= SLOT=0/1.3.2 SRC_URI=https://mujs.com/downloads/mujs-1.3.2.tar.gz _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=86ce81ba053e290b7a602bf3969b6b11 +_md5_=569309c156cc5ff5e6031bc7e464a26f diff --git a/metadata/md5-cache/dev-lang/neko-2.3.0-r2 b/metadata/md5-cache/dev-lang/neko-2.3.0-r2 index 7d6536c65d11..4b1df6b448b4 100644 --- a/metadata/md5-cache/dev-lang/neko-2.3.0-r2 +++ b/metadata/md5-cache/dev-lang/neko-2.3.0-r2 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/boehm-gc:=[threads] dev-libs/libpcre:= sys-libs/zlib:= apache? ( www-servers/apache:2= ) mysql? ( dev-db/mysql:= ) sqlite? ( dev-db/sqlite:3= ) ssl? ( dev-libs/openssl:= net-libs/mbedtls:= ) SLOT=0/2.3.0 SRC_URI=https://github.com/HaxeFoundation/neko/archive/refs/tags/v2-3-0.tar.gz -> neko-2.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=070ca2d7f3f9024f3801f6774d5aa7ce diff --git a/metadata/md5-cache/dev-lang/rust-1.68.0 b/metadata/md5-cache/dev-lang/rust-1.68.0 new file mode 100644 index 000000000000..b13f98dba40c --- /dev/null +++ b/metadata/md5-cache/dev-lang/rust-1.68.0 @@ -0,0 +1,17 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) app-eselect/eselect-rust || ( >=sys-devel/gcc-4.7 >=sys-devel/clang-3.5 ) system-bootstrap? ( || ( =dev-lang/rust-1.67* =dev-lang/rust-bin-1.67* =dev-lang/rust-1.68* =dev-lang/rust-bin-1.68* ) ) !system-llvm? ( >=dev-util/cmake-3.13.4 dev-util/ninja ) test? ( sys-devel/gdb ) verify-sig? ( sec-keys/openpgp-keys-rust ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup test unpack +DEPEND=>=app-arch/xz-utils-5.2 net-misc/curl:=[http2,ssl] sys-libs/zlib:= dev-libs/openssl:0= system-llvm? ( || ( ( llvm_targets_AArch64? ( sys-devel/llvm:15[llvm_targets_AArch64(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_AMDGPU? ( sys-devel/llvm:15[llvm_targets_AMDGPU(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_ARM? ( sys-devel/llvm:15[llvm_targets_ARM(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_AVR? ( sys-devel/llvm:15[llvm_targets_AVR(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_BPF? ( sys-devel/llvm:15[llvm_targets_BPF(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_Hexagon? ( sys-devel/llvm:15[llvm_targets_Hexagon(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_Lanai? ( sys-devel/llvm:15[llvm_targets_Lanai(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_Mips? ( sys-devel/llvm:15[llvm_targets_Mips(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_MSP430? ( sys-devel/llvm:15[llvm_targets_MSP430(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_NVPTX? ( sys-devel/llvm:15[llvm_targets_NVPTX(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_PowerPC? ( sys-devel/llvm:15[llvm_targets_PowerPC(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_RISCV? ( sys-devel/llvm:15[llvm_targets_RISCV(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_Sparc? ( sys-devel/llvm:15[llvm_targets_Sparc(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_SystemZ? ( sys-devel/llvm:15[llvm_targets_SystemZ(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_WebAssembly? ( sys-devel/llvm:15[llvm_targets_WebAssembly(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_X86? ( sys-devel/llvm:15[llvm_targets_X86(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_XCore? ( sys-devel/llvm:15[llvm_targets_XCore(-)] ) wasm? ( sys-devel/lld:15 ) ) ) =app-arch/xz-utils-5.2 net-misc/curl:=[http2,ssl] sys-libs/zlib:= dev-libs/openssl:0= system-llvm? ( || ( ( llvm_targets_AArch64? ( sys-devel/llvm:15[llvm_targets_AArch64(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_AMDGPU? ( sys-devel/llvm:15[llvm_targets_AMDGPU(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_ARM? ( sys-devel/llvm:15[llvm_targets_ARM(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_AVR? ( sys-devel/llvm:15[llvm_targets_AVR(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_BPF? ( sys-devel/llvm:15[llvm_targets_BPF(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_Hexagon? ( sys-devel/llvm:15[llvm_targets_Hexagon(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_Lanai? ( sys-devel/llvm:15[llvm_targets_Lanai(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_Mips? ( sys-devel/llvm:15[llvm_targets_Mips(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_MSP430? ( sys-devel/llvm:15[llvm_targets_MSP430(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_NVPTX? ( sys-devel/llvm:15[llvm_targets_NVPTX(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_PowerPC? ( sys-devel/llvm:15[llvm_targets_PowerPC(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_RISCV? ( sys-devel/llvm:15[llvm_targets_RISCV(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_Sparc? ( sys-devel/llvm:15[llvm_targets_Sparc(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_SystemZ? ( sys-devel/llvm:15[llvm_targets_SystemZ(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_WebAssembly? ( sys-devel/llvm:15[llvm_targets_WebAssembly(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_X86? ( sys-devel/llvm:15[llvm_targets_X86(-)] ) wasm? ( sys-devel/lld:15 ) llvm_targets_XCore? ( sys-devel/llvm:15[llvm_targets_XCore(-)] ) wasm? ( sys-devel/lld:15 ) ) ) =app-portage/gemato-16 ) +DEFINED_PHASES=compile configure install postinst postrm pretend test unpack +DESCRIPTION=Systems programming language from Mozilla +EAPI=8 +HOMEPAGE=https://www.rust-lang.org/ +INHERIT=multilib prefix rust-toolchain toolchain-funcs verify-sig multilib-minimal +IUSE=clippy cpu_flags_x86_sse2 doc prefix rust-analyzer rust-src rustfmt abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86 +LICENSE=|| ( MIT Apache-2.0 ) BSD BSD-1 BSD-2 BSD-4 UoI-NCSA +RDEPEND=>=app-eselect/eselect-rust-20190311 || ( dev-libs/openssl-compat:1.1.1 squirrel-3.2.tar.gz https://raw.githubusercontent.com/albertodemichelis/squirrel/v3.2/squirrel-config.cmake.in -> squirrel-config.cmake.in_3.2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b1503a556c773a047ecb5416ee135be0 diff --git a/metadata/md5-cache/dev-lang/swi-prolog-8.4.1 b/metadata/md5-cache/dev-lang/swi-prolog-8.4.1 index 1556d4e87c1e..1615d3c22dea 100644 --- a/metadata/md5-cache/dev-lang/swi-prolog-8.4.1 +++ b/metadata/md5-cache/dev-lang/swi-prolog-8.4.1 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/ncurses:= sys-libs/zlib virtual/libcrypt:= archive? ( app-arch/ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.swi-prolog.org/download/stable/src/swipl-8.4.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6faffc3f8659cc64a188c974f7cf72cf diff --git a/metadata/md5-cache/dev-lang/swi-prolog-8.5.11 b/metadata/md5-cache/dev-lang/swi-prolog-8.5.11 index 780b0c09b577..3585cfed19e7 100644 --- a/metadata/md5-cache/dev-lang/swi-prolog-8.5.11 +++ b/metadata/md5-cache/dev-lang/swi-prolog-8.5.11 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/ncurses:= sys-libs/zlib virtual/libcrypt:= archive? ( app-arch/ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.swi-prolog.org/download/devel/src/swipl-8.5.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5b2d4614e0a90299b7eb45f1cffada76 diff --git a/metadata/md5-cache/dev-lang/swi-prolog-8.5.12 b/metadata/md5-cache/dev-lang/swi-prolog-8.5.12 index 1334a2923596..9bcb1f5cf4db 100644 --- a/metadata/md5-cache/dev-lang/swi-prolog-8.5.12 +++ b/metadata/md5-cache/dev-lang/swi-prolog-8.5.12 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/ncurses:= sys-libs/zlib virtual/libcrypt:= archive? ( app-arch/ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.swi-prolog.org/download/devel/src/swipl-8.5.12.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3030c61ce04b6a82ecd526052736dee4 diff --git a/metadata/md5-cache/dev-lang/swi-prolog-9.1.2-r1 b/metadata/md5-cache/dev-lang/swi-prolog-9.1.2-r1 index b48d892e8540..dd4b28ff8370 100644 --- a/metadata/md5-cache/dev-lang/swi-prolog-9.1.2-r1 +++ b/metadata/md5-cache/dev-lang/swi-prolog-9.1.2-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=doc? ( archive ) minimal? ( !archive !doc !ipc !ssl !test ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.swi-prolog.org/download/devel/src/swipl-9.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cf4069aadc93d03ddfd82700c6fcdea3 diff --git a/metadata/md5-cache/dev-lang/yap-7.0.1 b/metadata/md5-cache/dev-lang/yap-7.0.1 index 4d2a83cb1816..bea718f24a4a 100644 --- a/metadata/md5-cache/dev-lang/yap-7.0.1 +++ b/metadata/md5-cache/dev-lang/yap-7.0.1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libutf8proc sys-libs/zlib dev-libs/gmp:0 java? ( >=virtual/jdk- REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 SRC_URI=https://github.com/vscosta/yap/archive/5bebd8e3aae655690ddf33dfb32289766910fa25.tar.gz -> yap-5bebd8e3aae655690ddf33dfb32289766910fa25.tar.gz https://dev.gentoo.org/~keri/distfiles/yap/yap-7.0.1-gentoo-patchset-0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fc0d013cddf9eb0e748b157122c5ab87 diff --git a/metadata/md5-cache/dev-lang/yap-7.1.0 b/metadata/md5-cache/dev-lang/yap-7.1.0 index a748c52a536f..09f1a765f437 100644 --- a/metadata/md5-cache/dev-lang/yap-7.1.0 +++ b/metadata/md5-cache/dev-lang/yap-7.1.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libutf8proc sys-libs/zlib dev-libs/gmp:0[cxx] java? ( >=virtual REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 SRC_URI=https://github.com/vscosta/yap/archive/77bb2ba5eadfb95b67abccd22b298cfb75dd3328.tar.gz -> yap-77bb2ba5eadfb95b67abccd22b298cfb75dd3328.tar.gz https://dev.gentoo.org/~keri/distfiles/yap/yap-7.1.0-gentoo-patchset-3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0f02b718bfd0f8fa84fbe1d7c77d7e8b diff --git a/metadata/md5-cache/dev-lang/zig-0.10.1-r2 b/metadata/md5-cache/dev-lang/zig-0.10.1-r2 index 6792f6f00db1..4416a20833dd 100644 --- a/metadata/md5-cache/dev-lang/zig-0.10.1-r2 +++ b/metadata/md5-cache/dev-lang/zig-0.10.1-r2 @@ -12,5 +12,5 @@ LICENSE=MIT RDEPEND=sys-devel/clang:15= sys-devel/lld:15= sys-devel/llvm:15=[zstd] SLOT=0.10 SRC_URI=https://ziglang.org/download/0.10.1/zig-0.10.1.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=13a850751cd572a99a475e9c4348d1c2 diff --git a/metadata/md5-cache/dev-lang/zig-9999 b/metadata/md5-cache/dev-lang/zig-9999 index 4f34dc02f3d3..6771326521f1 100644 --- a/metadata/md5-cache/dev-lang/zig-9999 +++ b/metadata/md5-cache/dev-lang/zig-9999 @@ -11,5 +11,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=sys-devel/clang:15= sys-devel/lld:15= sys-devel/llvm:15=[zstd] SLOT=9999 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e245edce6ec6a3ae8d52a8a23c442713 diff --git a/metadata/md5-cache/dev-libs/FBGEMM-2022.07.16 b/metadata/md5-cache/dev-libs/FBGEMM-2022.07.16 index 19f22de80324..1799e17bc14d 100644 --- a/metadata/md5-cache/dev-libs/FBGEMM-2022.07.16 +++ b/metadata/md5-cache/dev-libs/FBGEMM-2022.07.16 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/asmjit-2022.07.02 dev-libs/cpuinfo RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pytorch/FBGEMM/archive/7d59e803359eb323598e572700db27de467b705a.tar.gz -> FBGEMM-2022.07.16.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4a3cddf84250b60d87b260d1e752f14 diff --git a/metadata/md5-cache/dev-libs/FP16-2021.03.20-r3 b/metadata/md5-cache/dev-libs/FP16-2021.03.20-r3 index 125990b1afc2..36d74c11867a 100644 --- a/metadata/md5-cache/dev-libs/FP16-2021.03.20-r3 +++ b/metadata/md5-cache/dev-libs/FP16-2021.03.20-r3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Maratyszcza/FP16/archive/0a92994d729ff76a58f692d3028ca1b64b145d91.tar.gz -> FP16-2021.03.20.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d6afdaf501acec0005a00340f1c3c010 diff --git a/metadata/md5-cache/dev-libs/FXdiv-2020.12.09-r1 b/metadata/md5-cache/dev-libs/FXdiv-2020.12.09-r1 index 5d14125a0d22..de1496d68f4e 100644 --- a/metadata/md5-cache/dev-libs/FXdiv-2020.12.09-r1 +++ b/metadata/md5-cache/dev-libs/FXdiv-2020.12.09-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Maratyszcza/FXdiv/archive/63058eff77e11aa15bf531df5dd34395ec3017c8.tar.gz -> FXdiv-2020.12.09.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef9db7d353320585f6f706fa513357b4 diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index 5bdce2b538b3..27ef1724a2c3 100644 Binary files a/metadata/md5-cache/dev-libs/Manifest.gz and b/metadata/md5-cache/dev-libs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-libs/aml-0.2.2 b/metadata/md5-cache/dev-libs/aml-0.3.0 similarity index 84% rename from metadata/md5-cache/dev-libs/aml-0.2.2 rename to metadata/md5-cache/dev-libs/aml-0.3.0 index 0a91967ca052..8f521c95abf8 100644 --- a/metadata/md5-cache/dev-libs/aml-0.2.2 +++ b/metadata/md5-cache/dev-libs/aml-0.3.0 @@ -9,6 +9,6 @@ IUSE=examples KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~riscv ~x86 LICENSE=ISC SLOT=0 -SRC_URI=https://github.com/any1/aml/archive/v0.2.2.tar.gz -> aml-0.2.2.tar.gz +SRC_URI=https://github.com/any1/aml/archive/v0.3.0.tar.gz -> aml-0.3.0.tar.gz _eclasses_=meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=633e9218a8bc761c7c8e44ed078484d0 +_md5_=6d106afab4755c37f35feb772cecd670 diff --git a/metadata/md5-cache/dev-libs/aml-9999 b/metadata/md5-cache/dev-libs/aml-9999 index c38653e05d26..a844d9fea248 100644 --- a/metadata/md5-cache/dev-libs/aml-9999 +++ b/metadata/md5-cache/dev-libs/aml-9999 @@ -10,4 +10,4 @@ LICENSE=ISC PROPERTIES=live SLOT=0 _eclasses_=git-r3 c57c50c922e121043788de0b40ada60a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=49559a41e56cb4f8c7a737df02f328ba +_md5_=6d106afab4755c37f35feb772cecd670 diff --git a/metadata/md5-cache/dev-libs/apr-1.7.2-r1 b/metadata/md5-cache/dev-libs/apr-1.7.2-r1 new file mode 100644 index 000000000000..c344021d6965 --- /dev/null +++ b/metadata/md5-cache/dev-libs/apr-1.7.2-r1 @@ -0,0 +1,15 @@ +BDEPEND=>=sys-devel/libtool-2.4.2 doc? ( app-doc/doxygen ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=compile configure install prepare test +DEPEND=virtual/libcrypt:= elibc_glibc? ( >=sys-apps/util-linux-2.16 ) +DESCRIPTION=Apache Portable Runtime Library +EAPI=8 +HOMEPAGE=https://apr.apache.org/ +INHERIT=autotools toolchain-funcs +IUSE=doc old-kernel selinux static-libs +urandom +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=Apache-2.0 +RDEPEND=virtual/libcrypt:= elibc_glibc? ( >=sys-apps/util-linux-2.16 ) selinux? ( sec-policy/selinux-base-policy ) +SLOT=1/1.7 +SRC_URI=mirror://apache/apr/apr-1.7.2.tar.bz2 +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=74dd4628e053579759f29dc6f2d43716 diff --git a/metadata/md5-cache/dev-libs/asmjit-2021.11.13 b/metadata/md5-cache/dev-libs/asmjit-2021.11.13 index c162c351fed5..00397f1bab48 100644 --- a/metadata/md5-cache/dev-libs/asmjit-2021.11.13 +++ b/metadata/md5-cache/dev-libs/asmjit-2021.11.13 @@ -10,5 +10,5 @@ LICENSE=ZLIB RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/asmjit/asmjit/archive/4ec760a3d1f69e32ba460ecd2513f29b8428700b.tar.gz -> asmjit-2021.11.13.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=351666e4c24bb14cb0869afe844bfe3e diff --git a/metadata/md5-cache/dev-libs/asmjit-2022.07.02 b/metadata/md5-cache/dev-libs/asmjit-2022.07.02 index 5e33c96185bd..093f1ea0940d 100644 --- a/metadata/md5-cache/dev-libs/asmjit-2022.07.02 +++ b/metadata/md5-cache/dev-libs/asmjit-2022.07.02 @@ -10,5 +10,5 @@ LICENSE=ZLIB RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/asmjit/asmjit/archive/c59847629d3a19da4d10f0be4ac33b43fc4a100f.tar.gz -> asmjit-2022.07.02.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=962b9124a3f98aedcbfd22802ed79331 diff --git a/metadata/md5-cache/dev-libs/atcore-1.0.0 b/metadata/md5-cache/dev-libs/atcore-1.0.0 index cebd63f60950..c9a90e9563bb 100644 --- a/metadata/md5-cache/dev-libs/atcore-1.0.0 +++ b/metadata/md5-cache/dev-libs/atcore-1.0.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtserialport-5.12.3:5 gui? ( >=dev-qt/qtcharts-5.12.3:5 >=dev-q RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://kde/stable/atcore/1.0.0/atcore-1.0.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef306343a6be8110c5f608ab5f040bd5 diff --git a/metadata/md5-cache/dev-libs/avro-c-1.9.1-r1 b/metadata/md5-cache/dev-libs/avro-c-1.9.1-r2 similarity index 77% rename from metadata/md5-cache/dev-libs/avro-c-1.9.1-r1 rename to metadata/md5-cache/dev-libs/avro-c-1.9.1-r2 index bdf5e308c5df..27f7d7c5b49b 100644 --- a/metadata/md5-cache/dev-libs/avro-c-1.9.1-r1 +++ b/metadata/md5-cache/dev-libs/avro-c-1.9.1-r2 @@ -1,14 +1,14 @@ BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/snappy >=dev-libs/jansson-2.3:= sys-libs/zlib +DEPEND=app-arch/snappy:= >=dev-libs/jansson-2.3:= sys-libs/zlib DESCRIPTION=c library for the apache avro data serialization system EAPI=7 HOMEPAGE=https://avro.apache.org/ INHERIT=cmake KEYWORDS=amd64 LICENSE=Apache-2.0 -RDEPEND=app-arch/snappy >=dev-libs/jansson-2.3:= sys-libs/zlib +RDEPEND=app-arch/snappy:= >=dev-libs/jansson-2.3:= sys-libs/zlib SLOT=0 SRC_URI=https://archive.apache.org/dist/avro/avro-1.9.1/c/avro-c-1.9.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=72718e54a1c1acb6cb9ce9d50884e4d2 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=6a8cad20d9f9617df3f9c520e17392e2 diff --git a/metadata/md5-cache/dev-libs/aws-c-cal-0.4.5 b/metadata/md5-cache/dev-libs/aws-c-cal-0.4.5 index afce8e0e21d8..f36152d4caf0 100644 --- a/metadata/md5-cache/dev-libs/aws-c-cal-0.4.5 +++ b/metadata/md5-cache/dev-libs/aws-c-cal-0.4.5 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awslabs/aws-c-cal/archive/v0.4.5.tar.gz -> aws-c-cal-0.4.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b81f7ddf56c463c1b962d2e8dadab894 diff --git a/metadata/md5-cache/dev-libs/aws-c-common-0.4.62 b/metadata/md5-cache/dev-libs/aws-c-common-0.4.62 index 287590c9db3c..5a5772972331 100644 --- a/metadata/md5-cache/dev-libs/aws-c-common-0.4.62 +++ b/metadata/md5-cache/dev-libs/aws-c-common-0.4.62 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awslabs/aws-c-common/archive/v0.4.62.tar.gz -> aws-c-common-0.4.62.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a66498e95e23ed07f7f9417d3a0aadd6 diff --git a/metadata/md5-cache/dev-libs/aws-c-common-0.5.2 b/metadata/md5-cache/dev-libs/aws-c-common-0.5.2 index b04eb6ab91b9..2fdaa5b2487f 100644 --- a/metadata/md5-cache/dev-libs/aws-c-common-0.5.2 +++ b/metadata/md5-cache/dev-libs/aws-c-common-0.5.2 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awslabs/aws-c-common/archive/v0.5.2.tar.gz -> aws-c-common-0.5.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2e32b5994b51a5bffbc240e9e3fcda6 diff --git a/metadata/md5-cache/dev-libs/aws-c-event-stream-0.2.5-r1 b/metadata/md5-cache/dev-libs/aws-c-event-stream-0.2.5-r1 index 1461e337e4c7..c645249b9f31 100644 --- a/metadata/md5-cache/dev-libs/aws-c-event-stream-0.2.5-r1 +++ b/metadata/md5-cache/dev-libs/aws-c-event-stream-0.2.5-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awslabs/aws-c-event-stream/archive/v0.2.5.tar.gz -> aws-c-event-stream-0.2.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cee1abee2bc3d454e3448f41d7fc733d diff --git a/metadata/md5-cache/dev-libs/aws-c-event-stream-0.2.7 b/metadata/md5-cache/dev-libs/aws-c-event-stream-0.2.7 index ad7ba7daa7a3..60f4a4c45dca 100644 --- a/metadata/md5-cache/dev-libs/aws-c-event-stream-0.2.7 +++ b/metadata/md5-cache/dev-libs/aws-c-event-stream-0.2.7 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awslabs/aws-c-event-stream/archive/v0.2.7.tar.gz -> aws-c-event-stream-0.2.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=adee10f5729f537db49c920bbf80d04b diff --git a/metadata/md5-cache/dev-libs/aws-c-io-0.7.0-r1 b/metadata/md5-cache/dev-libs/aws-c-io-0.7.0-r1 index 20e079b751a0..0a6d2ff8c1ff 100644 --- a/metadata/md5-cache/dev-libs/aws-c-io-0.7.0-r1 +++ b/metadata/md5-cache/dev-libs/aws-c-io-0.7.0-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awslabs/aws-c-io/archive/v0.7.0.tar.gz -> aws-c-io-0.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e916c93e8c9faf05f849c17441ebe946 diff --git a/metadata/md5-cache/dev-libs/aws-c-io-0.9.2 b/metadata/md5-cache/dev-libs/aws-c-io-0.9.2 index 5ea0d517687a..d1c4994c0f62 100644 --- a/metadata/md5-cache/dev-libs/aws-c-io-0.9.2 +++ b/metadata/md5-cache/dev-libs/aws-c-io-0.9.2 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awslabs/aws-c-io/archive/v0.9.2.tar.gz -> aws-c-io-0.9.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=42b360ca127d36a98b3098778e318fb9 diff --git a/metadata/md5-cache/dev-libs/aws-checksums-0.1.10 b/metadata/md5-cache/dev-libs/aws-checksums-0.1.10 index 89571bcb7d24..ed2cbc4f8543 100644 --- a/metadata/md5-cache/dev-libs/aws-checksums-0.1.10 +++ b/metadata/md5-cache/dev-libs/aws-checksums-0.1.10 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awslabs/aws-checksums/archive/v0.1.10.tar.gz -> aws-checksums-0.1.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=216c4cf499e6dbae4fa3f929a1454be7 diff --git a/metadata/md5-cache/dev-libs/ayatana-ido-0.9.2 b/metadata/md5-cache/dev-libs/ayatana-ido-0.9.2 index f82d2135771b..4eaaa7361d17 100644 --- a/metadata/md5-cache/dev-libs/ayatana-ido-0.9.2 +++ b/metadata/md5-cache/dev-libs/ayatana-ido-0.9.2 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.58:2 >=x11-libs/gtk+-3.24:3[introspection] RESTRICT=test SLOT=0 SRC_URI=https://github.com/AyatanaIndicators/ayatana-ido/archive/0.9.2.tar.gz -> ayatana-ido-0.9.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b84e4a9edd32eb8960f042e634fceafa diff --git a/metadata/md5-cache/dev-libs/ayatana-ido-0.9.3 b/metadata/md5-cache/dev-libs/ayatana-ido-0.9.3 index 85fe23dbce7d..7d1419a6698c 100644 --- a/metadata/md5-cache/dev-libs/ayatana-ido-0.9.3 +++ b/metadata/md5-cache/dev-libs/ayatana-ido-0.9.3 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.58:2 >=x11-libs/gtk+-3.24:3[introspection] RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/AyatanaIndicators/ayatana-ido/archive/0.9.3.tar.gz -> ayatana-ido-0.9.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3c11c18117c3515bcb68a41ae506638d diff --git a/metadata/md5-cache/dev-libs/c-blosc-1.21.3 b/metadata/md5-cache/dev-libs/c-blosc-1.21.3 index 084267f09d9a..7b958fabb0fd 100644 --- a/metadata/md5-cache/dev-libs/c-blosc-1.21.3 +++ b/metadata/md5-cache/dev-libs/c-blosc-1.21.3 @@ -12,5 +12,5 @@ RDEPEND=lz4? ( >=app-arch/lz4-1.7.5:= ) snappy? ( app-arch/snappy:= ) zlib? ( sy RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/Blosc/c-blosc/archive/v1.21.3.tar.gz -> c-blosc-1.21.3.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=900d703aeac535ae6d17138112ad4ed9 diff --git a/metadata/md5-cache/dev-libs/c-blosc2-2.6.1 b/metadata/md5-cache/dev-libs/c-blosc2-2.6.1 index 51e8405b6b99..a775aaebdff6 100644 --- a/metadata/md5-cache/dev-libs/c-blosc2-2.6.1 +++ b/metadata/md5-cache/dev-libs/c-blosc2-2.6.1 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( zlib zstd ) RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/Blosc/c-blosc2/archive/v2.6.1.tar.gz -> c-blosc2-2.6.1.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=11aee4cddc10396e932685918df1e563 diff --git a/metadata/md5-cache/dev-libs/cJSON-1.7.15 b/metadata/md5-cache/dev-libs/cJSON-1.7.15 index da13bd1af1b1..7ad5bebe0eb5 100644 --- a/metadata/md5-cache/dev-libs/cJSON-1.7.15 +++ b/metadata/md5-cache/dev-libs/cJSON-1.7.15 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/DaveGamble/cJSON/archive/v1.7.15.tar.gz -> cJSON-1.7.15.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4c4a2fb08b4a2913026d88bcaf96932 diff --git a/metadata/md5-cache/dev-libs/capnproto-0.10.2 b/metadata/md5-cache/dev-libs/capnproto-0.10.2 index 1c7dbfc49542..c43174308f16 100644 --- a/metadata/md5-cache/dev-libs/capnproto-0.10.2 +++ b/metadata/md5-cache/dev-libs/capnproto-0.10.2 @@ -12,5 +12,5 @@ RDEPEND=ssl? ( dev-libs/openssl:0= ) zlib? ( sys-libs/zlib:0= ) RESTRICT=!test? ( test ) SLOT=0/091 SRC_URI=https://github.com/sandstorm-io/capnproto/archive/v0.10.2.tar.gz -> capnproto-0.10.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6494b8b50ff6b7402f2851d71ea1ed4b diff --git a/metadata/md5-cache/dev-libs/capnproto-0.9.1 b/metadata/md5-cache/dev-libs/capnproto-0.9.1 index 97cc674dc195..15f64abc9160 100644 --- a/metadata/md5-cache/dev-libs/capnproto-0.9.1 +++ b/metadata/md5-cache/dev-libs/capnproto-0.9.1 @@ -12,5 +12,5 @@ RDEPEND=ssl? ( dev-libs/openssl:0= ) zlib? ( sys-libs/zlib:0= ) RESTRICT=!test? ( test ) SLOT=0/091 SRC_URI=https://github.com/sandstorm-io/capnproto/archive/v0.9.1.tar.gz -> capnproto-0.9.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b561ad6598f47b2fd88db12a06ab05a9 diff --git a/metadata/md5-cache/dev-libs/capstone-4.0.2-r2 b/metadata/md5-cache/dev-libs/capstone-4.0.2-r2 index 35efc249e30f..cab9df7a6d54 100644 --- a/metadata/md5-cache/dev-libs/capstone-4.0.2-r2 +++ b/metadata/md5-cache/dev-libs/capstone-4.0.2-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 p RESTRICT=test SLOT=0/4 SRC_URI=https://github.com/capstone-engine/capstone/archive/4.0.2.tar.gz -> capstone-4.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4ba79d7e302c33f9d0ce8da92bbb0eee diff --git a/metadata/md5-cache/dev-libs/capstone-5.0_rc2-r2 b/metadata/md5-cache/dev-libs/capstone-5.0_rc2-r2 index 2b8af2c96d3a..4f11f0efd80a 100644 --- a/metadata/md5-cache/dev-libs/capstone-5.0_rc2-r2 +++ b/metadata/md5-cache/dev-libs/capstone-5.0_rc2-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 p RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=https://github.com/capstone-engine/capstone/archive/5.0-rc2.tar.gz -> capstone-5.0_rc2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8b39d35e89c1b2af664aaa20e8ca138d diff --git a/metadata/md5-cache/dev-libs/capstone-5.0_rc2-r3 b/metadata/md5-cache/dev-libs/capstone-5.0_rc2-r3 index cea331c84aa6..dba963b4b7ab 100644 --- a/metadata/md5-cache/dev-libs/capstone-5.0_rc2-r3 +++ b/metadata/md5-cache/dev-libs/capstone-5.0_rc2-r3 @@ -6,12 +6,12 @@ EAPI=8 HOMEPAGE=https://www.capstone-engine.org/ INHERIT=cmake distutils-r1 toolchain-funcs IUSE=python static-libs test test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv x86 LICENSE=BSD RDEPEND=python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=https://github.com/capstone-engine/capstone/archive/5.0-rc2.tar.gz -> capstone-5.0_rc2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=cb8a13d2b6684b3eb8a4f71b49a6c7b0 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=c4433a52b68f0c7a89f78b9ecd3a1e08 diff --git a/metadata/md5-cache/dev-libs/capstone-9999 b/metadata/md5-cache/dev-libs/capstone-9999 index b257c7ab77da..16f2ab871d4b 100644 --- a/metadata/md5-cache/dev-libs/capstone-9999 +++ b/metadata/md5-cache/dev-libs/capstone-9999 @@ -12,5 +12,5 @@ RDEPEND=python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) RESTRICT=!test? ( test ) SLOT=0/5 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ca92befb11564720613e7878cee956a diff --git a/metadata/md5-cache/dev-libs/castxml-0.5.1-r1 b/metadata/md5-cache/dev-libs/castxml-0.5.1-r1 index fe0fd98a3ffa..d2382f191f53 100644 --- a/metadata/md5-cache/dev-libs/castxml-0.5.1-r1 +++ b/metadata/md5-cache/dev-libs/castxml-0.5.1-r1 @@ -12,5 +12,5 @@ RDEPEND= castxml-0.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e3c5ded1f6369edc75eefef73396018 diff --git a/metadata/md5-cache/dev-libs/cereal-1.3.2-r2 b/metadata/md5-cache/dev-libs/cereal-1.3.2-r2 index 38de37290e8f..ffdb083e9acc 100644 --- a/metadata/md5-cache/dev-libs/cereal-1.3.2-r2 +++ b/metadata/md5-cache/dev-libs/cereal-1.3.2-r2 @@ -11,5 +11,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/USCiLab/cereal/archive/v1.3.2.tar.gz -> cereal-1.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8c7c81ac45834978f95812c80b45f3ee diff --git a/metadata/md5-cache/dev-libs/cgreen-1.3.0 b/metadata/md5-cache/dev-libs/cgreen-1.3.0 index b160bad3dfa5..5b51f1b1a1d2 100644 --- a/metadata/md5-cache/dev-libs/cgreen-1.3.0 +++ b/metadata/md5-cache/dev-libs/cgreen-1.3.0 @@ -10,5 +10,5 @@ LICENSE=ISC RDEPEND=sys-libs/glibc:= SLOT=0 SRC_URI=https://github.com/cgreen-devs/cgreen/archive/1.3.0.tar.gz -> cgreen-1.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e0562a8ad3d0972b4008f1559580e96 diff --git a/metadata/md5-cache/dev-libs/check-0.15.2-r1 b/metadata/md5-cache/dev-libs/check-0.15.2-r1 index c39fc70d9e8c..da2ce4b1171c 100644 --- a/metadata/md5-cache/dev-libs/check-0.15.2-r1 +++ b/metadata/md5-cache/dev-libs/check-0.15.2-r1 @@ -12,5 +12,5 @@ RDEPEND=subunit? ( dev-python/subunit[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32( RESTRICT=ppc? ( test ) ppc64? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/libcheck/check/archive/0.15.2.tar.gz -> check-0.15.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e619859cc05635a3da7f23d7a51c2abd diff --git a/metadata/md5-cache/dev-libs/clhpp-2.0.19 b/metadata/md5-cache/dev-libs/clhpp-2.0.19 index 837dbe937013..277d4e9bbc03 100644 --- a/metadata/md5-cache/dev-libs/clhpp-2.0.19 +++ b/metadata/md5-cache/dev-libs/clhpp-2.0.19 @@ -12,5 +12,5 @@ RDEPEND=virtual/opencl RESTRICT=test SLOT=0 SRC_URI=https://github.com/KhronosGroup/OpenCL-CLHPP/archive/refs/tags/v2022.09.30.tar.gz -> clhpp-2.0.19.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e9143d462689b3539bb320e2f4accb85 diff --git a/metadata/md5-cache/dev-libs/clhpp-2023.02.06 b/metadata/md5-cache/dev-libs/clhpp-2023.02.06 index 45b8c9d023d4..eb847a8cae03 100644 --- a/metadata/md5-cache/dev-libs/clhpp-2023.02.06 +++ b/metadata/md5-cache/dev-libs/clhpp-2023.02.06 @@ -12,5 +12,5 @@ RDEPEND=virtual/opencl RESTRICT=test SLOT=0 SRC_URI=https://github.com/KhronosGroup/OpenCL-CLHPP/archive/refs/tags/v2023.02.06.tar.gz -> clhpp-2023.02.06.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8f9ed93f7fa3a675d8825b0991dbdeda diff --git a/metadata/md5-cache/dev-libs/clipper-6.4.2 b/metadata/md5-cache/dev-libs/clipper-6.4.2 index 98cb582408f1..69d99e491f5f 100644 --- a/metadata/md5-cache/dev-libs/clipper-6.4.2 +++ b/metadata/md5-cache/dev-libs/clipper-6.4.2 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm64 ~x86 LICENSE=Boost-1.0 SLOT=0 SRC_URI=mirror://sourceforge/project/polyclipping/clipper_ver6.4.2.zip -> clipper-6.4.2.zip -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f0a55fdac54144d4e6dd45d32584ff31 diff --git a/metadata/md5-cache/dev-libs/collada-dom-2.5.0-r1 b/metadata/md5-cache/dev-libs/collada-dom-2.5.0-r1 index 3aa8aa7b9eec..6182f09c83d0 100644 --- a/metadata/md5-cache/dev-libs/collada-dom-2.5.0-r1 +++ b/metadata/md5-cache/dev-libs/collada-dom-2.5.0-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/boost:= dev-libs/libxml2 dev-libs/libpcre[cxx] sys-libs/zlib:=[minizip] SLOT=0/25 SRC_URI=https://github.com/rdiankov/collada-dom/archive/v2.5.0.tar.gz -> collada-dom-2.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7d6b40292804d6974084ff4dbc7ee880 diff --git a/metadata/md5-cache/dev-libs/console_bridge-1.0.2 b/metadata/md5-cache/dev-libs/console_bridge-1.0.2 index a9b59abff8d6..e1573fc52210 100644 --- a/metadata/md5-cache/dev-libs/console_bridge-1.0.2 +++ b/metadata/md5-cache/dev-libs/console_bridge-1.0.2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://raw.githubusercontent.com/ament/ament_lint/0.9.5/ament_cppcheck/ament_cppcheck/main.py -> console_bridge-1.0.2-ament-0.9.5-cppcheck.py https://raw.githubusercontent.com/ament/ament_lint/0.9.5/ament_cpplint/ament_cpplint/cpplint.py -> console_bridge-1.0.2-ament-0.9.5-cpplint.py https://github.com/ros/console_bridge/archive/1.0.2.tar.gz -> console_bridge-1.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3117f6dd3e00b7e21c445cffbb6302d7 diff --git a/metadata/md5-cache/dev-libs/console_bridge-9999 b/metadata/md5-cache/dev-libs/console_bridge-9999 index f431d909b2c2..4a1c86d64156 100644 --- a/metadata/md5-cache/dev-libs/console_bridge-9999 +++ b/metadata/md5-cache/dev-libs/console_bridge-9999 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://raw.githubusercontent.com/ament/ament_lint/0.9.5/ament_cppcheck/ament_cppcheck/main.py -> console_bridge-9999-ament-0.9.5-cppcheck.py https://raw.githubusercontent.com/ament/ament_lint/0.9.5/ament_cpplint/ament_cpplint/cpplint.py -> console_bridge-9999-ament-0.9.5-cpplint.py -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3117f6dd3e00b7e21c445cffbb6302d7 diff --git a/metadata/md5-cache/dev-libs/cppcodec-0.2 b/metadata/md5-cache/dev-libs/cppcodec-0.2 index 5f64a63deebf..30d6b5291a03 100644 --- a/metadata/md5-cache/dev-libs/cppcodec-0.2 +++ b/metadata/md5-cache/dev-libs/cppcodec-0.2 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/tplgy/cppcodec/archive/v0.2.tar.gz -> cppcodec-0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=833f28c3feb25ca9423e7136ddfbdffd diff --git a/metadata/md5-cache/dev-libs/cppcodec-9999 b/metadata/md5-cache/dev-libs/cppcodec-9999 index 562c29c1c845..9ebd0b92535a 100644 --- a/metadata/md5-cache/dev-libs/cppcodec-9999 +++ b/metadata/md5-cache/dev-libs/cppcodec-9999 @@ -10,5 +10,5 @@ LICENSE=MIT PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=833f28c3feb25ca9423e7136ddfbdffd diff --git a/metadata/md5-cache/dev-libs/cpuinfo-2022.03.26-r1 b/metadata/md5-cache/dev-libs/cpuinfo-2022.03.26-r1 index 4379776b63e7..34ba1c744e69 100644 --- a/metadata/md5-cache/dev-libs/cpuinfo-2022.03.26-r1 +++ b/metadata/md5-cache/dev-libs/cpuinfo-2022.03.26-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pytorch/cpuinfo/archive/b40bae27785787b6dd70788986fd96434cf90ae2.tar.gz -> cpuinfo-2022.03.26.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e8b42d5fc762a3c3ca549d10b21bded8 diff --git a/metadata/md5-cache/dev-libs/crc32c-1.1.2-r1 b/metadata/md5-cache/dev-libs/crc32c-1.1.2-r1 index 5bf6dd73c092..0fec5aef6125 100644 --- a/metadata/md5-cache/dev-libs/crc32c-1.1.2-r1 +++ b/metadata/md5-cache/dev-libs/crc32c-1.1.2-r1 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/crc32c/archive/1.1.2.tar.gz -> crc32c-1.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d5983649c1808e857414da6df87ee360 diff --git a/metadata/md5-cache/dev-libs/crc32c-1.1.2-r2 b/metadata/md5-cache/dev-libs/crc32c-1.1.2-r2 index 334b1fd53536..16eeac9eb0cf 100644 --- a/metadata/md5-cache/dev-libs/crc32c-1.1.2-r2 +++ b/metadata/md5-cache/dev-libs/crc32c-1.1.2-r2 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/crc32c/archive/1.1.2.tar.gz -> crc32c-1.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=360ac6cc94adf8cd0972a43a3079770c diff --git a/metadata/md5-cache/dev-libs/crossguid-0.2.2_p20190529 b/metadata/md5-cache/dev-libs/crossguid-0.2.2_p20190529 index 9723281c712e..d3df8abcb16e 100644 --- a/metadata/md5-cache/dev-libs/crossguid-0.2.2_p20190529 +++ b/metadata/md5-cache/dev-libs/crossguid-0.2.2_p20190529 @@ -12,5 +12,5 @@ RDEPEND=sys-apps/util-linux RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/graeme-hill/crossguid/archive/ca1bf4b810e2d188d04cb6286f957008ee1b7681.tar.gz -> crossguid-0.2.2_p20190529.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0bceafa683f2a702f662a5f3d0717117 diff --git a/metadata/md5-cache/dev-libs/cutlass-2.10.0 b/metadata/md5-cache/dev-libs/cutlass-2.10.0 index bb6c0178bc8f..e068810b5982 100644 --- a/metadata/md5-cache/dev-libs/cutlass-2.10.0 +++ b/metadata/md5-cache/dev-libs/cutlass-2.10.0 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 LICENSE=BSD SLOT=0 SRC_URI=https://github.com/NVIDIA/cutlass/archive/refs/tags/v2.10.0.tar.gz -> cutlass-2.10.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2fdfc425420b76ad91ee29fb426b9b53 diff --git a/metadata/md5-cache/dev-libs/cxxopts-3.0.0 b/metadata/md5-cache/dev-libs/cxxopts-3.0.0 index e92dc0047de9..667dc429e650 100644 --- a/metadata/md5-cache/dev-libs/cxxopts-3.0.0 +++ b/metadata/md5-cache/dev-libs/cxxopts-3.0.0 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/3.0.0 SRC_URI=https://github.com/jarro2783/cxxopts/archive/v3.0.0.tar.gz -> cxxopts-3.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=179c1ab6f20a350781150feb1074be9b diff --git a/metadata/md5-cache/dev-libs/cxxopts-3.1.0 b/metadata/md5-cache/dev-libs/cxxopts-3.1.0 index ea04e3f5bf9b..80d11ae23540 100644 --- a/metadata/md5-cache/dev-libs/cxxopts-3.1.0 +++ b/metadata/md5-cache/dev-libs/cxxopts-3.1.0 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/3.1.0 SRC_URI=https://github.com/jarro2783/cxxopts/archive/v3.1.0.tar.gz -> cxxopts-3.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=baa931b7303f0b7dc0552fbb64fdaa46 diff --git a/metadata/md5-cache/dev-libs/date-3.0.0 b/metadata/md5-cache/dev-libs/date-3.0.0 index a266af546ad3..9cf50089c19d 100644 --- a/metadata/md5-cache/dev-libs/date-3.0.0 +++ b/metadata/md5-cache/dev-libs/date-3.0.0 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/3.0.0 SRC_URI=https://github.com/HowardHinnant/date/archive/v3.0.0.tar.gz -> date-3.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bd7fbaad72a1288726e3068b7c45c2d1 diff --git a/metadata/md5-cache/dev-libs/double-conversion-3.2.1 b/metadata/md5-cache/dev-libs/double-conversion-3.2.1 index 205347011edd..c13260bfacce 100644 --- a/metadata/md5-cache/dev-libs/double-conversion-3.2.1 +++ b/metadata/md5-cache/dev-libs/double-conversion-3.2.1 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=https://github.com/google/double-conversion/archive/v3.2.1.tar.gz -> double-conversion-3.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a213c69ccbdaffdebe2b0c4ce031375a diff --git a/metadata/md5-cache/dev-libs/fddl-20111124-r1 b/metadata/md5-cache/dev-libs/fddl-20111124-r1 index b7a141e9b434..705f600333f0 100644 --- a/metadata/md5-cache/dev-libs/fddl-20111124-r1 +++ b/metadata/md5-cache/dev-libs/fddl-20111124-r1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/fddl-20111124.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ad19b744031dbd9f34e9557d4d8b6485 diff --git a/metadata/md5-cache/dev-libs/flatbuffers-23.1.21 b/metadata/md5-cache/dev-libs/flatbuffers-23.1.21 index fbcc4f3bee01..e78645b887df 100644 --- a/metadata/md5-cache/dev-libs/flatbuffers-23.1.21 +++ b/metadata/md5-cache/dev-libs/flatbuffers-23.1.21 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0/23.1.21 SRC_URI=https://github.com/google/flatbuffers/archive/v23.1.21.tar.gz -> flatbuffers-23.1.21.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1f25aa57a3e5467e225d73741267293e diff --git a/metadata/md5-cache/dev-libs/flatbuffers-23.3.3 b/metadata/md5-cache/dev-libs/flatbuffers-23.3.3 index bff678645c3f..f5a6beca6211 100644 --- a/metadata/md5-cache/dev-libs/flatbuffers-23.3.3 +++ b/metadata/md5-cache/dev-libs/flatbuffers-23.3.3 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0/23.3.3 SRC_URI=https://github.com/google/flatbuffers/archive/v23.3.3.tar.gz -> flatbuffers-23.3.3.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=86a5b5e16d8bb554758c07cfd0df3f5f diff --git a/metadata/md5-cache/dev-libs/foma-0.10.0_p20220612 b/metadata/md5-cache/dev-libs/foma-0.10.0_p20220612 index a4d6cb49a6b4..56a03c996b89 100644 --- a/metadata/md5-cache/dev-libs/foma-0.10.0_p20220612 +++ b/metadata/md5-cache/dev-libs/foma-0.10.0_p20220612 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=sys-libs/readline:= sys-libs/zlib SLOT=0/0.10 SRC_URI=https://github.com/mhulden/foma/archive/9e8c3df573015a26c84e113ba710ef3d57c8e777.tar.gz -> foma-0.10.0_p20220612.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea56d768088fe823beb150e96c90e2ba diff --git a/metadata/md5-cache/dev-libs/girara-0.3.7 b/metadata/md5-cache/dev-libs/girara-0.4.0 similarity index 71% rename from metadata/md5-cache/dev-libs/girara-0.3.7 rename to metadata/md5-cache/dev-libs/girara-0.4.0 index c9fc3023dbb5..2150359a4d69 100644 --- a/metadata/md5-cache/dev-libs/girara-0.3.7 +++ b/metadata/md5-cache/dev-libs/girara-0.4.0 @@ -1,16 +1,16 @@ BDEPEND=doc? ( app-doc/doxygen ) test? ( dev-libs/check ) virtual/pkgconfig >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install test -DEPEND=dev-libs/glib:2 dev-libs/json-c:= >=x11-libs/gtk+-3.20:3 libnotify? ( x11-libs/libnotify ) +DEPEND=dev-libs/glib:2 dev-libs/json-glib:= >=x11-libs/gtk+-3.20:3 libnotify? ( x11-libs/libnotify ) DESCRIPTION=UI library that focuses on simplicity and minimalism EAPI=7 HOMEPAGE=https://pwmt.org/projects/girara/ INHERIT=meson virtualx IUSE=doc libnotify test test -KEYWORDS=amd64 arm ~riscv x86 +KEYWORDS=~amd64 ~arm ~riscv ~x86 LICENSE=ZLIB -RDEPEND=dev-libs/glib:2 dev-libs/json-c:= >=x11-libs/gtk+-3.20:3 libnotify? ( x11-libs/libnotify ) +RDEPEND=dev-libs/glib:2 dev-libs/json-glib:= >=x11-libs/gtk+-3.20:3 libnotify? ( x11-libs/libnotify ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://pwmt.org/projects/girara/download/girara-0.3.7.tar.xz +SRC_URI=https://pwmt.org/projects/girara/download/girara-0.4.0.tar.xz _eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 -_md5_=0a2ba4049805ab3d6e89e660343fe380 +_md5_=ec36de9a3da4e84b192a81e2c360ae9d diff --git a/metadata/md5-cache/dev-libs/gjs-1.76.0 b/metadata/md5-cache/dev-libs/gjs-1.76.0 new file mode 100644 index 000000000000..230472487908 --- /dev/null +++ b/metadata/md5-cache/dev-libs/gjs-1.76.0 @@ -0,0 +1,16 @@ +BDEPEND=virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install test +DEPEND=>=dev-libs/glib-2.66.0:2 dev-libs/libffi:= >=dev-libs/gobject-introspection-1.71.1:= >=dev-lang/spidermonkey-102.2.0:102 cairo? ( x11-libs/cairo[X,glib] ) readline? ( sys-libs/readline:0= ) sysprof? ( >=dev-util/sysprof-capture-3.40.1:4 ) test? ( sys-apps/dbus >=x11-libs/gtk+-3.20:3[introspection] ) +DESCRIPTION=Javascript bindings for GNOME +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Projects/Gjs https://gitlab.gnome.org/GNOME/gjs +INHERIT=flag-o-matic gnome.org meson virtualx +IUSE=+cairo examples readline sysprof test test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 +LICENSE=MIT || ( MPL-1.1 LGPL-2+ GPL-2+ ) +RDEPEND=>=dev-libs/glib-2.66.0:2 dev-libs/libffi:= >=dev-libs/gobject-introspection-1.71.1:= >=dev-lang/spidermonkey-102.2.0:102 cairo? ( x11-libs/cairo[X,glib] ) readline? ( sys-libs/readline:0= ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=mirror://gnome/sources/gjs/1.76/gjs-1.76.0.tar.xz +_eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 +_md5_=f7b84ac850524f86a3d1a038f3d39a40 diff --git a/metadata/md5-cache/dev-libs/gost-engine-3.0.1 b/metadata/md5-cache/dev-libs/gost-engine-3.0.1 index d20ee5dbf5cf..7c6857104d70 100644 --- a/metadata/md5-cache/dev-libs/gost-engine-3.0.1 +++ b/metadata/md5-cache/dev-libs/gost-engine-3.0.1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/openssl-3.0.0:0= RESTRICT=!test? ( test ) SLOT=0/3.0.1 SRC_URI=https://github.com/gost-engine/engine/archive/v3.0.1.tar.gz -> gost-engine-3.0.1.tar.gz https://github.com/provider-corner/libprov/archive/8a126e09547630ef900177625626b6156052f0ee.tar.gz -> libprov-8a126e09547630ef900177625626b6156052f0ee.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57ba94f908216412cbc82339a5cc96e4 diff --git a/metadata/md5-cache/dev-libs/gost-engine-3.0.1-r1 b/metadata/md5-cache/dev-libs/gost-engine-3.0.1-r1 index 18afb8203213..ce7e49081784 100644 --- a/metadata/md5-cache/dev-libs/gost-engine-3.0.1-r1 +++ b/metadata/md5-cache/dev-libs/gost-engine-3.0.1-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/openssl-3.0.0:0= RESTRICT=!test? ( test ) SLOT=0/3.0.1 SRC_URI=https://github.com/gost-engine/engine/archive/v3.0.1.tar.gz -> gost-engine-3.0.1.tar.gz https://github.com/provider-corner/libprov/archive/8a126e09547630ef900177625626b6156052f0ee.tar.gz -> libprov-8a126e09547630ef900177625626b6156052f0ee.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=311eb045a34ef35262c918617cdaf84c diff --git a/metadata/md5-cache/dev-libs/gost-engine-9999 b/metadata/md5-cache/dev-libs/gost-engine-9999 index 808b91cc3a4d..b0caf66c90ca 100644 --- a/metadata/md5-cache/dev-libs/gost-engine-9999 +++ b/metadata/md5-cache/dev-libs/gost-engine-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=dev-libs/openssl-3.0.0:0= RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57ba94f908216412cbc82339a5cc96e4 diff --git a/metadata/md5-cache/dev-libs/grantlee-5.3.0 b/metadata/md5-cache/dev-libs/grantlee-5.3.0 index 561b366cf955..0703547c1122 100644 --- a/metadata/md5-cache/dev-libs/grantlee-5.3.0 +++ b/metadata/md5-cache/dev-libs/grantlee-5.3.0 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=http://downloads.grantlee.org/grantlee-5.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=672b233fe00edae381ad1d3e7ba5cf74 diff --git a/metadata/md5-cache/dev-libs/hidapi-0.12.0 b/metadata/md5-cache/dev-libs/hidapi-0.12.0 index a2bb169e4bf0..c6b79c255955 100644 --- a/metadata/md5-cache/dev-libs/hidapi-0.12.0 +++ b/metadata/md5-cache/dev-libs/hidapi-0.12.0 @@ -11,5 +11,5 @@ LICENSE=|| ( BSD GPL-3 HIDAPI ) RDEPEND=virtual/libusb: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(-)?] virtual/libudev:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=https://github.com/libusb/hidapi/archive/hidapi-0.12.0.tar.gz -> hidapi-0.12.0.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f6018f8b26f6558732df5424818ad526 diff --git a/metadata/md5-cache/dev-libs/hidapi-0.12.0-r1 b/metadata/md5-cache/dev-libs/hidapi-0.12.0-r1 index 15d5d7e02663..0289dd56f7da 100644 --- a/metadata/md5-cache/dev-libs/hidapi-0.12.0-r1 +++ b/metadata/md5-cache/dev-libs/hidapi-0.12.0-r1 @@ -11,5 +11,5 @@ LICENSE=|| ( BSD GPL-3 HIDAPI ) RDEPEND=virtual/libusb: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(-)?] virtual/libudev:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=https://github.com/libusb/hidapi/archive/hidapi-0.12.0.tar.gz -> hidapi-0.12.0.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c5487c83620ab08eb7aa028ead05096b diff --git a/metadata/md5-cache/dev-libs/hidapi-0.13.1 b/metadata/md5-cache/dev-libs/hidapi-0.13.1 index eb3ce9c43262..409191c43b53 100644 --- a/metadata/md5-cache/dev-libs/hidapi-0.13.1 +++ b/metadata/md5-cache/dev-libs/hidapi-0.13.1 @@ -11,5 +11,5 @@ LICENSE=|| ( BSD GPL-3 HIDAPI ) RDEPEND=virtual/libusb: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(-)?] virtual/libudev:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=https://github.com/libusb/hidapi/archive/hidapi-0.13.1.tar.gz -> hidapi-0.13.1.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c5487c83620ab08eb7aa028ead05096b diff --git a/metadata/md5-cache/dev-libs/hyperscan-5.4.0 b/metadata/md5-cache/dev-libs/hyperscan-5.4.0 index 2930b9424e4a..604b9789b791 100644 --- a/metadata/md5-cache/dev-libs/hyperscan-5.4.0 +++ b/metadata/md5-cache/dev-libs/hyperscan-5.4.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= REQUIRED_USE=cpu_flags_x86_ssse3 SLOT=0 SRC_URI=https://github.com/intel/hyperscan/archive/v5.4.0.tar.gz -> hyperscan-5.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=28458df7ed473e9193e966fd35f585ef +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=4b369a923a5b701159b3c57b78f77889 diff --git a/metadata/md5-cache/dev-libs/hyperscan-5.4.1 b/metadata/md5-cache/dev-libs/hyperscan-5.4.1 index c75e7f1857da..affa8c2a1346 100644 --- a/metadata/md5-cache/dev-libs/hyperscan-5.4.1 +++ b/metadata/md5-cache/dev-libs/hyperscan-5.4.1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= REQUIRED_USE=cpu_flags_x86_ssse3 SLOT=0 SRC_URI=https://github.com/intel/hyperscan/archive/v5.4.1.tar.gz -> hyperscan-5.4.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=776da98c2750d4e50682c29700f654b1 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=26dc10fdf5cf7ff419ea20d87f08b297 diff --git a/metadata/md5-cache/dev-libs/igraph-0.10.4 b/metadata/md5-cache/dev-libs/igraph-0.10.4 index fa4d384fb000..a041be6c20ec 100644 --- a/metadata/md5-cache/dev-libs/igraph-0.10.4 +++ b/metadata/md5-cache/dev-libs/igraph-0.10.4 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/gmp:0= dev-libs/libxml2 sci-libs/arpack sci-mathematics/glpk:= RESTRICT=!test? ( test ) SLOT=0/0 SRC_URI=https://github.com/igraph/igraph/releases/download/0.10.4/igraph-0.10.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e455739757a7024c49ab8d7ac4ebcfe7 diff --git a/metadata/md5-cache/dev-libs/igraph-0.9.4 b/metadata/md5-cache/dev-libs/igraph-0.9.4 index 496b7d662978..5e6b091396ec 100644 --- a/metadata/md5-cache/dev-libs/igraph-0.9.4 +++ b/metadata/md5-cache/dev-libs/igraph-0.9.4 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/gmp:0= dev-libs/libxml2 sci-libs/arpack sci-libs/cxsparse sci-m RESTRICT=!test? ( test ) SLOT=0/0 SRC_URI=https://github.com/igraph/igraph/releases/download/0.9.4/igraph-0.9.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=044f3376a26aa157ef313c511d1fc130 diff --git a/metadata/md5-cache/dev-libs/imath-3.1.6 b/metadata/md5-cache/dev-libs/imath-3.1.6 index fff3a286e626..b9311a0ef708 100644 --- a/metadata/md5-cache/dev-libs/imath-3.1.6 +++ b/metadata/md5-cache/dev-libs/imath-3.1.6 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=3/29 SRC_URI=https://github.com/AcademySoftwareFoundation/Imath/archive/refs/tags/v3.1.6.tar.gz -> imath-3.1.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=67c9ad918e618234d4f5e15a70479def diff --git a/metadata/md5-cache/dev-libs/intel-compute-runtime-22.49.25018.24 b/metadata/md5-cache/dev-libs/intel-compute-runtime-22.49.25018.24 index 5e1071239c61..d9abd31c797d 100644 --- a/metadata/md5-cache/dev-libs/intel-compute-runtime-22.49.25018.24 +++ b/metadata/md5-cache/dev-libs/intel-compute-runtime-22.49.25018.24 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=>=media-libs/gmmlib-22.1.7:= SLOT=0 SRC_URI=https://github.com/intel/compute-runtime/archive/22.49.25018.24.tar.gz -> intel-compute-runtime-22.49.25018.24.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c525f281fa01f72d7a8de945dda15359 diff --git a/metadata/md5-cache/dev-libs/intel-compute-runtime-22.53.25242.13 b/metadata/md5-cache/dev-libs/intel-compute-runtime-22.53.25242.13 index 23a0400021c6..b8dd9067d2ea 100644 --- a/metadata/md5-cache/dev-libs/intel-compute-runtime-22.53.25242.13 +++ b/metadata/md5-cache/dev-libs/intel-compute-runtime-22.53.25242.13 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=>=media-libs/gmmlib-22.1.7:= SLOT=0 SRC_URI=https://github.com/intel/compute-runtime/archive/22.53.25242.13.tar.gz -> intel-compute-runtime-22.53.25242.13.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6514f8ea04f827f8d0243347cbc27309 diff --git a/metadata/md5-cache/dev-libs/intel-compute-runtime-23.05.25593.11 b/metadata/md5-cache/dev-libs/intel-compute-runtime-23.05.25593.11 index f24c8453879d..c6a23e1e5fcb 100644 --- a/metadata/md5-cache/dev-libs/intel-compute-runtime-23.05.25593.11 +++ b/metadata/md5-cache/dev-libs/intel-compute-runtime-23.05.25593.11 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=>=media-libs/gmmlib-22.1.7:= SLOT=0 SRC_URI=https://github.com/intel/compute-runtime/archive/23.05.25593.11.tar.gz -> intel-compute-runtime-23.05.25593.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c3a55b4e6cad2d1e0fddfbb4b13dff82 diff --git a/metadata/md5-cache/dev-libs/intel-metrics-library-0_pre20220930 b/metadata/md5-cache/dev-libs/intel-metrics-library-0_pre20220930 index 9906a7d4685b..b38d2b550dd6 100644 --- a/metadata/md5-cache/dev-libs/intel-metrics-library-0_pre20220930 +++ b/metadata/md5-cache/dev-libs/intel-metrics-library-0_pre20220930 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=x11-libs/libdrm SLOT=0/114 SRC_URI=https://github.com/intel/metrics-library/archive/f829f43a06bfbbdf026b5455d74482d476dd7a02.tar.gz -> intel-metrics-library-0_pre20220930.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9f87908827304bacd1ed1ab59bfce969 diff --git a/metadata/md5-cache/dev-libs/intel-metrics-library-0_pre20221216 b/metadata/md5-cache/dev-libs/intel-metrics-library-0_pre20221216 index 47ed04560ff4..862f9089e72f 100644 --- a/metadata/md5-cache/dev-libs/intel-metrics-library-0_pre20221216 +++ b/metadata/md5-cache/dev-libs/intel-metrics-library-0_pre20221216 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=x11-libs/libdrm SLOT=0/122 SRC_URI=https://github.com/intel/metrics-library/archive/465ce91cab733a2a2289c4d12cff76e47c96a9ba.tar.gz -> intel-metrics-library-0_pre20221216.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=77e81ddf12a39c7a40ec894b7f0e5369 diff --git a/metadata/md5-cache/dev-libs/intel-vc-intrinsics-0.11.0 b/metadata/md5-cache/dev-libs/intel-vc-intrinsics-0.11.0 index 025f821edbc6..d6e6a2a125d6 100644 --- a/metadata/md5-cache/dev-libs/intel-vc-intrinsics-0.11.0 +++ b/metadata/md5-cache/dev-libs/intel-vc-intrinsics-0.11.0 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/libxml2:2= sys-devel/llvm:14 sys-libs/zlib SLOT=0 SRC_URI=https://github.com/intel/vc-intrinsics/archive/refs/tags/v0.11.0.tar.gz -> intel-vc-intrinsics-0.11.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=36d02f75fabfaf28d5f75aff4a2b8106 diff --git a/metadata/md5-cache/dev-libs/intel-vc-intrinsics-0.12.1 b/metadata/md5-cache/dev-libs/intel-vc-intrinsics-0.12.1 index 83c8240d6db5..ad7226f53b2c 100644 --- a/metadata/md5-cache/dev-libs/intel-vc-intrinsics-0.12.1 +++ b/metadata/md5-cache/dev-libs/intel-vc-intrinsics-0.12.1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/libxml2:2= sys-devel/llvm:14 sys-libs/zlib SLOT=0 SRC_URI=https://github.com/intel/vc-intrinsics/archive/refs/tags/v0.12.1.tar.gz -> intel-vc-intrinsics-0.12.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=176d289e7e973b442d1e353d5a88769a diff --git a/metadata/md5-cache/dev-libs/jemalloc-5.3.0-r1 b/metadata/md5-cache/dev-libs/jemalloc-5.3.0-r1 index 1d25429766a2..093933ce7d3f 100644 --- a/metadata/md5-cache/dev-libs/jemalloc-5.3.0-r1 +++ b/metadata/md5-cache/dev-libs/jemalloc-5.3.0-r1 @@ -10,4 +10,4 @@ LICENSE=BSD SLOT=0/2 SRC_URI=https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2 _eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=4bd8fd4aeacd0b6b6d9065da860c123b +_md5_=ee4885cebbdb760da21a5390f0f65746 diff --git a/metadata/md5-cache/dev-libs/json-c-0.16-r1 b/metadata/md5-cache/dev-libs/json-c-0.16-r1 index 50b46aba523d..c4d4811b1715 100644 --- a/metadata/md5-cache/dev-libs/json-c-0.16-r1 +++ b/metadata/md5-cache/dev-libs/json-c-0.16-r1 @@ -9,5 +9,5 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=MIT SLOT=0/5 SRC_URI=https://s3.amazonaws.com/json-c_releases/releases/json-c-0.16.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0fadee45a0d834c077fe5b9afcbae46d diff --git a/metadata/md5-cache/dev-libs/json-c-9999 b/metadata/md5-cache/dev-libs/json-c-9999 index 6768f11aa1cf..be257aaa661b 100644 --- a/metadata/md5-cache/dev-libs/json-c-9999 +++ b/metadata/md5-cache/dev-libs/json-c-9999 @@ -8,5 +8,5 @@ IUSE=cpu_flags_x86_rdrand doc static-libs threads abi_x86_32 abi_x86_64 abi_x86_ LICENSE=MIT PROPERTIES=live SLOT=0/5 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=58c7ae09128d3aa6425654d983a6b79f diff --git a/metadata/md5-cache/dev-libs/jthread-1.3.3-r1 b/metadata/md5-cache/dev-libs/jthread-1.3.3-r1 index 68f9ce7dd0e7..f47c2150f49e 100644 --- a/metadata/md5-cache/dev-libs/jthread-1.3.3-r1 +++ b/metadata/md5-cache/dev-libs/jthread-1.3.3-r1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 x86 LICENSE=MIT SLOT=0/1.3.3 SRC_URI=https://research.edm.uhasselt.be/jori/jthread/jthread-1.3.3.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0ea413cff9e8dcd911d6864ab43a5c13 diff --git a/metadata/md5-cache/dev-libs/kasync-0.3.0 b/metadata/md5-cache/dev-libs/kasync-0.3.0 index 3d7c27fc4ea2..55bf0990fd88 100644 --- a/metadata/md5-cache/dev-libs/kasync-0.3.0 +++ b/metadata/md5-cache/dev-libs/kasync-0.3.0 @@ -13,5 +13,5 @@ RDEPEND=|| ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/unstable/kasync/0.3.0/src/kasync-0.3.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ccb33d599d76fa13e15da86375a78791 diff --git a/metadata/md5-cache/dev-libs/kdiagram-2.8.0 b/metadata/md5-cache/dev-libs/kdiagram-2.8.0 index 625a0b206fb1..515e3a4091a2 100644 --- a/metadata/md5-cache/dev-libs/kdiagram-2.8.0 +++ b/metadata/md5-cache/dev-libs/kdiagram-2.8.0 @@ -14,5 +14,5 @@ REQUIRED_USE=test? ( examples ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kdiagram/2.8.0/kdiagram-2.8.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea772ba1ab7654e645b4b3d13e9eaf20 diff --git a/metadata/md5-cache/dev-libs/keystone-0.9.2-r1 b/metadata/md5-cache/dev-libs/keystone-0.9.2-r1 index 53a2260318e0..11f84bc460d1 100644 --- a/metadata/md5-cache/dev-libs/keystone-0.9.2-r1 +++ b/metadata/md5-cache/dev-libs/keystone-0.9.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_ARM llvm_targets_Hexagon llv RESTRICT=test SLOT=0 SRC_URI=https://github.com/keystone-engine/keystone/archive/0.9.2.tar.gz -> keystone-0.9.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3378e1fd8afc04516d097384bfeb24b0 diff --git a/metadata/md5-cache/dev-libs/keystone-9999 b/metadata/md5-cache/dev-libs/keystone-9999 index b2c9ead8275b..9db151477a08 100644 --- a/metadata/md5-cache/dev-libs/keystone-9999 +++ b/metadata/md5-cache/dev-libs/keystone-9999 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtquick RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kirigami-addons/kirigami-addons-0.6.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d59351c5b473c091fc21696959064f7b diff --git a/metadata/md5-cache/dev-libs/kopeninghours-22.08.3 b/metadata/md5-cache/dev-libs/kopeninghours-22.08.3 index 19790b51bbb2..1de61f21a846 100644 --- a/metadata/md5-cache/dev-libs/kopeninghours-22.08.3 +++ b/metadata/md5-cache/dev-libs/kopeninghours-22.08.3 @@ -14,5 +14,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kopeninghours-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8ea9ebd4ede8b6cdef95596a5ef07ad5 diff --git a/metadata/md5-cache/dev-libs/kopeninghours-22.12.3 b/metadata/md5-cache/dev-libs/kopeninghours-22.12.3 index a9a98bb40cbd..a43ef91d67b0 100644 --- a/metadata/md5-cache/dev-libs/kopeninghours-22.12.3 +++ b/metadata/md5-cache/dev-libs/kopeninghours-22.12.3 @@ -14,5 +14,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kopeninghours-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ba7309ac955982de7ea28e5a9b0f1713 diff --git a/metadata/md5-cache/dev-libs/kosmindoormap-22.08.3 b/metadata/md5-cache/dev-libs/kosmindoormap-22.08.3 index 43f1e60f4887..5ff3f8ba60c7 100644 --- a/metadata/md5-cache/dev-libs/kosmindoormap-22.08.3 +++ b/metadata/md5-cache/dev-libs/kosmindoormap-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/kpublictransport-22.08.3:5 dev-libs/protobuf:= >=dev-qt/qtdec RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kosmindoormap-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=78875509c0e7f6f9343e60059cfee943 diff --git a/metadata/md5-cache/dev-libs/kosmindoormap-22.12.3 b/metadata/md5-cache/dev-libs/kosmindoormap-22.12.3 index 1f8fb8c4c853..5489c3badff2 100644 --- a/metadata/md5-cache/dev-libs/kosmindoormap-22.12.3 +++ b/metadata/md5-cache/dev-libs/kosmindoormap-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/kpublictransport-22.12.3:5 dev-libs/protobuf:= >=dev-qt/qtdec RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kosmindoormap-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=765c1a33fde6bc267854441cef5ee67b diff --git a/metadata/md5-cache/dev-libs/kpathsea-6.3.3_p20210325-r1 b/metadata/md5-cache/dev-libs/kpathsea-6.3.3_p20210325-r1 index 3b7929f0c314..65b34b866e66 100644 --- a/metadata/md5-cache/dev-libs/kpathsea-6.3.3_p20210325-r1 +++ b/metadata/md5-cache/dev-libs/kpathsea-6.3.3_p20210325-r1 @@ -9,6 +9,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=GPL-2 RDEPEND=virtual/tmpfiles SLOT=0/6.3.3 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/kpathsea-texmf.d-11.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpathsea-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpathsea.doc-2021.tar.xz ) +SRC_URI=https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/kpathsea-texmf.d-11.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-kpathsea-2021.tar.xz doc? ( https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-kpathsea.doc-2021.tar.xz ) _eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 prefix eab3c99d77fe00506c109c8a736186f7 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=5221508eb46f80a47835d0d11d4b83e3 +_md5_=288c90c3a1640429a054fefbeecb9fdc diff --git a/metadata/md5-cache/dev-libs/kpeoplevcard-0.1-r1 b/metadata/md5-cache/dev-libs/kpeoplevcard-0.1-r1 index 24760693cd4a..ac314362893a 100644 --- a/metadata/md5-cache/dev-libs/kpeoplevcard-0.1-r1 +++ b/metadata/md5-cache/dev-libs/kpeoplevcard-0.1-r1 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtwidgets-5.15.2:5 >=kde-frameworks/kcontacts-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kpeople-5.82.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/kpeoplevcard/0.1/kpeoplevcard-0.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cee198d7cf108c691bdb57983995e97d diff --git a/metadata/md5-cache/dev-libs/kproperty-3.2.0 b/metadata/md5-cache/dev-libs/kproperty-3.2.0 index b0675b5fafb1..3ad060d261bb 100644 --- a/metadata/md5-cache/dev-libs/kproperty-3.2.0 +++ b/metadata/md5-cache/dev-libs/kproperty-3.2.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtwidgets-5.12.3:5 >=kde-frameworks/kco RESTRICT=test !test? ( test ) SLOT=5/4 SRC_URI=mirror://kde/stable/kproperty/src/kproperty-3.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f84a7216d3c779b6b11a58c14967f9f3 diff --git a/metadata/md5-cache/dev-libs/kpublictransport-22.08.3 b/metadata/md5-cache/dev-libs/kpublictransport-22.08.3 index 96f6a4ba9d7f..024cf19f08eb 100644 --- a/metadata/md5-cache/dev-libs/kpublictransport-22.08.3 +++ b/metadata/md5-cache/dev-libs/kpublictransport-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/protobuf:= >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15. RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kpublictransport-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3805856f1dc3307e22ad8c5b69133702 diff --git a/metadata/md5-cache/dev-libs/kpublictransport-22.12.3 b/metadata/md5-cache/dev-libs/kpublictransport-22.12.3 index d3bfb3b4ccc5..8ec10db9cc1d 100644 --- a/metadata/md5-cache/dev-libs/kpublictransport-22.12.3 +++ b/metadata/md5-cache/dev-libs/kpublictransport-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/protobuf:= >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15. RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kpublictransport-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=14446136dd7a69c99d38e33e26a1db7b diff --git a/metadata/md5-cache/dev-libs/kreport-3.2.0-r3 b/metadata/md5-cache/dev-libs/kreport-3.2.0-r3 index 6b2f64276c40..a58cffbc2118 100644 --- a/metadata/md5-cache/dev-libs/kreport-3.2.0-r3 +++ b/metadata/md5-cache/dev-libs/kreport-3.2.0-r3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/kproperty-3.2.0:5= >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtprintsu RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/4 SRC_URI=mirror://kde/stable/kreport/src/kreport-3.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=75d3c49eda80c5e2367800132f582005 diff --git a/metadata/md5-cache/dev-libs/kuserfeedback-1.2.0 b/metadata/md5-cache/dev-libs/kuserfeedback-1.2.0 index 4e16ef4fcf28..0bc4fc1081ea 100644 --- a/metadata/md5-cache/dev-libs/kuserfeedback-1.2.0 +++ b/metadata/md5-cache/dev-libs/kuserfeedback-1.2.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtcharts-5.15.2:5 >=dev-qt/qtdeclarative-5.15.2:5 >=dev-qt/qtgu RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kuserfeedback/kuserfeedback-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ff7f0f8a5dabad4ee115a5beaec6e02c diff --git a/metadata/md5-cache/dev-libs/kweathercore-0.7 b/metadata/md5-cache/dev-libs/kweathercore-0.7 index eb51330c8cdd..11f0ffee2298 100644 --- a/metadata/md5-cache/dev-libs/kweathercore-0.7 +++ b/metadata/md5-cache/dev-libs/kweathercore-0.7 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtpositioning-5.15.5:5 >=kde-framew RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kweathercore/0.7/kweathercore-0.7.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b3e3bb6c7789642ad7120217f15acb16 diff --git a/metadata/md5-cache/dev-libs/leatherman-1.12.9 b/metadata/md5-cache/dev-libs/leatherman-1.12.9 index 6590ac55d1ad..080e536848d1 100644 --- a/metadata/md5-cache/dev-libs/leatherman-1.12.9 +++ b/metadata/md5-cache/dev-libs/leatherman-1.12.9 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:=[nls] net-misc/curl RESTRICT=test SLOT=0/1.12.9 SRC_URI=https://github.com/puppetlabs/leatherman/archive/1.12.9.tar.gz -> leatherman-1.12.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=59e2d378e9f8a76232cddf52eda0c3f1 diff --git a/metadata/md5-cache/dev-libs/level-zero-1.9.4 b/metadata/md5-cache/dev-libs/level-zero-1.9.4 index ddea53c03ffa..1e6f5460bc3c 100644 --- a/metadata/md5-cache/dev-libs/level-zero-1.9.4 +++ b/metadata/md5-cache/dev-libs/level-zero-1.9.4 @@ -8,5 +8,5 @@ KEYWORDS=amd64 LICENSE=MIT SLOT=0/1.9.4 SRC_URI=https://github.com/oneapi-src/level-zero/archive/refs/tags/v1.9.4.tar.gz -> level-zero-1.9.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=06d86f15d8d57049d7d2fb0ce8b2e530 diff --git a/metadata/md5-cache/dev-libs/level-zero-1.9.9 b/metadata/md5-cache/dev-libs/level-zero-1.9.9 index 398dc49ad7fd..e7eb45a4429e 100644 --- a/metadata/md5-cache/dev-libs/level-zero-1.9.9 +++ b/metadata/md5-cache/dev-libs/level-zero-1.9.9 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0/1.9.9 SRC_URI=https://github.com/oneapi-src/level-zero/archive/refs/tags/v1.9.9.tar.gz -> level-zero-1.9.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=54f1792f555889f751811cd522b19d5d diff --git a/metadata/md5-cache/dev-libs/leveldb-1.23-r5 b/metadata/md5-cache/dev-libs/leveldb-1.23-r5 index 2043126f3bdd..8141e28959a8 100644 --- a/metadata/md5-cache/dev-libs/leveldb-1.23-r5 +++ b/metadata/md5-cache/dev-libs/leveldb-1.23-r5 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/crc32c snappy? ( app-arch/snappy:= ) tcmalloc? ( dev-util/googl RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/google/leveldb/archive/refs/tags/1.23.tar.gz -> leveldb-1.23.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8b07f997c6d26e73f87cd66170d7240c diff --git a/metadata/md5-cache/dev-libs/libansilove-1.2.9 b/metadata/md5-cache/dev-libs/libansilove-1.2.9 index c14e2fe314ea..cc2b434ee19c 100644 --- a/metadata/md5-cache/dev-libs/libansilove-1.2.9 +++ b/metadata/md5-cache/dev-libs/libansilove-1.2.9 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=media-libs/gd:2=[png] SLOT=0 SRC_URI=https://github.com/ansilove/libansilove/archive/refs/tags/1.2.9.tar.gz -> libansilove-1.2.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43c3c5abb9cc53043b5837f7181474fc diff --git a/metadata/md5-cache/dev-libs/libansilove-1.3.0 b/metadata/md5-cache/dev-libs/libansilove-1.3.0 index 0ed86d1a8ea7..a2ce2ef28ab3 100644 --- a/metadata/md5-cache/dev-libs/libansilove-1.3.0 +++ b/metadata/md5-cache/dev-libs/libansilove-1.3.0 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=media-libs/gd:2=[png] SLOT=0 SRC_URI=https://github.com/ansilove/libansilove/archive/refs/tags/1.3.0.tar.gz -> libansilove-1.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7e298865ae473383fb06cd2e1edf0e0f diff --git a/metadata/md5-cache/dev-libs/libansilove-1.3.1 b/metadata/md5-cache/dev-libs/libansilove-1.3.1 index dafd5df1c16e..d391ee65da1b 100644 --- a/metadata/md5-cache/dev-libs/libansilove-1.3.1 +++ b/metadata/md5-cache/dev-libs/libansilove-1.3.1 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=media-libs/gd:2=[png] SLOT=0 SRC_URI=https://github.com/ansilove/libansilove/archive/refs/tags/1.3.1.tar.gz -> libansilove-1.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=585966ebef91105e268eb2599e0cd95e diff --git a/metadata/md5-cache/dev-libs/libansilove-9999 b/metadata/md5-cache/dev-libs/libansilove-9999 index 1979a9f5c04c..04ee79cddf80 100644 --- a/metadata/md5-cache/dev-libs/libansilove-9999 +++ b/metadata/md5-cache/dev-libs/libansilove-9999 @@ -9,5 +9,5 @@ LICENSE=BSD-2 PROPERTIES=live RDEPEND=media-libs/gd:2=[png] SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43c3c5abb9cc53043b5837f7181474fc diff --git a/metadata/md5-cache/dev-libs/libarcus-4.13.1 b/metadata/md5-cache/dev-libs/libarcus-4.13.1 index 270d6ec239dc..11651c5e8ab6 100644 --- a/metadata/md5-cache/dev-libs/libarcus-4.13.1 +++ b/metadata/md5-cache/dev-libs/libarcus-4.13.1 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) SLOT=0/3 SRC_URI=https://github.com/Ultimaker/libArcus/archive/4.13.1.tar.gz -> libarcus-4.13.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=22d4a31fa2d6addbc7d4c30c8414de48 diff --git a/metadata/md5-cache/dev-libs/libayatana-appindicator-0.5.91 b/metadata/md5-cache/dev-libs/libayatana-appindicator-0.5.91 index 697338758043..754c3afae14c 100644 --- a/metadata/md5-cache/dev-libs/libayatana-appindicator-0.5.91 +++ b/metadata/md5-cache/dev-libs/libayatana-appindicator-0.5.91 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.37:2 >=x11-libs/gtk+-3.24:3[introspection] dev-libs/li RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/AyatanaIndicators/libayatana-appindicator/archive/0.5.91.tar.gz -> libayatana-appindicator-0.5.91.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=207b949e7a76f8fe017a17731370ec7d diff --git a/metadata/md5-cache/dev-libs/libayatana-appindicator-0.5.92 b/metadata/md5-cache/dev-libs/libayatana-appindicator-0.5.92 index a198c4fb8619..23fb29990480 100644 --- a/metadata/md5-cache/dev-libs/libayatana-appindicator-0.5.92 +++ b/metadata/md5-cache/dev-libs/libayatana-appindicator-0.5.92 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.37:2 >=x11-libs/gtk+-3.24:3[introspection] dev-libs/li RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/AyatanaIndicators/libayatana-appindicator/archive/0.5.92.tar.gz -> libayatana-appindicator-0.5.92.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ae2894dd155c2aa057495868df89a296 diff --git a/metadata/md5-cache/dev-libs/libayatana-indicator-0.9.3 b/metadata/md5-cache/dev-libs/libayatana-indicator-0.9.3 index c9b153c94d20..32c9fa93e393 100644 --- a/metadata/md5-cache/dev-libs/libayatana-indicator-0.9.3 +++ b/metadata/md5-cache/dev-libs/libayatana-indicator-0.9.3 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/dbus-glib >=dev-libs/glib-2.58:2 >=x11-libs/gtk+-3.24:3[introsp RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/AyatanaIndicators/libayatana-indicator/archive/0.9.3.tar.gz -> libayatana-indicator-0.9.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=213fd8c96ec1b9288cd8f96f6df6aaf5 diff --git a/metadata/md5-cache/dev-libs/libbson-1.18.0 b/metadata/md5-cache/dev-libs/libbson-1.18.0 index b1892666ca7a..0acc9cdd90ef 100644 --- a/metadata/md5-cache/dev-libs/libbson-1.18.0 +++ b/metadata/md5-cache/dev-libs/libbson-1.18.0 @@ -10,5 +10,5 @@ KEYWORDS=amd64 ~arm64 ~hppa ~loong ~ppc ~riscv ~sparc x86 LICENSE=Apache-2.0 SLOT=0 SRC_URI=https://github.com/mongodb/mongo-c-driver/releases/download/1.18.0/mongo-c-driver-1.18.0.tar.gz -> libbson-1.18.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e3ca051039e38b8426e329fdb6140dda diff --git a/metadata/md5-cache/dev-libs/libcbor-0.10.1 b/metadata/md5-cache/dev-libs/libcbor-0.10.1 index 9fd658fada83..d555c78a6a7c 100644 --- a/metadata/md5-cache/dev-libs/libcbor-0.10.1 +++ b/metadata/md5-cache/dev-libs/libcbor-0.10.1 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/0.10 SRC_URI=https://github.com/PJK/libcbor/archive/v0.10.1.tar.gz -> libcbor-0.10.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=11fe78884bf0460299d24b21add62fd9 diff --git a/metadata/md5-cache/dev-libs/libcbor-0.10.2 b/metadata/md5-cache/dev-libs/libcbor-0.10.2 index be751b270aac..db4381c847e2 100644 --- a/metadata/md5-cache/dev-libs/libcbor-0.10.2 +++ b/metadata/md5-cache/dev-libs/libcbor-0.10.2 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/0.10 SRC_URI=https://github.com/PJK/libcbor/archive/v0.10.2.tar.gz -> libcbor-0.10.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=67246ac480b587efe426467632a19b4f diff --git a/metadata/md5-cache/dev-libs/libcbor-0.9.0 b/metadata/md5-cache/dev-libs/libcbor-0.9.0 index 3a92281d3587..59e43b74aaf6 100644 --- a/metadata/md5-cache/dev-libs/libcbor-0.9.0 +++ b/metadata/md5-cache/dev-libs/libcbor-0.9.0 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/0.9 SRC_URI=https://github.com/PJK/libcbor/archive/v0.9.0.tar.gz -> libcbor-0.9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=50ba265acbcd99598d69c0df7325203c diff --git a/metadata/md5-cache/dev-libs/libcec-6.0.2 b/metadata/md5-cache/dev-libs/libcec-6.0.2 index 27a9862f41b4..b3a7c639326d 100644 --- a/metadata/md5-cache/dev-libs/libcec-6.0.2 +++ b/metadata/md5-cache/dev-libs/libcec-6.0.2 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libplatform-2.0.0 python? ( python_single_target_python3_9? ( REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) SLOT=0 SRC_URI=https://github.com/Pulse-Eight/libcec/archive/libcec-6.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=424787583eedc6d6f5ed00ec47939fe0 diff --git a/metadata/md5-cache/dev-libs/libcharon-4.13.0 b/metadata/md5-cache/dev-libs/libcharon-4.13.0 index d1f266cab499..27cf208e8f8d 100644 --- a/metadata/md5-cache/dev-libs/libcharon-4.13.0 +++ b/metadata/md5-cache/dev-libs/libcharon-4.13.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Ultimaker/libCharon/archive/4.13.0.tar.gz -> libcharon-4.13.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ffafaf803c4be6868903a36fc042051e diff --git a/metadata/md5-cache/dev-libs/libchdr-0_p20221129 b/metadata/md5-cache/dev-libs/libchdr-0_p20221129 index 92eac199bb39..986bd732d969 100644 --- a/metadata/md5-cache/dev-libs/libchdr-0_p20221129 +++ b/metadata/md5-cache/dev-libs/libchdr-0_p20221129 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=sys-libs/zlib:= SLOT=0 SRC_URI=https://github.com/rtissera/libchdr/archive/a20e04c12c0c20048bf771da6df7aa2e51f5e0cb.tar.gz -> libchdr-0_p20221129.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9763191384fca029dc3b72f11f395bfe diff --git a/metadata/md5-cache/dev-libs/libclc-14.0.6 b/metadata/md5-cache/dev-libs/libclc-14.0.6 index 4b1c2aa347b4..415bfcc52efe 100644 --- a/metadata/md5-cache/dev-libs/libclc-14.0.6 +++ b/metadata/md5-cache/dev-libs/libclc-14.0.6 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0-with-LLVM-exceptions || ( MIT BSD ) REQUIRED_USE=|| ( video_cards_nvidia video_cards_r600 video_cards_radeonsi ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1146abd4294efeffbee6b66090a04a69 diff --git a/metadata/md5-cache/dev-libs/libclc-15.0.7 b/metadata/md5-cache/dev-libs/libclc-15.0.7 index cafc0dca712a..376167b824ba 100644 --- a/metadata/md5-cache/dev-libs/libclc-15.0.7 +++ b/metadata/md5-cache/dev-libs/libclc-15.0.7 @@ -10,5 +10,5 @@ KEYWORDS=amd64 x86 LICENSE=Apache-2.0-with-LLVM-exceptions || ( MIT BSD ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d1c104375d7a3406edd39028898ffef diff --git a/metadata/md5-cache/dev-libs/libclc-16.0.0 b/metadata/md5-cache/dev-libs/libclc-16.0.0 index 92b5e6a46b25..6d58a64bb5a4 100644 --- a/metadata/md5-cache/dev-libs/libclc-16.0.0 +++ b/metadata/md5-cache/dev-libs/libclc-16.0.0 @@ -10,5 +10,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0-with-LLVM-exceptions || ( MIT BSD ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=75e107841b2809e5c6a7f568c1861581 diff --git a/metadata/md5-cache/dev-libs/libclc-16.0.0.9999 b/metadata/md5-cache/dev-libs/libclc-16.0.0.9999 index fb3e2216585b..ab3ebfa38913 100644 --- a/metadata/md5-cache/dev-libs/libclc-16.0.0.9999 +++ b/metadata/md5-cache/dev-libs/libclc-16.0.0.9999 @@ -9,5 +9,5 @@ IUSE=spirv video_cards_nvidia video_cards_r600 video_cards_radeonsi LICENSE=Apache-2.0-with-LLVM-exceptions || ( MIT BSD ) PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a58fe7488220b532b0ac71a5315cdb8b diff --git a/metadata/md5-cache/dev-libs/libclc-16.0.0_rc3 b/metadata/md5-cache/dev-libs/libclc-16.0.0_rc3 deleted file mode 100644 index c869ecf7fd30..000000000000 --- a/metadata/md5-cache/dev-libs/libclc-16.0.0_rc3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) || ( ( sys-devel/clang:16 spirv? ( dev-util/spirv-llvm-translator:16 ) ) ( sys-devel/clang:15 spirv? ( dev-util/spirv-llvm-translator:15 ) ) ( sys-devel/clang:14 spirv? ( dev-util/spirv-llvm-translator:14 ) ) ( sys-devel/clang:13 spirv? ( dev-util/spirv-llvm-translator:13 ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=!!sys-devel/llvm:0 -DESCRIPTION=OpenCL C library -EAPI=8 -HOMEPAGE=https://libclc.llvm.org/ -INHERIT=cmake llvm llvm.org python-any-r1 -IUSE=spirv video_cards_nvidia video_cards_r600 video_cards_radeonsi verify-sig -LICENSE=Apache-2.0-with-LLVM-exceptions || ( MIT BSD ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=a58fe7488220b532b0ac71a5315cdb8b diff --git a/metadata/md5-cache/dev-libs/libclc-16.0.0_rc4 b/metadata/md5-cache/dev-libs/libclc-16.0.0_rc4 deleted file mode 100644 index f4315fee8d9b..000000000000 --- a/metadata/md5-cache/dev-libs/libclc-16.0.0_rc4 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) || ( ( sys-devel/clang:16 spirv? ( dev-util/spirv-llvm-translator:16 ) ) ( sys-devel/clang:15 spirv? ( dev-util/spirv-llvm-translator:15 ) ) ( sys-devel/clang:14 spirv? ( dev-util/spirv-llvm-translator:14 ) ) ( sys-devel/clang:13 spirv? ( dev-util/spirv-llvm-translator:13 ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=!!sys-devel/llvm:0 -DESCRIPTION=OpenCL C library -EAPI=8 -HOMEPAGE=https://libclc.llvm.org/ -INHERIT=cmake llvm llvm.org python-any-r1 -IUSE=spirv video_cards_nvidia video_cards_r600 video_cards_radeonsi verify-sig -LICENSE=Apache-2.0-with-LLVM-exceptions || ( MIT BSD ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=a58fe7488220b532b0ac71a5315cdb8b diff --git a/metadata/md5-cache/dev-libs/libclc-17.0.0.9999 b/metadata/md5-cache/dev-libs/libclc-17.0.0.9999 index 449f29c5f145..3da6f1406bc2 100644 --- a/metadata/md5-cache/dev-libs/libclc-17.0.0.9999 +++ b/metadata/md5-cache/dev-libs/libclc-17.0.0.9999 @@ -9,5 +9,5 @@ IUSE=spirv video_cards_nvidia video_cards_r600 video_cards_radeonsi LICENSE=Apache-2.0-with-LLVM-exceptions || ( MIT BSD ) PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0fae6b12ce0d1ece79a21405ece2b4f9 diff --git a/metadata/md5-cache/dev-libs/libclc-17.0.0_pre20230304 b/metadata/md5-cache/dev-libs/libclc-17.0.0_pre20230304 deleted file mode 100644 index aaeb0c1d0160..000000000000 --- a/metadata/md5-cache/dev-libs/libclc-17.0.0_pre20230304 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) || ( ( sys-devel/clang:17 spirv? ( dev-util/spirv-llvm-translator:17 ) ) ( sys-devel/clang:16 spirv? ( dev-util/spirv-llvm-translator:16 ) ) ( sys-devel/clang:15 spirv? ( dev-util/spirv-llvm-translator:15 ) ) ( sys-devel/clang:14 spirv? ( dev-util/spirv-llvm-translator:14 ) ) ( sys-devel/clang:13 spirv? ( dev-util/spirv-llvm-translator:13 ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=!!sys-devel/llvm:0 -DESCRIPTION=OpenCL C library -EAPI=8 -HOMEPAGE=https://libclc.llvm.org/ -INHERIT=cmake llvm llvm.org python-any-r1 -IUSE=spirv video_cards_nvidia video_cards_r600 video_cards_radeonsi -LICENSE=Apache-2.0-with-LLVM-exceptions || ( MIT BSD ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=0fae6b12ce0d1ece79a21405ece2b4f9 diff --git a/metadata/md5-cache/dev-libs/libclc-17.0.0_pre20230314 b/metadata/md5-cache/dev-libs/libclc-17.0.0_pre20230314 index 00a2f818fcf9..bceff1a1b293 100644 --- a/metadata/md5-cache/dev-libs/libclc-17.0.0_pre20230314 +++ b/metadata/md5-cache/dev-libs/libclc-17.0.0_pre20230314 @@ -9,5 +9,5 @@ IUSE=spirv video_cards_nvidia video_cards_r600 video_cards_radeonsi LICENSE=Apache-2.0-with-LLVM-exceptions || ( MIT BSD ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0fae6b12ce0d1ece79a21405ece2b4f9 diff --git a/metadata/md5-cache/dev-libs/libdbusmenu-qt-0.9.3_pre20160218-r3 b/metadata/md5-cache/dev-libs/libdbusmenu-qt-0.9.3_pre20160218-r3 index 6f2273cb151c..e1a3a1562eff 100644 --- a/metadata/md5-cache/dev-libs/libdbusmenu-qt-0.9.3_pre20160218-r3 +++ b/metadata/md5-cache/dev-libs/libdbusmenu-qt-0.9.3_pre20160218-r3 @@ -10,5 +10,5 @@ LICENSE=LGPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://launchpad.net/ubuntu/+archive/primary/+files/libdbusmenu-qt_0.9.3+16.04.20160218.orig.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2fa0901de3365463b27aabae691f4db4 diff --git a/metadata/md5-cache/dev-libs/libdex-0.2.0 b/metadata/md5-cache/dev-libs/libdex-0.2.0 new file mode 100644 index 000000000000..8dac1157de61 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libdex-0.2.0 @@ -0,0 +1,17 @@ +BDEPEND=vala? ( || ( dev-lang/vala:0.56 ) ) dev-util/glib-utils virtual/pkgconfig gtk-doc? ( dev-util/gi-docgen ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-libs/glib-2.68:2 >=sys-libs/liburing-0.7:= introspection? ( dev-libs/gobject-introspection:= ) sysprof? ( dev-util/sysprof-capture:4 ) +DESCRIPTION=Deferred Execution library for GNOME and GTK +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/libdex +INHERIT=gnome.org meson vala +IUSE=gtk-doc +introspection sysprof test vala +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-2.1+ +RDEPEND=>=dev-libs/glib-2.68:2 >=sys-libs/liburing-0.7:= introspection? ( dev-libs/gobject-introspection:= ) sysprof? ( dev-util/sysprof-capture:4 ) +REQUIRED_USE=gtk-doc? ( introspection ) vala? ( introspection ) +RESTRICT=!test? ( test ) +SLOT=0/1 +SRC_URI=mirror://gnome/sources/libdex/0.2/libdex-0.2.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 +_md5_=a598e75bc0f74164bf89d59d18b66d9f diff --git a/metadata/md5-cache/dev-libs/libdispatch-5.6.1 b/metadata/md5-cache/dev-libs/libdispatch-5.6.1 index d0b95b300676..b5859531a897 100644 --- a/metadata/md5-cache/dev-libs/libdispatch-5.6.1 +++ b/metadata/md5-cache/dev-libs/libdispatch-5.6.1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=!gnustep-base/libobjc2 !sys-libs/blocksruntime SLOT=0 SRC_URI=https://github.com/apple/swift-corelibs-libdispatch/archive/swift-5.6.1-RELEASE.tar.gz -> libdispatch-5.6.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=41556a57403f52ea80c7d5c9d6f05a1f diff --git a/metadata/md5-cache/dev-libs/libdispatch-5.7.1 b/metadata/md5-cache/dev-libs/libdispatch-5.7.1 index bd84a413986f..d7814808b93e 100644 --- a/metadata/md5-cache/dev-libs/libdispatch-5.7.1 +++ b/metadata/md5-cache/dev-libs/libdispatch-5.7.1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=!gnustep-base/libobjc2 !sys-libs/blocksruntime SLOT=0 SRC_URI=https://github.com/apple/swift-corelibs-libdispatch/archive/swift-5.7.1-RELEASE.tar.gz -> libdispatch-5.7.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a4124a2d26a8cbbcc9eaf15e9305d4bf diff --git a/metadata/md5-cache/dev-libs/libdivsufsort-2.0.1-r2 b/metadata/md5-cache/dev-libs/libdivsufsort-2.0.1-r2 index 356d5ef2cf6d..068593994a4e 100644 --- a/metadata/md5-cache/dev-libs/libdivsufsort-2.0.1-r2 +++ b/metadata/md5-cache/dev-libs/libdivsufsort-2.0.1-r2 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/y-256/libdivsufsort/archive/2.0.1.tar.gz -> libdivsufsort-2.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2ec9a2fc54eab362fea2c62dbe9995b2 diff --git a/metadata/md5-cache/dev-libs/libdynd-0.7.2-r1 b/metadata/md5-cache/dev-libs/libdynd-0.7.2-r1 index b8b5cd941e9d..f208edf2ea75 100644 --- a/metadata/md5-cache/dev-libs/libdynd-0.7.2-r1 +++ b/metadata/md5-cache/dev-libs/libdynd-0.7.2-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/c-blosc:= cuda? ( dev-util/nvidia-cuda-toolkit ) fftw? ( sci-li RESTRICT=!test? ( test ) SLOT=0/0.7.2 SRC_URI=https://github.com/libdynd/libdynd/archive/v0.7.2.tar.gz -> libdynd-0.7.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9129b1fc2ecc11c4bdf2772005935af8 diff --git a/metadata/md5-cache/dev-libs/libebml-1.4.4 b/metadata/md5-cache/dev-libs/libebml-1.4.4 index cc3f0999792e..c352d206b13d 100644 --- a/metadata/md5-cache/dev-libs/libebml-1.4.4 +++ b/metadata/md5-cache/dev-libs/libebml-1.4.4 @@ -8,5 +8,5 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86 ~a LICENSE=LGPL-2.1 SLOT=0/5 SRC_URI=https://dl.matroska.org/downloads/libebml/libebml-1.4.4.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=806f2f1fa3a36c49855ddf7692103d94 diff --git a/metadata/md5-cache/dev-libs/libfido2-1.11.0 b/metadata/md5-cache/dev-libs/libfido2-1.11.0 index 06f7167fef55..86949c3617fb 100644 --- a/metadata/md5-cache/dev-libs/libfido2-1.11.0 +++ b/metadata/md5-cache/dev-libs/libfido2-1.11.0 @@ -11,5 +11,5 @@ LICENSE=BSD-2 RDEPEND=dev-libs/libcbor:= dev-libs/openssl:= sys-libs/zlib:= virtual/libudev:= acct-group/plugdev SLOT=0/1 SRC_URI=https://github.com/Yubico/libfido2/archive/1.11.0.tar.gz -> libfido2-1.11.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d9bba5b2b823f2e6129653af9e4f956d diff --git a/metadata/md5-cache/dev-libs/libfido2-1.12.0 b/metadata/md5-cache/dev-libs/libfido2-1.12.0 index c195a5567da9..f3584a23cbc6 100644 --- a/metadata/md5-cache/dev-libs/libfido2-1.12.0 +++ b/metadata/md5-cache/dev-libs/libfido2-1.12.0 @@ -11,5 +11,5 @@ LICENSE=BSD-2 RDEPEND=dev-libs/libcbor:= dev-libs/openssl:= sys-libs/zlib:= virtual/libudev:= acct-group/plugdev SLOT=0/1 SRC_URI=https://github.com/Yubico/libfido2/archive/1.12.0.tar.gz -> libfido2-1.12.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=72fd3910601a7cd4965d5c1e5eda750f diff --git a/metadata/md5-cache/dev-libs/libflatarray-0.4.0_pre20201009 b/metadata/md5-cache/dev-libs/libflatarray-0.4.0_pre20201009 index cf12f6ff6921..58f65e6e920a 100644 --- a/metadata/md5-cache/dev-libs/libflatarray-0.4.0_pre20201009 +++ b/metadata/md5-cache/dev-libs/libflatarray-0.4.0_pre20201009 @@ -11,5 +11,5 @@ LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/STEllAR-GROUP/libflatarray/archive/c8df37f6ac73250998b90c397458469902d6d9b9.tar.gz -> libflatarray-0.4.0_pre20201009.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=53e4733346863f16ccb5eed2e5677080 diff --git a/metadata/md5-cache/dev-libs/libfmt-8.1.1-r1 b/metadata/md5-cache/dev-libs/libfmt-8.1.1-r1 index 44a4d13bbc3b..3c03064ac1dc 100644 --- a/metadata/md5-cache/dev-libs/libfmt-8.1.1-r1 +++ b/metadata/md5-cache/dev-libs/libfmt-8.1.1-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/8.1.1 SRC_URI=https://github.com/fmtlib/fmt/archive/8.1.1.tar.gz -> libfmt-8.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e39296394bc543a1a620802828b976bb diff --git a/metadata/md5-cache/dev-libs/libfmt-9.1.0-r1 b/metadata/md5-cache/dev-libs/libfmt-9.1.0-r1 index 50c78335c3d8..808ae6f15b0a 100644 --- a/metadata/md5-cache/dev-libs/libfmt-9.1.0-r1 +++ b/metadata/md5-cache/dev-libs/libfmt-9.1.0-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/9.1.0 SRC_URI=https://github.com/fmtlib/fmt/archive/9.1.0.tar.gz -> libfmt-9.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d386ff992f2f002dae5b8d8b26b9a00e diff --git a/metadata/md5-cache/dev-libs/libfmt-9999 b/metadata/md5-cache/dev-libs/libfmt-9999 index 9c62a2cd9468..e6e01a733170 100644 --- a/metadata/md5-cache/dev-libs/libfmt-9999 +++ b/metadata/md5-cache/dev-libs/libfmt-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57b9ea977a6219b984bc1f3299bca81b diff --git a/metadata/md5-cache/dev-libs/libgaminggear-0.15.1 b/metadata/md5-cache/dev-libs/libgaminggear-0.15.1 index 3fbc350c937e..b249c41828c9 100644 --- a/metadata/md5-cache/dev-libs/libgaminggear-0.15.1 +++ b/metadata/md5-cache/dev-libs/libgaminggear-0.15.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-db/sqlite-3.17:3 dev-libs/glib:2 media-libs/libcanberra x11-libs/cairo x11-libs/gtk+:2 x11-libs/libnotify x11-libs/pango SLOT=0 SRC_URI=mirror://sourceforge/libgaminggear/libgaminggear-0.15.1.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5145b997bd668567b3fa36a06038ba0d diff --git a/metadata/md5-cache/dev-libs/libgit2-1.5.1 b/metadata/md5-cache/dev-libs/libgit2-1.5.1 index 70d8046ba334..f715828bfd67 100644 --- a/metadata/md5-cache/dev-libs/libgit2-1.5.1 +++ b/metadata/md5-cache/dev-libs/libgit2-1.5.1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libpcre2:= net-libs/http-parser:= sys-libs/zlib dev-libs/openss RESTRICT=!test? ( test ) SLOT=0/1.5 SRC_URI=https://github.com/libgit2/libgit2/archive/v1.5.1.tar.gz -> libgit2-1.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=de59362c2bc1ddc01ff1e81a1d8f3767 diff --git a/metadata/md5-cache/dev-libs/libgit2-1.5.2 b/metadata/md5-cache/dev-libs/libgit2-1.5.2 index 4b108e64957f..c98d183ed6d8 100644 --- a/metadata/md5-cache/dev-libs/libgit2-1.5.2 +++ b/metadata/md5-cache/dev-libs/libgit2-1.5.2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libpcre2:= net-libs/http-parser:= sys-libs/zlib dev-libs/openss RESTRICT=!test? ( test ) SLOT=0/1.5 SRC_URI=https://github.com/libgit2/libgit2/archive/v1.5.2.tar.gz -> libgit2-1.5.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e90a01e4bfc95123ab630ed1e24fc65 diff --git a/metadata/md5-cache/dev-libs/libgit2-1.6.2 b/metadata/md5-cache/dev-libs/libgit2-1.6.2 index b5fdbf932be6..902d50fb412b 100644 --- a/metadata/md5-cache/dev-libs/libgit2-1.6.2 +++ b/metadata/md5-cache/dev-libs/libgit2-1.6.2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libpcre2:= net-libs/http-parser:= sys-libs/zlib dev-libs/openss RESTRICT=!test? ( test ) SLOT=0/1.6 SRC_URI=https://github.com/libgit2/libgit2/archive/v1.6.2.tar.gz -> libgit2-1.6.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=42fe2c93918fc318d391e75c9065e5a4 diff --git a/metadata/md5-cache/dev-libs/libical-3.0.14-r1 b/metadata/md5-cache/dev-libs/libical-3.0.14-r1 index 9df493fc3582..a395ee0c136a 100644 --- a/metadata/md5-cache/dev-libs/libical-3.0.14-r1 +++ b/metadata/md5-cache/dev-libs/libical-3.0.14-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=introspection? ( glib ) vala? ( introspection ) RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=https://github.com/libical/libical/releases/download/v3.0.14/libical-3.0.14.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c8838e2082d4c2106a5418173fd0e403 diff --git a/metadata/md5-cache/dev-libs/libical-3.0.16 b/metadata/md5-cache/dev-libs/libical-3.0.16 index 5ddf11c313ee..736f4fdfc283 100644 --- a/metadata/md5-cache/dev-libs/libical-3.0.16 +++ b/metadata/md5-cache/dev-libs/libical-3.0.16 @@ -13,5 +13,5 @@ REQUIRED_USE=introspection? ( glib ) vala? ( introspection ) RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=https://github.com/libical/libical/releases/download/v3.0.16/libical-3.0.16.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5cf84d182c6577f771d10c9faefb3785 diff --git a/metadata/md5-cache/dev-libs/libmcfp-1.2.2 b/metadata/md5-cache/dev-libs/libmcfp-1.2.2 index 73a6c5091c48..2641d33cd021 100644 --- a/metadata/md5-cache/dev-libs/libmcfp-1.2.2 +++ b/metadata/md5-cache/dev-libs/libmcfp-1.2.2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mhekkel/libmcfp/archive/refs/tags/v1.2.2.tar.gz -> libmcfp-1.2.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a87214cd7de4ffc63f93e983e4dea41b diff --git a/metadata/md5-cache/dev-libs/libmcfp-1.2.3 b/metadata/md5-cache/dev-libs/libmcfp-1.2.3 index 0f2049cc9243..9909e5ae3ee9 100644 --- a/metadata/md5-cache/dev-libs/libmcfp-1.2.3 +++ b/metadata/md5-cache/dev-libs/libmcfp-1.2.3 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mhekkel/libmcfp/archive/refs/tags/v1.2.3.tar.gz -> libmcfp-1.2.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4141ba5334aa2a26bd80063b01eca930 diff --git a/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.2 b/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.2 index c40bd06875a5..514124d7e566 100644 --- a/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.2 +++ b/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.2 @@ -12,5 +12,5 @@ RDEPEND=!dev-libs/libmemcached libevent? ( dev-libs/libevent:= ) sasl? ( dev-lib RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awesomized/libmemcached/archive/refs/tags/1.1.2.tar.gz -> libmemcached-awesome-1.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cd23015f9b3be73615e54937c442184e diff --git a/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.3-r1 b/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.3-r1 index 17372bf244da..fa48b397efc3 100644 --- a/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.3-r1 +++ b/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.3-r1 @@ -12,5 +12,5 @@ RDEPEND=!app-forensics/memdump !dev-libs/libmemcached libevent? ( dev-libs/libev RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awesomized/libmemcached/archive/refs/tags/1.1.3.tar.gz -> libmemcached-awesome-1.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c2fb49f0c85de27e7e7685a136e0a187 diff --git a/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.4 b/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.4 index 936913b732d8..5d5c80701f62 100644 --- a/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.4 +++ b/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.4 @@ -12,5 +12,5 @@ RDEPEND=!app-forensics/memdump !dev-libs/libmemcached libevent? ( dev-libs/libev RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awesomized/libmemcached/archive/refs/tags/1.1.4.tar.gz -> libmemcached-awesome-1.1.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c2fb49f0c85de27e7e7685a136e0a187 diff --git a/metadata/md5-cache/dev-libs/libmirage-3.2.6 b/metadata/md5-cache/dev-libs/libmirage-3.2.6 index ac81641fbe3f..de484226103d 100644 --- a/metadata/md5-cache/dev-libs/libmirage-3.2.6 +++ b/metadata/md5-cache/dev-libs/libmirage-3.2.6 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-arch/bzip2-1:= >=app-arch/xz-utils-5:= >=dev-libs/glib-2.38:2 >=media-libs/libsamplerate-0.1:= >=media-libs/libsndfile-1.0:= sys-libs/zlib:= introspection? ( >=dev-libs/gobject-introspection-1.30 ) SLOT=0/11 SRC_URI=https://download.sourceforge.net/cdemu/libmirage/libmirage-3.2.6.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=98eb7a17653bce05aae5382b35ac74f1 diff --git a/metadata/md5-cache/dev-libs/libnest2d-0.4-r2 b/metadata/md5-cache/dev-libs/libnest2d-0.4-r2 index 138c2f04f4c1..7d22c34ee948 100644 --- a/metadata/md5-cache/dev-libs/libnest2d-0.4-r2 +++ b/metadata/md5-cache/dev-libs/libnest2d-0.4-r2 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/eigen:3 dev-libs/boost dev-libs/clipper sci-libs/nlopt RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/tamasmeszaros/libnest2d/archive/0.4.tar.gz -> libnest2d-0.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a8a20d30a601add3540c544da178d01c diff --git a/metadata/md5-cache/dev-libs/libphonenumber-8.12.39 b/metadata/md5-cache/dev-libs/libphonenumber-8.12.39 index fc5ff9b7b520..3643f82940d6 100644 --- a/metadata/md5-cache/dev-libs/libphonenumber-8.12.39 +++ b/metadata/md5-cache/dev-libs/libphonenumber-8.12.39 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/icu:= dev-libs/protobuf:= dev-libs/boost:= RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://github.com/google/libphonenumber/archive/v8.12.39.tar.gz -> libphonenumber-8.12.39.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c107f7d446b3898e82d86a16338edb18 diff --git a/metadata/md5-cache/dev-libs/libplatform-2.1.0.1-r2 b/metadata/md5-cache/dev-libs/libplatform-2.1.0.1-r2 index e964bb67ff50..8aba7991117d 100644 --- a/metadata/md5-cache/dev-libs/libplatform-2.1.0.1-r2 +++ b/metadata/md5-cache/dev-libs/libplatform-2.1.0.1-r2 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm arm64 ~riscv x86 LICENSE=GPL-2+ SLOT=0 SRC_URI=https://github.com/Pulse-Eight/platform/archive/p8-platform-2.1.0.1.tar.gz -> libplatform-2.1.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8af88a203c71981e9676d1b74292691 diff --git a/metadata/md5-cache/dev-libs/libplatform-9999 b/metadata/md5-cache/dev-libs/libplatform-9999 index 7305c6340b30..5c8a78337ca2 100644 --- a/metadata/md5-cache/dev-libs/libplatform-9999 +++ b/metadata/md5-cache/dev-libs/libplatform-9999 @@ -7,5 +7,5 @@ INHERIT=cmake git-r3 LICENSE=GPL-2+ PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5bbae936cd785eb8c979fdd3857cc062 diff --git a/metadata/md5-cache/dev-libs/libptytty-2.0 b/metadata/md5-cache/dev-libs/libptytty-2.0 index cc95966e5b4e..a416ea05274f 100644 --- a/metadata/md5-cache/dev-libs/libptytty-2.0 +++ b/metadata/md5-cache/dev-libs/libptytty-2.0 @@ -8,5 +8,5 @@ KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2+ SLOT=0 SRC_URI=http://dist.schmorp.de/libptytty/libptytty-2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=382a587e734242f423604d7acafb2b3e diff --git a/metadata/md5-cache/dev-libs/libqtxdg-3.10.0 b/metadata/md5-cache/dev-libs/libqtxdg-3.10.0 index 8b59111234c1..9c1b57b15e3b 100644 --- a/metadata/md5-cache/dev-libs/libqtxdg-3.10.0 +++ b/metadata/md5-cache/dev-libs/libqtxdg-3.10.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/q RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/lxqt/libqtxdg/releases/download/3.10.0/libqtxdg-3.10.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fe376679ea6de7edae6f184221f66b6f diff --git a/metadata/md5-cache/dev-libs/libqtxdg-3.9.1 b/metadata/md5-cache/dev-libs/libqtxdg-3.9.1 index c27c7a98b778..d8216d66d9b8 100644 --- a/metadata/md5-cache/dev-libs/libqtxdg-3.9.1 +++ b/metadata/md5-cache/dev-libs/libqtxdg-3.9.1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/q RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/lxqt/libqtxdg/releases/download/3.9.1/libqtxdg-3.9.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a9506c40d13427cd9128a0e7460fc994 diff --git a/metadata/md5-cache/dev-libs/libsavitar-4.13.0 b/metadata/md5-cache/dev-libs/libsavitar-4.13.0 index 0f57b322932f..936f151e562c 100644 --- a/metadata/md5-cache/dev-libs/libsavitar-4.13.0 +++ b/metadata/md5-cache/dev-libs/libsavitar-4.13.0 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=https://github.com/Ultimaker/libSavitar/archive/4.13.0.tar.gz -> libsavitar-4.13.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f91f0241e87bbac452d14f058d05ed82 diff --git a/metadata/md5-cache/dev-libs/libtecla-1.6.3-r1 b/metadata/md5-cache/dev-libs/libtecla-1.6.3-r1 index 5c073a1777b7..9373a014f9ae 100644 --- a/metadata/md5-cache/dev-libs/libtecla-1.6.3-r1 +++ b/metadata/md5-cache/dev-libs/libtecla-1.6.3-r1 @@ -1,15 +1,14 @@ BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=compile configure prepare +DEFINED_PHASES=compile prepare DEPEND=sys-libs/ncurses:= DESCRIPTION=Tecla command-line editing library EAPI=8 HOMEPAGE=https://www.astro.caltech.edu/~mcs/tecla/ INHERIT=autotools flag-o-matic -IUSE=static-libs KEYWORDS=amd64 ~arm ppc ~riscv x86 ~amd64-linux ~x86-linux LICENSE=icu RDEPEND=sys-libs/ncurses:= SLOT=0 SRC_URI=https://www.astro.caltech.edu/~mcs/tecla/libtecla-1.6.3.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=6e3f764d1765a7ca57a2ed1a1ff9fd73 +_md5_=127589bb419b11a5c18ed5df40cb62b4 diff --git a/metadata/md5-cache/dev-libs/libtsm-4.0.2 b/metadata/md5-cache/dev-libs/libtsm-4.0.2 index 2be2a548b361..acfda882b790 100644 --- a/metadata/md5-cache/dev-libs/libtsm-4.0.2 +++ b/metadata/md5-cache/dev-libs/libtsm-4.0.2 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2.1 MIT SLOT=0/4 SRC_URI=https://github.com/Aetf/libtsm/archive/v4.0.2.tar.gz -> libtsm-4.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=40c41bd6e88d16b72338e5177fe14ff9 diff --git a/metadata/md5-cache/dev-libs/libwbxml-0.11.8 b/metadata/md5-cache/dev-libs/libwbxml-0.11.8 index cd10a2eee6f7..b96d8691fbd5 100644 --- a/metadata/md5-cache/dev-libs/libwbxml-0.11.8 +++ b/metadata/md5-cache/dev-libs/libwbxml-0.11.8 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/expat virtual/libiconv RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/libwbxml/libwbxml/archive/libwbxml-0.11.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=26d35e62752d547191a8c5fb252de7a7 diff --git a/metadata/md5-cache/dev-libs/libxlsxwriter-1.1.4-r1 b/metadata/md5-cache/dev-libs/libxlsxwriter-1.1.4-r1 index c83befd6ee56..d8e4c9e284c3 100644 --- a/metadata/md5-cache/dev-libs/libxlsxwriter-1.1.4-r1 +++ b/metadata/md5-cache/dev-libs/libxlsxwriter-1.1.4-r1 @@ -11,5 +11,5 @@ LICENSE=BSD-2 RDEPEND=sys-libs/zlib[minizip] openssl? ( dev-libs/openssl:= ) SLOT=0 SRC_URI=https://github.com/jmcnamara/libxlsxwriter/archive/RELEASE_1.1.4.tar.gz -> libxlsxwriter-1.1.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=de5c73cb6f2257e5dcb959d6e1f9346f diff --git a/metadata/md5-cache/dev-libs/libxlsxwriter-1.1.5 b/metadata/md5-cache/dev-libs/libxlsxwriter-1.1.5 index d54fddcf4f19..d44839688d5e 100644 --- a/metadata/md5-cache/dev-libs/libxlsxwriter-1.1.5 +++ b/metadata/md5-cache/dev-libs/libxlsxwriter-1.1.5 @@ -11,5 +11,5 @@ LICENSE=BSD-2 RDEPEND=sys-libs/zlib[minizip] openssl? ( dev-libs/openssl:= ) SLOT=0 SRC_URI=https://github.com/jmcnamara/libxlsxwriter/archive/RELEASE_1.1.5.tar.gz -> libxlsxwriter-1.1.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ffde8b14cd751a9e4fd3f8a245736576 diff --git a/metadata/md5-cache/dev-libs/libzip-1.9.2 b/metadata/md5-cache/dev-libs/libzip-1.9.2 index 67e8c89a4c03..66f81ef30f17 100644 --- a/metadata/md5-cache/dev-libs/libzip-1.9.2 +++ b/metadata/md5-cache/dev-libs/libzip-1.9.2 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( tools ) RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=https://www.nih.at/libzip/libzip-1.9.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aa629ecc220a75998c1a522b630decde diff --git a/metadata/md5-cache/dev-libs/log4cplus-2.0.7 b/metadata/md5-cache/dev-libs/log4cplus-2.0.7 index bab9118a6f09..fe21fce36b48 100644 --- a/metadata/md5-cache/dev-libs/log4cplus-2.0.7 +++ b/metadata/md5-cache/dev-libs/log4cplus-2.0.7 @@ -12,5 +12,5 @@ RDEPEND=iconv? ( virtual/libiconv ) qt5? ( dev-qt/qtcore:5 ) RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=mirror://sourceforge/project/log4cplus/log4cplus-stable/2.0.7/log4cplus-2.0.7.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=406e51b4a5b5af4c8bb8bfa324c15e53 diff --git a/metadata/md5-cache/dev-libs/log4cxx-1.0.0 b/metadata/md5-cache/dev-libs/log4cxx-1.0.0 index 6429c292c89b..594a1fd697d4 100644 --- a/metadata/md5-cache/dev-libs/log4cxx-1.0.0 +++ b/metadata/md5-cache/dev-libs/log4cxx-1.0.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/apr:1= dev-libs/apr-util:1= dev-libs/libfmt:= odbc? ( dev-db/un RESTRICT=!test? ( test ) SLOT=0/15 SRC_URI=mirror://apache/logging/log4cxx/1.0.0/apache-log4cxx-1.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cad377dabd1241405e8a6adc2c006be2 diff --git a/metadata/md5-cache/dev-libs/mdns-1.4.2 b/metadata/md5-cache/dev-libs/mdns-1.4.2 index a4e69f9825b8..73e0bb47967f 100644 --- a/metadata/md5-cache/dev-libs/mdns-1.4.2 +++ b/metadata/md5-cache/dev-libs/mdns-1.4.2 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~x86 LICENSE=Unlicense SLOT=0 SRC_URI=https://github.com/mjansson/mdns/archive/refs/tags/1.4.2.tar.gz -> mdns-1.4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3eb29f4e41d8a4714ebb3d1400cf347d diff --git a/metadata/md5-cache/dev-libs/metee-3.1.5 b/metadata/md5-cache/dev-libs/metee-3.1.5 index f23c7707bf91..aa97631cce41 100644 --- a/metadata/md5-cache/dev-libs/metee-3.1.5 +++ b/metadata/md5-cache/dev-libs/metee-3.1.5 @@ -9,5 +9,5 @@ KEYWORDS=amd64 LICENSE=Apache-2.0 SLOT=0/3.1.5 SRC_URI=https://github.com/intel/metee/archive/refs/tags/3.1.5.tar.gz -> metee-3.1.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=226656a4977fa7b52729b6cc3aea103f diff --git a/metadata/md5-cache/dev-libs/mimalloc-2.0.6 b/metadata/md5-cache/dev-libs/mimalloc-2.0.6 index efbf964e7d3a..a4fc20a0769f 100644 --- a/metadata/md5-cache/dev-libs/mimalloc-2.0.6 +++ b/metadata/md5-cache/dev-libs/mimalloc-2.0.6 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/microsoft/mimalloc/archive/refs/tags/v2.0.6.tar.gz -> mimalloc-2.0.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c72ecdc8748a367125cad19f6d91617f diff --git a/metadata/md5-cache/dev-libs/mimalloc-2.0.7 b/metadata/md5-cache/dev-libs/mimalloc-2.0.7 index b9737ca4dad2..aef89ab00389 100644 --- a/metadata/md5-cache/dev-libs/mimalloc-2.0.7 +++ b/metadata/md5-cache/dev-libs/mimalloc-2.0.7 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/microsoft/mimalloc/archive/refs/tags/v2.0.7.tar.gz -> mimalloc-2.0.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ad383794c81ca237986d822548d38779 diff --git a/metadata/md5-cache/dev-libs/mimalloc-2.0.9 b/metadata/md5-cache/dev-libs/mimalloc-2.0.9 index 54d428de2708..7273ff99b5df 100644 --- a/metadata/md5-cache/dev-libs/mimalloc-2.0.9 +++ b/metadata/md5-cache/dev-libs/mimalloc-2.0.9 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/microsoft/mimalloc/archive/refs/tags/v2.0.9.tar.gz -> mimalloc-2.0.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0ed8162b816a1ed7e1dcac42579cfd59 diff --git a/metadata/md5-cache/dev-libs/miniz-2.2.0-r1 b/metadata/md5-cache/dev-libs/miniz-2.2.0-r1 index e8020dc0cc1a..9a87af5b5777 100644 --- a/metadata/md5-cache/dev-libs/miniz-2.2.0-r1 +++ b/metadata/md5-cache/dev-libs/miniz-2.2.0-r1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~ia64 ppc ppc64 sparc x86 LICENSE=MIT SLOT=0/2.2.0 SRC_URI=https://github.com/richgel999/miniz/archive/2.2.0.tar.gz -> miniz-2.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1fda0e0c64597662f4fa99cc6a20f2b5 diff --git a/metadata/md5-cache/dev-libs/miniz-3.0.1 b/metadata/md5-cache/dev-libs/miniz-3.0.1 index 72f517ff7526..b4e085875d7a 100644 --- a/metadata/md5-cache/dev-libs/miniz-3.0.1 +++ b/metadata/md5-cache/dev-libs/miniz-3.0.1 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT SLOT=0/3.0.1 SRC_URI=https://github.com/richgel999/miniz/archive/3.0.1.tar.gz -> miniz-3.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=06ce14b84e2505773ecf55c42a0c51dc diff --git a/metadata/md5-cache/dev-libs/mmtf-cpp-1.0.0-r1 b/metadata/md5-cache/dev-libs/mmtf-cpp-1.0.0-r1 index 26c6759e6b46..66373f08f9bc 100644 --- a/metadata/md5-cache/dev-libs/mmtf-cpp-1.0.0-r1 +++ b/metadata/md5-cache/dev-libs/mmtf-cpp-1.0.0-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/msgpack SLOT=0 SRC_URI=https://github.com/rcsb/mmtf-cpp/archive/v1.0.0.tar.gz -> mmtf-cpp-1.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd19388229b99fe598d545f115cd75a5 diff --git a/metadata/md5-cache/dev-libs/mmtf-cpp-1.1.0-r1 b/metadata/md5-cache/dev-libs/mmtf-cpp-1.1.0-r1 index 93ab4e207e93..930897510dfe 100644 --- a/metadata/md5-cache/dev-libs/mmtf-cpp-1.1.0-r1 +++ b/metadata/md5-cache/dev-libs/mmtf-cpp-1.1.0-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=|| ( dev-cpp/msgpack-cxx dev-libs/msgpack[cxx(-)] ) SLOT=0 SRC_URI=https://github.com/rcsb/mmtf-cpp/archive/v1.1.0.tar.gz -> mmtf-cpp-1.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cf4e1e4359c94fd6560d240627cc3a22 diff --git a/metadata/md5-cache/dev-libs/mongo-c-driver-1.18.0-r1 b/metadata/md5-cache/dev-libs/mongo-c-driver-1.18.0-r1 index 0cf61722482c..19b225f39622 100644 --- a/metadata/md5-cache/dev-libs/mongo-c-driver-1.18.0-r1 +++ b/metadata/md5-cache/dev-libs/mongo-c-driver-1.18.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( static-libs ) RESTRICT=x86? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/mongodb/mongo-c-driver/releases/download/1.18.0/mongo-c-driver-1.18.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2bc30c1cee636a4b8da253788fc0c2a9 diff --git a/metadata/md5-cache/dev-libs/msgpack-3.3.0-r1 b/metadata/md5-cache/dev-libs/msgpack-3.3.0-r1 index fa363b149829..183e06e58763 100644 --- a/metadata/md5-cache/dev-libs/msgpack-3.3.0-r1 +++ b/metadata/md5-cache/dev-libs/msgpack-3.3.0-r1 @@ -12,5 +12,5 @@ RDEPEND=boost? ( dev-libs/boost[context,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x3 RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/msgpack/msgpack-c/releases/download/cpp-3.3.0/msgpack-3.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=966c8b0a84d673aa515b46002a8c2b8e diff --git a/metadata/md5-cache/dev-libs/msgpack-3.3.0-r2 b/metadata/md5-cache/dev-libs/msgpack-3.3.0-r2 index c33b7049da17..66acca70507d 100644 --- a/metadata/md5-cache/dev-libs/msgpack-3.3.0-r2 +++ b/metadata/md5-cache/dev-libs/msgpack-3.3.0-r2 @@ -12,5 +12,5 @@ RDEPEND=boost? ( dev-libs/boost[context,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x3 RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/msgpack/msgpack-c/releases/download/cpp-3.3.0/msgpack-3.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f4a0c5c780080e147c88994682963212 diff --git a/metadata/md5-cache/dev-libs/msgpack-5.0.0 b/metadata/md5-cache/dev-libs/msgpack-5.0.0 index 6706392c4284..0373e8efe680 100644 --- a/metadata/md5-cache/dev-libs/msgpack-5.0.0 +++ b/metadata/md5-cache/dev-libs/msgpack-5.0.0 @@ -10,5 +10,5 @@ LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/msgpack/msgpack-c/releases/download/c-5.0.0/msgpack-c-5.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3bcfdb2e72f74397dcec95bcca7a834a diff --git a/metadata/md5-cache/dev-libs/nanomsg-1.1.5-r1 b/metadata/md5-cache/dev-libs/nanomsg-1.1.5-r1 index d1b3b63f6373..bd61f0018507 100644 --- a/metadata/md5-cache/dev-libs/nanomsg-1.1.5-r1 +++ b/metadata/md5-cache/dev-libs/nanomsg-1.1.5-r1 @@ -9,5 +9,5 @@ KEYWORDS=amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~riscv x86 LICENSE=MIT SLOT=0/5.0.0 SRC_URI=https://github.com/nanomsg/nanomsg/archive/1.1.5.tar.gz -> nanomsg-1.1.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7bc7b59339f488429abfdc004db93f26 diff --git a/metadata/md5-cache/dev-libs/ncnn-20230223 b/metadata/md5-cache/dev-libs/ncnn-20230223 index d0f0c530b186..8edd2e816090 100644 --- a/metadata/md5-cache/dev-libs/ncnn-20230223 +++ b/metadata/md5-cache/dev-libs/ncnn-20230223 @@ -12,5 +12,5 @@ RDEPEND=tools? ( dev-libs/protobuf:= ) vulkan? ( dev-util/glslang:= media-libs/v RESTRICT=test SLOT=0/20230223 SRC_URI=https://github.com/Tencent/ncnn/archive/20230223.tar.gz -> ncnn-20230223.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=36586351bfa00baa947fd7fc5be6e84b diff --git a/metadata/md5-cache/dev-libs/nss-pem-1.1.0 b/metadata/md5-cache/dev-libs/nss-pem-1.1.0 index e3595d62cdc6..96ad222d380f 100644 --- a/metadata/md5-cache/dev-libs/nss-pem-1.1.0 +++ b/metadata/md5-cache/dev-libs/nss-pem-1.1.0 @@ -11,5 +11,5 @@ LICENSE=MPL-1.1 RDEPEND=dev-libs/nss dev-libs/nspr SLOT=0 SRC_URI=https://github.com/kdudka/nss-pem/releases/download/nss-pem-1.1.0/nss-pem-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=05af6bb3594db4ab290d70b64d674f4c diff --git a/metadata/md5-cache/dev-libs/nsync-1.24.0-r1 b/metadata/md5-cache/dev-libs/nsync-1.24.0-r1 index daede4ecc1c1..0b916915b4d9 100644 --- a/metadata/md5-cache/dev-libs/nsync-1.24.0-r1 +++ b/metadata/md5-cache/dev-libs/nsync-1.24.0-r1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/nsync/archive/1.24.0.tar.gz -> nsync-1.24.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ed8788dcbf8e2a72e00c3f1f13aa5fc3 diff --git a/metadata/md5-cache/dev-libs/nsync-1.25.0 b/metadata/md5-cache/dev-libs/nsync-1.25.0 index 395bfea08d30..b2cc1a5a885f 100644 --- a/metadata/md5-cache/dev-libs/nsync-1.25.0 +++ b/metadata/md5-cache/dev-libs/nsync-1.25.0 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/nsync/archive/1.25.0.tar.gz -> nsync-1.25.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=945425d563de2f8362a89c0b2a171480 diff --git a/metadata/md5-cache/dev-libs/opencl-clang-14.0.0 b/metadata/md5-cache/dev-libs/opencl-clang-14.0.0 index 1143d35db61b..3f3b91108d00 100644 --- a/metadata/md5-cache/dev-libs/opencl-clang-14.0.0 +++ b/metadata/md5-cache/dev-libs/opencl-clang-14.0.0 @@ -10,5 +10,5 @@ LICENSE=UoI-NCSA RDEPEND=dev-util/spirv-llvm-translator:14= sys-devel/clang:14=[static-analyzer] sys-devel/llvm:14= SLOT=14 SRC_URI=https://github.com/intel/opencl-clang/archive/refs/tags/v14.0.0.tar.gz -> opencl-clang-14.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1f462019c269d57e6140f89a1ff041ef diff --git a/metadata/md5-cache/dev-libs/opencl-clang-15.0.0 b/metadata/md5-cache/dev-libs/opencl-clang-15.0.0 index 513e7358ce78..71e2b6d00d33 100644 --- a/metadata/md5-cache/dev-libs/opencl-clang-15.0.0 +++ b/metadata/md5-cache/dev-libs/opencl-clang-15.0.0 @@ -10,5 +10,5 @@ LICENSE=UoI-NCSA RDEPEND=dev-util/spirv-llvm-translator:15= sys-devel/clang:15=[static-analyzer] sys-devel/llvm:15= SLOT=15 SRC_URI=https://github.com/intel/opencl-clang/archive/refs/tags/v15.0.0.tar.gz -> opencl-clang-15.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b7bef2e786ed18fc67712a5c7b9f9c5 diff --git a/metadata/md5-cache/dev-libs/opencl-icd-loader-2022.09.30 b/metadata/md5-cache/dev-libs/opencl-icd-loader-2022.09.30 index d7e8238090bf..2be28a381465 100644 --- a/metadata/md5-cache/dev-libs/opencl-icd-loader-2022.09.30 +++ b/metadata/md5-cache/dev-libs/opencl-icd-loader-2022.09.30 @@ -12,5 +12,5 @@ RDEPEND=!dev-libs/ocl-icd RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/KhronosGroup/OpenCL-ICD-Loader/archive/v2022.09.30.tar.gz -> opencl-icd-loader-2022.09.30.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=554b0f0f14fb1dcfbcc02cad472fa427 diff --git a/metadata/md5-cache/dev-libs/opencl-icd-loader-2023.02.06 b/metadata/md5-cache/dev-libs/opencl-icd-loader-2023.02.06 index ae69f70c5d82..03e26c76b3bf 100644 --- a/metadata/md5-cache/dev-libs/opencl-icd-loader-2023.02.06 +++ b/metadata/md5-cache/dev-libs/opencl-icd-loader-2023.02.06 @@ -12,5 +12,5 @@ RDEPEND=!dev-libs/ocl-icd RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/KhronosGroup/OpenCL-ICD-Loader/archive/v2023.02.06.tar.gz -> opencl-icd-loader-2023.02.06.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a7a3c533605a3e6553309b0b03221378 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 c675153bbdd6..b00b74295e89 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=mirror://sourceforge/openobex/1.7.2/openobex-1.7.2-Source.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=97b66fbe7a7cb8b0b423f99857a8c46a diff --git a/metadata/md5-cache/dev-libs/pegtl-2.8.3-r1 b/metadata/md5-cache/dev-libs/pegtl-2.8.3-r1 index 2bda5fb9c205..ad990e56cefb 100644 --- a/metadata/md5-cache/dev-libs/pegtl-2.8.3-r1 +++ b/metadata/md5-cache/dev-libs/pegtl-2.8.3-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/taocpp/PEGTL/archive/2.8.3.tar.gz -> pegtl-2.8.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b8e9d944dbd6470b50eb7e266ac5c416 diff --git a/metadata/md5-cache/dev-libs/pegtl-3.2.1 b/metadata/md5-cache/dev-libs/pegtl-3.2.1 index b9c9ed9618e1..daed880216cb 100644 --- a/metadata/md5-cache/dev-libs/pegtl-3.2.1 +++ b/metadata/md5-cache/dev-libs/pegtl-3.2.1 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/taocpp/PEGTL/archive/3.2.1.tar.gz -> pegtl-3.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ec13f6e7ea956c89f49396ca9e82af4f diff --git a/metadata/md5-cache/dev-libs/pegtl-3.2.5 b/metadata/md5-cache/dev-libs/pegtl-3.2.5 index aa470ab73557..3a09ac33087d 100644 --- a/metadata/md5-cache/dev-libs/pegtl-3.2.5 +++ b/metadata/md5-cache/dev-libs/pegtl-3.2.5 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm ~arm64 ~riscv ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/taocpp/PEGTL/archive/3.2.5.tar.gz -> pegtl-3.2.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c93663071a668dd561c00166b7f913ec diff --git a/metadata/md5-cache/dev-libs/pegtl-3.2.7 b/metadata/md5-cache/dev-libs/pegtl-3.2.7 index 2638c5ac1603..f9b5cff57648 100644 --- a/metadata/md5-cache/dev-libs/pegtl-3.2.7 +++ b/metadata/md5-cache/dev-libs/pegtl-3.2.7 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/taocpp/PEGTL/archive/3.2.7.tar.gz -> pegtl-3.2.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=072aa854f127313a389803f54c24b89b diff --git a/metadata/md5-cache/dev-libs/plasma-wayland-protocols-1.10.0 b/metadata/md5-cache/dev-libs/plasma-wayland-protocols-1.10.0 index 3afacc4dd157..edfe8f45347c 100644 --- a/metadata/md5-cache/dev-libs/plasma-wayland-protocols-1.10.0 +++ b/metadata/md5-cache/dev-libs/plasma-wayland-protocols-1.10.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 SRC_URI=mirror://kde/stable/plasma-wayland-protocols/plasma-wayland-protocols-1.10.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c7bc60bbbedca6ac09af40cac522b616 diff --git a/metadata/md5-cache/dev-libs/plasma-wayland-protocols-1.9.0 b/metadata/md5-cache/dev-libs/plasma-wayland-protocols-1.9.0 index 87af84b7cf4e..e7ec37509f17 100644 --- a/metadata/md5-cache/dev-libs/plasma-wayland-protocols-1.9.0 +++ b/metadata/md5-cache/dev-libs/plasma-wayland-protocols-1.9.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 SRC_URI=mirror://kde/stable/plasma-wayland-protocols/plasma-wayland-protocols-1.9.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=27c60a0184e43105bd99ad49f9dfdfb1 diff --git a/metadata/md5-cache/dev-libs/pocl-3.0 b/metadata/md5-cache/dev-libs/pocl-3.0 index 85fd79deee72..508a9587f3a5 100644 --- a/metadata/md5-cache/dev-libs/pocl-3.0 +++ b/metadata/md5-cache/dev-libs/pocl-3.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libltdl pocl-3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aedaca2d9b10d545dfc2e1cba3cd9836 diff --git a/metadata/md5-cache/dev-libs/pocl-3.1 b/metadata/md5-cache/dev-libs/pocl-3.1 index f8c42db8ad24..431b9278add5 100644 --- a/metadata/md5-cache/dev-libs/pocl-3.1 +++ b/metadata/md5-cache/dev-libs/pocl-3.1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libltdl pocl-3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b9d49de2c7bec12eecb6338b100e9f13 diff --git a/metadata/md5-cache/dev-libs/poco-1.11.2-r1 b/metadata/md5-cache/dev-libs/poco-1.11.2-r1 index 052a9e9fd467..7bc723bd7386 100644 --- a/metadata/md5-cache/dev-libs/poco-1.11.2-r1 +++ b/metadata/md5-cache/dev-libs/poco-1.11.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=7z? ( xml ) file2pagecompiler? ( pagecompiler ) iodbc? ( odbc ) mon RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pocoproject/poco/archive/poco-1.11.2-release.tar.gz -> poco-1.11.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=59dcf9105eca4f88a3513804464eaaf4 diff --git a/metadata/md5-cache/dev-libs/poco-1.12.2-r2 b/metadata/md5-cache/dev-libs/poco-1.12.2-r2 index 6aeb9a63c72a..61e2727a5ac8 100644 --- a/metadata/md5-cache/dev-libs/poco-1.12.2-r2 +++ b/metadata/md5-cache/dev-libs/poco-1.12.2-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=7z? ( xml ) file2pagecompiler? ( pagecompiler ) iodbc? ( odbc ) jwt RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pocoproject/poco/archive/poco-1.12.2-release.tar.gz -> poco-1.12.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a2835a51b987b2ccb2e370ba157418ca diff --git a/metadata/md5-cache/dev-libs/poco-1.12.4 b/metadata/md5-cache/dev-libs/poco-1.12.4 index c77129f23a5d..d6b0f0f833c6 100644 --- a/metadata/md5-cache/dev-libs/poco-1.12.4 +++ b/metadata/md5-cache/dev-libs/poco-1.12.4 @@ -13,5 +13,5 @@ REQUIRED_USE=7z? ( xml ) file2pagecompiler? ( pagecompiler ) iodbc? ( odbc ) jwt RESTRICT=!test? ( test ) SLOT=0/94 SRC_URI=https://github.com/pocoproject/poco/archive/poco-1.12.4-release.tar.gz -> poco-1.12.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0fbf74c4a27271036a5190c5ccc39166 diff --git a/metadata/md5-cache/dev-libs/psimd-2020.05.17 b/metadata/md5-cache/dev-libs/psimd-2020.05.17 index 20a652af17aa..69941f276178 100644 --- a/metadata/md5-cache/dev-libs/psimd-2020.05.17 +++ b/metadata/md5-cache/dev-libs/psimd-2020.05.17 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/Maratyszcza/psimd/archive/072586a71b55b7f8c584153d223e95687148a900.tar.gz -> psimd-2020.05.17.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=769482fbfb7911be717f381e84e9b5ae diff --git a/metadata/md5-cache/dev-libs/ptexenc-1.3.9_p20210325-r1 b/metadata/md5-cache/dev-libs/ptexenc-1.3.9_p20210325-r1 index 3737cdba8485..a30e7eb350a9 100644 --- a/metadata/md5-cache/dev-libs/ptexenc-1.3.9_p20210325-r1 +++ b/metadata/md5-cache/dev-libs/ptexenc-1.3.9_p20210325-r1 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=BSD RDEPEND=dev-libs/kpathsea:= iconv? ( virtual/libiconv ) SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-20210325-source.tar.xz +SRC_URI=https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-20210325-source.tar.xz _eclasses_=libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=5cd5454ff84e906b03313e9a5581b529 +_md5_=2e06503120d69215c8e771bda6be4954 diff --git a/metadata/md5-cache/dev-libs/pthreadpool-2022.05.09-r1 b/metadata/md5-cache/dev-libs/pthreadpool-2022.05.09-r1 index 5fee25888c9a..180503cb699c 100644 --- a/metadata/md5-cache/dev-libs/pthreadpool-2022.05.09-r1 +++ b/metadata/md5-cache/dev-libs/pthreadpool-2022.05.09-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/FXdiv RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Maratyszcza/pthreadpool/archive/1787867.tar.gz -> pthreadpool-2022.05.09.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=61d9b86509915f30c2da3be938b1c214 diff --git a/metadata/md5-cache/dev-libs/pugixml-1.13 b/metadata/md5-cache/dev-libs/pugixml-1.13 index e6274f0f42c8..fdc4d187d357 100644 --- a/metadata/md5-cache/dev-libs/pugixml-1.13 +++ b/metadata/md5-cache/dev-libs/pugixml-1.13 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/zeux/pugixml/archive/refs/tags/v1.13.tar.gz -> pugixml-1.13.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=90bf26fc08a57a808729f0c371d724b2 diff --git a/metadata/md5-cache/dev-libs/pugixml-9999 b/metadata/md5-cache/dev-libs/pugixml-9999 index 084a36b14af9..9a346b2db6a3 100644 --- a/metadata/md5-cache/dev-libs/pugixml-9999 +++ b/metadata/md5-cache/dev-libs/pugixml-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2387e8999ebba12327822a17f52e59d0 diff --git a/metadata/md5-cache/dev-libs/qcoro5-0.7.0 b/metadata/md5-cache/dev-libs/qcoro5-0.7.0 index a6b6064b0406..7295b1661bf3 100644 --- a/metadata/md5-cache/dev-libs/qcoro5-0.7.0 +++ b/metadata/md5-cache/dev-libs/qcoro5-0.7.0 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dbus? ( dev-qt/qtdbus:5 ) network? ( dev-qt/qtnetwork:5 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/danvratil/qcoro/archive/refs/tags/v0.7.0.tar.gz -> qcoro5-0.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e305f7e665849a2b2a676ea43b3ef4fa diff --git a/metadata/md5-cache/dev-libs/qtkeychain-0.13.2 b/metadata/md5-cache/dev-libs/qtkeychain-0.13.2 index 746f85624f2c..7dd4b1d72f84 100644 --- a/metadata/md5-cache/dev-libs/qtkeychain-0.13.2 +++ b/metadata/md5-cache/dev-libs/qtkeychain-0.13.2 @@ -11,5 +11,5 @@ LICENSE=BSD-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 gnome-keyring? ( app-crypt/libsecret dev-libs/glib:2 ) SLOT=0/1 SRC_URI=https://github.com/frankosterfeld/qtkeychain/archive/v0.13.2.tar.gz -> qtkeychain-0.13.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f7d9c1dd1655115550ec3be6576face9 diff --git a/metadata/md5-cache/dev-libs/quazip-1.2 b/metadata/md5-cache/dev-libs/quazip-1.2 index e585d814461a..efb07c28c53b 100644 --- a/metadata/md5-cache/dev-libs/quazip-1.2 +++ b/metadata/md5-cache/dev-libs/quazip-1.2 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 sys-libs/zlib[minizip] !=dev-libs/quazip-1.1-r0:1 RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/stachenov/quazip/archive/v1.2.tar.gz -> quazip-1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bf3bfcb4a1634a063a4cb59050e9d864 diff --git a/metadata/md5-cache/dev-libs/quazip-1.3-r1 b/metadata/md5-cache/dev-libs/quazip-1.3-r1 index c84bd4bcdfbb..59b44d2f16be 100644 --- a/metadata/md5-cache/dev-libs/quazip-1.3-r1 +++ b/metadata/md5-cache/dev-libs/quazip-1.3-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 sys-libs/zlib[minizip] !=dev-libs/quazip-1.1-r0:1 RESTRICT=!test? ( test ) SLOT=0/1.3 SRC_URI=https://github.com/stachenov/quazip/archive/v1.3.tar.gz -> quazip-1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=608b98ecac7e8c2818286837f58a1125 diff --git a/metadata/md5-cache/dev-libs/quazip-1.3-r2 b/metadata/md5-cache/dev-libs/quazip-1.3-r2 index 433867f69d78..2635b8bf368b 100644 --- a/metadata/md5-cache/dev-libs/quazip-1.3-r2 +++ b/metadata/md5-cache/dev-libs/quazip-1.3-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( qt5 qt6 ) RESTRICT=!test? ( test ) SLOT=0/1.3 SRC_URI=https://github.com/stachenov/quazip/archive/v1.3.tar.gz -> quazip-1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=911e540ef459309f65adf87bd3d63f19 diff --git a/metadata/md5-cache/dev-libs/qxlsx-1.4.5 b/metadata/md5-cache/dev-libs/qxlsx-1.4.5 index 3cf434471794..9acafe5286aa 100644 --- a/metadata/md5-cache/dev-libs/qxlsx-1.4.5 +++ b/metadata/md5-cache/dev-libs/qxlsx-1.4.5 @@ -12,5 +12,5 @@ RDEPEND=qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5= ) qt6? ( dev-qt/qtbase:6=[gui] ) REQUIRED_USE=|| ( qt5 qt6 ) SLOT=0/0.1.4.4 SRC_URI=https://github.com/QtExcel/QXlsx/archive/v1.4.5.tar.gz -> qxlsx-1.4.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f3f8d7f4461044020e51a70015b69bf9 diff --git a/metadata/md5-cache/dev-libs/rapidjson-1.1.0-r3 b/metadata/md5-cache/dev-libs/rapidjson-1.1.0-r3 index 7618902efaba..0048b09f336e 100644 --- a/metadata/md5-cache/dev-libs/rapidjson-1.1.0-r3 +++ b/metadata/md5-cache/dev-libs/rapidjson-1.1.0-r3 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/miloyip/rapidjson/archive/v1.1.0.tar.gz -> rapidjson-1.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3a77dedcb55bd7da73f90bac213a7083 diff --git a/metadata/md5-cache/dev-libs/rapidjson-9999 b/metadata/md5-cache/dev-libs/rapidjson-9999 index 1f44584a0886..194b6ab2d4ce 100644 --- a/metadata/md5-cache/dev-libs/rapidjson-9999 +++ b/metadata/md5-cache/dev-libs/rapidjson-9999 @@ -10,5 +10,5 @@ LICENSE=MIT PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6a1f2fa4b6308590ab54ae190d7bf6c1 diff --git a/metadata/md5-cache/dev-libs/rccl-5.1.3 b/metadata/md5-cache/dev-libs/rccl-5.1.3 index eb2a09010c31..b0b6c829a58c 100644 --- a/metadata/md5-cache/dev-libs/rccl-5.1.3 +++ b/metadata/md5-cache/dev-libs/rccl-5.1.3 @@ -12,5 +12,5 @@ RDEPEND=dev-util/hip dev-util/rocm-smi:0/5.1 RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/rccl/archive/rocm-5.1.3.tar.gz -> rccl-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57719c810219cffa912d3a3339326860 diff --git a/metadata/md5-cache/dev-libs/redis-ipc-0.1.0 b/metadata/md5-cache/dev-libs/redis-ipc-0.1.0 index e9a485324de2..36c341605938 100644 --- a/metadata/md5-cache/dev-libs/redis-ipc-0.1.0 +++ b/metadata/md5-cache/dev-libs/redis-ipc-0.1.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/hiredis:= dev-libs/json-c dev-db/redis RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/VCTLabs/redis-ipc/archive/v0.1.0.tar.gz -> redis-ipc-0.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=22661a2d02281021711d501c156a60fb diff --git a/metadata/md5-cache/dev-libs/rinutils-0.10.0 b/metadata/md5-cache/dev-libs/rinutils-0.10.0 index 5c5c31410eb8..b08114e30123 100644 --- a/metadata/md5-cache/dev-libs/rinutils-0.10.0 +++ b/metadata/md5-cache/dev-libs/rinutils-0.10.0 @@ -8,5 +8,5 @@ KEYWORDS=amd64 arm64 ~riscv x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/shlomif/rinutils/releases/download/0.10.0/rinutils-0.10.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=05e9554b1df3c0faee65304b9a475695 diff --git a/metadata/md5-cache/dev-libs/rinutils-0.10.1 b/metadata/md5-cache/dev-libs/rinutils-0.10.1 index 4aaa3e8052ec..e2a1f237f261 100644 --- a/metadata/md5-cache/dev-libs/rinutils-0.10.1 +++ b/metadata/md5-cache/dev-libs/rinutils-0.10.1 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~mips ~ppc64 ~riscv ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/shlomif/rinutils/releases/download/0.10.1/rinutils-0.10.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=75a0eddb1992b9297e281f15326848f9 diff --git a/metadata/md5-cache/dev-libs/rocksdb-6.14.6-r2 b/metadata/md5-cache/dev-libs/rocksdb-6.14.6-r2 index 123a4b03eb60..7770007a9937 100644 --- a/metadata/md5-cache/dev-libs/rocksdb-6.14.6-r2 +++ b/metadata/md5-cache/dev-libs/rocksdb-6.14.6-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= dev-cpp/gflags:= sys-libs/zlib:= jemalloc? ( dev-libs/jemalloc:= ) SLOT=0 SRC_URI=https://github.com/facebook/rocksdb/archive/v6.14.6.tar.gz -> rocksdb-6.14.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d0ee79f46eb4e1064f9ce69e034e6de1 diff --git a/metadata/md5-cache/dev-libs/rocksdb-6.15.5-r1 b/metadata/md5-cache/dev-libs/rocksdb-6.15.5-r1 index 8794c0122fea..b68a8a58986b 100644 --- a/metadata/md5-cache/dev-libs/rocksdb-6.15.5-r1 +++ b/metadata/md5-cache/dev-libs/rocksdb-6.15.5-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= dev-cpp/gflags sys-libs/zlib:= jemalloc? ( dev-libs/jemalloc:= ) SLOT=0 SRC_URI=https://github.com/facebook/rocksdb/archive/v6.15.5.tar.gz -> rocksdb-6.15.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=97d64162121c778ef6f49a079c483b49 diff --git a/metadata/md5-cache/dev-libs/rocksdb-6.17.3-r1 b/metadata/md5-cache/dev-libs/rocksdb-6.17.3-r1 index 3af6b8408bf8..b25f11f0cc0d 100644 --- a/metadata/md5-cache/dev-libs/rocksdb-6.17.3-r1 +++ b/metadata/md5-cache/dev-libs/rocksdb-6.17.3-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= dev-cpp/gflags sys-libs/zlib:= jemalloc? ( dev-libs/jemalloc:= ) SLOT=0 SRC_URI=https://github.com/facebook/rocksdb/archive/v6.17.3.tar.gz -> rocksdb-6.17.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d569d2d3e09ff921300fea584d3e09ce diff --git a/metadata/md5-cache/dev-libs/rocksdb-7.9.2 b/metadata/md5-cache/dev-libs/rocksdb-7.9.2 index 47543ed09551..c046bcf8f952 100644 --- a/metadata/md5-cache/dev-libs/rocksdb-7.9.2 +++ b/metadata/md5-cache/dev-libs/rocksdb-7.9.2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= dev-cpp/gflags:= sys-libs/liburing:= sys-libs/zlib:= jemalloc? ( dev-libs/jemalloc:= ) SLOT=0 SRC_URI=https://github.com/facebook/rocksdb/archive/v7.9.2.tar.gz -> rocksdb-7.9.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=377f7698e64b9f9925ce5de1b4bc2522 diff --git a/metadata/md5-cache/dev-libs/rocm-comgr-5.1.3-r3 b/metadata/md5-cache/dev-libs/rocm-comgr-5.1.3-r3 index b72cb3fc6b4c..312fef664852 100644 --- a/metadata/md5-cache/dev-libs/rocm-comgr-5.1.3-r3 +++ b/metadata/md5-cache/dev-libs/rocm-comgr-5.1.3-r3 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=>=dev-libs/rocm-device-libs-5.1.3 sys-devel/clang:15= sys-devel/clang-runtime:= sys-devel/lld:15= SLOT=0/5.1 SRC_URI=https://github.com/RadeonOpenCompute/ROCm-CompilerSupport/archive/rocm-5.1.3.tar.gz -> rocm-comgr-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e1bf54859fed172751c563d8c0b0d3f4 diff --git a/metadata/md5-cache/dev-libs/rocm-comgr-5.3.3-r2 b/metadata/md5-cache/dev-libs/rocm-comgr-5.3.3-r2 index b4691b2f829e..9b14a142f975 100644 --- a/metadata/md5-cache/dev-libs/rocm-comgr-5.3.3-r2 +++ b/metadata/md5-cache/dev-libs/rocm-comgr-5.3.3-r2 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/rocm-device-libs-5.3.3 sys-devel/clang:15= sys-devel/clang-ru RESTRICT=!test? ( test ) SLOT=0/5.3 SRC_URI=https://github.com/RadeonOpenCompute/ROCm-CompilerSupport/archive/rocm-5.3.3.tar.gz -> rocm-comgr-5.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=abc4ea250a20c86d532b1df153e3d4da diff --git a/metadata/md5-cache/dev-libs/rocm-comgr-5.4.3-r1 b/metadata/md5-cache/dev-libs/rocm-comgr-5.4.3-r1 index 5e498b6ba17a..5b0a4d9aa534 100644 --- a/metadata/md5-cache/dev-libs/rocm-comgr-5.4.3-r1 +++ b/metadata/md5-cache/dev-libs/rocm-comgr-5.4.3-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/rocm-device-libs-5.4.3 sys-devel/clang:15= sys-devel/clang-ru RESTRICT=!test? ( test ) SLOT=0/5.4 SRC_URI=https://github.com/RadeonOpenCompute/ROCm-CompilerSupport/archive/rocm-5.4.3.tar.gz -> rocm-comgr-5.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b9fe4ce8fadfc7c8572448464174b5a diff --git a/metadata/md5-cache/dev-libs/rocm-device-libs-5.1.3-r1 b/metadata/md5-cache/dev-libs/rocm-device-libs-5.1.3-r1 index bd775f7cfbfe..6437aa4887a2 100644 --- a/metadata/md5-cache/dev-libs/rocm-device-libs-5.1.3-r1 +++ b/metadata/md5-cache/dev-libs/rocm-device-libs-5.1.3-r1 @@ -12,5 +12,5 @@ RDEPEND=sys-devel/clang:15 RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/RadeonOpenCompute/ROCm-Device-Libs/archive/rocm-5.1.3.tar.gz -> rocm-device-libs-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2e9adc58ebc3605bf5d6bf76058e4db8 diff --git a/metadata/md5-cache/dev-libs/rocm-device-libs-5.3.3 b/metadata/md5-cache/dev-libs/rocm-device-libs-5.3.3 index ad352b9ded80..5af96be2621f 100644 --- a/metadata/md5-cache/dev-libs/rocm-device-libs-5.3.3 +++ b/metadata/md5-cache/dev-libs/rocm-device-libs-5.3.3 @@ -12,5 +12,5 @@ RDEPEND=sys-devel/clang:15 RESTRICT=!test? ( test ) SLOT=0/5.3 SRC_URI=https://github.com/RadeonOpenCompute/ROCm-Device-Libs/archive/rocm-5.3.3.tar.gz -> rocm-device-libs-5.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2e9adc58ebc3605bf5d6bf76058e4db8 diff --git a/metadata/md5-cache/dev-libs/rocm-device-libs-5.4.3 b/metadata/md5-cache/dev-libs/rocm-device-libs-5.4.3 index 2c463aea42ec..bb3acdcd1006 100644 --- a/metadata/md5-cache/dev-libs/rocm-device-libs-5.4.3 +++ b/metadata/md5-cache/dev-libs/rocm-device-libs-5.4.3 @@ -12,5 +12,5 @@ RDEPEND=sys-devel/clang:15 RESTRICT=!test? ( test ) SLOT=0/5.4 SRC_URI=https://github.com/RadeonOpenCompute/ROCm-Device-Libs/archive/rocm-5.4.3.tar.gz -> rocm-device-libs-5.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=58858ca218ce47816d3effb45beadaa7 diff --git a/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.1.3 b/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.1.3 index 63b4ef2e5d1b..d8189646f4d3 100644 --- a/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.1.3 +++ b/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.1.3 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/rocr-runtime-5.1.3 >=dev-libs/rocm-comgr-5.1.3 >=dev-libs/roc RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCm-Developer-Tools/ROCclr/archive/rocm-5.1.3.tar.gz -> rocclr-5.1.3.tar.gz https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime/archive/rocm-5.1.3.tar.gz -> rocm-opencl-runtime-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1475ca2a68e71b21ceb0bd094c556ca4 diff --git a/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.3.3-r1 b/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.3.3-r1 index 523b34b4f5f6..4b8042c65c63 100644 --- a/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.3.3-r1 +++ b/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.3.3-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/rocr-runtime-5.3.3 >=dev-libs/rocm-comgr-5.3.3 >=dev-libs/roc RESTRICT=!test? ( test ) SLOT=0/5.3 SRC_URI=https://github.com/ROCm-Developer-Tools/ROCclr/archive/rocm-5.3.3.tar.gz -> rocclr-5.3.3.tar.gz https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime/archive/rocm-5.3.3.tar.gz -> rocm-opencl-runtime-5.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5d31d8a406640ace20d720ea03c62d29 diff --git a/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.4.3 b/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.4.3 index edae1fd7576b..86aa335a90e7 100644 --- a/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.4.3 +++ b/metadata/md5-cache/dev-libs/rocm-opencl-runtime-5.4.3 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/rocr-runtime-5.3 >=dev-libs/rocm-comgr-5.3 >=dev-libs/rocm-de RESTRICT=!test? ( test ) SLOT=0/5.4 SRC_URI=https://github.com/ROCm-Developer-Tools/ROCclr/archive/rocm-5.4.3.tar.gz -> rocclr-5.4.3.tar.gz https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime/archive/rocm-5.4.3.tar.gz -> rocm-opencl-runtime-5.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=22338e54e3c549a6fad623c2cd9c0008 diff --git a/metadata/md5-cache/dev-libs/rocm-opencl-runtime-9999 b/metadata/md5-cache/dev-libs/rocm-opencl-runtime-9999 index d446dcef53db..749f71b0fadc 100644 --- a/metadata/md5-cache/dev-libs/rocm-opencl-runtime-9999 +++ b/metadata/md5-cache/dev-libs/rocm-opencl-runtime-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=dev-libs/rocr-runtime-5.3 >=dev-libs/rocm-comgr-5.3 >=dev-libs/rocm-device-libs-5.3 >=virtual/opencl-3 media-libs/mesa RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5a8171919b9e375cc532b4eca2d29c58 diff --git a/metadata/md5-cache/dev-libs/rocr-runtime-5.1.3-r1 b/metadata/md5-cache/dev-libs/rocr-runtime-5.1.3-r1 index 79ce4e93831e..30d583acc3aa 100644 --- a/metadata/md5-cache/dev-libs/rocr-runtime-5.1.3-r1 +++ b/metadata/md5-cache/dev-libs/rocr-runtime-5.1.3-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/elfutils SLOT=0/5.1 SRC_URI=https://github.com/RadeonOpenCompute/ROCR-Runtime/archive/rocm-5.1.3.tar.gz -> rocr-runtime-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7a2f1162f552887abd6e71c26eb4b2e3 diff --git a/metadata/md5-cache/dev-libs/rocr-runtime-5.3.3-r1 b/metadata/md5-cache/dev-libs/rocr-runtime-5.3.3-r1 index 0248331cb8a3..4787aa84559c 100644 --- a/metadata/md5-cache/dev-libs/rocr-runtime-5.3.3-r1 +++ b/metadata/md5-cache/dev-libs/rocr-runtime-5.3.3-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/elfutils SLOT=0/5.3 SRC_URI=https://github.com/RadeonOpenCompute/ROCR-Runtime/archive/rocm-5.3.3.tar.gz -> rocr-runtime-5.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ba1cf8de442ddf59680635bd1b4903c2 diff --git a/metadata/md5-cache/dev-libs/rocr-runtime-5.4.3-r1 b/metadata/md5-cache/dev-libs/rocr-runtime-5.4.3-r1 index 9f660d010293..80af97578b1f 100644 --- a/metadata/md5-cache/dev-libs/rocr-runtime-5.4.3-r1 +++ b/metadata/md5-cache/dev-libs/rocr-runtime-5.4.3-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/elfutils SLOT=0/5.4 SRC_URI=https://github.com/RadeonOpenCompute/ROCR-Runtime/archive/rocm-5.4.3.tar.gz -> rocr-runtime-5.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b4c988c0ce21f29d220ef13fcec492a diff --git a/metadata/md5-cache/dev-libs/roct-thunk-interface-5.1.3 b/metadata/md5-cache/dev-libs/roct-thunk-interface-5.1.3 index 9ca78059ef0a..4140fc0458c2 100644 --- a/metadata/md5-cache/dev-libs/roct-thunk-interface-5.1.3 +++ b/metadata/md5-cache/dev-libs/roct-thunk-interface-5.1.3 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=sys-process/numactl SLOT=0/5.1 SRC_URI=https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface/archive/rocm-5.1.3.tar.gz -> roct-thunk-interface-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a4430921bceb8186e3f2bed893d3df24 diff --git a/metadata/md5-cache/dev-libs/roct-thunk-interface-5.3.3 b/metadata/md5-cache/dev-libs/roct-thunk-interface-5.3.3 index 93e585314f67..c9e2cbb23172 100644 --- a/metadata/md5-cache/dev-libs/roct-thunk-interface-5.3.3 +++ b/metadata/md5-cache/dev-libs/roct-thunk-interface-5.3.3 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=sys-process/numactl SLOT=0/5.3 SRC_URI=https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface/archive/rocm-5.3.3.tar.gz -> roct-thunk-interface-5.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a4430921bceb8186e3f2bed893d3df24 diff --git a/metadata/md5-cache/dev-libs/roct-thunk-interface-5.4.3 b/metadata/md5-cache/dev-libs/roct-thunk-interface-5.4.3 index f85cf2264dde..dd496791dc7b 100644 --- a/metadata/md5-cache/dev-libs/roct-thunk-interface-5.4.3 +++ b/metadata/md5-cache/dev-libs/roct-thunk-interface-5.4.3 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=sys-process/numactl SLOT=0/5.4 SRC_URI=https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface/archive/rocm-5.4.3.tar.gz -> roct-thunk-interface-5.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3151e7d04a7e95f6301e352bba6a4d7f diff --git a/metadata/md5-cache/dev-libs/s2n-1.0.0 b/metadata/md5-cache/dev-libs/s2n-1.0.0 index 2a5fe60feec2..1b49b5c99d3b 100644 --- a/metadata/md5-cache/dev-libs/s2n-1.0.0 +++ b/metadata/md5-cache/dev-libs/s2n-1.0.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl:0=[static-libs=] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awslabs/s2n/archive/v1.0.0.tar.gz -> s2n-1.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=541a41244f365ed78b68d477d057eff8 diff --git a/metadata/md5-cache/dev-libs/sdformat-9.8.0 b/metadata/md5-cache/dev-libs/sdformat-9.8.0 index 5172d3b29236..2b12b0f1301b 100644 --- a/metadata/md5-cache/dev-libs/sdformat-9.8.0 +++ b/metadata/md5-cache/dev-libs/sdformat-9.8.0 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-libs/urdfdom-1:= dev-libs/tinyxml dev-libs/boost:= sci-libs/ignition-math:6= SLOT=0/9 SRC_URI=http://osrf-distributions.s3.amazonaws.com/sdformat/releases/sdformat-9.8.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=282408ac6e0b9a4d6da3e8caef2273ea diff --git a/metadata/md5-cache/dev-libs/simdjson-3.0.0 b/metadata/md5-cache/dev-libs/simdjson-3.0.0 index 36d2cdffc28d..039ec5f4b115 100644 --- a/metadata/md5-cache/dev-libs/simdjson-3.0.0 +++ b/metadata/md5-cache/dev-libs/simdjson-3.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=test? ( tools ) RESTRICT=!test? ( test ) SLOT=0/14 SRC_URI=https://github.com/simdjson/simdjson/archive/v3.0.0.tar.gz -> simdjson-3.0.0.gh.tar.gz test? ( https://github.com/simdjson/simdjson-data/archive/a5b13babe65c1bba7186b41b43d4cbdc20a5c470.tar.gz -> simdjson-data-a5b13babe65c1bba7186b41b43d4cbdc20a5c470.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9f586bd2c693226be24780719cc5c73a diff --git a/metadata/md5-cache/dev-libs/simdjson-3.1.1-r1 b/metadata/md5-cache/dev-libs/simdjson-3.1.1-r1 index 22ff99e64db4..7e57279cccb6 100644 --- a/metadata/md5-cache/dev-libs/simdjson-3.1.1-r1 +++ b/metadata/md5-cache/dev-libs/simdjson-3.1.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=test? ( tools ) RESTRICT=!test? ( test ) SLOT=0/15 SRC_URI=https://github.com/simdjson/simdjson/archive/v3.1.1.tar.gz -> simdjson-3.1.1.gh.tar.gz test? ( https://github.com/simdjson/simdjson-data/archive/a5b13babe65c1bba7186b41b43d4cbdc20a5c470.tar.gz -> simdjson-data-a5b13babe65c1bba7186b41b43d4cbdc20a5c470.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af895c17d38292fd07195774030e259f diff --git a/metadata/md5-cache/dev-libs/simdjson-3.1.6 b/metadata/md5-cache/dev-libs/simdjson-3.1.6 index 82a23845b97d..f59ce53951fc 100644 --- a/metadata/md5-cache/dev-libs/simdjson-3.1.6 +++ b/metadata/md5-cache/dev-libs/simdjson-3.1.6 @@ -12,5 +12,5 @@ REQUIRED_USE=test? ( tools ) RESTRICT=!test? ( test ) SLOT=0/15 SRC_URI=https://github.com/simdjson/simdjson/archive/v3.1.6.tar.gz -> simdjson-3.1.6.gh.tar.gz test? ( https://github.com/simdjson/simdjson-data/archive/a5b13babe65c1bba7186b41b43d4cbdc20a5c470.tar.gz -> simdjson-data-a5b13babe65c1bba7186b41b43d4cbdc20a5c470.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e0a6d5e2b8ef9cebf5817f7fcf7a6cc0 diff --git a/metadata/md5-cache/dev-libs/sink-0.8.0-r3 b/metadata/md5-cache/dev-libs/sink-0.8.0-r3 index 3598efe5608b..470be1cabbc7 100644 --- a/metadata/md5-cache/dev-libs/sink-0.8.0-r3 +++ b/metadata/md5-cache/dev-libs/sink-0.8.0-r3 @@ -11,5 +11,5 @@ RDEPEND=dev-db/lmdb:= dev-libs/flatbuffers:= >=dev-libs/kasync-0.3:5 >=dev-libs/ RESTRICT=test SLOT=5 SRC_URI=mirror://kde/unstable/sink/0.8.0/src/sink-0.8.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fcea7486e3be50a92340369af6512288 diff --git a/metadata/md5-cache/dev-libs/sleef-3.5.1 b/metadata/md5-cache/dev-libs/sleef-3.5.1 index d6e989fd7477..d772c9e97e4d 100644 --- a/metadata/md5-cache/dev-libs/sleef-3.5.1 +++ b/metadata/md5-cache/dev-libs/sleef-3.5.1 @@ -10,5 +10,5 @@ LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/shibatch/sleef/archive/refs/tags/3.5.1.tar.gz -> sleef-3.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e6a65292e746806bb493eb417df6eeaf diff --git a/metadata/md5-cache/dev-libs/spdlog-1.11.0 b/metadata/md5-cache/dev-libs/spdlog-1.11.0 index df610e86c86d..3327d59e838e 100644 --- a/metadata/md5-cache/dev-libs/spdlog-1.11.0 +++ b/metadata/md5-cache/dev-libs/spdlog-1.11.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libfmt-8.0.0:= RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/gabime/spdlog/archive/v1.11.0.tar.gz -> spdlog-1.11.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=700ff44857eb11314faa8551685214df diff --git a/metadata/md5-cache/dev-libs/spdlog-9999 b/metadata/md5-cache/dev-libs/spdlog-9999 index 65cd14b22a50..f9e81d60b3e0 100644 --- a/metadata/md5-cache/dev-libs/spdlog-9999 +++ b/metadata/md5-cache/dev-libs/spdlog-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=dev-libs/libfmt-8.0.0:= RESTRICT=!test? ( test ) SLOT=0/1 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=075cc20dc5f0dfec3fa8f49d01b1d999 diff --git a/metadata/md5-cache/dev-libs/teakra-20220224 b/metadata/md5-cache/dev-libs/teakra-20220224 index a2c3319c16f0..e1645e5d47e2 100644 --- a/metadata/md5-cache/dev-libs/teakra-20220224 +++ b/metadata/md5-cache/dev-libs/teakra-20220224 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/wwylele/teakra/archive/01db7cdd00aabcce559a8dddce8798dabb71949b.tar.gz -> teakra-20220224.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=93bbb41c5c88417d0bc19cbbe1283748 diff --git a/metadata/md5-cache/dev-libs/thrift-0.16.0-r2 b/metadata/md5-cache/dev-libs/thrift-0.16.0-r2 index 0d2a3a018eaa..46e109900a85 100644 --- a/metadata/md5-cache/dev-libs/thrift-0.16.0-r2 +++ b/metadata/md5-cache/dev-libs/thrift-0.16.0-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( ssl ) RESTRICT=!test? ( test ) SLOT=0/0 SRC_URI=mirror://apache/thrift/0.16.0/thrift-0.16.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8509eac4f3f4a52d51758fa9f69ac9d4 diff --git a/metadata/md5-cache/dev-libs/thrift-0.18.1-r1 b/metadata/md5-cache/dev-libs/thrift-0.18.1-r1 index c3f3cb57dc0a..e2f59acf9d07 100644 --- a/metadata/md5-cache/dev-libs/thrift-0.18.1-r1 +++ b/metadata/md5-cache/dev-libs/thrift-0.18.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( ssl libevent ) RESTRICT=!test? ( test ) SLOT=0/0 SRC_URI=mirror://apache/thrift/0.18.1/thrift-0.18.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b80469468f8cc7beb77c932f39e2c1fe diff --git a/metadata/md5-cache/dev-libs/tinyxml2-9.0.0-r1 b/metadata/md5-cache/dev-libs/tinyxml2-9.0.0-r1 index 0bafed14824c..92c1ee687e7a 100644 --- a/metadata/md5-cache/dev-libs/tinyxml2-9.0.0-r1 +++ b/metadata/md5-cache/dev-libs/tinyxml2-9.0.0-r1 @@ -10,5 +10,5 @@ LICENSE=ZLIB RESTRICT=!test? ( test ) SLOT=0/9 SRC_URI=https://github.com/leethomason/tinyxml2/archive/9.0.0.tar.gz -> tinyxml2-9.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0477fe70cf1a86a6483af9280ee9d40e diff --git a/metadata/md5-cache/dev-libs/tlsh-4.8.2 b/metadata/md5-cache/dev-libs/tlsh-4.8.2 index a473bd7e6879..452bb2de12a2 100644 --- a/metadata/md5-cache/dev-libs/tlsh-4.8.2 +++ b/metadata/md5-cache/dev-libs/tlsh-4.8.2 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm ~arm64 ~ia64 ~ppc64 x86 LICENSE=|| ( Apache-2.0 BSD ) SLOT=0 SRC_URI=https://github.com/trendmicro/tlsh/archive/4.8.2.tar.gz -> tlsh-4.8.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8b03713a99f583ae93d1f8d89e4551a1 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-ocaml-0.20.1 b/metadata/md5-cache/dev-libs/tree-sitter-ocaml-0.20.1 new file mode 100644 index 000000000000..ba8f302d1c38 --- /dev/null +++ b/metadata/md5-cache/dev-libs/tree-sitter-ocaml-0.20.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-util/tree-sitter-cli ) +DEFINED_PHASES=compile install test +DEPEND=dev-libs/tree-sitter +DESCRIPTION=OCaml grammar for Tree-sitter +EAPI=8 +HOMEPAGE=https://github.com/tree-sitter/tree-sitter-ocaml +INHERIT=tree-sitter-grammar +IUSE=test +KEYWORDS=~amd64 +LICENSE=MIT +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/tree-sitter/tree-sitter-ocaml/archive/v0.20.1.tar.gz -> tree-sitter-ocaml-0.20.1.tar.gz +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b tree-sitter-grammar 5e666521269350e8332bce7aed53a363 +_md5_=eb90b960e2a91101a7c6e0e493b2e57e diff --git a/metadata/md5-cache/dev-libs/unittest++-2.0.0-r2 b/metadata/md5-cache/dev-libs/unittest++-2.0.0-r2 index 45cbe424de5b..a079dd4fecc3 100644 --- a/metadata/md5-cache/dev-libs/unittest++-2.0.0-r2 +++ b/metadata/md5-cache/dev-libs/unittest++-2.0.0-r2 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/unittest-cpp/unittest-cpp/archive/v2.0.0.tar.gz -> unittest++-2.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=19cd4346a3acdf24b3101c6d42d9dd95 diff --git a/metadata/md5-cache/dev-libs/urdfdom-3.1.0 b/metadata/md5-cache/dev-libs/urdfdom-3.1.0 index 70fc27f78edf..6bd4e2b0ba37 100644 --- a/metadata/md5-cache/dev-libs/urdfdom-3.1.0 +++ b/metadata/md5-cache/dev-libs/urdfdom-3.1.0 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=>=dev-libs/urdfdom_headers-1.0.0 >=dev-libs/console_bridge-0.3:= dev-libs/tinyxml[stl] SLOT=0/3 SRC_URI=https://github.com/ros/urdfdom/archive/3.1.0.tar.gz -> urdfdom-3.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=15bd0b0aec54812413794934a762e490 diff --git a/metadata/md5-cache/dev-libs/urdfdom-9999 b/metadata/md5-cache/dev-libs/urdfdom-9999 index 4a6d0be6bcd1..ab6b584ba168 100644 --- a/metadata/md5-cache/dev-libs/urdfdom-9999 +++ b/metadata/md5-cache/dev-libs/urdfdom-9999 @@ -9,5 +9,5 @@ LICENSE=BSD PROPERTIES=live RDEPEND=>=dev-libs/urdfdom_headers-1.0.0 >=dev-libs/console_bridge-0.3:= dev-libs/tinyxml[stl] SLOT=0/3 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af69cbc9f45210752e22bd2a942d3a44 diff --git a/metadata/md5-cache/dev-libs/urdfdom_headers-1.1.0 b/metadata/md5-cache/dev-libs/urdfdom_headers-1.1.0 index ebf7643ec0db..d8aa43ed35b8 100644 --- a/metadata/md5-cache/dev-libs/urdfdom_headers-1.1.0 +++ b/metadata/md5-cache/dev-libs/urdfdom_headers-1.1.0 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~arm LICENSE=BSD SLOT=0 SRC_URI=https://github.com/ros/urdfdom_headers/archive/1.1.0.tar.gz -> urdfdom_headers-1.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af0d510d7e03a25b9832194fcc75ff42 diff --git a/metadata/md5-cache/dev-libs/urdfdom_headers-9999 b/metadata/md5-cache/dev-libs/urdfdom_headers-9999 index 620b210942eb..57b32b55f18f 100644 --- a/metadata/md5-cache/dev-libs/urdfdom_headers-9999 +++ b/metadata/md5-cache/dev-libs/urdfdom_headers-9999 @@ -7,5 +7,5 @@ INHERIT=git-r3 cmake LICENSE=BSD PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6e626cff919cd3e3db041542e3fd9a2d diff --git a/metadata/md5-cache/dev-libs/uriparser-0.9.7 b/metadata/md5-cache/dev-libs/uriparser-0.9.7 index c7155da625c3..c50578f45bae 100644 --- a/metadata/md5-cache/dev-libs/uriparser-0.9.7 +++ b/metadata/md5-cache/dev-libs/uriparser-0.9.7 @@ -12,5 +12,5 @@ REQUIRED_USE=qt5? ( doc ) test? ( unicode ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/uriparser/uriparser/releases/download/uriparser-0.9.7/uriparser-0.9.7.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a17346a83c3d3b544790678408f9aec4 diff --git a/metadata/md5-cache/dev-libs/utfcpp-3.2.1 b/metadata/md5-cache/dev-libs/utfcpp-3.2.1 index 450660c70f74..b3fac5c04340 100644 --- a/metadata/md5-cache/dev-libs/utfcpp-3.2.1 +++ b/metadata/md5-cache/dev-libs/utfcpp-3.2.1 @@ -10,5 +10,5 @@ LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/nemtrif/utfcpp/archive/v3.2.1.tar.gz -> utfcpp-3.2.1.tar.gz test? ( https://github.com/nemtrif/ftest/archive/1e14b77c2ab8489386fc7046a8bced696c0fc4d6.tar.gz -> ftest-20211106174116.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bfe5930bc1bd60720424f9650eb7d35d diff --git a/metadata/md5-cache/dev-libs/utfcpp-9999 b/metadata/md5-cache/dev-libs/utfcpp-9999 index 0767a7be4441..c5155e3504a0 100644 --- a/metadata/md5-cache/dev-libs/utfcpp-9999 +++ b/metadata/md5-cache/dev-libs/utfcpp-9999 @@ -9,5 +9,5 @@ LICENSE=Boost-1.0 PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=685bcc84d9c84bb20d516f5ee8c69f04 diff --git a/metadata/md5-cache/dev-libs/vc-1.4.3 b/metadata/md5-cache/dev-libs/vc-1.4.3 index edb64b535ecf..92c9272c2ee0 100644 --- a/metadata/md5-cache/dev-libs/vc-1.4.3 +++ b/metadata/md5-cache/dev-libs/vc-1.4.3 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux ~x64-macos LICENSE=BSD SLOT=0 SRC_URI=https://github.com/VcDevel/Vc/archive/1.4.3.tar.gz -> vc-1.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2ae2f020db068864c847bd8489cc64de diff --git a/metadata/md5-cache/dev-libs/weston-9999 b/metadata/md5-cache/dev-libs/weston-9999 index 9ffd363a17d7..1f5c9df0e09a 100644 --- a/metadata/md5-cache/dev-libs/weston-9999 +++ b/metadata/md5-cache/dev-libs/weston-9999 @@ -1,6 +1,6 @@ BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-util/wayland-scanner virtual/pkgconfig >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install setup test unpack -DEPEND=>=dev-libs/libinput-0.8.0 >=dev-libs/wayland-1.20.0 media-libs/libpng:0= sys-auth/seatd:= >=x11-libs/cairo-1.11.3 >=x11-libs/libdrm-2.4.108 >=x11-libs/libxkbcommon-0.5.0 >=x11-libs/pixman-0.25.2 x11-misc/xkeyboard-config drm? ( >=media-libs/mesa-17.1[gbm(+)] >=sys-libs/mtdev-1.1.0 >=virtual/udev-136 ) editor? ( x11-libs/pango ) examples? ( x11-libs/pango ) gles2? ( media-libs/mesa[gles2,wayland] ) jpeg? ( media-libs/libjpeg-turbo:0= ) lcms? ( >=media-libs/lcms-2.9:2 ) pipewire? ( >=media-video/pipewire-0.3:= ) rdp? ( >=net-misc/freerdp-2.3.0:=[server] ) remoting? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) systemd? ( sys-apps/systemd ) vnc? ( =dev-libs/aml-0.2* =gui-libs/neatvnc-0.5* sys-libs/pam ) webp? ( media-libs/libwebp:0= ) X? ( >=x11-libs/libxcb-1.9 x11-libs/libX11 ) xwayland? ( x11-base/xwayland x11-libs/cairo[X,xcb(+)] >=x11-libs/libxcb-1.9 x11-libs/libXcursor ) >=dev-libs/wayland-protocols-1.24 +DEPEND=>=dev-libs/libinput-0.8.0 >=dev-libs/wayland-1.20.0 media-libs/libpng:0= sys-auth/seatd:= >=x11-libs/cairo-1.11.3 >=x11-libs/libdrm-2.4.108 >=x11-libs/libxkbcommon-0.5.0 >=x11-libs/pixman-0.25.2 x11-misc/xkeyboard-config drm? ( >=media-libs/mesa-17.1[gbm(+)] >=sys-libs/mtdev-1.1.0 >=virtual/udev-136 ) editor? ( x11-libs/pango ) examples? ( x11-libs/pango ) gles2? ( media-libs/mesa[gles2,wayland] ) jpeg? ( media-libs/libjpeg-turbo:0= ) lcms? ( >=media-libs/lcms-2.9:2 ) pipewire? ( >=media-video/pipewire-0.3:= ) rdp? ( >=net-misc/freerdp-2.3.0:=[server] ) remoting? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) systemd? ( sys-apps/systemd ) vnc? ( =dev-libs/aml-0.3* =gui-libs/neatvnc-0.6* sys-libs/pam ) webp? ( media-libs/libwebp:0= ) X? ( >=x11-libs/libxcb-1.9 x11-libs/libX11 ) xwayland? ( x11-base/xwayland x11-libs/cairo[X,xcb(+)] >=x11-libs/libxcb-1.9 x11-libs/libXcursor ) >=dev-libs/wayland-protocols-1.24 DESCRIPTION=Wayland reference compositor EAPI=8 HOMEPAGE=https://wayland.freedesktop.org/ https://gitlab.freedesktop.org/wayland/weston @@ -8,9 +8,9 @@ INHERIT=meson python-any-r1 readme.gentoo-r1 xdg-utils git-r3 IUSE=+desktop +drm editor examples fullscreen +gles2 headless ivi jpeg kiosk lcms pipewire rdp remoting +resize-optimization screen-sharing +suid systemd test vnc wayland-compositor webp +X xwayland LICENSE=MIT CC-BY-SA-3.0 PROPERTIES=live -RDEPEND=>=dev-libs/libinput-0.8.0 >=dev-libs/wayland-1.20.0 media-libs/libpng:0= sys-auth/seatd:= >=x11-libs/cairo-1.11.3 >=x11-libs/libdrm-2.4.108 >=x11-libs/libxkbcommon-0.5.0 >=x11-libs/pixman-0.25.2 x11-misc/xkeyboard-config drm? ( >=media-libs/mesa-17.1[gbm(+)] >=sys-libs/mtdev-1.1.0 >=virtual/udev-136 ) editor? ( x11-libs/pango ) examples? ( x11-libs/pango ) gles2? ( media-libs/mesa[gles2,wayland] ) jpeg? ( media-libs/libjpeg-turbo:0= ) lcms? ( >=media-libs/lcms-2.9:2 ) pipewire? ( >=media-video/pipewire-0.3:= ) rdp? ( >=net-misc/freerdp-2.3.0:=[server] ) remoting? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) systemd? ( sys-apps/systemd ) vnc? ( =dev-libs/aml-0.2* =gui-libs/neatvnc-0.5* sys-libs/pam ) webp? ( media-libs/libwebp:0= ) X? ( >=x11-libs/libxcb-1.9 x11-libs/libX11 ) xwayland? ( x11-base/xwayland x11-libs/cairo[X,xcb(+)] >=x11-libs/libxcb-1.9 x11-libs/libXcursor ) +RDEPEND=>=dev-libs/libinput-0.8.0 >=dev-libs/wayland-1.20.0 media-libs/libpng:0= sys-auth/seatd:= >=x11-libs/cairo-1.11.3 >=x11-libs/libdrm-2.4.108 >=x11-libs/libxkbcommon-0.5.0 >=x11-libs/pixman-0.25.2 x11-misc/xkeyboard-config drm? ( >=media-libs/mesa-17.1[gbm(+)] >=sys-libs/mtdev-1.1.0 >=virtual/udev-136 ) editor? ( x11-libs/pango ) examples? ( x11-libs/pango ) gles2? ( media-libs/mesa[gles2,wayland] ) jpeg? ( media-libs/libjpeg-turbo:0= ) lcms? ( >=media-libs/lcms-2.9:2 ) pipewire? ( >=media-video/pipewire-0.3:= ) rdp? ( >=net-misc/freerdp-2.3.0:=[server] ) remoting? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) systemd? ( sys-apps/systemd ) vnc? ( =dev-libs/aml-0.3* =gui-libs/neatvnc-0.6* sys-libs/pam ) webp? ( media-libs/libwebp:0= ) X? ( >=x11-libs/libxcb-1.9 x11-libs/libX11 ) xwayland? ( x11-base/xwayland x11-libs/cairo[X,xcb(+)] >=x11-libs/libxcb-1.9 x11-libs/libXcursor ) REQUIRED_USE=drm? ( gles2 ) pipewire? ( drm ) remoting? ( drm gles2 ) screen-sharing? ( rdp ) test? ( desktop headless lcms xwayland ) wayland-compositor? ( gles2 ) || ( drm headless rdp vnc wayland-compositor X ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=git-r3 c57c50c922e121043788de0b40ada60a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=d787962880846fb73c4075b55ca533e1 +_md5_=ad3366653b90855aa98959f2cf106b4f diff --git a/metadata/md5-cache/dev-libs/xalan-c-1.12-r2 b/metadata/md5-cache/dev-libs/xalan-c-1.12-r2 index 7b5cab19285f..a5fa11ed67a6 100644 --- a/metadata/md5-cache/dev-libs/xalan-c-1.12-r2 +++ b/metadata/md5-cache/dev-libs/xalan-c-1.12-r2 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-libs/icu:= dev-libs/xerces-c[icu] SLOT=0/1.12 SRC_URI=https://dlcdn.apache.org/xalan/xalan-c/sources/xalan_c-1.12.tar.gz verify-sig? ( https://dlcdn.apache.org/xalan/xalan-c/sources/xalan_c-1.12.tar.gz.asc ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6130ba5b9cd35741349641c988362292 diff --git a/metadata/md5-cache/dev-libs/xalan-c-9999 b/metadata/md5-cache/dev-libs/xalan-c-9999 index c18d55d82a01..75090601a07c 100644 --- a/metadata/md5-cache/dev-libs/xalan-c-9999 +++ b/metadata/md5-cache/dev-libs/xalan-c-9999 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 PROPERTIES=live RDEPEND=dev-libs/icu:= dev-libs/xerces-c[icu] SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=20f027bf3442998a81d550f25f255e9c diff --git a/metadata/md5-cache/dev-libs/xerces-c-3.2.3-r2 b/metadata/md5-cache/dev-libs/xerces-c-3.2.3-r2 index 1f1fb32a666f..409c9756189a 100644 --- a/metadata/md5-cache/dev-libs/xerces-c-3.2.3-r2 +++ b/metadata/md5-cache/dev-libs/xerces-c-3.2.3-r2 @@ -12,5 +12,5 @@ RDEPEND=curl? ( net-misc/curl ) icu? ( dev-libs/icu:0= ) virtual/libiconv RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://apache/xerces/c/3/sources/xerces-c-3.2.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=16b91ab376671a683bdc81cf1b093984 diff --git a/metadata/md5-cache/dev-libs/xerces-c-9999 b/metadata/md5-cache/dev-libs/xerces-c-9999 index a57ff97c882b..1921dd2d2abd 100644 --- a/metadata/md5-cache/dev-libs/xerces-c-9999 +++ b/metadata/md5-cache/dev-libs/xerces-c-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=curl? ( net-misc/curl ) icu? ( dev-libs/icu:0= ) virtual/libiconv RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 subversion a98eebf2efc83b38f8d1982b8a522e75 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 subversion a98eebf2efc83b38f8d1982b8a522e75 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c45f37eee2585df835116d2554465bf diff --git a/metadata/md5-cache/dev-libs/yajl-2.1.0-r3 b/metadata/md5-cache/dev-libs/yajl-2.1.0-r3 index f3a305fb0ac4..2fe3d5b0d565 100644 --- a/metadata/md5-cache/dev-libs/yajl-2.1.0-r3 +++ b/metadata/md5-cache/dev-libs/yajl-2.1.0-r3 @@ -9,5 +9,5 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc LICENSE=ISC SLOT=0/2 SRC_URI=https://github.com/lloyd/yajl/archive/2.1.0.tar.gz -> yajl-2.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0d0f170a09bde150137a1bbf0ddfa8cf diff --git a/metadata/md5-cache/dev-libs/zziplib-0.13.72-r3 b/metadata/md5-cache/dev-libs/zziplib-0.13.72-r3 index 50c546aad295..98efe4a50132 100644 --- a/metadata/md5-cache/dev-libs/zziplib-0.13.72-r3 +++ b/metadata/md5-cache/dev-libs/zziplib-0.13.72-r3 @@ -11,5 +11,5 @@ LICENSE=|| ( LGPL-2.1 MPL-1.1 ) RDEPEND=sys-libs/zlib sdl? ( >=media-libs/libsdl-1.2.6 ) SLOT=0/13 SRC_URI=https://github.com/gdraheim/zziplib/archive/v0.13.72.tar.gz -> zziplib-0.13.72.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4b8e5e4f54fb851fe79b32ebb3c3fbe0 diff --git a/metadata/md5-cache/dev-lisp/Manifest.gz b/metadata/md5-cache/dev-lisp/Manifest.gz index fcbb4d27d852..3f9d16fc2b00 100644 Binary files a/metadata/md5-cache/dev-lisp/Manifest.gz and b/metadata/md5-cache/dev-lisp/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lisp/c2ffi-14.0.0.20220729-r1 b/metadata/md5-cache/dev-lisp/c2ffi-14.0.0.20220729-r1 index 9893d22a9fad..7edac242e91e 100644 --- a/metadata/md5-cache/dev-lisp/c2ffi-14.0.0.20220729-r1 +++ b/metadata/md5-cache/dev-lisp/c2ffi-14.0.0.20220729-r1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=sys-devel/clang:14 sys-devel/llvm:14 SLOT=0 SRC_URI=https://github.com/rpav/c2ffi/archive/25fcec13381f495460f4a4eafdd1b939c799df4a.tar.gz -> c2ffi-14.0.0.20220729.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ab0464029b3091ccda56d1294c64182a diff --git a/metadata/md5-cache/dev-lua/Manifest.gz b/metadata/md5-cache/dev-lua/Manifest.gz index c2e869a3e697..76c82137c80c 100644 Binary files a/metadata/md5-cache/dev-lua/Manifest.gz and b/metadata/md5-cache/dev-lua/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lua/lua-zlib-1.2-r1 b/metadata/md5-cache/dev-lua/lua-zlib-1.2-r1 index 3178747247c4..499f2ee35280 100644 --- a/metadata/md5-cache/dev-lua/lua-zlib-1.2-r1 +++ b/metadata/md5-cache/dev-lua/lua-zlib-1.2-r1 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib lua_targets_luajit? ( dev-lang/luajit:= ) lua_targets_lua5 REQUIRED_USE=|| ( lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-3 lua_targets_lua5-4 ) SLOT=0 SRC_URI=https://github.com/brimworks/lua-zlib/archive/v1.2.tar.gz -> lua-zlib-1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua 8f9406bfff123a92ad04e4ace3e7f89b lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua 8f9406bfff123a92ad04e4ace3e7f89b lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=060299d9710c6678cd7ed08b75164862 diff --git a/metadata/md5-cache/dev-lua/luasec-1.3.0 b/metadata/md5-cache/dev-lua/luasec-1.3.1 similarity index 93% rename from metadata/md5-cache/dev-lua/luasec-1.3.0 rename to metadata/md5-cache/dev-lua/luasec-1.3.1 index 2b787c9321f8..95a945cff509 100644 --- a/metadata/md5-cache/dev-lua/luasec-1.3.0 +++ b/metadata/md5-cache/dev-lua/luasec-1.3.1 @@ -10,6 +10,6 @@ KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT RDEPEND=>=dev-lua/luasocket-3.0_rc1_p20200328-r103[lua_targets_luajit(-)?,lua_targets_lua5-1(-)?,lua_targets_lua5-3(-)?,lua_targets_lua5-4(-)?] dev-libs/openssl:0= 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 ) SLOT=0 -SRC_URI=https://github.com/brunoos/luasec/archive/v1.3.0.tar.gz -> luasec-1.3.0.tar.gz +SRC_URI=https://github.com/brunoos/luasec/archive/v1.3.1.tar.gz -> luasec-1.3.1.tar.gz _eclasses_=lua 8f9406bfff123a92ad04e4ace3e7f89b lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b _md5_=7ff58a1d4989497bccd35baebafefcde diff --git a/metadata/md5-cache/dev-lua/luv-1.36.0.0 b/metadata/md5-cache/dev-lua/luv-1.36.0.0 index f02dc300f684..dade595a7f2d 100644 --- a/metadata/md5-cache/dev-lua/luv-1.36.0.0 +++ b/metadata/md5-cache/dev-lua/luv-1.36.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_t RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/luvit/luv/archive/1.36.0-0.tar.gz -> luv-1.36.0.0.tar.gz https://github.com/keplerproject/lua-compat-5.3/archive/v0.10.tar.gz -> luv-lua-compat-0.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b unpacker 65735fed9c1c30cb461c90db600ac990 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b unpacker 65735fed9c1c30cb461c90db600ac990 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0ad9c103a01a0110890e877368976542 diff --git a/metadata/md5-cache/dev-lua/luv-1.43.0.0 b/metadata/md5-cache/dev-lua/luv-1.43.0.0 index d4d498e6c54a..5e1c77474b72 100644 --- a/metadata/md5-cache/dev-lua/luv-1.43.0.0 +++ b/metadata/md5-cache/dev-lua/luv-1.43.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_t RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/luvit/luv/archive/1.43.0-0.tar.gz -> luv-1.43.0.0.tar.gz https://github.com/keplerproject/lua-compat-5.3/archive/v0.10.tar.gz -> luv-lua-compat-0.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b unpacker 65735fed9c1c30cb461c90db600ac990 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b unpacker 65735fed9c1c30cb461c90db600ac990 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b91502017cb1fee543eee68c6802b0fe diff --git a/metadata/md5-cache/dev-lua/luv-1.44.2.0 b/metadata/md5-cache/dev-lua/luv-1.44.2.0 index b94c02a5ffda..1443fc21426c 100644 --- a/metadata/md5-cache/dev-lua/luv-1.44.2.0 +++ b/metadata/md5-cache/dev-lua/luv-1.44.2.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_t RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/luvit/luv/archive/1.44.2-0.tar.gz -> luv-1.44.2.0.tar.gz https://github.com/keplerproject/lua-compat-5.3/archive/v0.10.tar.gz -> luv-lua-compat-0.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b unpacker 65735fed9c1c30cb461c90db600ac990 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b unpacker 65735fed9c1c30cb461c90db600ac990 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=809b6d2dba05dacc6dae2568258315e6 diff --git a/metadata/md5-cache/dev-lua/mpack-1.0.10 b/metadata/md5-cache/dev-lua/mpack-1.0.10 new file mode 100644 index 000000000000..32a9dda6ed0b --- /dev/null +++ b/metadata/md5-cache/dev-lua/mpack-1.0.10 @@ -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(-)?] dev-libs/libmpack 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=dev-libs/libmpack 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=Lua bindings for libmpack +EAPI=8 +HOMEPAGE=https://github.com/libmpack/libmpack-lua/ +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 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos +LICENSE=MIT +RDEPEND=dev-libs/libmpack 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/libmpack/libmpack-lua/archive/1.0.10.tar.gz -> mpack-1.0.10.tar.gz +_eclasses_=lua 8f9406bfff123a92ad04e4ace3e7f89b lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=9bb87be2d7fb72d7c1b4d6e686516dc7 diff --git a/metadata/md5-cache/dev-lua/toluapp-1.0.93_p20190513-r100 b/metadata/md5-cache/dev-lua/toluapp-1.0.93_p20190513-r100 index 8a31be292398..134fbcd7cf5d 100644 --- a/metadata/md5-cache/dev-lua/toluapp-1.0.93_p20190513-r100 +++ b/metadata/md5-cache/dev-lua/toluapp-1.0.93_p20190513-r100 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) REQUIRED_USE=^^ ( lua_single_target_lua5-1 ) SLOT=0 SRC_URI=https://github.com/LuaDist/toluapp/archive/b34075b76835b778bb6b2ce0aa224afd9d182887.tar.gz -> toluapp-1.0.93_p20190513.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=06461c2f73cb27ba79288b2cd9742da3 diff --git a/metadata/md5-cache/dev-ml/Manifest.gz b/metadata/md5-cache/dev-ml/Manifest.gz index d97c64f670d5..4ca613706e7f 100644 Binary files a/metadata/md5-cache/dev-ml/Manifest.gz and b/metadata/md5-cache/dev-ml/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ml/llvm-ocaml-14.0.6 b/metadata/md5-cache/dev-ml/llvm-ocaml-14.0.6 index 1684153b2fba..f76de3588325 100644 --- a/metadata/md5-cache/dev-ml/llvm-ocaml-14.0.6 +++ b/metadata/md5-cache/dev-ml/llvm-ocaml-14.0.6 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm RESTRICT=!test? ( test ) SLOT=0/14.0.6 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=81a9f3aae36c4d277e7deb51da8e2119 diff --git a/metadata/md5-cache/dev-ml/llvm-ocaml-15.0.7 b/metadata/md5-cache/dev-ml/llvm-ocaml-15.0.7 index a48b56e7f98f..88c78d94e51b 100644 --- a/metadata/md5-cache/dev-ml/llvm-ocaml-15.0.7 +++ b/metadata/md5-cache/dev-ml/llvm-ocaml-15.0.7 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm RESTRICT=!test? ( test ) SLOT=0/15.0.7 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=47ac9fc5ccf47d31fdeabf577e9b531c diff --git a/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0 b/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0 index 25d673406d29..4bd31f4b3a63 100644 --- a/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0 +++ b/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm RESTRICT=!test? ( test ) SLOT=0/16.0.0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bb054ccbb72b406130928bc4c24b2faa diff --git a/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0.9999 b/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0.9999 index e5a00a2bf69b..491cdecdc438 100644 --- a/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0.9999 +++ b/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0.9999 @@ -12,5 +12,5 @@ RDEPEND=>=dev-lang/ocaml-4.00.0:0= dev-ml/ocaml-ctypes:= ~sys-devel/llvm-16.0.0. REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) RESTRICT=!test? ( test ) SLOT=0/16.0.0.9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e3e6f841757b36483d0138e342540e9 diff --git a/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0_rc3 b/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0_rc3 deleted file mode 100644 index 833ac24cd72c..000000000000 --- a/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0_rc3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl dev-ml/findlib >=dev-util/cmake-3.16 verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=dev-lang/ocaml-4.00.0:0= dev-ml/ocaml-ctypes:= ~sys-devel/llvm-16.0.0_rc3:=[debug?] !sys-devel/llvm[ocaml(-)] llvm_targets_AArch64? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Xtensa] ) !!sys-devel/llvm:0 -DESCRIPTION=OCaml bindings for LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm llvm.org python-any-r1 -IUSE=debug test llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa verify-sig -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=>=dev-lang/ocaml-4.00.0:0= dev-ml/ocaml-ctypes:= ~sys-devel/llvm-16.0.0_rc3:=[debug?] !sys-devel/llvm[ocaml(-)] llvm_targets_AArch64? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Xtensa] ) -REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) -RESTRICT=!test? ( test ) -SLOT=0/16.0.0_rc3 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=0e3e6f841757b36483d0138e342540e9 diff --git a/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0_rc4 b/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0_rc4 deleted file mode 100644 index 1f63b44c57ce..000000000000 --- a/metadata/md5-cache/dev-ml/llvm-ocaml-16.0.0_rc4 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl dev-ml/findlib >=dev-util/cmake-3.16 verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=dev-lang/ocaml-4.00.0:0= dev-ml/ocaml-ctypes:= ~sys-devel/llvm-16.0.0_rc4:=[debug?] !sys-devel/llvm[ocaml(-)] llvm_targets_AArch64? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Xtensa] ) !!sys-devel/llvm:0 -DESCRIPTION=OCaml bindings for LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm llvm.org python-any-r1 -IUSE=debug test llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa verify-sig -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=>=dev-lang/ocaml-4.00.0:0= dev-ml/ocaml-ctypes:= ~sys-devel/llvm-16.0.0_rc4:=[debug?] !sys-devel/llvm[ocaml(-)] llvm_targets_AArch64? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Xtensa] ) -REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) -RESTRICT=!test? ( test ) -SLOT=0/16.0.0_rc4 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=0e3e6f841757b36483d0138e342540e9 diff --git a/metadata/md5-cache/dev-ml/llvm-ocaml-17.0.0.9999 b/metadata/md5-cache/dev-ml/llvm-ocaml-17.0.0.9999 index 419b94af4552..a2a6b8153677 100644 --- a/metadata/md5-cache/dev-ml/llvm-ocaml-17.0.0.9999 +++ b/metadata/md5-cache/dev-ml/llvm-ocaml-17.0.0.9999 @@ -12,5 +12,5 @@ RDEPEND=>=dev-lang/ocaml-4.00.0:0= dev-ml/ocaml-ctypes:= ~sys-devel/llvm-17.0.0. REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) RESTRICT=!test? ( test ) SLOT=0/17.0.0.9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e3e6f841757b36483d0138e342540e9 diff --git a/metadata/md5-cache/dev-ml/llvm-ocaml-17.0.0_pre20230304 b/metadata/md5-cache/dev-ml/llvm-ocaml-17.0.0_pre20230304 deleted file mode 100644 index 0859c58edfa3..000000000000 --- a/metadata/md5-cache/dev-ml/llvm-ocaml-17.0.0_pre20230304 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl dev-ml/findlib >=dev-util/cmake-3.16 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=dev-lang/ocaml-4.00.0:0= dev-ml/ocaml-ctypes:= ~sys-devel/llvm-17.0.0_pre20230304:=[debug?] !sys-devel/llvm[ocaml(-)] llvm_targets_AArch64? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Xtensa] ) !!sys-devel/llvm:0 -DESCRIPTION=OCaml bindings for LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm llvm.org python-any-r1 -IUSE=debug test llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=>=dev-lang/ocaml-4.00.0:0= dev-ml/ocaml-ctypes:= ~sys-devel/llvm-17.0.0_pre20230304:=[debug?] !sys-devel/llvm[ocaml(-)] llvm_targets_AArch64? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Xtensa] ) -REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) -RESTRICT=!test? ( test ) -SLOT=0/17.0.0_pre20230304 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=0e3e6f841757b36483d0138e342540e9 diff --git a/metadata/md5-cache/dev-ml/llvm-ocaml-17.0.0_pre20230314 b/metadata/md5-cache/dev-ml/llvm-ocaml-17.0.0_pre20230314 index 22450e5d74e6..3ada6901603e 100644 --- a/metadata/md5-cache/dev-ml/llvm-ocaml-17.0.0_pre20230314 +++ b/metadata/md5-cache/dev-ml/llvm-ocaml-17.0.0_pre20230314 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm RESTRICT=!test? ( test ) SLOT=0/17.0.0_pre20230314 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e3e6f841757b36483d0138e342540e9 diff --git a/metadata/md5-cache/dev-perl/DBIx-Simple-1.370.0 b/metadata/md5-cache/dev-perl/DBIx-Simple-1.370.0 index e98001df7c95..ab5e4986721e 100644 --- a/metadata/md5-cache/dev-perl/DBIx-Simple-1.370.0 +++ b/metadata/md5-cache/dev-perl/DBIx-Simple-1.370.0 @@ -6,11 +6,11 @@ EAPI=7 HOMEPAGE=https://metacpan.org/release/DBIx-Simple INHERIT=perl-module IUSE=test minimal -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=|| ( AFL-3.0 AGPL-3 APL-1.0 Apache-2.0 BSD-2 Boost-1.0 CDDL CPAL-1.0 EPL-1.0 ECL-2.0 EUPL-1.1 GPL-2 GPL-3 LGPL-2.1 LGPL-3 HPND IBM IPAfont ISC LPPL-1.3c 9base MIT MPL-2.0 NOSA nethack PHP-3 POSTGRESQL PYTHON CNRI QPL-1.0 OFL-1.1 Sleepycat Watcom-1.0 W3C wxWinLL-3 ZLIB libpng ) RDEPEND=>=dev-perl/DBI-1.210.0 dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/J/JU/JUERD/DBIx-Simple-1.37.tar.gz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=92db09c5595bc569fa1f98b19667c45b +_md5_=aa7b19bba17c9bfbcd8c3bddecbea4b6 diff --git a/metadata/md5-cache/dev-perl/Email-Address-1.913.0 b/metadata/md5-cache/dev-perl/Email-Address-1.913.0 new file mode 100644 index 000000000000..528fbd4ac84d --- /dev/null +++ b/metadata/md5-cache/dev-perl/Email-Address-1.913.0 @@ -0,0 +1,16 @@ +BDEPEND=virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-Encode virtual/perl-File-Spec >=virtual/perl-Test-Simple-0.960.0 virtual/perl-Time-HiRes ) dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=RFC 2822 Address Parsing and Creation +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Email-Address +INHERIT=perl-module +IUSE=test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/R/RJ/RJBS/Email-Address-1.913.tar.gz +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=8a228be3cef5a54810a2e8f318a768ae diff --git a/metadata/md5-cache/dev-perl/Email-MIME-1.953.0 b/metadata/md5-cache/dev-perl/Email-MIME-1.953.0 new file mode 100644 index 000000000000..289f35030799 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Email-MIME-1.953.0 @@ -0,0 +1,16 @@ +BDEPEND=virtual/perl-Carp dev-perl/Email-Address-XS >=dev-perl/Email-MIME-ContentType-1.23.0 >=dev-perl/Email-MIME-Encodings-1.314.0 dev-perl/Email-MessageID >=dev-perl/Email-Simple-2.212.0 >=virtual/perl-Encode-1.980.100 virtual/perl-MIME-Base64 >=dev-perl/MIME-Types-1.130.0 dev-perl/Module-Runtime virtual/perl-Scalar-List-Utils virtual/perl-parent >=virtual/perl-ExtUtils-MakeMaker-6.780.0 test? ( virtual/perl-File-Spec >=virtual/perl-Test-Simple-0.960.0 ) dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=Easy MIME message parsing +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Email-MIME +INHERIT=perl-module +IUSE=test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~sparc-solaris ~x86-solaris +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=virtual/perl-Carp dev-perl/Email-Address-XS >=dev-perl/Email-MIME-ContentType-1.23.0 >=dev-perl/Email-MIME-Encodings-1.314.0 dev-perl/Email-MessageID >=dev-perl/Email-Simple-2.212.0 >=virtual/perl-Encode-1.980.100 virtual/perl-MIME-Base64 >=dev-perl/MIME-Types-1.130.0 dev-perl/Module-Runtime virtual/perl-Scalar-List-Utils virtual/perl-parent dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/R/RJ/RJBS/Email-MIME-1.953.tar.gz +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=d84ad0254a426630cdac84dead31536f diff --git a/metadata/md5-cache/dev-perl/Email-Sender-2.600.0 b/metadata/md5-cache/dev-perl/Email-Sender-2.600.0 new file mode 100644 index 000000000000..ff7ea7aab6dd --- /dev/null +++ b/metadata/md5-cache/dev-perl/Email-Sender-2.600.0 @@ -0,0 +1,16 @@ +BDEPEND=virtual/perl-Carp >=dev-perl/Email-Abstract-3.6.0 dev-perl/Email-Address-XS >=dev-perl/Email-Simple-1.998.0 >=virtual/perl-File-Path-2.60.0 virtual/perl-File-Spec >=virtual/perl-IO-1.110.0 >=virtual/perl-Scalar-List-Utils-1.450.0 dev-perl/Module-Runtime >=dev-perl/Moo-2.0.0 >=dev-perl/MooX-Types-MooseLike-0.150.0 >=virtual/perl-libnet-3.70.0 dev-perl/Sub-Exporter >=dev-perl/Throwable-0.200.3 dev-perl/Try-Tiny virtual/perl-ExtUtils-MakeMaker test? ( >=virtual/perl-CPAN-Meta-2.120.900 >=dev-perl/Capture-Tiny-0.80.0 virtual/perl-Exporter virtual/perl-File-Temp dev-perl/Sub-Override dev-perl/Test-MockObject >=virtual/perl-Test-Simple-0.960.0 ) dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=A library for sending email +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Email-Sender +INHERIT=perl-module +IUSE=test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=virtual/perl-Carp >=dev-perl/Email-Abstract-3.6.0 dev-perl/Email-Address-XS >=dev-perl/Email-Simple-1.998.0 >=virtual/perl-File-Path-2.60.0 virtual/perl-File-Spec >=virtual/perl-IO-1.110.0 >=virtual/perl-Scalar-List-Utils-1.450.0 dev-perl/Module-Runtime >=dev-perl/Moo-2.0.0 >=dev-perl/MooX-Types-MooseLike-0.150.0 >=virtual/perl-libnet-3.70.0 dev-perl/Sub-Exporter >=dev-perl/Throwable-0.200.3 dev-perl/Try-Tiny dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/R/RJ/RJBS/Email-Sender-2.600.tar.gz +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=9e72861593d5252c229465de65abc915 diff --git a/metadata/md5-cache/dev-perl/Mail-DKIM-1.202.302.120 b/metadata/md5-cache/dev-perl/Mail-DKIM-1.202.302.120 new file mode 100644 index 000000000000..a7141df62510 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Mail-DKIM-1.202.302.120 @@ -0,0 +1,16 @@ +BDEPEND=virtual/perl-Carp >=dev-perl/Crypt-OpenSSL-RSA-0.240.0 virtual/perl-Digest-SHA virtual/perl-MIME-Base64 dev-perl/MailTools dev-perl/Mail-AuthenticationResults dev-perl/Net-DNS virtual/perl-ExtUtils-MakeMaker test? ( dev-perl/Net-DNS-Resolver-Mock virtual/perl-Test-Simple dev-perl/Test-RequiresInternet dev-perl/YAML-LibYAML ) dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=Signs/verifies Internet mail using DKIM message signatures +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Mail-DKIM +INHERIT=perl-module +IUSE=test examples +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=virtual/perl-Carp >=dev-perl/Crypt-OpenSSL-RSA-0.240.0 virtual/perl-Digest-SHA virtual/perl-MIME-Base64 dev-perl/MailTools dev-perl/Mail-AuthenticationResults dev-perl/Net-DNS dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/M/MB/MBRADSHAW/Mail-DKIM-1.20230212.tar.gz +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=0c093e0ec99ae61db12c5329e524ad57 diff --git a/metadata/md5-cache/dev-perl/Mail-DMARC-1.202.109.270-r1 b/metadata/md5-cache/dev-perl/Mail-DMARC-1.202.109.270-r1 index 9718e063b4e3..6d87ae999590 100644 --- a/metadata/md5-cache/dev-perl/Mail-DMARC-1.202.109.270-r1 +++ b/metadata/md5-cache/dev-perl/Mail-DMARC-1.202.109.270-r1 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://metacpan.org/release/Mail-DMARC INHERIT=perl-module IUSE=minimal test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=!minimal? ( dev-perl/Mail-DKIM dev-perl/Net-IMAP-Simple dev-perl/Net-SMTPS ) virtual/perl-Carp dev-perl/Config-Tiny >=dev-perl/DBD-SQLite-1.310.0 >=dev-perl/DBIx-Simple-1.350.0 virtual/perl-Data-Dumper dev-perl/Email-MIME >=dev-perl/Email-Sender-1.300.32 dev-perl/Email-Simple virtual/perl-Encode dev-perl/File-ShareDir virtual/perl-Getopt-Long virtual/perl-HTTP-Tiny virtual/perl-IO virtual/perl-IO-Compress dev-perl/IO-Socket-SSL dev-perl/libwww-perl dev-perl/Mail-DKIM dev-perl/Net-DNS dev-perl/Net-HTTP dev-perl/Net-IDN-Encode dev-perl/Net-IP dev-perl/Net-SMTPS dev-perl/Net-SSLeay >=dev-perl/Net-Server-2 virtual/perl-Socket >=dev-perl/Socket6-0.230.0 virtual/perl-Sys-Syslog dev-perl/Test-File-ShareDir dev-perl/URI dev-perl/XML-LibXML virtual/perl-parent >=dev-perl/Regexp-Common-2013031301 dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MB/MBRADSHAW/Mail-DMARC-1.20210927.tar.gz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=2c04ff3b11b1dd3c88fc432443915f33 +_md5_=58a7749cbf51d043f525b780679c9800 diff --git a/metadata/md5-cache/dev-perl/Mail-DMARC-1.202.302.150 b/metadata/md5-cache/dev-perl/Mail-DMARC-1.202.302.150 new file mode 100644 index 000000000000..51e78cc5543a --- /dev/null +++ b/metadata/md5-cache/dev-perl/Mail-DMARC-1.202.302.150 @@ -0,0 +1,16 @@ +BDEPEND=!minimal? ( dev-perl/Mail-DKIM dev-perl/Net-IMAP-Simple dev-perl/Net-SMTPS ) virtual/perl-Carp dev-perl/Config-Tiny >=dev-perl/DBD-SQLite-1.310.0 >=dev-perl/DBIx-Simple-1.350.0 virtual/perl-Data-Dumper dev-perl/Email-MIME >=dev-perl/Email-Sender-1.300.32 dev-perl/Email-Simple virtual/perl-Encode dev-perl/File-ShareDir virtual/perl-Getopt-Long virtual/perl-HTTP-Tiny virtual/perl-IO virtual/perl-IO-Compress dev-perl/IO-Socket-SSL dev-perl/libwww-perl dev-perl/Mail-DKIM dev-perl/Net-DNS dev-perl/Net-HTTP dev-perl/Net-IDN-Encode dev-perl/Net-IP dev-perl/Net-SMTPS dev-perl/Net-SSLeay >=dev-perl/Net-Server-2 virtual/perl-Socket >=dev-perl/Socket6-0.230.0 virtual/perl-Sys-Syslog dev-perl/Test-File-ShareDir dev-perl/URI dev-perl/XML-LibXML virtual/perl-parent >=dev-perl/Regexp-Common-2013031301 >=dev-perl/Module-Build-0.360.100 virtual/perl-ExtUtils-MakeMaker >=dev-perl/File-ShareDir-Install-0.60.0 test? ( dev-perl/Test-Exception dev-perl/Test-Output virtual/perl-Test-Simple ) dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=Perl implementation of DMARC +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Mail-DMARC +INHERIT=perl-module +IUSE=minimal test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=!minimal? ( dev-perl/Mail-DKIM dev-perl/Net-IMAP-Simple dev-perl/Net-SMTPS ) virtual/perl-Carp dev-perl/Config-Tiny >=dev-perl/DBD-SQLite-1.310.0 >=dev-perl/DBIx-Simple-1.350.0 virtual/perl-Data-Dumper dev-perl/Email-MIME >=dev-perl/Email-Sender-1.300.32 dev-perl/Email-Simple virtual/perl-Encode dev-perl/File-ShareDir virtual/perl-Getopt-Long virtual/perl-HTTP-Tiny virtual/perl-IO virtual/perl-IO-Compress dev-perl/IO-Socket-SSL dev-perl/libwww-perl dev-perl/Mail-DKIM dev-perl/Net-DNS dev-perl/Net-HTTP dev-perl/Net-IDN-Encode dev-perl/Net-IP dev-perl/Net-SMTPS dev-perl/Net-SSLeay >=dev-perl/Net-Server-2 virtual/perl-Socket >=dev-perl/Socket6-0.230.0 virtual/perl-Sys-Syslog dev-perl/Test-File-ShareDir dev-perl/URI dev-perl/XML-LibXML virtual/perl-parent >=dev-perl/Regexp-Common-2013031301 dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/M/MB/MBRADSHAW/Mail-DMARC-1.20230215.tar.gz +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=28a4d5cbb660b9913b47eab1544f4bfb diff --git a/metadata/md5-cache/dev-perl/Manifest.gz b/metadata/md5-cache/dev-perl/Manifest.gz index 92eb5b05431e..500a48c048f4 100644 Binary files a/metadata/md5-cache/dev-perl/Manifest.gz and b/metadata/md5-cache/dev-perl/Manifest.gz differ diff --git a/metadata/md5-cache/dev-perl/Net-HTTP-6.220.0 b/metadata/md5-cache/dev-perl/Net-HTTP-6.220.0 new file mode 100644 index 000000000000..491827f20126 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Net-HTTP-6.220.0 @@ -0,0 +1,16 @@ +BDEPEND=!minimal? ( virtual/perl-IO-Socket-IP dev-perl/IO-Socket-INET6 >=dev-perl/IO-Socket-SSL-2.12.0 ) virtual/perl-Carp !=dev-perl/IO-Socket-SSL-2.12.0 ) virtual/perl-Carp !=dev-perl/Authen-SASL-2.0.0 >=dev-perl/IO-Socket-SSL-1.0.0 >=virtual/perl-libnet-2.0.0 dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/T/TO/TOMO/src/Net-SMTPS-0.10.tar.gz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=80521cc1853e51479fc824355119b3d1 +_md5_=4c49aff8367cf28871e0e4b603a2c65a diff --git a/metadata/md5-cache/dev-perl/Test-File-1.993.0 b/metadata/md5-cache/dev-perl/Test-File-1.993.0 new file mode 100644 index 000000000000..ca4215c1ac5d --- /dev/null +++ b/metadata/md5-cache/dev-perl/Test-File-1.993.0 @@ -0,0 +1,16 @@ +BDEPEND=>=virtual/perl-ExtUtils-MakeMaker-6.640.0 test? ( >=virtual/perl-Test-Simple-0.950.0 ) dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=Test file attributes +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Test-File +INHERIT=perl-module +IUSE=test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/B/BD/BDFOY/Test-File-1.993.tar.gz +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=7878378422fb11612033cbc17a29c0f7 diff --git a/metadata/md5-cache/dev-perl/Test-File-Contents-0.242.0 b/metadata/md5-cache/dev-perl/Test-File-Contents-0.242.0 new file mode 100644 index 000000000000..0c3653bb19ce --- /dev/null +++ b/metadata/md5-cache/dev-perl/Test-File-Contents-0.242.0 @@ -0,0 +1,16 @@ +BDEPEND=virtual/perl-Digest-MD5 virtual/perl-File-Spec >=virtual/perl-Test-Simple-0.700.0 >=dev-perl/Text-Diff-0.350.0 >=dev-perl/Module-Build-0.300.0 dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=Test routines for examining the contents of files +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Test-File-Contents +INHERIT=perl-module +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=virtual/perl-Digest-MD5 virtual/perl-File-Spec >=virtual/perl-Test-Simple-0.700.0 >=dev-perl/Text-Diff-0.350.0 dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/A/AR/ARISTOTLE/Test-File-Contents-0.242.tar.gz +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=e305bcba37e37db4accbafc192d1c446 diff --git a/metadata/md5-cache/dev-python/GitPython-3.1.30 b/metadata/md5-cache/dev-python/GitPython-3.1.30 deleted file mode 100644 index d58f13d42909..000000000000 --- a/metadata/md5-cache/dev-python/GitPython-3.1.30 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( >=dev-python/ddt-1.1.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-vcs/git >=dev-python/gitdb-4.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[threads(+)] ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Library used to interact with Git repositories -EAPI=8 -HOMEPAGE=https://github.com/gitpython-developers/GitPython/ https://pypi.org/project/GitPython/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux -LICENSE=BSD -RDEPEND=dev-vcs/git >=dev-python/gitdb-4.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[threads(+)] ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/G/GitPython/GitPython-3.1.30.tar.gz test? ( https://dev.gentoo.org/~mgorny/dist/GitPython-3.1.30.gitbundle https://dev.gentoo.org/~mgorny/dist/gitdb-4.0.10.gitbundle https://dev.gentoo.org/~mgorny/dist/smmap-5.0.0.gitbundle ) -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f9c0393baeecd6c1593df0ad589c70fd diff --git a/metadata/md5-cache/dev-python/GitPython-3.1.31 b/metadata/md5-cache/dev-python/GitPython-3.1.31 index b42e8d5d1a7d..c35220e7f6d7 100644 --- a/metadata/md5-cache/dev-python/GitPython-3.1.31 +++ b/metadata/md5-cache/dev-python/GitPython-3.1.31 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/gitpython-developers/GitPython/ https://pypi.org/project/GitPython/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=dev-vcs/git >=dev-python/gitdb-4.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[threads(+)] ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/G/GitPython/GitPython-3.1.31.tar.gz test? ( https://dev.gentoo.org/~mgorny/dist/GitPython-3.1.31.gitbundle https://dev.gentoo.org/~mgorny/dist/gitdb-4.0.10.gitbundle https://dev.gentoo.org/~mgorny/dist/smmap-5.0.0_p1.gitbundle ) _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=9f9fcd1a161d66668e895fde15868795 +_md5_=09fab3a4fdba8641a13f6c5845d7b444 diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index fbadf33ba616..46d15d6b4fa0 100644 Binary files a/metadata/md5-cache/dev-python/Manifest.gz and b/metadata/md5-cache/dev-python/Manifest.gz differ diff --git a/metadata/md5-cache/dev-python/PyGithub-1.58.1 b/metadata/md5-cache/dev-python/PyGithub-1.58.1 new file mode 100644 index 000000000000..34da3c4c7e6d --- /dev/null +++ b/metadata/md5-cache/dev-python/PyGithub-1.58.1 @@ -0,0 +1,16 @@ +BDEPEND=dev-python/setuptools-scm[python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( >=dev-python/httpretty-0.9.6[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/cryptography[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/deprecated[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyjwt-2.4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pynacl-1.4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.14.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python library to access the Github API v3 +EAPI=8 +HOMEPAGE=https://github.com/PyGithub/PyGithub/ https://pypi.org/project/PyGithub/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-3+ +RDEPEND=dev-python/cryptography[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/deprecated[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyjwt-2.4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pynacl-1.4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.14.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/P/PyGithub/PyGithub-1.58.1.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=320508f6b543b4f511d9e9e65b847902 diff --git a/metadata/md5-cache/dev-python/argcomplete-3.0.0 b/metadata/md5-cache/dev-python/argcomplete-3.0.0 new file mode 100644 index 000000000000..1f0c6d94067a --- /dev/null +++ b/metadata/md5-cache/dev-python/argcomplete-3.0.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( app-shells/fish app-shells/tcsh dev-python/pexpect[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pip-19 ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Bash tab completion for argparse +EAPI=8 +HOMEPAGE=https://github.com/kislyuk/argcomplete/ https://pypi.org/project/argcomplete/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos +LICENSE=Apache-2.0 +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/a/argcomplete/argcomplete-3.0.0.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=717a0f0a7c9ae1b516bd8d0d35070216 diff --git a/metadata/md5-cache/dev-python/canonicaljson-1.6.4 b/metadata/md5-cache/dev-python/canonicaljson-1.6.4 deleted file mode 100644 index 93a53d32c4f9..000000000000 --- a/metadata/md5-cache/dev-python/canonicaljson-1.6.4 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/simplejson[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/unittest-or-fail[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Canonical JSON -EAPI=8 -HOMEPAGE=https://github.com/matrix-org/python-canonicaljson/ https://pypi.org/project/canonicaljson/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~ppc64 -LICENSE=Apache-2.0 -RDEPEND=dev-python/simplejson[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/matrix-org/python-canonicaljson/archive/v1.6.4.tar.gz -> canonicaljson-1.6.4.gh.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=92594ef61d13a0151d50b6ffee00fff9 diff --git a/metadata/md5-cache/dev-python/canonicaljson-1.6.5 b/metadata/md5-cache/dev-python/canonicaljson-1.6.5 index 5814a0de0e33..561067523d32 100644 --- a/metadata/md5-cache/dev-python/canonicaljson-1.6.5 +++ b/metadata/md5-cache/dev-python/canonicaljson-1.6.5 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/matrix-org/python-canonicaljson/ https://pypi.org/project/canonicaljson/ INHERIT=distutils-r1 IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~ppc64 +KEYWORDS=amd64 ~ppc64 LICENSE=Apache-2.0 RDEPEND=dev-python/simplejson[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/matrix-org/python-canonicaljson/archive/v1.6.5.tar.gz -> canonicaljson-1.6.5.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=70c69ff8d56f76c7487127a7e1aa31fc +_md5_=a2d6774984bb2b3acb61f46de91adb8f diff --git a/metadata/md5-cache/dev-python/casttube-0.2.1 b/metadata/md5-cache/dev-python/casttube-0.2.1 deleted file mode 100644 index 12e5fc6d50db..000000000000 --- a/metadata/md5-cache/dev-python/casttube-0.2.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/setuptools-65.7.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=casttube provides a way to interact with the Youtube Chromecast api -EAPI=7 -HOMEPAGE=https://github.com/ur1katz/casttube -INHERIT=distutils-r1 -IUSE=python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 x86 -LICENSE=MIT -RDEPEND=dev-python/requests[python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) -SLOT=0 -SRC_URI=mirror://pypi/c/casttube/casttube-0.2.1.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b eapi8-dosym 741bfa77afb2a9321261501aca58c208 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a5506523cae9760f72f38133ceb9a524 diff --git a/metadata/md5-cache/dev-python/casttube-0.2.1-r1 b/metadata/md5-cache/dev-python/casttube-0.2.1-r1 index 5f332a2635ef..b49c195cf598 100644 --- a/metadata/md5-cache/dev-python/casttube-0.2.1-r1 +++ b/metadata/md5-cache/dev-python/casttube-0.2.1-r1 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://github.com/ur1katz/casttube INHERIT=distutils-r1 pypi IUSE=python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=MIT RDEPEND=dev-python/requests[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/c/casttube/casttube-0.2.1.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=1b2aee9af74564926401f7fd9addc72c +_md5_=5ecaf8fff655080d4b5e7069bbaef870 diff --git a/metadata/md5-cache/dev-python/cheetah3-3.2.6_p2 b/metadata/md5-cache/dev-python/cheetah3-3.2.6_p2 index 56574430f15c..be9bb17a13c9 100644 --- a/metadata/md5-cache/dev-python/cheetah3-3.2.6_p2 +++ b/metadata/md5-cache/dev-python/cheetah3-3.2.6_p2 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://cheetahtemplate.org/ https://pypi.org/project/Cheetah3/ INHERIT=distutils-r1 IUSE=python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 arm arm64 ~loong ~riscv x86 +KEYWORDS=amd64 arm arm64 ~loong ~ppc64 ~riscv x86 LICENSE=MIT RDEPEND=dev-python/markdown[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] !dev-python/cheetah python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) SLOT=0 SRC_URI=https://github.com/CheetahTemplate3/cheetah3/archive/3.2.6.post2.tar.gz -> cheetah3-3.2.6.post2.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=67c7cbb4bb22bbc90d96be7338f13fe1 +_md5_=28ce80c9b7191a27647ce46421b46c25 diff --git a/metadata/md5-cache/dev-python/clang-python-16.0.0_rc3 b/metadata/md5-cache/dev-python/clang-python-16.0.0_rc3 deleted file mode 100644 index a146a1a6cb91..000000000000 --- a/metadata/md5-cache/dev-python/clang-python-16.0.0_rc3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) test? ( sys-devel/clang:16 ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=install prepare test unpack -DEPEND=>=sys-devel/clang-16.0.0_rc3:* !sys-devel/llvm:0[clang(-),python(-)] !sys-devel/clang:0[python(-)] -DESCRIPTION=Python bindings for sys-devel/clang -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=llvm.org python-r1 -IUSE=test verify-sig python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=>=sys-devel/clang-16.0.0_rc3:* !sys-devel/llvm:0[clang(-),python(-)] !sys-devel/clang:0[python(-)] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=f7f5fa3c33f07c8d361fc4b9a6dbd9d5 diff --git a/metadata/md5-cache/dev-python/clang-python-16.0.0_rc4 b/metadata/md5-cache/dev-python/clang-python-16.0.0_rc4 deleted file mode 100644 index 406a06721f62..000000000000 --- a/metadata/md5-cache/dev-python/clang-python-16.0.0_rc4 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) test? ( sys-devel/clang:16 ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=install prepare test unpack -DEPEND=>=sys-devel/clang-16.0.0_rc4:* !sys-devel/llvm:0[clang(-),python(-)] !sys-devel/clang:0[python(-)] -DESCRIPTION=Python bindings for sys-devel/clang -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=llvm.org python-r1 -IUSE=test verify-sig python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=>=sys-devel/clang-16.0.0_rc4:* !sys-devel/llvm:0[clang(-),python(-)] !sys-devel/clang:0[python(-)] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=f7f5fa3c33f07c8d361fc4b9a6dbd9d5 diff --git a/metadata/md5-cache/dev-python/clang-python-17.0.0_pre20230304 b/metadata/md5-cache/dev-python/clang-python-17.0.0_pre20230304 deleted file mode 100644 index 0ac32d8f8e09..000000000000 --- a/metadata/md5-cache/dev-python/clang-python-17.0.0_pre20230304 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) test? ( sys-devel/clang:17 ) -DEFINED_PHASES=install prepare test unpack -DEPEND=>=sys-devel/clang-17.0.0_pre20230304:* !sys-devel/llvm:0[clang(-),python(-)] !sys-devel/clang:0[python(-)] -DESCRIPTION=Python bindings for sys-devel/clang -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=llvm.org python-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=>=sys-devel/clang-17.0.0_pre20230304:* !sys-devel/llvm:0[clang(-),python(-)] !sys-devel/clang:0[python(-)] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f7f5fa3c33f07c8d361fc4b9a6dbd9d5 diff --git a/metadata/md5-cache/dev-python/comm-0.1.2 b/metadata/md5-cache/dev-python/comm-0.1.2 index fdc4e9582440..8f5cbcf48a90 100644 --- a/metadata/md5-cache/dev-python/comm-0.1.2 +++ b/metadata/md5-cache/dev-python/comm-0.1.2 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/ipython/comm/ https://pypi.org/project/comm/ INHERIT=distutils-r1 IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=BSD RDEPEND=>=dev-python/traitlets-5.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ipython/comm/archive/0.1.2.tar.gz -> comm-0.1.2.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=6866c98dcde1e4ba1ae38239d767d4aa +_md5_=1bd546cb4d06cb32eed0d7474e0fc7ad diff --git a/metadata/md5-cache/dev-python/cov-core-1.15.0-r3 b/metadata/md5-cache/dev-python/cov-core-1.15.0-r3 deleted file mode 100644 index f6305f8a2676..000000000000 --- a/metadata/md5-cache/dev-python/cov-core-1.15.0-r3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/setuptools-65.7.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=plugin core for use by pytest-cov, nose-cov and nose2-cov -EAPI=8 -HOMEPAGE=https://github.com/schlamar/cov-core -INHERIT=distutils-r1 pypi -IUSE=python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux -LICENSE=MIT -RDEPEND=>=dev-python/coverage-3.6[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 ) -SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/c/cov-core/cov-core-1.15.0.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=e3f24005f967b43d8df5951f0a4608cd diff --git a/metadata/md5-cache/dev-python/editorconfig-core-py-0.12.3-r1 b/metadata/md5-cache/dev-python/editorconfig-core-py-0.12.3-r1 index d578d5941fd1..05fb1439fc37 100644 --- a/metadata/md5-cache/dev-python/editorconfig-core-py-0.12.3-r1 +++ b/metadata/md5-cache/dev-python/editorconfig-core-py-0.12.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/editorconfig/editorconfig-core-py/archive/v0.12.3.tar.gz -> editorconfig-core-py-0.12.3.tar.gz test? ( https://github.com/editorconfig/editorconfig-core-test/archive/abb579e00f2deeede91cb485e53512efab9c6474.tar.gz -> editorconfig-core-test-abb579e00f2deeede91cb485e53512efab9c6474.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3e662e7ccb5537e0555beaade1907ac8 diff --git a/metadata/md5-cache/dev-python/iminuit-2.19.0 b/metadata/md5-cache/dev-python/iminuit-2.19.0 index 9d8690dca738..bb8e7399dcb8 100644 --- a/metadata/md5-cache/dev-python/iminuit-2.19.0 +++ b/metadata/md5-cache/dev-python/iminuit-2.19.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/i/iminuit/iminuit-2.19.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3aa9e20c50e5bb0f9ea7bb557f4c79e3 diff --git a/metadata/md5-cache/dev-python/importlib_metadata-6.0.1 b/metadata/md5-cache/dev-python/importlib_metadata-6.0.1 new file mode 100644 index 000000000000..6bfe4b2258ef --- /dev/null +++ b/metadata/md5-cache/dev-python/importlib_metadata-6.0.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/packaging[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyfakefs[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/zipp[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/unittest-or-fail[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/flit_core-3.8.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Read metadata from Python packages +EAPI=7 +HOMEPAGE=https://github.com/python/importlib_metadata/ https://pypi.org/project/importlib-metadata/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=Apache-2.0 +RDEPEND=dev-python/zipp[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/i/importlib_metadata/importlib_metadata-6.0.1.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b eapi8-dosym 741bfa77afb2a9321261501aca58c208 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=ae68081e0e7476f0b50da8aa1e7eb5eb diff --git a/metadata/md5-cache/dev-python/importlib_metadata-6.1.0 b/metadata/md5-cache/dev-python/importlib_metadata-6.1.0 new file mode 100644 index 000000000000..e1345f2b5475 --- /dev/null +++ b/metadata/md5-cache/dev-python/importlib_metadata-6.1.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/packaging[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyfakefs[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/zipp[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/unittest-or-fail[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/flit_core-3.8.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Read metadata from Python packages +EAPI=7 +HOMEPAGE=https://github.com/python/importlib_metadata/ https://pypi.org/project/importlib-metadata/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=Apache-2.0 +RDEPEND=dev-python/zipp[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/i/importlib_metadata/importlib_metadata-6.1.0.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b eapi8-dosym 741bfa77afb2a9321261501aca58c208 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=ae68081e0e7476f0b50da8aa1e7eb5eb diff --git a/metadata/md5-cache/dev-python/ioflo-2.0.2-r3 b/metadata/md5-cache/dev-python/ioflo-2.0.2-r3 deleted file mode 100644 index e31b4d2c7fc3..000000000000 --- a/metadata/md5-cache/dev-python/ioflo-2.0.2-r3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( app-admin/salt[python_targets_python3_10(-)?] dev-python/pytest-salt-factories[python_targets_python3_10(-)?] ) test? ( >=dev-python/pytest-7.2.1[python_targets_python3_10(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/gpep517-13[python_targets_python3_10(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)?] =dev-python/wheel-0.38.4[python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Automated Reasoning Engine and Flow Based Programming Framework -EAPI=8 -HOMEPAGE=https://github.com/ioflo/ioflo/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_10 -KEYWORDS=amd64 ~arm ~arm64 ~riscv x86 -LICENSE=Apache-2.0 -RDEPEND=python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ioflo/ioflo/archive/v2.0.2.tar.gz -> ioflo-2.0.2.gh.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=468d1a1fc2ececf3eb1c291ab4915c64 diff --git a/metadata/md5-cache/dev-python/ioflo-2.0.2-r4 b/metadata/md5-cache/dev-python/ioflo-2.0.2-r4 index 45ff6a1827db..93708a30f38f 100644 --- a/metadata/md5-cache/dev-python/ioflo-2.0.2-r4 +++ b/metadata/md5-cache/dev-python/ioflo-2.0.2-r4 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/ioflo/ioflo/ INHERIT=distutils-r1 IUSE=test python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ioflo/ioflo/archive/v2.0.2.tar.gz -> ioflo-2.0.2.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f20bbaaced670cf49b22f03af4cd76b6 +_md5_=f6386baaf3500fabf504de4701d1149c diff --git a/metadata/md5-cache/dev-python/linkify-it-py-2.0.0 b/metadata/md5-cache/dev-python/linkify-it-py-2.0.0 index c67ab56b9d07..0e0d917a1c69 100644 --- a/metadata/md5-cache/dev-python/linkify-it-py-2.0.0 +++ b/metadata/md5-cache/dev-python/linkify-it-py-2.0.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/tsutsu3/linkify-it-py/ https://pypi.org/project/linkify-it-py/ INHERIT=distutils-r1 IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT RDEPEND=dev-python/uc-micro-py[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/tsutsu3/linkify-it-py/archive/v2.0.0.tar.gz -> linkify-it-py-2.0.0.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=268fd5f2ce9b8c8b3d1aecd9d830d30e +_md5_=a34d519e9f1e34270c09fa5349958459 diff --git a/metadata/md5-cache/dev-python/lit-16.0.0_rc3 b/metadata/md5-cache/dev-python/lit-16.0.0_rc3 deleted file mode 100644 index 551eebe1068a..000000000000 --- a/metadata/md5-cache/dev-python/lit-16.0.0_rc3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/psutil[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] sys-devel/llvm ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare test unpack -DESCRIPTION=A stand-alone install of the LLVM suite testing tool -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=distutils-r1 llvm.org -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=76aafe2b1c14b670a7497cda70885ee2 diff --git a/metadata/md5-cache/dev-python/lit-16.0.0_rc4 b/metadata/md5-cache/dev-python/lit-16.0.0_rc4 deleted file mode 100644 index 7b82e7145ac9..000000000000 --- a/metadata/md5-cache/dev-python/lit-16.0.0_rc4 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/psutil[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] sys-devel/llvm ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare test unpack -DESCRIPTION=A stand-alone install of the LLVM suite testing tool -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=distutils-r1 llvm.org -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=76aafe2b1c14b670a7497cda70885ee2 diff --git a/metadata/md5-cache/dev-python/lit-17.0.0_pre20230304 b/metadata/md5-cache/dev-python/lit-17.0.0_pre20230304 deleted file mode 100644 index fe407d2044ec..000000000000 --- a/metadata/md5-cache/dev-python/lit-17.0.0_pre20230304 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/psutil[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] sys-devel/llvm ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test unpack -DESCRIPTION=A stand-alone install of the LLVM suite testing tool -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=distutils-r1 llvm.org -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=6ab6908d2507a09df6acd7c92d7ec4ed diff --git a/metadata/md5-cache/dev-python/markdown-it-py-2.2.0 b/metadata/md5-cache/dev-python/markdown-it-py-2.2.0 index 33ae34bf27a0..b5676de496ac 100644 --- a/metadata/md5-cache/dev-python/markdown-it-py-2.2.0 +++ b/metadata/md5-cache/dev-python/markdown-it-py-2.2.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://pypi.org/project/markdown-it-py/ https://github.com/executablebooks/markdown-it-py/ INHERIT=distutils-r1 IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND==dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/executablebooks/markdown-it-py/archive/v2.2.0.tar.gz -> markdown-it-py-2.2.0.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=ee127384e24cbd3af5006b9437bbd034 +_md5_=68a410f15fa76892385a4e1453bfb401 diff --git a/metadata/md5-cache/dev-python/mdit-py-plugins-0.3.5 b/metadata/md5-cache/dev-python/mdit-py-plugins-0.3.5 index 31c457d64c20..033cdee371c9 100644 --- a/metadata/md5-cache/dev-python/mdit-py-plugins-0.3.5 +++ b/metadata/md5-cache/dev-python/mdit-py-plugins-0.3.5 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://pypi.org/project/mdit-py-plugins/ https://github.com/executablebooks/mdit-py-plugins/ INHERIT=distutils-r1 IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=dev-python/markdown-it-py[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/executablebooks/mdit-py-plugins/archive/v0.3.5.tar.gz -> mdit-py-plugins-0.3.5.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=ed926f44cb04d2632643740b2d927a60 +_md5_=6200ddda804d4b149763f315a1befab4 diff --git a/metadata/md5-cache/dev-python/mdurl-0.1.2 b/metadata/md5-cache/dev-python/mdurl-0.1.2 index 730a53ed84d9..97495258c4ba 100644 --- a/metadata/md5-cache/dev-python/mdurl-0.1.2 +++ b/metadata/md5-cache/dev-python/mdurl-0.1.2 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://pypi.org/project/mdurl/ https://github.com/executablebooks/mdurl/ INHERIT=distutils-r1 IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hukkin/mdurl/archive/0.1.2.tar.gz -> mdurl-0.1.2.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=13b46f13bf660d8afd25a4e08981ae95 +_md5_=c4cc63103a35d784793b4d978e59b5c7 diff --git a/metadata/md5-cache/dev-python/micawber-0.5.4 b/metadata/md5-cache/dev-python/micawber-0.5.4 deleted file mode 100644 index 1ceff32d4856..000000000000 --- a/metadata/md5-cache/dev-python/micawber-0.5.4 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) dev-python/beautifulsoup4[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/django[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/setuptools-65.7.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A small library for extracting rich content from urls -EAPI=8 -HOMEPAGE=https://github.com/coleifer/micawber/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~riscv -LICENSE=MIT -RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/coleifer/micawber/archive/0.5.4.tar.gz -> micawber-0.5.4.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=8b9740a1017577b7c6ae3b7d4179bf40 diff --git a/metadata/md5-cache/dev-python/micawber-0.5.4-r1 b/metadata/md5-cache/dev-python/micawber-0.5.4-r1 index 1420d88406d4..fe65d1f7df51 100644 --- a/metadata/md5-cache/dev-python/micawber-0.5.4-r1 +++ b/metadata/md5-cache/dev-python/micawber-0.5.4-r1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/coleifer/micawber/ https://pypi.org/project/micawber/ INHERIT=distutils-r1 IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~riscv +KEYWORDS=amd64 ~riscv LICENSE=MIT RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/coleifer/micawber/archive/0.5.4.tar.gz -> micawber-0.5.4.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=bef7de88a81671f7aaf3890f1c559df1 +_md5_=ba38c19a47ae9575c033b04c533a0cd8 diff --git a/metadata/md5-cache/dev-python/moto-4.1.5 b/metadata/md5-cache/dev-python/moto-4.1.5 new file mode 100644 index 000000000000..681db2dfea28 --- /dev/null +++ b/metadata/md5-cache/dev-python/moto-4.1.5 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/freezegun[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/responses[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/sure-1.4.11[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/aws-xray-sdk-python-0.93[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/cfn-lint-0.40.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/cryptography-3.3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/cookies[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/docker-py-3.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/idna-2.5[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jinja-2.10.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jsondiff-1.1.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/boto3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/botocore[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/flask[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/flask-cors[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/more-itertools[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyparsing-3.0.7[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/openapi-spec-validator-0.2.8[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pretty-yaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyyaml-5.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/python-dateutil-2.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-dateutil[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-jose[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-sshpubkeys[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/responses-0.9.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.5[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/xmltodict[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/werkzeug[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/zipp[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Mock library for boto +EAPI=8 +HOMEPAGE=https://github.com/getmoto/moto/ https://pypi.org/project/moto/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/aws-xray-sdk-python-0.93[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/cfn-lint-0.40.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/cryptography-3.3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/cookies[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/docker-py-3.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/idna-2.5[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jinja-2.10.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jsondiff-1.1.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/boto3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/botocore[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/flask[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/flask-cors[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/more-itertools[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyparsing-3.0.7[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/openapi-spec-validator-0.2.8[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pretty-yaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyyaml-5.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/python-dateutil-2.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-dateutil[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-jose[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-sshpubkeys[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/responses-0.9.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.5[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/xmltodict[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/werkzeug[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/zipp[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/m/moto/moto-4.1.5.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=e879bb9224ab4e0e329e7b7d32f52f78 diff --git a/metadata/md5-cache/dev-python/myst-parser-1.0.0 b/metadata/md5-cache/dev-python/myst-parser-1.0.0 index 0aa799315d7a..bca23c0bba9c 100644 --- a/metadata/md5-cache/dev-python/myst-parser-1.0.0 +++ b/metadata/md5-cache/dev-python/myst-parser-1.0.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/executablebooks/MyST-Parser/ https://pypi.org/project/myst-parser/ INHERIT=distutils-r1 IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND==dev-python/mdit-py-plugins-0.3.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/sphinx-5[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/executablebooks/MyST-Parser/archive/v1.0.0.tar.gz -> MyST-Parser-1.0.0.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=27649cbc195558467096cb472b8764c4 +_md5_=6ed75d500a989dc11eb097780b737f86 diff --git a/metadata/md5-cache/dev-python/nbxmpp-4.2.1 b/metadata/md5-cache/dev-python/nbxmpp-4.2.1 new file mode 100644 index 000000000000..5f65c5ab068e --- /dev/null +++ b/metadata/md5-cache/dev-python/nbxmpp-4.2.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-libs/gobject-introspection net-libs/libsoup:3.0[introspection] dev-python/idna[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/packaging[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/precis-i18n-1.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pygobject-3.42[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/unittest-or-fail[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python library to use Jabber/XMPP networks in a non-blocking way +EAPI=8 +HOMEPAGE=https://dev.gajim.org/gajim/python-nbxmpp/ https://pypi.org/project/nbxmpp/ +INHERIT=distutils-r1 +IUSE=test python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm64 ~riscv ~x86 +LICENSE=GPL-3 +RDEPEND=dev-libs/gobject-introspection net-libs/libsoup:3.0[introspection] dev-python/idna[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/packaging[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/precis-i18n-1.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pygobject-3.42[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://dev.gajim.org/gajim/python-nbxmpp/-/archive/4.2.1/python-nbxmpp-4.2.1.tar.bz2 +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=7dba4caa3768976608a30ec57ce45a91 diff --git a/metadata/md5-cache/dev-python/numpy-1.24.2 b/metadata/md5-cache/dev-python/numpy-1.24.2 index 459e4eb8faaa..a907aa275aa7 100644 --- a/metadata/md5-cache/dev-python/numpy-1.24.2 +++ b/metadata/md5-cache/dev-python/numpy-1.24.2 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://numpy.org/ https://github.com/numpy/numpy/ https://pypi.org/project/numpy/ INHERIT=distutils-r1 flag-o-matic fortran-2 pypi toolchain-funcs IUSE=lapack test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=lapack? ( >=virtual/cblas-3.8 >=virtual/lapack-3.8 ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[threads(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[threads(+)] ) lapack? ( virtual/fortran ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/n/numpy/numpy-1.24.2.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=742604da05bf593d168fe94bf2cf8705 +_md5_=d2d62f6bd5a0196925508ec698426207 diff --git a/metadata/md5-cache/dev-python/pybind11-2.10.3 b/metadata/md5-cache/dev-python/pybind11-2.10.3 index 194b2a97fb72..ca6f0c134d3d 100644 --- a/metadata/md5-cache/dev-python/pybind11-2.10.3 +++ b/metadata/md5-cache/dev-python/pybind11-2.10.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_p RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pybind/pybind11/archive/v2.10.3.tar.gz -> pybind11-2.10.3.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=866726f641e016cd97f03a74d3a64fc6 diff --git a/metadata/md5-cache/dev-python/pybind11-2.10.4 b/metadata/md5-cache/dev-python/pybind11-2.10.4 index b7768966fd09..7f2d08ca359a 100644 --- a/metadata/md5-cache/dev-python/pybind11-2.10.4 +++ b/metadata/md5-cache/dev-python/pybind11-2.10.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_p RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pybind/pybind11/archive/v2.10.4.tar.gz -> pybind11-2.10.4.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b45dd90c0d87ab4543ee765fba9be9ae diff --git a/metadata/md5-cache/dev-python/pydata-sphinx-theme-0.13.1 b/metadata/md5-cache/dev-python/pydata-sphinx-theme-0.13.1 index bf4d16430734..76e305e58985 100644 --- a/metadata/md5-cache/dev-python/pydata-sphinx-theme-0.13.1 +++ b/metadata/md5-cache/dev-python/pydata-sphinx-theme-0.13.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/pydata/pydata-sphinx-theme/ https://pypi.org/project/pydata-sphinx-theme/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=BSD-with-disclosure RDEPEND=dev-python/accessible-pygments[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/Babel[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/beautifulsoup4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/docutils[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/packaging[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pygments[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/sphinx-4.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pydata/pydata-sphinx-theme/archive/v0.13.1.tar.gz -> pydata-sphinx-theme-0.13.1.gh.tar.gz https://files.pythonhosted.org/packages/py3/p/pydata-sphinx-theme/pydata_sphinx_theme-0.13.1-py3-none-any.whl _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=d1a981630fe7b58f84094210d9465d5c +_md5_=f26ff7de0c191bdc3c8302db70f4a6a6 diff --git a/metadata/md5-cache/dev-python/pygal-3.0.0-r2 b/metadata/md5-cache/dev-python/pygal-3.0.0-r2 deleted file mode 100644 index 368be648497e..000000000000 --- a/metadata/md5-cache/dev-python/pygal-3.0.0-r2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/lxml[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyquery[python_targets_python3_9(-)?,python_targets_python3_10(-)?] media-gfx/cairosvg[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9[xml(+)] >=dev-python/sphinx-5.3.0[python_targets_python3_9(-)] ) ) ) test? ( >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install postinst prepare test -DESCRIPTION=A python SVG charts generator -EAPI=8 -HOMEPAGE=https://github.com/Kozea/pygal/ -INHERIT=distutils-r1 optfeature -IUSE=doc test python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~riscv x86 -LICENSE=LGPL-3+ -RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/Kozea/pygal/archive/3.0.0.tar.gz -> pygal-3.0.0.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=75f8af2847d4084e3e9731a6c6857202 diff --git a/metadata/md5-cache/dev-python/pygal-3.0.0-r4 b/metadata/md5-cache/dev-python/pygal-3.0.0-r4 index 5ec64a1e953e..9343f2c610de 100644 --- a/metadata/md5-cache/dev-python/pygal-3.0.0-r4 +++ b/metadata/md5-cache/dev-python/pygal-3.0.0-r4 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/Kozea/pygal/ INHERIT=distutils-r1 optfeature IUSE=doc test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~riscv ~x86 +KEYWORDS=amd64 ~riscv x86 LICENSE=LGPL-3+ RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Kozea/pygal/archive/3.0.0.tar.gz -> pygal-3.0.0.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=238c5b3bf21e440b13c043be9c35b4ed +_md5_=6b7834a48596becf5ba6b905e2903bd2 diff --git a/metadata/md5-cache/dev-python/pygobject-3.44.0 b/metadata/md5-cache/dev-python/pygobject-3.44.0 new file mode 100644 index 000000000000..da3d9a75bf39 --- /dev/null +++ b/metadata/md5-cache/dev-python/pygobject-3.44.0 @@ -0,0 +1,18 @@ +BDEPEND=virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=dev-libs/glib-2.56:2 >=dev-libs/gobject-introspection-1.56:= dev-libs/libffi:= cairo? ( >=dev-python/pycairo-1.16.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] x11-libs/cairo[glib] ) test? ( >=app-accessibility/at-spi2-core-2.46.0[introspection] dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] x11-libs/gdk-pixbuf:2[introspection,jpeg] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] ) +DESCRIPTION=Python bindings for GObject Introspection +EAPI=8 +HOMEPAGE=https://pygobject.readthedocs.io/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org meson virtualx xdg distutils-r1 +IUSE=+cairo examples test test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=LGPL-2.1+ +RDEPEND=>=dev-libs/glib-2.56:2 >=dev-libs/gobject-introspection-1.56:= dev-libs/libffi:= cairo? ( >=dev-python/pycairo-1.16.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] x11-libs/cairo[glib] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=3 +SRC_URI=mirror://gnome/sources/pygobject/3.44/pygobject-3.44.0.tar.xz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=47003c3bf7a9e9d27864b2f7a007395a diff --git a/metadata/md5-cache/dev-python/pynest2d-4.13_beta b/metadata/md5-cache/dev-python/pynest2d-4.13_beta index c7b3fb5be4b0..0559f1d545b9 100644 --- a/metadata/md5-cache/dev-python/pynest2d-4.13_beta +++ b/metadata/md5-cache/dev-python/pynest2d-4.13_beta @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://github.com/Ultimaker/pynest2d/archive/4.13-beta.tar.gz -> pynest2d-4.13_beta.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e122b88d25f1252ad0485f36f3d7631d diff --git a/metadata/md5-cache/dev-python/pypdf-3.6.0 b/metadata/md5-cache/dev-python/pypdf-3.6.0 new file mode 100644 index 000000000000..c3f3591e7101 --- /dev/null +++ b/metadata/md5-cache/dev-python/pypdf-3.6.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-python/pillow[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/pycryptodome[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( python_targets_python3_9? ( dev-python/typing-extensions[python_targets_python3_9(-)?] ) >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/flit_core-3.8.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test unpack +DESCRIPTION=Python library to work with PDF files +EAPI=8 +HOMEPAGE=https://pypi.org/project/pypdf/ https://github.com/py-pdf/pypdf/ +INHERIT=distutils-r1 +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=BSD-2 +RDEPEND=python_targets_python3_9? ( dev-python/typing-extensions[python_targets_python3_9(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/py-pdf/pypdf/archive/3.6.0.tar.gz -> pypdf-3.6.0.gh.tar.gz test? ( https://github.com/py-pdf/sample-files/archive/fb7a080b35b3553bd10221282beeda7847959e83.tar.gz -> pypdf-sample-files-fb7a080b35b3553bd10221282beeda7847959e83.gh.tar.gz ) +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=ea7927f208ce78d07aba258cf33b7b12 diff --git a/metadata/md5-cache/dev-python/pyside2-5.15.8-r1 b/metadata/md5-cache/dev-python/pyside2-5.15.8-r1 index c47aa6830e39..b03408cd62c3 100644 --- a/metadata/md5-cache/dev-python/pyside2-5.15.8-r1 +++ b/metadata/md5-cache/dev-python/pyside2-5.15.8-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-5.15.8-src/pyside-setup-opensource-src-5.15.8.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=66a7842d1ab4cac1fb56e8a5885ad417 diff --git a/metadata/md5-cache/dev-python/pyside2-tools-5.15.8 b/metadata/md5-cache/dev-python/pyside2-tools-5.15.8 index 8a33160ca05b..7666500345ef 100644 --- a/metadata/md5-cache/dev-python/pyside2-tools-5.15.8 +++ b/metadata/md5-cache/dev-python/pyside2-tools-5.15.8 @@ -12,5 +12,5 @@ RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_tar REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) SLOT=0 SRC_URI=https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-5.15.8-src/pyside-setup-opensource-src-5.15.8.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aabc17f537f0554ff37690a89031a97f diff --git a/metadata/md5-cache/dev-python/pyside6-6.4.2-r1 b/metadata/md5-cache/dev-python/pyside6-6.4.2-r1 index abc888b08e6f..b2d2916a6e1f 100644 --- a/metadata/md5-cache/dev-python/pyside6-6.4.2-r1 +++ b/metadata/md5-cache/dev-python/pyside6-6.4.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://download.qt.io/official_releases/QtForPython/pyside6/PySide6-6.4.2-src/pyside-setup-opensource-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4b1f4f567d194779d48c6d486acbdf44 diff --git a/metadata/md5-cache/dev-python/pyside6-tools-6.4.2 b/metadata/md5-cache/dev-python/pyside6-tools-6.4.2 index 1569fe887e21..79745f51ac36 100644 --- a/metadata/md5-cache/dev-python/pyside6-tools-6.4.2 +++ b/metadata/md5-cache/dev-python/pyside6-tools-6.4.2 @@ -12,5 +12,5 @@ RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_tar REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) SLOT=0 SRC_URI=https://download.qt.io/official_releases/QtForPython/pyside6/PySide6-6.4.2-src/pyside-setup-opensource-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6b2759127faf499972fb8cc23e1d4b7b diff --git a/metadata/md5-cache/dev-python/pyspnego-0.7.0 b/metadata/md5-cache/dev-python/pyspnego-0.7.0 deleted file mode 100644 index 7389272b7b65..000000000000 --- a/metadata/md5-cache/dev-python/pyspnego-0.7.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-python/cython[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/gssapi[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/krb5-0.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-mock[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/ruamel-yaml[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/cryptography[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install postinst prepare test -DESCRIPTION=Library to handle SPNEGO and CredSSP authentication -EAPI=8 -HOMEPAGE=https://github.com/jborean93/pyspnego/ https://pypi.org/project/pyspnego/ -INHERIT=distutils-r1 optfeature -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~arm arm64 ~riscv x86 -LICENSE=MIT -RDEPEND=dev-python/cryptography[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/p/pyspnego/pyspnego-0.7.0.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=5a7a8a73391ac39194c552029737a86c diff --git a/metadata/md5-cache/dev-python/pyspnego-0.8.0 b/metadata/md5-cache/dev-python/pyspnego-0.8.0 index 462beb17f8f0..25f9399174dd 100644 --- a/metadata/md5-cache/dev-python/pyspnego-0.8.0 +++ b/metadata/md5-cache/dev-python/pyspnego-0.8.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/jborean93/pyspnego/ https://pypi.org/project/pyspnego/ INHERIT=distutils-r1 optfeature pypi IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 +KEYWORDS=amd64 ~arm arm64 ~riscv x86 LICENSE=MIT RDEPEND=dev-python/cryptography[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/p/pyspnego/pyspnego-0.8.0.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=3d799bff8ece3fcc0b13cb0bbafdaa3c +_md5_=0ea728c8266fc0b2445f6aaa5308cd3d diff --git a/metadata/md5-cache/dev-python/pytest-asyncio-0.21.0 b/metadata/md5-cache/dev-python/pytest-asyncio-0.21.0 new file mode 100644 index 000000000000..1e2c0a82190f --- /dev/null +++ b/metadata/md5-cache/dev-python/pytest-asyncio-0.21.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-python/setuptools-scm[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/flaky[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/hypothesis-3.64[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/pytest-5.4.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Library for testing asyncio code with pytest +EAPI=8 +HOMEPAGE=https://github.com/pytest-dev/pytest-asyncio/ https://pypi.org/project/pytest-asyncio/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/pytest-5.4.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/p/pytest-asyncio/pytest-asyncio-0.21.0.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=75f3ec4f12490cf976b9d0039e1070e2 diff --git a/metadata/md5-cache/dev-python/pytest-datadir-1.4.1 b/metadata/md5-cache/dev-python/pytest-datadir-1.4.1 index 260792fb3748..840277571111 100644 --- a/metadata/md5-cache/dev-python/pytest-datadir-1.4.1 +++ b/metadata/md5-cache/dev-python/pytest-datadir-1.4.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/gabrielcnr/pytest-datadir/ https://pypi.org/project/pytest-datadir/ INHERIT=distutils-r1 pypi IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT RDEPEND=dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/p/pytest-datadir/pytest-datadir-1.4.1.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=cd5fbb771cc113c4450e6674be5a42b9 +_md5_=c6f99c6a6a7cce9e8fb9638249437337 diff --git a/metadata/md5-cache/dev-python/pytest-flake8-1.1.1 b/metadata/md5-cache/dev-python/pytest-flake8-1.1.1 deleted file mode 100644 index 7b971131c311..000000000000 --- a/metadata/md5-cache/dev-python/pytest-flake8-1.1.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( >=dev-python/flake8-4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=pytest plugin for flake8 -EAPI=8 -HOMEPAGE=https://github.com/tholo/pytest-flake8/ https://pypi.org/project/pytest-flake8/ -INHERIT=distutils-r1 pypi -IUSE=test python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 x86 -LICENSE=MIT -RDEPEND=>=dev-python/flake8-4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/p/pytest-flake8/pytest-flake8-1.1.1.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=df439418b87fddcf5711a04621213397 diff --git a/metadata/md5-cache/dev-python/pytest-param-files-0.3.5 b/metadata/md5-cache/dev-python/pytest-param-files-0.3.5 index d95a52fbffb6..719c3ca48b6c 100644 --- a/metadata/md5-cache/dev-python/pytest-param-files-0.3.5 +++ b/metadata/md5-cache/dev-python/pytest-param-files-0.3.5 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/chrisjsewell/pytest-param-files/ https://pypi.org/project/pytest_param_files/ INHERIT=distutils-r1 IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/chrisjsewell/pytest-param-files/archive/v0.3.5.tar.gz -> pytest-param-files-0.3.5.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=98d381fa72144caeb5048be01cec6834 +_md5_=743fc5edf1b7b21d467cf4b6d2c2dcb9 diff --git a/metadata/md5-cache/dev-python/pytest-regressions-2.4.2 b/metadata/md5-cache/dev-python/pytest-regressions-2.4.2 index 12f5560f43b2..dfa6b5338f74 100644 --- a/metadata/md5-cache/dev-python/pytest-regressions-2.4.2 +++ b/metadata/md5-cache/dev-python/pytest-regressions-2.4.2 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/ESSS/pytest-regressions/ https://pypi.org/project/pytest-regressions/ INHERIT=distutils-r1 pypi IUSE=test doc python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT RDEPEND=dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-datadir[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/p/pytest-regressions/pytest-regressions-2.4.2.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=91efaf0a583ed020407af5aaffc876aa +_md5_=b99cddba324a49ca121a7212f2acdef1 diff --git a/metadata/md5-cache/dev-python/pyusb-1.2.1 b/metadata/md5-cache/dev-python/pyusb-1.2.1 deleted file mode 100644 index 0037efb33f5c..000000000000 --- a/metadata/md5-cache/dev-python/pyusb-1.2.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/setuptools-65.7.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DEPEND=virtual/libusb:= -DESCRIPTION=USB support for Python -EAPI=8 -HOMEPAGE=https://pyusb.github.io/pyusb/ https://pypi.org/project/pyusb/ -INHERIT=distutils-r1 pypi -IUSE=python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~arm ~arm64 ~ppc ~riscv x86 -LICENSE=BSD -RDEPEND=virtual/libusb:= python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/p/pyusb/pyusb-1.2.1.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=41e29533a4b6b33991512ca1341abeeb diff --git a/metadata/md5-cache/dev-python/pyusb-1.2.1-r1 b/metadata/md5-cache/dev-python/pyusb-1.2.1-r1 index fbed81680870..c8f61ab49343 100644 --- a/metadata/md5-cache/dev-python/pyusb-1.2.1-r1 +++ b/metadata/md5-cache/dev-python/pyusb-1.2.1-r1 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://pyusb.github.io/pyusb/ https://pypi.org/project/pyusb/ INHERIT=distutils-r1 pypi IUSE=python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~riscv ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc ~riscv x86 LICENSE=BSD RDEPEND=virtual/libusb:= python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/p/pyusb/pyusb-1.2.1.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=3edcd368a680df40531590fe44b2fb02 +_md5_=e6fb24af63083c201332d790b5f2e174 diff --git a/metadata/md5-cache/dev-python/pywlroots-0.16.2 b/metadata/md5-cache/dev-python/pywlroots-0.16.2 new file mode 100644 index 000000000000..a4dc877a3aef --- /dev/null +++ b/metadata/md5-cache/dev-python/pywlroots-0.16.2 @@ -0,0 +1,17 @@ +BDEPEND=test? ( >=dev-python/pywayland-0.4.14[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/xkbcommon-0.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =gui-libs/wlroots-0.16*:= >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/pywayland-0.4.14[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/xkbcommon-0.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =gui-libs/wlroots-0.16*:= +DESCRIPTION=Python binding to the wlroots library using cffi +EAPI=8 +HOMEPAGE=https://github.com/flacjacket/pywlroots/ https://pypi.org/project/pywlroots/ +INHERIT=distutils-r1 +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~riscv ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/pywayland-0.4.14[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/xkbcommon-0.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =gui-libs/wlroots-0.16*:= python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/flacjacket/pywlroots/archive/v0.16.2.tar.gz -> pywlroots-0.16.2.gh.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=0db1df051faa2a4183229ddd66f05c72 diff --git a/metadata/md5-cache/dev-python/rdflib-6.3.1 b/metadata/md5-cache/dev-python/rdflib-6.3.1 new file mode 100644 index 000000000000..8f5369d8f236 --- /dev/null +++ b/metadata/md5-cache/dev-python/rdflib-6.3.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/requests[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( =dev-python/isodate-0.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/html5lib[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/pyparsing-2.1.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite?,threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite?,threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite?,threads(+)] ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/poetry-core-1.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=RDF library containing a triple store and parser/serializer +EAPI=8 +HOMEPAGE=https://github.com/RDFLib/rdflib/ https://pypi.org/project/rdflib/ +INHERIT=distutils-r1 +IUSE=examples sqlite test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=BSD +RDEPEND==dev-python/isodate-0.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/html5lib[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/pyparsing-2.1.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite?,threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite?,threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite?,threads(+)] ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/RDFLib/rdflib/archive/6.3.1.tar.gz -> rdflib-6.3.1.gh.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=665e19a282cf63bb3d338e20d802e03a diff --git a/metadata/md5-cache/dev-python/reno-3.5.0 b/metadata/md5-cache/dev-python/reno-3.5.0 deleted file mode 100644 index 8b6d0f3a28cb..000000000000 --- a/metadata/md5-cache/dev-python/reno-3.5.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-python/pbr[python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/testtools-1.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/pbr[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyyaml-5.3.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/dulwich-0.15.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/packaging-20.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/docutils-0.11[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/sphinx-2.1.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/unittest-or-fail[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/setuptools-65.7.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Release notes manager, storing release notes in a git repo and building docs -EAPI=8 -HOMEPAGE=https://pypi.org/project/reno/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 ~arm arm64 ~ia64 ~ppc64 ~riscv ~s390 x86 -LICENSE=Apache-2.0 -RDEPEND=dev-python/pbr[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyyaml-5.3.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/dulwich-0.15.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/packaging-20.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/docutils-0.11[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/sphinx-2.1.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/r/reno/reno-3.5.0.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=68c48a097708457828616993023fd878 diff --git a/metadata/md5-cache/dev-python/reno-3.5.0-r1 b/metadata/md5-cache/dev-python/reno-3.5.0-r1 index b41909489e1a..d8e0814092a5 100644 --- a/metadata/md5-cache/dev-python/reno-3.5.0-r1 +++ b/metadata/md5-cache/dev-python/reno-3.5.0-r1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://opendev.org/openstack/reno/ https://github.com/openstack/reno/ https://pypi.org/project/reno/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~riscv ~s390 ~x86 +KEYWORDS=~alpha amd64 ~arm arm64 ~ia64 ~ppc64 ~riscv ~s390 x86 LICENSE=Apache-2.0 RDEPEND=dev-python/pbr[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyyaml-5.3.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/dulwich-0.15.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/packaging-20.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/docutils-0.11[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/sphinx-2.1.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/r/reno/reno-3.5.0.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=420fe70791bb1e7b8129735aaef2135e +_md5_=87379d1c642d4d44d71011938d00696f diff --git a/metadata/md5-cache/dev-python/requests-ntlm-1.1.0-r1 b/metadata/md5-cache/dev-python/requests-ntlm-1.1.0-r1 deleted file mode 100644 index 2945a231665a..000000000000 --- a/metadata/md5-cache/dev-python/requests-ntlm-1.1.0-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/setuptools-65.7.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=HTTP NTLM authentication using the requests library -EAPI=7 -HOMEPAGE=https://github.com/requests/requests-ntlm -INHERIT=distutils-r1 -IUSE=python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~riscv ~x86 -LICENSE=ISC -RDEPEND=>=dev-python/requests-2.0.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/ntlm-auth-1.0.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -SLOT=0 -SRC_URI=mirror://pypi/r/requests_ntlm/requests_ntlm-1.1.0.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b eapi8-dosym 741bfa77afb2a9321261501aca58c208 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=1a5ace8a68c174213919011c7ca2b574 diff --git a/metadata/md5-cache/dev-python/requests-ntlm-1.2.0 b/metadata/md5-cache/dev-python/requests-ntlm-1.2.0 index 9a48ab79aca3..ac8232c2c871 100644 --- a/metadata/md5-cache/dev-python/requests-ntlm-1.2.0 +++ b/metadata/md5-cache/dev-python/requests-ntlm-1.2.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/requests/requests-ntlm/ https://pypi.org/project/requests-ntlm/ INHERIT=distutils-r1 IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~riscv ~x86 +KEYWORDS=amd64 ~riscv ~x86 LICENSE=ISC RDEPEND=>=dev-python/cryptography-1.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyspnego-0.1.6[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.0.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/requests/requests-ntlm/archive/v1.2.0.tar.gz -> requests-ntlm-1.2.0.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=77d05381cc594b284c7285983832d278 +_md5_=77605041ebb9767f9598dee09fead6a3 diff --git a/metadata/md5-cache/dev-python/rply-0.7.8 b/metadata/md5-cache/dev-python/rply-0.7.8 deleted file mode 100644 index 8985496dde00..000000000000 --- a/metadata/md5-cache/dev-python/rply-0.7.8 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/py[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/appdirs[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/sphinx-5.3.0[python_targets_python3_9(-)] ) ) ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/setuptools-65.7.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Pure python parser generator that also works with RPython -EAPI=7 -HOMEPAGE=https://github.com/alex/rply -INHERIT=distutils-r1 -IUSE=test doc python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 x86 -LICENSE=BSD -RDEPEND=dev-python/appdirs[python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/alex/rply/archive/v0.7.8.tar.gz -> rply-0.7.8.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b eapi8-dosym 741bfa77afb2a9321261501aca58c208 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=8592f0055dfee6a4502ae8d4c92954ba diff --git a/metadata/md5-cache/dev-python/rply-0.7.8-r1 b/metadata/md5-cache/dev-python/rply-0.7.8-r1 index 20f6dbeca5e6..faaa5aab8554 100644 --- a/metadata/md5-cache/dev-python/rply-0.7.8-r1 +++ b/metadata/md5-cache/dev-python/rply-0.7.8-r1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/alex/rply/ https://pypi.org/project/rply/ INHERIT=distutils-r1 IUSE=test doc python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=BSD RDEPEND=dev-python/appdirs[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/alex/rply/archive/v0.7.8.tar.gz -> rply-0.7.8.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=55a724a63fb2250b6ed1ff4f3adaae65 +_md5_=78693880d6635943ab4ba8531c21937f diff --git a/metadata/md5-cache/dev-python/shiboken2-5.15.8 b/metadata/md5-cache/dev-python/shiboken2-5.15.8 index fdf355048cc8..c8e2b85e695b 100644 --- a/metadata/md5-cache/dev-python/shiboken2-5.15.8 +++ b/metadata/md5-cache/dev-python/shiboken2-5.15.8 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=test SLOT=0 SRC_URI=https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-5.15.8-src/pyside-setup-opensource-src-5.15.8.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3b63bc8da16da19f7a0801aceba45b5c diff --git a/metadata/md5-cache/dev-python/shiboken6-6.4.2 b/metadata/md5-cache/dev-python/shiboken6-6.4.2 index 084eaf30df13..f9e11361913d 100644 --- a/metadata/md5-cache/dev-python/shiboken6-6.4.2 +++ b/metadata/md5-cache/dev-python/shiboken6-6.4.2 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=test SLOT=0 SRC_URI=https://download.qt.io/official_releases/QtForPython/pyside6/PySide6-6.4.2-src/pyside-setup-opensource-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=69b37832f7d9454a33b21c83e04c7d7d diff --git a/metadata/md5-cache/dev-python/sphinx-pytest-0.0.5 b/metadata/md5-cache/dev-python/sphinx-pytest-0.0.5 index d6fb1dab2e4b..5f2456187b27 100644 --- a/metadata/md5-cache/dev-python/sphinx-pytest-0.0.5 +++ b/metadata/md5-cache/dev-python/sphinx-pytest-0.0.5 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/chrisjsewell/sphinx-pytest/ https://pypi.org/project/sphinx_pytest/ INHERIT=distutils-r1 IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT RDEPEND=dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/sphinx[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/chrisjsewell/sphinx-pytest/archive/v0.0.5.tar.gz -> sphinx-pytest-0.0.5.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=5ef413e2ebf829146a60b6f53686b3e7 +_md5_=dc1e4a25d6a89a10692765e7627d28ad diff --git a/metadata/md5-cache/dev-python/sphinx-rtd-theme-1.2.0 b/metadata/md5-cache/dev-python/sphinx-rtd-theme-1.2.0 index 19e93d48f49a..7ecffb324c15 100644 --- a/metadata/md5-cache/dev-python/sphinx-rtd-theme-1.2.0 +++ b/metadata/md5-cache/dev-python/sphinx-rtd-theme-1.2.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/readthedocs/sphinx_rtd_theme/ https://pypi.org/project/sphinx-rtd-theme/ INHERIT=distutils-r1 pypi IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT RDEPEND=dev-python/docutils[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/sphinx-1.6[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/sphinxcontrib-jquery-2.0.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/s/sphinx-rtd-theme/sphinx_rtd_theme-1.2.0.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=6c0bbe1e56a254d3d608f593a0cb9843 +_md5_=59e5b636946e56cd80f3ad35669eb208 diff --git a/metadata/md5-cache/dev-python/sphinxcontrib-jquery-4.1 b/metadata/md5-cache/dev-python/sphinxcontrib-jquery-4.1 index dd8eef15bcb4..2e7bc0f392ff 100644 --- a/metadata/md5-cache/dev-python/sphinxcontrib-jquery-4.1 +++ b/metadata/md5-cache/dev-python/sphinxcontrib-jquery-4.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/sphinx-contrib/jquery/ https://pypi.org/project/sphinxcontrib-jquery/ INHERIT=distutils-r1 pypi IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=0BSD MIT RDEPEND=dev-python/sphinx[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/s/sphinxcontrib-jquery/sphinxcontrib-jquery-4.1.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=3ca19a7848458a4880ab2f5a401aeb08 +_md5_=c1661068e56ac9bcca217e5a2b64d8ec diff --git a/metadata/md5-cache/dev-python/sqlalchemy-1.4.47 b/metadata/md5-cache/dev-python/sqlalchemy-1.4.47 new file mode 100644 index 000000000000..b14b9bd24cd7 --- /dev/null +++ b/metadata/md5-cache/dev-python/sqlalchemy-1.4.47 @@ -0,0 +1,16 @@ +BDEPEND=test? ( python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[sqlite] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) ) test? ( >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[sqlite?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite?] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite?] ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=Python SQL toolkit and Object Relational Mapper +EAPI=8 +HOMEPAGE=https://www.sqlalchemy.org/ https://pypi.org/project/SQLAlchemy/ https://github.com/sqlalchemy/sqlalchemy/ +INHERIT=distutils-r1 optfeature pypi +IUSE=examples +sqlite test test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris +LICENSE=MIT +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[sqlite?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite?] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite?] ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/S/SQLAlchemy/SQLAlchemy-1.4.47.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=0297cd69b497363d47f87546df629863 diff --git a/metadata/md5-cache/dev-python/sqlalchemy-2.0.7 b/metadata/md5-cache/dev-python/sqlalchemy-2.0.7 new file mode 100644 index 000000000000..d30eb6d0d5bd --- /dev/null +++ b/metadata/md5-cache/dev-python/sqlalchemy-2.0.7 @@ -0,0 +1,16 @@ +BDEPEND=test? ( python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[sqlite] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) ) test? ( >=dev-python/typing-extensions-4.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[sqlite?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite?] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite?] ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=Python SQL toolkit and Object Relational Mapper +EAPI=8 +HOMEPAGE=https://www.sqlalchemy.org/ https://pypi.org/project/SQLAlchemy/ https://github.com/sqlalchemy/sqlalchemy/ +INHERIT=distutils-r1 optfeature pypi +IUSE=examples +sqlite test test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris +LICENSE=MIT +RDEPEND=>=dev-python/typing-extensions-4.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[sqlite?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite?] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite?] ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/S/SQLAlchemy/SQLAlchemy-2.0.7.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=164208a3b2f870b0a8fa24fea0ccadd0 diff --git a/metadata/md5-cache/dev-python/traitlets-5.9.0 b/metadata/md5-cache/dev-python/traitlets-5.9.0 index d0150a0fda84..899615d959a3 100644 --- a/metadata/md5-cache/dev-python/traitlets-5.9.0 +++ b/metadata/md5-cache/dev-python/traitlets-5.9.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/ipython/traitlets/ https://pypi.org/project/traitlets/ INHERIT=distutils-r1 pypi IUSE=doc test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=BSD RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/t/traitlets/traitlets-5.9.0.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=1429df7796583214a2fc195b64d4c485 +_md5_=d56e784420c1d376103a323c318e070b diff --git a/metadata/md5-cache/dev-python/trio-websocket-0.10.1 b/metadata/md5-cache/dev-python/trio-websocket-0.10.1 new file mode 100644 index 000000000000..44c13a91307d --- /dev/null +++ b/metadata/md5-cache/dev-python/trio-websocket-0.10.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/pytest-trio-0.5.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/trustme[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/exceptiongroup[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/trio-0.11[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wsproto-0.14[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=WebSocket client and server implementation for Python Trio +EAPI=8 +HOMEPAGE=https://github.com/HyperionGray/trio-websocket/ https://pypi.org/project/trio-websocket/ +INHERIT=distutils-r1 +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~ppc ~riscv ~sparc ~x86 +LICENSE=MIT +RDEPEND=dev-python/exceptiongroup[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/trio-0.11[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wsproto-0.14[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/HyperionGray/trio-websocket/archive/0.10.1.tar.gz -> trio-websocket-0.10.1.gh.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=a555604790aa0e64dfa5a45a73b45ef2 diff --git a/metadata/md5-cache/dev-python/trio-websocket-0.10.2 b/metadata/md5-cache/dev-python/trio-websocket-0.10.2 new file mode 100644 index 000000000000..826805090c52 --- /dev/null +++ b/metadata/md5-cache/dev-python/trio-websocket-0.10.2 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/pytest-trio-0.5.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/trustme[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/exceptiongroup[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/trio-0.11[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wsproto-0.14[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=WebSocket client and server implementation for Python Trio +EAPI=8 +HOMEPAGE=https://github.com/HyperionGray/trio-websocket/ https://pypi.org/project/trio-websocket/ +INHERIT=distutils-r1 +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~ppc ~riscv ~sparc ~x86 +LICENSE=MIT +RDEPEND=dev-python/exceptiongroup[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/trio-0.11[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wsproto-0.14[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/HyperionGray/trio-websocket/archive/0.10.2.tar.gz -> trio-websocket-0.10.2.gh.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=a555604790aa0e64dfa5a45a73b45ef2 diff --git a/metadata/md5-cache/dev-python/tzlocal-4.3 b/metadata/md5-cache/dev-python/tzlocal-4.3 new file mode 100644 index 000000000000..1d3b96173610 --- /dev/null +++ b/metadata/md5-cache/dev-python/tzlocal-4.3 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/pytest-mock[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/pytz_deprecation_shim[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=tzinfo object for the local timezone +EAPI=8 +HOMEPAGE=https://github.com/regebro/tzlocal/ https://pypi.org/project/tzlocal/ +INHERIT=distutils-r1 +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND=dev-python/pytz_deprecation_shim[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/regebro/tzlocal/archive/4.3.tar.gz -> tzlocal-4.3.gh.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=7172850a85cc25962792c06fd9537fac diff --git a/metadata/md5-cache/dev-python/uc-micro-py-1.0.1 b/metadata/md5-cache/dev-python/uc-micro-py-1.0.1 index 41273ec93d40..e1aa10a384cb 100644 --- a/metadata/md5-cache/dev-python/uc-micro-py-1.0.1 +++ b/metadata/md5-cache/dev-python/uc-micro-py-1.0.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/tsutsu3/uc.micro-py/ https://pypi.org/project/uc-micro-py/ INHERIT=distutils-r1 IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/tsutsu3/uc.micro-py/archive/v1.0.1.tar.gz -> uc.micro-py-1.0.1.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=ca085de38861ca72918331bfcf45fdc5 +_md5_=f38a03d6bfbf3304bc47c1d40697d8ef diff --git a/metadata/md5-cache/dev-python/uranium-4.13.0-r1 b/metadata/md5-cache/dev-python/uranium-4.13.0-r1 index 05246e37d75e..89364dde73e9 100644 --- a/metadata/md5-cache/dev-python/uranium-4.13.0-r1 +++ b/metadata/md5-cache/dev-python/uranium-4.13.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Ultimaker/Uranium/archive/4.13.0.tar.gz -> uranium-4.13.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d5e3ac34373a63a1f649815af82ffc7 diff --git a/metadata/md5-cache/dev-qt/Manifest.gz b/metadata/md5-cache/dev-qt/Manifest.gz index 011bf1bf834b..0818c0616432 100644 Binary files a/metadata/md5-cache/dev-qt/Manifest.gz and b/metadata/md5-cache/dev-qt/Manifest.gz differ diff --git a/metadata/md5-cache/dev-qt/qt-creator-8.0.2 b/metadata/md5-cache/dev-qt/qt-creator-8.0.2 index f20be8a6a891..a5744c646494 100644 --- a/metadata/md5-cache/dev-qt/qt-creator-8.0.2 +++ b/metadata/md5-cache/dev-qt/qt-creator-8.0.2 @@ -14,5 +14,5 @@ REQUIRED_USE=android? ( lsp ) boot2qt? ( remotelinux ) clang? ( lsp ) coco? ( ls RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.qt.io/official_releases/qtcreator/8.0/8.0.2/qt-creator-opensource-src-8.0.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7da852cbaa88d5a3a1602aa6f6424128 diff --git a/metadata/md5-cache/dev-qt/qt5compat-6.4.2 b/metadata/md5-cache/dev-qt/qt5compat-6.4.2 index 2a02836bbf47..298907c34f4e 100644 --- a/metadata/md5-cache/dev-qt/qt5compat-6.4.2 +++ b/metadata/md5-cache/dev-qt/qt5compat-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[gui,network] =dev-qt/qtdeclarative-6.4.2* RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qt5compat-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=750489cec99a7ea5a3813b2d2f3bc6e6 diff --git a/metadata/md5-cache/dev-qt/qt5compat-6.4.3 b/metadata/md5-cache/dev-qt/qt5compat-6.4.3 new file mode 100644 index 000000000000..28528cfedd99 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qt5compat-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[gui,network] =dev-qt/qtdeclarative-6.4.3* +DESCRIPTION=Qt module containing the unsupported Qt 5 APIs +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[gui,network] =dev-qt/qtdeclarative-6.4.3* +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qt5compat-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=750489cec99a7ea5a3813b2d2f3bc6e6 diff --git a/metadata/md5-cache/dev-qt/qtbase-6.4.2 b/metadata/md5-cache/dev-qt/qtbase-6.4.2 index 5546f8abf6d7..2d0b1aeba987 100644 --- a/metadata/md5-cache/dev-qt/qtbase-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtbase-6.4.2 @@ -13,5 +13,5 @@ REQUIRED_USE=opengl? ( gui ) widgets? ( gui ) X? ( || ( evdev libinput ) ) acces RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtbase-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2ad77f01dae2b7dd506429b44e144cd diff --git a/metadata/md5-cache/dev-qt/qtbase-6.4.3 b/metadata/md5-cache/dev-qt/qtbase-6.4.3 new file mode 100644 index 000000000000..5ad028d17382 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtbase-6.4.3 @@ -0,0 +1,17 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-crypt/libb2 dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/libpcre2:=[pcre16,unicode] dev-util/gtk-update-icon-cache media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.6.0:= media-libs/tiff:= >=sys-apps/dbus-1.4.20 sys-libs/zlib:= brotli? ( app-arch/brotli:= ) evdev? ( sys-libs/mtdev ) freetds? ( dev-db/freetds ) gles2-only? ( media-libs/libglvnd ) !gles2-only? ( media-libs/libglvnd[X] ) gssapi? ( virtual/krb5 ) gtk? ( x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) gui? ( media-libs/libpng:= ) icu? ( dev-libs/icu:= ) !icu? ( virtual/libiconv ) jpeg? ( media-libs/libjpeg-turbo:= ) libinput? ( dev-libs/libinput:= >=x11-libs/libxkbcommon-0.5.0 ) libproxy? ( net-libs/libproxy ) mysql? ( dev-db/mysql-connector-c:= ) oci8? ( dev-db/oracle-instantclient:=[sdk] ) odbc? ( dev-db/unixODBC ) postgres? ( dev-db/postgresql:* ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:= ) systemd? ( sys-apps/systemd:= ) tslib? ( >=x11-libs/tslib-1.21 ) udev? ( virtual/libudev:= ) vulkan? ( dev-util/vulkan-headers ) X? ( x11-libs/libdrm x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libxcb-1.12:= >=x11-libs/libxkbcommon-0.5.0[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) zstd? ( app-arch/zstd:= ) +DESCRIPTION=Cross-platform application development framework +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=+concurrent +dbus +gui +network +sql opengl +widgets +xml zstd accessibility egl eglfs evdev gles2-only +jpeg +libinput tslib tuio vulkan +X brotli gssapi libproxy sctp +ssl vnc freetds mysql oci8 odbc postgres +sqlite cups gtk icu systemd +udev debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=app-crypt/libb2 dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/libpcre2:=[pcre16,unicode] dev-util/gtk-update-icon-cache media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.6.0:= media-libs/tiff:= >=sys-apps/dbus-1.4.20 sys-libs/zlib:= brotli? ( app-arch/brotli:= ) evdev? ( sys-libs/mtdev ) freetds? ( dev-db/freetds ) gles2-only? ( media-libs/libglvnd ) !gles2-only? ( media-libs/libglvnd[X] ) gssapi? ( virtual/krb5 ) gtk? ( x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) gui? ( media-libs/libpng:= ) icu? ( dev-libs/icu:= ) !icu? ( virtual/libiconv ) jpeg? ( media-libs/libjpeg-turbo:= ) libinput? ( dev-libs/libinput:= >=x11-libs/libxkbcommon-0.5.0 ) libproxy? ( net-libs/libproxy ) mysql? ( dev-db/mysql-connector-c:= ) oci8? ( dev-db/oracle-instantclient:=[sdk] ) odbc? ( dev-db/unixODBC ) postgres? ( dev-db/postgresql:* ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:= ) systemd? ( sys-apps/systemd:= ) tslib? ( >=x11-libs/tslib-1.21 ) udev? ( virtual/libudev:= ) vulkan? ( dev-util/vulkan-headers ) X? ( x11-libs/libdrm x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libxcb-1.12:= >=x11-libs/libxkbcommon-0.5.0[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) zstd? ( app-arch/zstd:= ) +REQUIRED_USE=opengl? ( gui ) widgets? ( gui ) X? ( || ( evdev libinput ) ) accessibility? ( gui ) egl? ( gui ) eglfs? ( gui ) evdev? ( gui ) gles2-only? ( gui ) jpeg? ( gui ) libinput? ( gui ) tslib? ( gui ) tuio? ( gui ) vulkan? ( gui ) X? ( gui ) brotli? ( network ) gssapi? ( network ) libproxy? ( network ) sctp? ( network ) ssl? ( network ) vnc? ( network ) freetds? ( sql ) mysql? ( sql ) oci8? ( sql ) odbc? ( sql ) postgres? ( sql ) sqlite? ( sql ) accessibility? ( dbus X ) cups? ( gui widgets ) eglfs? ( egl ) gtk? ( widgets ) gui? ( || ( eglfs X ) || ( libinput X ) ) libinput? ( udev ) sql? ( || ( freetds mysql oci8 odbc postgres sqlite ) ) vnc? ( gui ) X? ( gles2-only? ( egl ) ) +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtbase-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=b5e10164aab817d0501efdc2f20a9d47 diff --git a/metadata/md5-cache/dev-qt/qtcharts-6.4.2 b/metadata/md5-cache/dev-qt/qtcharts-6.4.2 index 7c6c4cb690bc..2de1b0ed6ccb 100644 --- a/metadata/md5-cache/dev-qt/qtcharts-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtcharts-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[gui,opengl,widgets] =dev-qt/qtdeclarative-6.4.2* RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtcharts-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=559ce1369ce2ce824dc1ae552bbb2a45 diff --git a/metadata/md5-cache/dev-qt/qtcharts-6.4.3 b/metadata/md5-cache/dev-qt/qtcharts-6.4.3 new file mode 100644 index 000000000000..471ac10e22bd --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtcharts-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[gui,opengl,widgets] =dev-qt/qtdeclarative-6.4.3* +DESCRIPTION=Chart component library for the Qt6 framework +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[gui,opengl,widgets] =dev-qt/qtdeclarative-6.4.3* +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtcharts-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=559ce1369ce2ce824dc1ae552bbb2a45 diff --git a/metadata/md5-cache/dev-qt/qtdeclarative-6.4.2 b/metadata/md5-cache/dev-qt/qtdeclarative-6.4.2 index 545564b25fce..1fc9ba0c0814 100644 --- a/metadata/md5-cache/dev-qt/qtdeclarative-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtdeclarative-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[network,opengl=,sql=,widgets=] =dev-qt/qtshadertoo RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtdeclarative-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=69405b5e7b90dad785b8c447a2bcdbc2 diff --git a/metadata/md5-cache/dev-qt/qtdeclarative-6.4.3 b/metadata/md5-cache/dev-qt/qtdeclarative-6.4.3 new file mode 100644 index 000000000000..23c01d323fd9 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtdeclarative-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[network,opengl=,sql=,widgets=] =dev-qt/qtshadertools-6.4.3* +DESCRIPTION=Qt Declarative (Quick 2) +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=opengl +sql +widgets debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[network,opengl=,sql=,widgets=] =dev-qt/qtshadertools-6.4.3* +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtdeclarative-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=69405b5e7b90dad785b8c447a2bcdbc2 diff --git a/metadata/md5-cache/dev-qt/qtimageformats-6.4.2 b/metadata/md5-cache/dev-qt/qtimageformats-6.4.2 index 1744a015de1f..6cde438fa300 100644 --- a/metadata/md5-cache/dev-qt/qtimageformats-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtimageformats-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[gui] media-libs/libwebp:= media-libs/tiff:= mng? ( RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtimageformats-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d0163720a720b4a68710be009b8ed352 diff --git a/metadata/md5-cache/dev-qt/qtimageformats-6.4.3 b/metadata/md5-cache/dev-qt/qtimageformats-6.4.3 new file mode 100644 index 000000000000..54661a3e1ade --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtimageformats-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[gui] media-libs/libwebp:= media-libs/tiff:= mng? ( media-libs/libmng:= ) +DESCRIPTION=Additional format plugins for the Qt image I/O system +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=mng debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[gui] media-libs/libwebp:= media-libs/tiff:= mng? ( media-libs/libmng:= ) +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtimageformats-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=d0163720a720b4a68710be009b8ed352 diff --git a/metadata/md5-cache/dev-qt/qtmultimedia-6.4.2 b/metadata/md5-cache/dev-qt/qtmultimedia-6.4.2 index b51c21b309ad..c17612fbc7c7 100644 --- a/metadata/md5-cache/dev-qt/qtmultimedia-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtmultimedia-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[gui,network,widgets] =dev-qt/qtdeclarative-6.4.2* RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtmultimedia-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f9238100fffb2e95f61a6b95de6b06a5 diff --git a/metadata/md5-cache/dev-qt/qtmultimedia-6.4.3 b/metadata/md5-cache/dev-qt/qtmultimedia-6.4.3 new file mode 100644 index 000000000000..6d508f1c6f61 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtmultimedia-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[gui,network,widgets] =dev-qt/qtdeclarative-6.4.3* =dev-qt/qtshadertools-6.4.3* =dev-qt/qtsvg-6.4.3* gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 media-libs/libglvnd ) gstreamer? ( x11-base/xorg-proto ) +DESCRIPTION=Qt Multimedia +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=gstreamer debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[gui,network,widgets] =dev-qt/qtdeclarative-6.4.3* =dev-qt/qtshadertools-6.4.3* =dev-qt/qtsvg-6.4.3* gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 media-libs/libglvnd ) +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtmultimedia-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=f9238100fffb2e95f61a6b95de6b06a5 diff --git a/metadata/md5-cache/dev-qt/qtnetworkauth-6.4.2 b/metadata/md5-cache/dev-qt/qtnetworkauth-6.4.2 index f0831b0931ee..42c57ec85fb2 100644 --- a/metadata/md5-cache/dev-qt/qtnetworkauth-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtnetworkauth-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[network,widgets] RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtnetworkauth-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4366026d4d58d07020d5dd4075e29258 diff --git a/metadata/md5-cache/dev-qt/qtnetworkauth-6.4.3 b/metadata/md5-cache/dev-qt/qtnetworkauth-6.4.3 new file mode 100644 index 000000000000..b61ba4df34fa --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtnetworkauth-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[network,widgets] +DESCRIPTION=Network authorization library for the Qt6 framework +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[network,widgets] +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtnetworkauth-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=4366026d4d58d07020d5dd4075e29258 diff --git a/metadata/md5-cache/dev-qt/qtpositioning-6.4.2 b/metadata/md5-cache/dev-qt/qtpositioning-6.4.2 index 38fb1ee672d9..b37b26eaeb1d 100644 --- a/metadata/md5-cache/dev-qt/qtpositioning-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtpositioning-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[dbus,gui,widgets] =dev-qt/qtdeclarative-6.4.2* =de RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtpositioning-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=78f6e17abcd406b1b6178483e59a6e8c diff --git a/metadata/md5-cache/dev-qt/qtpositioning-6.4.3 b/metadata/md5-cache/dev-qt/qtpositioning-6.4.3 new file mode 100644 index 000000000000..66ea59c2fbe8 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtpositioning-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[dbus,gui,widgets] =dev-qt/qtdeclarative-6.4.3* =dev-qt/qtserialport-6.4.3* +DESCRIPTION=Physical position determination library for the Qt6 framework +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[dbus,gui,widgets] =dev-qt/qtdeclarative-6.4.3* =dev-qt/qtserialport-6.4.3* +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtpositioning-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=78f6e17abcd406b1b6178483e59a6e8c diff --git a/metadata/md5-cache/dev-qt/qtquick3d-6.4.2 b/metadata/md5-cache/dev-qt/qtquick3d-6.4.2 index 93092dcfc06d..3e328e41baf3 100644 --- a/metadata/md5-cache/dev-qt/qtquick3d-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtquick3d-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[concurrent,network,widgets] =dev-qt/qtdeclarative- RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtquick3d-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=88d66c9c0fc8b3942d9239598af8e46a diff --git a/metadata/md5-cache/dev-qt/qtquick3d-6.4.3 b/metadata/md5-cache/dev-qt/qtquick3d-6.4.3 new file mode 100644 index 000000000000..d8f9dc3db10f --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtquick3d-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[concurrent,network,widgets] =dev-qt/qtdeclarative-6.4.3* =dev-qt/qtshadertools-6.4.3* =dev-qt/qtquicktimeline-6.4.3* media-libs/assimp:= +DESCRIPTION=Qt module and API for defining 3D content in Qt QuickTools +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[concurrent,network,widgets] =dev-qt/qtdeclarative-6.4.3* =dev-qt/qtshadertools-6.4.3* =dev-qt/qtquicktimeline-6.4.3* media-libs/assimp:= +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtquick3d-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=88d66c9c0fc8b3942d9239598af8e46a diff --git a/metadata/md5-cache/dev-qt/qtquicktimeline-6.4.2 b/metadata/md5-cache/dev-qt/qtquicktimeline-6.4.2 index c0a2edb2c15e..b353bb570a9b 100644 --- a/metadata/md5-cache/dev-qt/qtquicktimeline-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtquicktimeline-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2* =dev-qt/qtdeclarative-6.4.2* RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtquicktimeline-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8c0e1f3fe76ddcc5cdde1a80b7f5eae diff --git a/metadata/md5-cache/dev-qt/qtquicktimeline-6.4.3 b/metadata/md5-cache/dev-qt/qtquicktimeline-6.4.3 new file mode 100644 index 000000000000..5accd159c63a --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtquicktimeline-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3* =dev-qt/qtdeclarative-6.4.3* +DESCRIPTION=Qt module for keyframe-based timeline construction +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3* =dev-qt/qtdeclarative-6.4.3* +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtquicktimeline-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=d8c0e1f3fe76ddcc5cdde1a80b7f5eae diff --git a/metadata/md5-cache/dev-qt/qtserialport-6.4.2 b/metadata/md5-cache/dev-qt/qtserialport-6.4.2 index 456f96006c6e..0ae83e5d9e43 100644 --- a/metadata/md5-cache/dev-qt/qtserialport-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtserialport-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[gui,widgets] virtual/libudev:= RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtserialport-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=82efa76a5d737a5baa4f941bcbb26a64 diff --git a/metadata/md5-cache/dev-qt/qtserialport-6.4.3 b/metadata/md5-cache/dev-qt/qtserialport-6.4.3 new file mode 100644 index 000000000000..0a3343870d8a --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtserialport-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[gui,widgets] virtual/libudev:= +DESCRIPTION=Serial port abstraction library for the Qt6 framework +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[gui,widgets] virtual/libudev:= +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtserialport-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=82efa76a5d737a5baa4f941bcbb26a64 diff --git a/metadata/md5-cache/dev-qt/qtshadertools-6.4.2 b/metadata/md5-cache/dev-qt/qtshadertools-6.4.2 index 751e63003105..0f47d47c35b9 100644 --- a/metadata/md5-cache/dev-qt/qtshadertools-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtshadertools-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[gui] RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtshadertools-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=94a2405520e768f88bd7ee051f817283 diff --git a/metadata/md5-cache/dev-qt/qtshadertools-6.4.3 b/metadata/md5-cache/dev-qt/qtshadertools-6.4.3 new file mode 100644 index 000000000000..1a6913277d40 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtshadertools-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[gui] +DESCRIPTION=Qt APIs and Tools for Graphics Pipelines +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[gui] +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtshadertools-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=94a2405520e768f88bd7ee051f817283 diff --git a/metadata/md5-cache/dev-qt/qtsvg-6.4.2 b/metadata/md5-cache/dev-qt/qtsvg-6.4.2 index 69748d10ca7d..4e9236041117 100644 --- a/metadata/md5-cache/dev-qt/qtsvg-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtsvg-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[gui,widgets] sys-libs/zlib:= RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtsvg-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=15a850936b3acb2a361469ef64e5af78 diff --git a/metadata/md5-cache/dev-qt/qtsvg-6.4.3 b/metadata/md5-cache/dev-qt/qtsvg-6.4.3 new file mode 100644 index 000000000000..678dc76b624d --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtsvg-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[gui,widgets] sys-libs/zlib:= +DESCRIPTION=SVG rendering library for the Qt6 framework +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[gui,widgets] sys-libs/zlib:= +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtsvg-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=15a850936b3acb2a361469ef64e5af78 diff --git a/metadata/md5-cache/dev-qt/qttools-6.4.2 b/metadata/md5-cache/dev-qt/qttools-6.4.2 index 8e7e770b1104..8ce060ce571a 100644 --- a/metadata/md5-cache/dev-qt/qttools-6.4.2 +++ b/metadata/md5-cache/dev-qt/qttools-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[network] assistant? ( =dev-qt/qtbase-6.4.2*[sql,wi RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qttools-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e0455f9396c40ae01b36363236197302 diff --git a/metadata/md5-cache/dev-qt/qttools-6.4.3 b/metadata/md5-cache/dev-qt/qttools-6.4.3 new file mode 100644 index 000000000000..d2bdb702847b --- /dev/null +++ b/metadata/md5-cache/dev-qt/qttools-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[network] assistant? ( =dev-qt/qtbase-6.4.3*[sql,widgets] ) designer? ( =dev-qt/qtbase-6.4.3*[widgets] ) distancefieldgenerator? ( =dev-qt/qtbase-6.4.3*[widgets] =dev-qt/qtdeclarative-6.4.3* ) pixeltool? ( =dev-qt/qtbase-6.4.3*[widgets] ) qdbus? ( =dev-qt/qtbase-6.4.3*[widgets] ) qdoc? ( sys-devel/clang:= ) qtdiag? ( =dev-qt/qtbase-6.4.3*[opengl,widgets] ) +DESCRIPTION=Qt Tools Collection +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=assistant designer distancefieldgenerator +linguist pixeltool qdbus qdoc qtattributionsscanner qtdiag qtplugininfo debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[network] assistant? ( =dev-qt/qtbase-6.4.3*[sql,widgets] ) designer? ( =dev-qt/qtbase-6.4.3*[widgets] ) distancefieldgenerator? ( =dev-qt/qtbase-6.4.3*[widgets] =dev-qt/qtdeclarative-6.4.3* ) pixeltool? ( =dev-qt/qtbase-6.4.3*[widgets] ) qdbus? ( =dev-qt/qtbase-6.4.3*[widgets] ) qdoc? ( sys-devel/clang:= ) qtdiag? ( =dev-qt/qtbase-6.4.3*[opengl,widgets] ) +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qttools-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=4797cceaeb09da35f5ea20eab8757f6c diff --git a/metadata/md5-cache/dev-qt/qtwayland-6.4.2 b/metadata/md5-cache/dev-qt/qtwayland-6.4.2 index eafb08f613aa..d93a8c36e684 100644 --- a/metadata/md5-cache/dev-qt/qtwayland-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtwayland-6.4.2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/wayland =dev-qt/qtbase-6.4.2*[gui,opengl] =dev-qt/qtdeclarative RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtwayland-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3fd3791a7eef27fc2b103877dc8ffec5 diff --git a/metadata/md5-cache/dev-qt/qtwayland-6.4.3 b/metadata/md5-cache/dev-qt/qtwayland-6.4.3 new file mode 100644 index 000000000000..a646ff5de3ad --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwayland-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=dev-util/wayland-scanner >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-libs/wayland =dev-qt/qtbase-6.4.3*[gui,opengl] =dev-qt/qtdeclarative-6.4.3* media-libs/libglvnd x11-libs/libxkbcommon +DESCRIPTION=Wayland platform plugin for Qt +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=dev-libs/wayland =dev-qt/qtbase-6.4.3*[gui,opengl] =dev-qt/qtdeclarative-6.4.3* media-libs/libglvnd x11-libs/libxkbcommon +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtwayland-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=3fd3791a7eef27fc2b103877dc8ffec5 diff --git a/metadata/md5-cache/dev-qt/qtwebchannel-6.4.2 b/metadata/md5-cache/dev-qt/qtwebchannel-6.4.2 index 3dfafe83f869..5fd90e0d0a6d 100644 --- a/metadata/md5-cache/dev-qt/qtwebchannel-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtwebchannel-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[concurrent] =dev-qt/qtdeclarative-6.4.2* =dev-qt/q RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtwebchannel-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bd6870facbf3573f46920465593e186a diff --git a/metadata/md5-cache/dev-qt/qtwebchannel-6.4.3 b/metadata/md5-cache/dev-qt/qtwebchannel-6.4.3 new file mode 100644 index 000000000000..09862610f5a2 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebchannel-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[concurrent] =dev-qt/qtdeclarative-6.4.3* =dev-qt/qtwebsockets-6.4.3* +DESCRIPTION=Qt WebChannel +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[concurrent] =dev-qt/qtdeclarative-6.4.3* =dev-qt/qtwebsockets-6.4.3* +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtwebchannel-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=bd6870facbf3573f46920465593e186a diff --git a/metadata/md5-cache/dev-qt/qtwebengine-6.4.2 b/metadata/md5-cache/dev-qt/qtwebengine-6.4.2 index 5b35dda4e605..12be4996d138 100644 --- a/metadata/md5-cache/dev-qt/qtwebengine-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtwebengine-6.4.2 @@ -13,5 +13,5 @@ REQUIRED_USE=designer? ( widgets ) RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtwebengine-everywhere-src-6.4.2.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=66cd47b584468339cf6b19fffaf71881 diff --git a/metadata/md5-cache/dev-qt/qtwebengine-6.4.3 b/metadata/md5-cache/dev-qt/qtwebengine-6.4.3 new file mode 100644 index 000000000000..8d9852ed2d54 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebengine-6.4.3 @@ -0,0 +1,17 @@ +BDEPEND=|| ( ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] dev-python/html5lib[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] dev-python/html5lib[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9[xml(+)] dev-python/html5lib[python_targets_python3_9(-)] ) ) dev-util/gperf dev-util/ninja dev-util/re2c net-libs/nodejs[ssl] sys-devel/bison sys-devel/flex >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install preinst prepare pretend setup test unpack +DEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= =dev-qt/qtdeclarative-6.4.3* =dev-qt/qtwebchannel-6.4.3* media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:= >=media-libs/libvpx-1.5:=[svc(+)] media-libs/libwebp:= media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libxcb:= x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libxkbcommon x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libxshmfence:= x11-libs/libXtst alsa? ( media-libs/alsa-lib ) geolocation? ( =dev-qt/qtpositioning-6.4.3* ) kerberos? ( virtual/krb5 ) pulseaudio? ( media-libs/libpulse:= ) screencast? ( media-video/pipewire:= ) system-ffmpeg? ( =dev-libs/icu-69.1:= ) widgets? ( =dev-qt/qtbase-6.4.3*[widgets] ) media-libs/libglvnd +DESCRIPTION=Library for rendering dynamic web content in Qt6 C++ and QML applications +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=check-reqs estack flag-o-matic multiprocessing python-any-r1 qt6-build +IUSE=alsa bindist designer geolocation +jumbo-build kerberos pulseaudio screencast +system-ffmpeg +system-icu widgets debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= =dev-qt/qtdeclarative-6.4.3* =dev-qt/qtwebchannel-6.4.3* media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:= >=media-libs/libvpx-1.5:=[svc(+)] media-libs/libwebp:= media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libxcb:= x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libxkbcommon x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libxshmfence:= x11-libs/libXtst alsa? ( media-libs/alsa-lib ) geolocation? ( =dev-qt/qtpositioning-6.4.3* ) kerberos? ( virtual/krb5 ) pulseaudio? ( media-libs/libpulse:= ) screencast? ( media-video/pipewire:= ) system-ffmpeg? ( =dev-libs/icu-69.1:= ) widgets? ( =dev-qt/qtbase-6.4.3*[widgets] ) +REQUIRED_USE=designer? ( widgets ) +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtwebengine-everywhere-src-6.4.3.tar.xz +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=1ca708886230793dcdcf13263e32e187 diff --git a/metadata/md5-cache/dev-qt/qtwebsockets-6.4.2 b/metadata/md5-cache/dev-qt/qtwebsockets-6.4.2 index f1e13410bdcc..1eb46d4140ae 100644 --- a/metadata/md5-cache/dev-qt/qtwebsockets-6.4.2 +++ b/metadata/md5-cache/dev-qt/qtwebsockets-6.4.2 @@ -12,5 +12,5 @@ RDEPEND==dev-qt/qtbase-6.4.2*[network] =dev-qt/qtdeclarative-6.4.2* RESTRICT=test SLOT=6/6.4 SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.2/submodules/qtwebsockets-everywhere-src-6.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build d6e10efb6d50879e02ea68a48da9986b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b872320f84089c0540455ea8951b4592 diff --git a/metadata/md5-cache/dev-qt/qtwebsockets-6.4.3 b/metadata/md5-cache/dev-qt/qtwebsockets-6.4.3 new file mode 100644 index 000000000000..5f0ca74beda7 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebsockets-6.4.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.4.3*[network] =dev-qt/qtdeclarative-6.4.3* +DESCRIPTION=Implementation of the WebSocket protocol for the Qt6 framework +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.4.3*[network] =dev-qt/qtdeclarative-6.4.3* +RESTRICT=test +SLOT=6/6.4 +SRC_URI=https://download.qt.io/official_releases/qt/6.4/6.4.3/submodules/qtwebsockets-everywhere-src-6.4.3.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qt6-build 4c05cd9d408dd35d1bd6294b9948fb4d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=b872320f84089c0540455ea8951b4592 diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz index 3fc39b6d04e7..2273cc820e2e 100644 Binary files a/metadata/md5-cache/dev-ruby/Manifest.gz and b/metadata/md5-cache/dev-ruby/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-2.0.15 b/metadata/md5-cache/dev-ruby/asciidoctor-2.0.15 deleted file mode 100644 index 1c3f7346eb31..000000000000 --- a/metadata/md5-cache/dev-ruby/asciidoctor-2.0.15 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=ruby_targets_ruby27? ( test? ( dev-util/cucumber[ruby_targets_ruby27(-)] dev-ruby/rspec-expectations:*[ruby_targets_ruby27(-)] dev-ruby/asciimath[ruby_targets_ruby27(-)] dev-ruby/coderay[ruby_targets_ruby27(-)] dev-ruby/concurrent-ruby[ruby_targets_ruby27(-)] dev-ruby/erubis[ruby_targets_ruby27(-)] dev-ruby/haml[ruby_targets_ruby27(-)] dev-ruby/nokogiri[ruby_targets_ruby27(-)] dev-ruby/rouge[ruby_targets_ruby27(-)] dev-ruby/slim[ruby_targets_ruby27(-)] dev-ruby/tilt[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=Processor for converting AsciiDoc into HTML 5, DocBook 4.5 and other formats -EAPI=7 -HOMEPAGE=https://github.com/asciidoctor/asciidoctor -INHERIT=ruby-fakegem -IUSE=ruby_targets_ruby27 doc test test -KEYWORDS=amd64 arm arm64 ~hppa ppc ppc64 x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/asciidoctor/asciidoctor/archive/v2.0.15.tar.gz -> asciidoctor-2.0.15.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=6a0c9ab36202bd8912218ad7e5b44867 diff --git a/metadata/md5-cache/dev-ruby/aws-partitions-1.722.0 b/metadata/md5-cache/dev-ruby/aws-partitions-1.722.0 new file mode 100644 index 000000000000..900ad10f98a9 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/aws-partitions-1.722.0 @@ -0,0 +1,17 @@ +BDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +DESCRIPTION=Provides interfaces to enumerate AWS partitions, regions, and services +EAPI=8 +HOMEPAGE=https://aws.amazon.com/sdk-for-ruby/ +INHERIT=ruby-fakegem +IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test +KEYWORDS=~amd64 ~arm64 +LICENSE=Apache-2.0 +RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) +RESTRICT=!test? ( test ) +SLOT=1 +SRC_URI=https://rubygems.org/gems/aws-partitions-1.722.0.gem +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=b26454445c34aad37f5e3cc2b00358a8 diff --git a/metadata/md5-cache/dev-ruby/capistrano-3.16.0 b/metadata/md5-cache/dev-ruby/capistrano-3.16.0 deleted file mode 100644 index 37d003dfc74e..000000000000 --- a/metadata/md5-cache/dev-ruby/capistrano-3.16.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby27? ( >=dev-ruby/airbrussh-1.0.0[ruby_targets_ruby27(-)] >=dev-ruby/sshkit-1.9:0[ruby_targets_ruby27(-)] >=dev-ruby/rake-10.0.0[ruby_targets_ruby27(-)] dev-ruby/i18n:*[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/mocha[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=A distributed application deployment system -EAPI=7 -HOMEPAGE=https://capistranorb.com/ -INHERIT=ruby-fakegem -IUSE=test ruby_targets_ruby27 test test -KEYWORDS=amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby27? ( >=dev-ruby/airbrussh-1.0.0[ruby_targets_ruby27(-)] >=dev-ruby/sshkit-1.9:0[ruby_targets_ruby27(-)] >=dev-ruby/rake-10.0.0[ruby_targets_ruby27(-)] dev-ruby/i18n:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) -SLOT=3 -SRC_URI=https://rubygems.org/gems/capistrano-3.16.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=7514fdb6dc49300e69eb520d68e09a97 diff --git a/metadata/md5-cache/dev-ruby/capistrano-3.17.0 b/metadata/md5-cache/dev-ruby/capistrano-3.17.0 deleted file mode 100644 index 7a28b30121e5..000000000000 --- a/metadata/md5-cache/dev-ruby/capistrano-3.17.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby27? ( >=dev-ruby/airbrussh-1.0.0[ruby_targets_ruby27(-)] >=dev-ruby/sshkit-1.9:0[ruby_targets_ruby27(-)] >=dev-ruby/rake-10.0.0[ruby_targets_ruby27(-)] dev-ruby/i18n:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/airbrussh-1.0.0[ruby_targets_ruby30(-)] >=dev-ruby/sshkit-1.9:0[ruby_targets_ruby30(-)] >=dev-ruby/rake-10.0.0[ruby_targets_ruby30(-)] dev-ruby/i18n:*[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/mocha[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/mocha[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -DESCRIPTION=A distributed application deployment system -EAPI=7 -HOMEPAGE=https://capistranorb.com/ -INHERIT=ruby-fakegem -IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby27? ( >=dev-ruby/airbrussh-1.0.0[ruby_targets_ruby27(-)] >=dev-ruby/sshkit-1.9:0[ruby_targets_ruby27(-)] >=dev-ruby/rake-10.0.0[ruby_targets_ruby27(-)] dev-ruby/i18n:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/airbrussh-1.0.0[ruby_targets_ruby30(-)] >=dev-ruby/sshkit-1.9:0[ruby_targets_ruby30(-)] >=dev-ruby/rake-10.0.0[ruby_targets_ruby30(-)] dev-ruby/i18n:*[ruby_targets_ruby30(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) -RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) -SLOT=3 -SRC_URI=https://rubygems.org/gems/capistrano-3.17.0.gem -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=5936d553d5281f9af5a07d202dbb1fdd diff --git a/metadata/md5-cache/dev-ruby/concurrent-ruby-1.2.2 b/metadata/md5-cache/dev-ruby/concurrent-ruby-1.2.2 new file mode 100644 index 000000000000..98a5d3cb287f --- /dev/null +++ b/metadata/md5-cache/dev-ruby/concurrent-ruby-1.2.2 @@ -0,0 +1,17 @@ +BDEPEND=ruby_targets_ruby27? ( test? ( >=dev-ruby/timecop-0.9[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( >=dev-ruby/timecop-0.9[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/timecop-0.9[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( >=dev-ruby/timecop-0.9[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +DESCRIPTION=Modern concurrency tools including agents, futures, promises, thread pools, more +EAPI=8 +HOMEPAGE=https://github.com/ruby-concurrency/concurrent-ruby +INHERIT=ruby-fakegem +IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 test test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=MIT +RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=1 +SRC_URI=https://github.com/ruby-concurrency/concurrent-ruby/archive/v1.2.2.tar.gz -> concurrent-ruby-1.2.2.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=bfe07b1c2b663942176230176955d929 diff --git a/metadata/md5-cache/dev-ruby/database_cleaner-1.7.0 b/metadata/md5-cache/dev-ruby/database_cleaner-1.7.0 deleted file mode 100644 index 8e7957403b72..000000000000 --- a/metadata/md5-cache/dev-ruby/database_cleaner-1.7.0 +++ /dev/null @@ -1,16 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) -DESCRIPTION=Strategies for cleaning databases -EAPI=6 -HOMEPAGE=https://github.com/bmabey/database_cleaner -INHERIT=ruby-fakegem -IUSE=ruby_targets_ruby27 doc test -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://rubygems.org/gems/database_cleaner-1.7.0.gem -_eclasses_=eqawarn c9847c43b3253a276ae2eabddedab3d7 estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=d48ca7bb15aae4dd66f9b59e09e80a37 diff --git a/metadata/md5-cache/dev-ruby/duktape-rb-2.7.0.0 b/metadata/md5-cache/dev-ruby/duktape-rb-2.7.0.0 new file mode 100644 index 000000000000..ccdcae8889d5 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/duktape-rb-2.7.0.0 @@ -0,0 +1,17 @@ +BDEPEND=ruby_targets_ruby27? ( dev-ruby/pkg-config[ruby_targets_ruby27(-)] dev-ruby/rake-compiler[ruby_targets_ruby27(-)] dev-ruby/sdoc[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/pkg-config[ruby_targets_ruby30(-)] dev-ruby/rake-compiler[ruby_targets_ruby30(-)] dev-ruby/sdoc[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/pkg-config[ruby_targets_ruby31(-)] dev-ruby/rake-compiler[ruby_targets_ruby31(-)] dev-ruby/sdoc[ruby_targets_ruby31(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=dev-lang/duktape:= ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DESCRIPTION=Ruby bindings to the Duktape JavaScript interpeter +EAPI=8 +HOMEPAGE=https://github.com/judofyr/duktape.rb +INHERIT=ruby-fakegem +IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test +KEYWORDS=~amd64 ppc ~riscv +LICENSE=MIT +RDEPEND=dev-lang/duktape:= ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/judofyr/duktape.rb/archive/v2.7.0.0.tar.gz -> duktape-rb-2.7.0.0.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=fdc9cc74719d8d584d1b41ef97ab43d0 diff --git a/metadata/md5-cache/dev-ruby/facter-3.14.24 b/metadata/md5-cache/dev-ruby/facter-3.14.24 index 31770c6dfb1a..ca91e099c6f0 100644 --- a/metadata/md5-cache/dev-ruby/facter-3.14.24 +++ b/metadata/md5-cache/dev-ruby/facter-3.14.24 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/puppetlabs/facter/archive/3.14.24.tar.gz -> facter-3.14.24.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9acc2dca281dead887dc6140a0e9f74f diff --git a/metadata/md5-cache/dev-ruby/faker-3.1.1 b/metadata/md5-cache/dev-ruby/faker-3.1.1 new file mode 100644 index 000000000000..a94bd1e2eb10 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/faker-3.1.1 @@ -0,0 +1,17 @@ +BDEPEND=test? ( ruby_targets_ruby27? ( >=dev-ruby/i18n-1.8.11:1[ruby_targets_ruby27(-)] !=dev-ruby/i18n-1.8.11:1[ruby_targets_ruby30(-)] !=dev-ruby/i18n-1.8.11:1[ruby_targets_ruby31(-)] !=dev-ruby/i18n-1.8.11:1[ruby_targets_ruby27(-)] !=dev-ruby/i18n-1.8.11:1[ruby_targets_ruby30(-)] !=dev-ruby/i18n-1.8.11:1[ruby_targets_ruby31(-)] ! faker-3.1.1.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=dd1d779835c44ad0c6f6acbb664fa0a6 diff --git a/metadata/md5-cache/dev-ruby/faraday-2.7.4 b/metadata/md5-cache/dev-ruby/faraday-2.7.4 new file mode 100644 index 000000000000..e17249f84d86 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/faraday-2.7.4 @@ -0,0 +1,17 @@ +BDEPEND=test? ( ruby_targets_ruby27? ( || ( =dev-ruby/faraday-net_http-3.0*[ruby_targets_ruby27(-)] dev-ruby/faraday-net_http:2[ruby_targets_ruby27(-)] ) >=dev-ruby/ruby2_keywords-0.0.4[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( || ( =dev-ruby/faraday-net_http-3.0*[ruby_targets_ruby30(-)] dev-ruby/faraday-net_http:2[ruby_targets_ruby30(-)] ) >=dev-ruby/ruby2_keywords-0.0.4[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( || ( =dev-ruby/faraday-net_http-3.0*[ruby_targets_ruby31(-)] dev-ruby/faraday-net_http:2[ruby_targets_ruby31(-)] ) >=dev-ruby/ruby2_keywords-0.0.4[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( || ( =dev-ruby/faraday-net_http-3.0*[ruby_targets_ruby32(-)] dev-ruby/faraday-net_http:2[ruby_targets_ruby32(-)] ) >=dev-ruby/ruby2_keywords-0.0.4[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( test? ( >=dev-ruby/test-unit-2.4[ruby_targets_ruby27(-)] >=dev-ruby/connection_pool-2.2.2[ruby_targets_ruby27(-)] dev-ruby/rack:2.2[ruby_targets_ruby27(-)] dev-ruby/webmock[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( >=dev-ruby/test-unit-2.4[ruby_targets_ruby30(-)] >=dev-ruby/connection_pool-2.2.2[ruby_targets_ruby30(-)] dev-ruby/rack:2.2[ruby_targets_ruby30(-)] dev-ruby/webmock[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/test-unit-2.4[ruby_targets_ruby31(-)] >=dev-ruby/connection_pool-2.2.2[ruby_targets_ruby31(-)] dev-ruby/rack:2.2[ruby_targets_ruby31(-)] dev-ruby/webmock[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( >=dev-ruby/test-unit-2.4[ruby_targets_ruby32(-)] >=dev-ruby/connection_pool-2.2.2[ruby_targets_ruby32(-)] dev-ruby/rack:2.2[ruby_targets_ruby32(-)] dev-ruby/webmock[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( sys-process/lsof ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +DESCRIPTION=HTTP/REST API client library with pluggable components +EAPI=8 +HOMEPAGE=https://github.com/lostisland/faraday +INHERIT=ruby-fakegem +IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 test test +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby27? ( || ( =dev-ruby/faraday-net_http-3.0*[ruby_targets_ruby27(-)] dev-ruby/faraday-net_http:2[ruby_targets_ruby27(-)] ) >=dev-ruby/ruby2_keywords-0.0.4[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( || ( =dev-ruby/faraday-net_http-3.0*[ruby_targets_ruby30(-)] dev-ruby/faraday-net_http:2[ruby_targets_ruby30(-)] ) >=dev-ruby/ruby2_keywords-0.0.4[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( || ( =dev-ruby/faraday-net_http-3.0*[ruby_targets_ruby31(-)] dev-ruby/faraday-net_http:2[ruby_targets_ruby31(-)] ) >=dev-ruby/ruby2_keywords-0.0.4[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( || ( =dev-ruby/faraday-net_http-3.0*[ruby_targets_ruby32(-)] dev-ruby/faraday-net_http:2[ruby_targets_ruby32(-)] ) >=dev-ruby/ruby2_keywords-0.0.4[ruby_targets_ruby32(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=2 +SRC_URI=https://github.com/lostisland/faraday/archive/v2.7.4.tar.gz -> faraday-2.7.4.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=24f4243f728493ffaa611069a360e906 diff --git a/metadata/md5-cache/dev-ruby/faraday-net_http-3.0.2 b/metadata/md5-cache/dev-ruby/faraday-net_http-3.0.2 index 0e6e09113830..93cbee89dd17 100644 --- a/metadata/md5-cache/dev-ruby/faraday-net_http-3.0.2 +++ b/metadata/md5-cache/dev-ruby/faraday-net_http-3.0.2 @@ -1,17 +1,17 @@ -BDEPEND=ruby_targets_ruby27? ( test? ( >=dev-ruby/faraday-2.5[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( >=dev-ruby/faraday-2.5[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/faraday-2.5[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) +BDEPEND=ruby_targets_ruby27? ( test? ( >=dev-ruby/faraday-2.5[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( >=dev-ruby/faraday-2.5[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/faraday-2.5[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( >=dev-ruby/faraday-2.5[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) DESCRIPTION=Faraday adapter for Net::HTTP EAPI=8 HOMEPAGE=https://github.com/lostisland/faraday-net_http INHERIT=ruby-fakegem -IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test +IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) +RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/lostisland/faraday-net_http/archive/v3.0.2.tar.gz -> faraday-net_http-3.0.2.tar.gz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=1746b1c64c6d8a1c8b8b2c93b3ac2969 +_md5_=5066f2715e3f566cacedf4ac40cf6123 diff --git a/metadata/md5-cache/dev-ruby/hoe-3.26.0 b/metadata/md5-cache/dev-ruby/hoe-3.26.0 index 77dfdc94485b..70425a62968e 100644 --- a/metadata/md5-cache/dev-ruby/hoe-3.26.0 +++ b/metadata/md5-cache/dev-ruby/hoe-3.26.0 @@ -1,17 +1,17 @@ -BDEPEND=ruby_targets_ruby27? ( test? ( >=dev-ruby/minitest-5.9:5[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( >=dev-ruby/minitest-5.9:5[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/minitest-5.9:5[ruby_targets_ruby31(-)] ) ) test? ( ruby_targets_ruby27? ( >=dev-ruby/rake-0.8.7[ruby_targets_ruby27(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby30(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby31(-)] =dev-ruby/minitest-5.9:5[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( >=dev-ruby/minitest-5.9:5[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/minitest-5.9:5[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( >=dev-ruby/minitest-5.9:5[ruby_targets_ruby32(-)] ) ) test? ( ruby_targets_ruby27? ( >=dev-ruby/rake-0.8.7[ruby_targets_ruby27(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby30(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby31(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby32(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby27(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby30(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby31(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby27(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby30(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby31(-)] =dev-ruby/rake-0.8.7[ruby_targets_ruby32(-)] =dev-ruby/sus-0.6:0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/sus-0.6:0[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -DESCRIPTION=An event loop -EAPI=8 -HOMEPAGE=https://github.com/socketry/io-event -INHERIT=ruby-fakegem -IUSE=ruby_targets_ruby30 ruby_targets_ruby31 doc test test -KEYWORDS=~amd64 ~sparc -LICENSE=MIT -RDEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby30 ruby_targets_ruby31 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=1.1 -SRC_URI=https://github.com/socketry/io-event/archive/v1.1.2.tar.gz -> io-event-1.1.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a21b6149d4ca3654ab4379ae93da97ad diff --git a/metadata/md5-cache/dev-ruby/io-event-1.1.3 b/metadata/md5-cache/dev-ruby/io-event-1.1.3 deleted file mode 100644 index 2326d72a6a70..000000000000 --- a/metadata/md5-cache/dev-ruby/io-event-1.1.3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=ruby_targets_ruby30? ( test? ( >=dev-ruby/sus-0.6:0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/sus-0.6:0[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -DESCRIPTION=An event loop -EAPI=8 -HOMEPAGE=https://github.com/socketry/io-event -INHERIT=ruby-fakegem -IUSE=ruby_targets_ruby30 ruby_targets_ruby31 doc test test -KEYWORDS=~amd64 ~sparc -LICENSE=MIT -RDEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby30 ruby_targets_ruby31 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=1.1 -SRC_URI=https://github.com/socketry/io-event/archive/v1.1.3.tar.gz -> io-event-1.1.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a21b6149d4ca3654ab4379ae93da97ad diff --git a/metadata/md5-cache/dev-ruby/io-event-1.1.4 b/metadata/md5-cache/dev-ruby/io-event-1.1.4 deleted file mode 100644 index 71cc99db7567..000000000000 --- a/metadata/md5-cache/dev-ruby/io-event-1.1.4 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=ruby_targets_ruby30? ( test? ( >=dev-ruby/sus-0.6:0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/sus-0.6:0[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -DESCRIPTION=An event loop -EAPI=8 -HOMEPAGE=https://github.com/socketry/io-event -INHERIT=ruby-fakegem -IUSE=ruby_targets_ruby30 ruby_targets_ruby31 doc test test -KEYWORDS=~amd64 ~sparc -LICENSE=MIT -RDEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby30 ruby_targets_ruby31 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=1.1 -SRC_URI=https://github.com/socketry/io-event/archive/v1.1.4.tar.gz -> io-event-1.1.4.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a21b6149d4ca3654ab4379ae93da97ad diff --git a/metadata/md5-cache/dev-ruby/io-event-1.1.7 b/metadata/md5-cache/dev-ruby/io-event-1.1.7 new file mode 100644 index 000000000000..414dcfd08c60 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/io-event-1.1.7 @@ -0,0 +1,17 @@ +BDEPEND=ruby_targets_ruby30? ( test? ( >=dev-ruby/sus-0.6:0[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/sus-0.6:0[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( >=dev-ruby/sus-0.6:0[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rake[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +DESCRIPTION=An event loop +EAPI=8 +HOMEPAGE=https://github.com/socketry/io-event +INHERIT=ruby-fakegem +IUSE=ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test +KEYWORDS=~amd64 ~sparc +LICENSE=MIT +RDEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=1.1 +SRC_URI=https://github.com/socketry/io-event/archive/v1.1.7.tar.gz -> io-event-1.1.7.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=64efdd388512efa5b580470694eb37bb diff --git a/metadata/md5-cache/dev-ruby/msgpack-1.6.1 b/metadata/md5-cache/dev-ruby/msgpack-1.6.1 new file mode 100644 index 000000000000..412ef0f8d2fa --- /dev/null +++ b/metadata/md5-cache/dev-ruby/msgpack-1.6.1 @@ -0,0 +1,17 @@ +BDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +DESCRIPTION=Binary-based efficient data interchange format for ruby binding +EAPI=8 +HOMEPAGE=https://msgpack.org/ +INHERIT=ruby-fakegem +IUSE=doc ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test +KEYWORDS=~amd64 ~arm ~ppc64 ~sparc ~x86 +LICENSE=Apache-2.0 +RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/msgpack/msgpack-ruby/archive/refs/tags/v1.6.1.tar.gz -> msgpack-1.6.1.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=169dd9d728a56e0fe8c75511633c207f diff --git a/metadata/md5-cache/dev-ruby/puppet-resource_api-1.8.16 b/metadata/md5-cache/dev-ruby/puppet-resource_api-1.8.16 new file mode 100644 index 000000000000..94b2e5eb6d06 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/puppet-resource_api-1.8.16 @@ -0,0 +1,17 @@ +BDEPEND=test? ( ruby_targets_ruby27? ( >=dev-ruby/hocon-1.0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/hocon-1.0[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/hocon-1.0[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DESCRIPTION=This library provides a simple way to write new native resources for puppet. +EAPI=8 +HOMEPAGE=https://rubygems.org/gems/puppet-resource_api https://github.com/puppetlabs/puppet-resource_api +INHERIT=ruby-fakegem +IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby27? ( >=dev-ruby/hocon-1.0[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/hocon-1.0[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/hocon-1.0[ruby_targets_ruby31(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/puppetlabs/puppet-resource_api/archive/refs/tags/1.8.16.tar.gz -> puppet-resource_api-1.8.16.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=7a4d6a1dcba73f4af6e2e0566dcde2b1 diff --git a/metadata/md5-cache/dev-ruby/rbs-2.8.0 b/metadata/md5-cache/dev-ruby/rbs-2.8.0 deleted file mode 100644 index eacfc721de3d..000000000000 --- a/metadata/md5-cache/dev-ruby/rbs-2.8.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-ruby/rdoc[ruby_targets_ruby27(-)] dev-ruby/test-unit[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/bundler[ruby_targets_ruby30(-)] dev-ruby/rdoc[ruby_targets_ruby30(-)] dev-ruby/test-unit[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/bundler[ruby_targets_ruby31(-)] dev-ruby/rdoc[ruby_targets_ruby31(-)] dev-ruby/test-unit[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -DESCRIPTION=The language for type signatures for Ruby and standard library definitions -EAPI=8 -HOMEPAGE=https://github.com/ruby/rbs -INHERIT=ruby-fakegem -IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=|| ( Ruby-BSD BSD-2 ) -RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ruby/rbs/archive/v2.8.0.tar.gz -> rbs-2.8.0.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=c2565b3dee9f7353284e096c0b083e5f diff --git a/metadata/md5-cache/dev-ruby/rbs-2.8.2 b/metadata/md5-cache/dev-ruby/rbs-2.8.2 deleted file mode 100644 index 2046ac93afdb..000000000000 --- a/metadata/md5-cache/dev-ruby/rbs-2.8.2 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-ruby/rdoc[ruby_targets_ruby27(-)] dev-ruby/test-unit[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/bundler[ruby_targets_ruby30(-)] dev-ruby/rdoc[ruby_targets_ruby30(-)] dev-ruby/test-unit[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/bundler[ruby_targets_ruby31(-)] dev-ruby/rdoc[ruby_targets_ruby31(-)] dev-ruby/test-unit[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -DESCRIPTION=The language for type signatures for Ruby and standard library definitions -EAPI=8 -HOMEPAGE=https://github.com/ruby/rbs -INHERIT=ruby-fakegem -IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=|| ( Ruby-BSD BSD-2 ) -RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ruby/rbs/archive/refs/tags/v2.8.2.tar.gz -> rbs-2.8.2.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=1d2e950c4b722dc9870134dff5c2a350 diff --git a/metadata/md5-cache/dev-ruby/rbs-2.8.3 b/metadata/md5-cache/dev-ruby/rbs-2.8.3 deleted file mode 100644 index dcb4bac131e2..000000000000 --- a/metadata/md5-cache/dev-ruby/rbs-2.8.3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-ruby/rdoc[ruby_targets_ruby27(-)] dev-ruby/test-unit[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/bundler[ruby_targets_ruby30(-)] dev-ruby/rdoc[ruby_targets_ruby30(-)] dev-ruby/test-unit[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/bundler[ruby_targets_ruby31(-)] dev-ruby/rdoc[ruby_targets_ruby31(-)] dev-ruby/test-unit[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -DESCRIPTION=The language for type signatures for Ruby and standard library definitions -EAPI=8 -HOMEPAGE=https://github.com/ruby/rbs -INHERIT=ruby-fakegem -IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=|| ( Ruby-BSD BSD-2 ) -RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ruby/rbs/archive/refs/tags/v2.8.3.tar.gz -> rbs-2.8.3.tar.gz -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=b1f74147187f31a0176ce70a19eb20e3 diff --git a/metadata/md5-cache/dev-ruby/rbs-3.0.4 b/metadata/md5-cache/dev-ruby/rbs-3.0.4 new file mode 100644 index 000000000000..7f027a31c289 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/rbs-3.0.4 @@ -0,0 +1,17 @@ +BDEPEND=ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] dev-ruby/rdoc[ruby_targets_ruby27(-)] dev-ruby/test-unit[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/bundler[ruby_targets_ruby30(-)] dev-ruby/rdoc[ruby_targets_ruby30(-)] dev-ruby/test-unit[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/bundler[ruby_targets_ruby31(-)] dev-ruby/rdoc[ruby_targets_ruby31(-)] dev-ruby/test-unit[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/bundler[ruby_targets_ruby32(-)] dev-ruby/rdoc[ruby_targets_ruby32(-)] dev-ruby/test-unit[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rake[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +DESCRIPTION=The language for type signatures for Ruby and standard library definitions +EAPI=8 +HOMEPAGE=https://github.com/ruby/rbs +INHERIT=ruby-fakegem +IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=|| ( Ruby-BSD BSD-2 ) +RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/ruby/rbs/archive/refs/tags/v3.0.4.tar.gz -> rbs-3.0.4.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=4835b91d6ef573fbb3f3bdbdb69e9223 diff --git a/metadata/md5-cache/dev-ruby/recog-2.3.23 b/metadata/md5-cache/dev-ruby/recog-2.3.23 index 28105ba060e0..d437714cc62f 100644 --- a/metadata/md5-cache/dev-ruby/recog-2.3.23 +++ b/metadata/md5-cache/dev-ruby/recog-2.3.23 @@ -1,4 +1,4 @@ -BDEPEND=test? ( ruby_targets_ruby27? ( dev-ruby/nokogiri[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/nokogiri[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/regexp_parser[ruby_targets_ruby27(-)] dev-ruby/rspec:3[ruby_targets_ruby27(-)] || ( dev-util/aruba:2[ruby_targets_ruby27(-)] dev-util/aruba:1[ruby_targets_ruby27(-)] ) dev-util/cucumber[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/regexp_parser[ruby_targets_ruby30(-)] dev-ruby/rspec:3[ruby_targets_ruby30(-)] || ( dev-util/aruba:2[ruby_targets_ruby30(-)] dev-util/aruba:1[ruby_targets_ruby30(-)] ) dev-util/cucumber[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) +BDEPEND=test? ( ruby_targets_ruby27? ( dev-ruby/nokogiri[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/nokogiri[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/regexp_parser[ruby_targets_ruby27(-)] dev-ruby/rspec:3[ruby_targets_ruby27(-)] dev-util/aruba:2[ruby_targets_ruby27(-)] dev-util/cucumber[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/regexp_parser[ruby_targets_ruby30(-)] dev-ruby/rspec:3[ruby_targets_ruby30(-)] dev-util/aruba:2[ruby_targets_ruby30(-)] dev-util/cucumber[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) DESCRIPTION=Pattern recognition for hosts, services, and content @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/recog-2.3.23.gem _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=edd235fe65a9300dc4eac8d8f2f89013 +_md5_=1457aa152bb8d28cb3789ac2fe198028 diff --git a/metadata/md5-cache/dev-ruby/recog-3.1.1 b/metadata/md5-cache/dev-ruby/recog-3.1.1 new file mode 100644 index 000000000000..b29b58e870b7 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/recog-3.1.1 @@ -0,0 +1,17 @@ +BDEPEND=test? ( ruby_targets_ruby27? ( dev-ruby/nokogiri[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/nokogiri[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/nokogiri[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/regexp_parser[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/regexp_parser[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/regexp_parser[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DESCRIPTION=Pattern recognition for hosts, services, and content +EAPI=8 +HOMEPAGE=https://github.com/rapid7/recog +INHERIT=ruby-fakegem +IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=BSD-2 +RDEPEND=ruby_targets_ruby27? ( dev-ruby/nokogiri[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/nokogiri[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/nokogiri[ruby_targets_ruby31(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=3 +SRC_URI=https://rubygems.org/gems/recog-3.1.1.gem +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=2d1c721733ac55146ab7f1edc938c689 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk2-3.5.1 b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.5.1 new file mode 100644 index 000000000000..de8ff8f6e0b4 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.5.1 @@ -0,0 +1,17 @@ +BDEPEND=test? ( ruby_targets_ruby27? ( ~dev-ruby/ruby-gdkpixbuf2-3.5.1[ruby_targets_ruby27(-)] ~dev-ruby/ruby-atk-3.5.1[ruby_targets_ruby27(-)] ~dev-ruby/ruby-pango-3.5.1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( ~dev-ruby/ruby-gdkpixbuf2-3.5.1[ruby_targets_ruby30(-)] ~dev-ruby/ruby-atk-3.5.1[ruby_targets_ruby30(-)] ~dev-ruby/ruby-pango-3.5.1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( ~dev-ruby/ruby-gdkpixbuf2-3.5.1[ruby_targets_ruby31(-)] ~dev-ruby/ruby-atk-3.5.1[ruby_targets_ruby31(-)] ~dev-ruby/ruby-pango-3.5.1[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) virtual/pkgconfig ruby_targets_ruby27? ( dev-ruby/pkg-config[ruby_targets_ruby27(-)] test? ( >=dev-ruby/test-unit-2[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( dev-ruby/pkg-config[ruby_targets_ruby30(-)] test? ( >=dev-ruby/test-unit-2[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( dev-ruby/pkg-config[ruby_targets_ruby31(-)] test? ( >=dev-ruby/test-unit-2[ruby_targets_ruby31(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=dev-libs/glib x11-libs/cairo x11-libs/gdk-pixbuf[introspection] x11-libs/gtk+:2[introspection] x11-libs/libX11 x11-libs/pango[introspection] x11-themes/hicolor-icon-theme ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DESCRIPTION=Ruby Gtk2 bindings +EAPI=7 +HOMEPAGE=https://ruby-gnome.github.io/ +INHERIT=ruby-ng-gnome2 +IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 test test test +KEYWORDS=~amd64 ~ppc ~riscv ~x86 +LICENSE=LGPL-2.1+ +RDEPEND=dev-libs/glib x11-libs/cairo x11-libs/gdk-pixbuf[introspection] x11-libs/gtk+:2[introspection] x11-libs/libX11 x11-libs/pango[introspection] ruby_targets_ruby27? ( ~dev-ruby/ruby-gdkpixbuf2-3.5.1[ruby_targets_ruby27(-)] ~dev-ruby/ruby-atk-3.5.1[ruby_targets_ruby27(-)] ~dev-ruby/ruby-pango-3.5.1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( ~dev-ruby/ruby-gdkpixbuf2-3.5.1[ruby_targets_ruby30(-)] ~dev-ruby/ruby-atk-3.5.1[ruby_targets_ruby30(-)] ~dev-ruby/ruby-pango-3.5.1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( ~dev-ruby/ruby-gdkpixbuf2-3.5.1[ruby_targets_ruby31(-)] ~dev-ruby/ruby-atk-3.5.1[ruby_targets_ruby31(-)] ~dev-ruby/ruby-pango-3.5.1[ruby_targets_ruby31(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/ruby-gnome/ruby-gnome/archive/3.5.1.tar.gz -> ruby-gnome2-3.5.1.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-ng-gnome2 1b440eadff2fe9b263f09f347afbc5cd ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 +_md5_=04e8f3b535b74a7ab2bcfcf63041fa01 diff --git a/metadata/md5-cache/dev-ruby/ruby_smb-1.1.0-r1 b/metadata/md5-cache/dev-ruby/ruby_smb-1.1.0-r1 new file mode 100644 index 000000000000..dacf4b5057da --- /dev/null +++ b/metadata/md5-cache/dev-ruby/ruby_smb-1.1.0-r1 @@ -0,0 +1,17 @@ +BDEPEND=test? ( ruby_targets_ruby27? ( dev-ruby/bindata:*[ruby_targets_ruby27(-)] dev-ruby/rubyntlm[ruby_targets_ruby27(-)] dev-ruby/windows_error[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/bindata:*[ruby_targets_ruby30(-)] dev-ruby/rubyntlm[ruby_targets_ruby30(-)] dev-ruby/windows_error[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/bindata:*[ruby_targets_ruby31(-)] dev-ruby/rubyntlm[ruby_targets_ruby31(-)] dev-ruby/windows_error[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DESCRIPTION=pure Ruby implementation of the SMB Protocol Family +EAPI=8 +HOMEPAGE=https://github.com/rapid7/ruby_smb +INHERIT=ruby-fakegem +IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=BSD +RDEPEND=ruby_targets_ruby27? ( dev-ruby/bindata:*[ruby_targets_ruby27(-)] dev-ruby/rubyntlm[ruby_targets_ruby27(-)] dev-ruby/windows_error[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( dev-ruby/bindata:*[ruby_targets_ruby30(-)] dev-ruby/rubyntlm[ruby_targets_ruby30(-)] dev-ruby/windows_error[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/bindata:*[ruby_targets_ruby31(-)] dev-ruby/rubyntlm[ruby_targets_ruby31(-)] dev-ruby/windows_error[ruby_targets_ruby31(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=1 +SRC_URI=https://rubygems.org/gems/ruby_smb-1.1.0.gem +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=16db451b168723cb2d15a609c7f0f839 diff --git a/metadata/md5-cache/dev-ruby/rubyntlm-0.6.3-r1 b/metadata/md5-cache/dev-ruby/rubyntlm-0.6.3-r1 new file mode 100644 index 000000000000..7b5c521f4e1a --- /dev/null +++ b/metadata/md5-cache/dev-ruby/rubyntlm-0.6.3-r1 @@ -0,0 +1,17 @@ +BDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +DESCRIPTION=Ruby/NTLM provides message creator and parser for the NTLM authentication +EAPI=8 +HOMEPAGE=https://github.com/winrb/rubyntlm +INHERIT=ruby-fakegem +IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test +KEYWORDS=~amd64 ~arm ~ppc64 ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://rubygems.org/gems/rubyntlm-0.6.3.gem +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=47518d5c22f1f4df665b4f64339f58d4 diff --git a/metadata/md5-cache/dev-ruby/sqlite3-1.6.1 b/metadata/md5-cache/dev-ruby/sqlite3-1.6.1 new file mode 100644 index 000000000000..ea361eaa4637 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/sqlite3-1.6.1 @@ -0,0 +1,17 @@ +BDEPEND=ruby_targets_ruby27? ( dev-ruby/mini_portile2:2.8[ruby_targets_ruby27(-)] doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] dev-ruby/redcloth[ruby_targets_ruby27(-)] ) test? ( dev-ruby/minitest:5[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( dev-ruby/mini_portile2:2.8[ruby_targets_ruby30(-)] doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] dev-ruby/redcloth[ruby_targets_ruby30(-)] ) test? ( dev-ruby/minitest:5[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( dev-ruby/mini_portile2:2.8[ruby_targets_ruby31(-)] doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] dev-ruby/redcloth[ruby_targets_ruby31(-)] ) test? ( dev-ruby/minitest:5[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=>=dev-db/sqlite-3.39.4:3 ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DESCRIPTION=An extension library to access a SQLite database from Ruby +EAPI=8 +HOMEPAGE=https://github.com/sparklemotion/sqlite3-ruby +INHERIT=ruby-fakegem +IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=BSD +RDEPEND=>=dev-db/sqlite-3.39.4:3 ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://rubygems.org/gems/sqlite3-1.6.1.gem +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=af09c218d7fc5d74c6aa8b2417726fe4 diff --git a/metadata/md5-cache/dev-ruby/text-hyphen-1.5.0 b/metadata/md5-cache/dev-ruby/text-hyphen-1.5.0 new file mode 100644 index 000000000000..32aa53c1a007 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/text-hyphen-1.5.0 @@ -0,0 +1,17 @@ +BDEPEND=ruby_targets_ruby27? ( test? ( >=dev-ruby/hoe-2.8.0[ruby_targets_ruby27(-)] dev-ruby/test-unit:2[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( >=dev-ruby/hoe-2.8.0[ruby_targets_ruby30(-)] dev-ruby/test-unit:2[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( >=dev-ruby/hoe-2.8.0[ruby_targets_ruby31(-)] dev-ruby/test-unit:2[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DESCRIPTION=Hyphenates words according to the rules of the language the word is written in +EAPI=8 +HOMEPAGE=https://rubygems.org/gems/text-hyphen +INHERIT=ruby-fakegem +IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test +KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris +LICENSE=MIT +RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://rubygems.org/gems/text-hyphen-1.5.0.gem +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=80d2479fab33d06771297a60cf7904ec diff --git a/metadata/md5-cache/dev-ruby/thor-1.2.1-r1 b/metadata/md5-cache/dev-ruby/thor-1.2.1-r1 index cda12395acbc..e7be29f00106 100644 --- a/metadata/md5-cache/dev-ruby/thor-1.2.1-r1 +++ b/metadata/md5-cache/dev-ruby/thor-1.2.1-r1 @@ -1,4 +1,4 @@ -BDEPEND=ruby_targets_ruby27? ( test? ( dev-ruby/childlabor[ruby_targets_ruby27(-)] dev-ruby/webmock[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) +BDEPEND=ruby_targets_ruby27? ( test? ( dev-ruby/childlabor[ruby_targets_ruby27(-)] dev-ruby/webmock[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/childlabor[ruby_targets_ruby30(-)] dev-ruby/webmock[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/childlabor[ruby_targets_ruby31(-)] dev-ruby/webmock[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) DESCRIPTION=A scripting framework that replaces rake and sake @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/erikhuda/thor/archive/v1.2.1.tar.gz -> thor-git-1.2.1.tgz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=bd1b886f46d22b781be0fb1280772439 +_md5_=6c68cda373bf369750168094bda9e64d diff --git a/metadata/md5-cache/dev-ruby/timecop-0.9.5 b/metadata/md5-cache/dev-ruby/timecop-0.9.5 index f3375b33ee8b..12b8482513cf 100644 --- a/metadata/md5-cache/dev-ruby/timecop-0.9.5 +++ b/metadata/md5-cache/dev-ruby/timecop-0.9.5 @@ -1,17 +1,17 @@ -BDEPEND=ruby_targets_ruby27? ( test? ( dev-ruby/mocha[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/mocha[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/mocha[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) +BDEPEND=ruby_targets_ruby27? ( test? ( dev-ruby/mocha[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/mocha[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/mocha[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/mocha[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rake[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) DESCRIPTION=A gem providing 'time travel' and 'time freezing' capabilities EAPI=8 HOMEPAGE=https://github.com/travisjeffery/timecop INHERIT=ruby-fakegem -IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test +IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) +RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/timecop-0.9.5.gem _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 5ca4e49abed8e3a2f7b56920eadee157 ruby-fakegem b4704898f1b861fc19d465c8af7abe9c ruby-ng 69b6ab182fab608b42dee39cae3d730c ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a355f4f1e1156550910978e45bbe8e2b +_md5_=6b56b78b157ba5234a758dfd3bbc3e25 diff --git a/metadata/md5-cache/dev-scheme/Manifest.gz b/metadata/md5-cache/dev-scheme/Manifest.gz index 826fc7afe512..b0c65554ec12 100644 Binary files a/metadata/md5-cache/dev-scheme/Manifest.gz and b/metadata/md5-cache/dev-scheme/Manifest.gz differ diff --git a/metadata/md5-cache/dev-scheme/skribilo-0.10.0 b/metadata/md5-cache/dev-scheme/skribilo-0.10.0 new file mode 100644 index 000000000000..7712385eab6b --- /dev/null +++ b/metadata/md5-cache/dev-scheme/skribilo-0.10.0 @@ -0,0 +1,16 @@ +BDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) +DEFINED_PHASES=compile configure install postinst postrm prepare +DEPEND=app-text/ghostscript-gpl media-gfx/imagemagick >=dev-scheme/guile-2.0.0:= dev-scheme/guile-lib dev-scheme/guile-reader +DESCRIPTION=Document production tool written in Guile Scheme +EAPI=8 +HOMEPAGE=https://www.nongnu.org/skribilo/ +INHERIT=elisp-common +IUSE=emacs +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=app-text/ghostscript-gpl media-gfx/imagemagick >=dev-scheme/guile-2.0.0:= dev-scheme/guile-lib dev-scheme/guile-reader +RESTRICT=strip test +SLOT=0 +SRC_URI=mirror://nongnu/skribilo/skribilo-0.10.0.tar.gz +_eclasses_=elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b +_md5_=ee2935bcacffebacb44edc1a123e5312 diff --git a/metadata/md5-cache/dev-tex/Manifest.gz b/metadata/md5-cache/dev-tex/Manifest.gz index faef7f857e86..61fb50dc6ff9 100644 Binary files a/metadata/md5-cache/dev-tex/Manifest.gz and b/metadata/md5-cache/dev-tex/Manifest.gz differ diff --git a/metadata/md5-cache/dev-tex/bibtexu-3.71_p20210325 b/metadata/md5-cache/dev-tex/bibtexu-3.71_p20210325 index 9e4099133918..1eb6380a613d 100644 --- a/metadata/md5-cache/dev-tex/bibtexu-3.71_p20210325 +++ b/metadata/md5-cache/dev-tex/bibtexu-3.71_p20210325 @@ -9,5 +9,5 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=GPL-2 RDEPEND=>=dev-libs/kpathsea-6.2.1:= >=dev-libs/icu-4.4:= SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtex8-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtexu-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtex8.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtexu.doc-2021.tar.xz ) -_md5_=b209d523d481c4f98a37e2fe7f08496d +SRC_URI=https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/texlive-20210325-source.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-bibtex8-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-bibtexu-2021.tar.xz doc? ( https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-bibtex8.doc-2021.tar.xz https://dev.gentoo.org/~{zlogene,sam}/distfiles/texlive/tl-bibtexu.doc-2021.tar.xz ) +_md5_=284c20c01e6fc690be103d8c5fc6cc58 diff --git a/metadata/md5-cache/dev-texlive/Manifest.gz b/metadata/md5-cache/dev-texlive/Manifest.gz index ec8bacbfb168..a0d891487319 100644 Binary files a/metadata/md5-cache/dev-texlive/Manifest.gz and b/metadata/md5-cache/dev-texlive/Manifest.gz differ diff --git a/metadata/md5-cache/dev-texlive/texlive-basic-2021 b/metadata/md5-cache/dev-texlive/texlive-basic-2021 index 7fcc03a4d102..bc262de4d608 100644 --- a/metadata/md5-cache/dev-texlive/texlive-basic-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-basic-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=GPL-1 GPL-2 LPPL-1.3 LPPL-1.3c MIT OFL public-domain TeX TeX-other-free RDEPEND=!=app-text/texlive-core-2020[luajittex?] >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorprofiles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorprofiles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enctex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enctex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etex-pkg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etex-pkg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-def-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-def-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyph-utf8-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyph-utf8-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphenex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphenex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifplatform-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifplatform-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iftex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iftex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knuth-lib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knuth-lib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knuth-local-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knuth-local-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-alt-getopt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-alt-getopt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahbtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahbtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metafont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metafont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mflogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfware-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfware-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ini-files-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ini-files-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-common-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-common-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-docindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-docindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-en-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-en-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-msg-translations-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-msg-translations-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlshell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlshell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-data-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-data-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-basic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-basic-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorprofiles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorprofiles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enctex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enctex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etex-pkg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etex-pkg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-def.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-def.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyph-utf8.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyph-utf8.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifplatform.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifplatform.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iftex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iftex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-alt-getopt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-alt-getopt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahbtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahbtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metafont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metafont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mflogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfware.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfware.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ini-files.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ini-files.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-common.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-common.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-docindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-docindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-en.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-en.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlshell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlshell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-data.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-data.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsfonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyph-utf8.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyph-utf8.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphenex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphenex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifplatform.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifplatform.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflogo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mflogo.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorprofiles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorprofiles-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorprofiles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enctex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enctex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enctex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etex-pkg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etex-pkg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etex-pkg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-def-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-def-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphics-def-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyph-utf8-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyph-utf8-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyph-utf8-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphenex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphenex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphenex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifplatform-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifplatform-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifplatform-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iftex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iftex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iftex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knuth-lib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knuth-lib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-knuth-lib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knuth-local-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knuth-local-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-knuth-local-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-alt-getopt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-alt-getopt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-alt-getopt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahbtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahbtex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luahbtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makeindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metafont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metafont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metafont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mflogo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mflogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfware-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfware-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfware-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdftex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plain-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ini-files-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ini-files-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-ini-files-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-common-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-common-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-common-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-docindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-docindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-docindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-en-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-en-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-en-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-msg-translations-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-msg-translations-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-msg-translations-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlshell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlshell-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tlshell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-data-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-data-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unicode-data-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-basic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-basic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-basic-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorprofiles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorprofiles.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorprofiles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enctex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enctex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enctex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etex-pkg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etex-pkg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etex-pkg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-def.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-def.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphics-def.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyph-utf8.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyph-utf8.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyph-utf8.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifplatform.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifplatform.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifplatform.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iftex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iftex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iftex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-alt-getopt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-alt-getopt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-alt-getopt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahbtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahbtex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luahbtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makeindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metafont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metafont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metafont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mflogo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mflogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfware.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfware.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfware.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdftex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ini-files.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ini-files.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-ini-files.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-common.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-common.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-common.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-docindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-docindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-docindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-en.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-en.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-en.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlshell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlshell.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tlshell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-data.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-data.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unicode-data.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsfonts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsfonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyph-utf8.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyph-utf8.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyph-utf8.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphenex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphenex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphenex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifplatform.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifplatform.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifplatform.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflogo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mflogo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mflogo.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=2fed85f2f74a4911e6b73ab33805caf6 diff --git a/metadata/md5-cache/dev-texlive/texlive-bibtexextra-2021 b/metadata/md5-cache/dev-texlive/texlive-bibtexextra-2021 index 70d15b287ad7..23e80b565e67 100644 --- a/metadata/md5-cache/dev-texlive/texlive-bibtexextra-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-bibtexextra-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=Artistic-2 GPL-2 RDEPEND=>=dev-texlive/texlive-latex-2021 >=dev-texlive/texlive-latex-2019 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aaai-named-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aaai-named-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aichej-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aichej-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ajl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ajl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsrefs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsrefs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-annotate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-annotate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apacite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apacite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apalike2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apalike2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaeologie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaeologie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authordate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authordate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beebe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beebe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-besjournals-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-besjournals-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bestpapers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bestpapers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bib2gls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bib2gls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibarts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibarts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibexport-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibexport-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibhtml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibhtml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-abnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-abnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ajc2020unofficial-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ajc2020unofficial-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-anonymous-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-anonymous-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-apa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-apa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-apa6-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-apa6-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-archaeology-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-archaeology-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-arthistory-bonn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-arthistory-bonn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bookinarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bookinarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bookinother-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bookinother-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bwl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bwl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-caspervector-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-caspervector-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-chem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-chem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-chicago-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-chicago-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-claves-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-claves-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-dw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-dw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-enc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-enc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-fiwi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-fiwi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-gb7714-2015-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-gb7714-2015-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-german-legal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-german-legal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-gost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-gost-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-historian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-historian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ieee-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ieee-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ijsra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ijsra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-iso690-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-iso690-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-jura2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-jura2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-juradiss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-juradiss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-license-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-license-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-lni-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-lni-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-luh-ipw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-luh-ipw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-manuscripts-philology-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-manuscripts-philology-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-mla-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-mla-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-morenames-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-morenames-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-multiple-dm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-multiple-dm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-musuos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-musuos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nature-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nature-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nejm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nejm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nottsclassic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nottsclassic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-opcit-booktitle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-opcit-booktitle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-oxref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-oxref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-philosophy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-philosophy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-phys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-phys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-publist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-publist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-realauthor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-realauthor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-sbl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-sbl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-science-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-science-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-shortfields-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-shortfields-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-socialscienceshuberlin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-socialscienceshuberlin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-software-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-software-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-source-division-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-source-division-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-subseries-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-subseries-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-swiss-legal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-swiss-legal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-trad-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-trad-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-true-citepages-omit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-true-citepages-omit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-unified-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-unified-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-vancouver-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-vancouver-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex2bibitem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex2bibitem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtexperllibs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtexperllibs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopicprefix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopicprefix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibunits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibunits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biolett-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biolett-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookdb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookdb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breakcites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breakcites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chbibref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chbibref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chicago-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chicago-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chicagoa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chicagoa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chicago-annote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chicago-annote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chembst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chembst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chscite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chscite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-citeall-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-citeall-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-citeref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-citeref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-compactbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-compactbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossrefware-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossrefware-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-custom-bib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-custom-bib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-din1505-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-din1505-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dk-bib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dk-bib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doipubmed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doipubmed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecobiblatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecobiblatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econ-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econ-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-economic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-economic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-francais-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-francais-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gbt7714-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gbt7714-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geschichtsfrkl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geschichtsfrkl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harvard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harvard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harvmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harvmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-historische-zeitschrift-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-historische-zeitschrift-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ietfbibs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ietfbibs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijqc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijqc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inlinebib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inlinebib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iopart-num-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iopart-num-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-is-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-is-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jbact-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jbact-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jmb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jmb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jneurosci-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jneurosci-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurabib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurabib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ksfh_nat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ksfh_nat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltb2bib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltb2bib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logreq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logreq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luabibentry-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luabibentry-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-margbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-margbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibibliography-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibibliography-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-munich-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-munich-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nmbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nmbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes2bib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes2bib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notex-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notex-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oscola-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oscola-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perception-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perception-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plainyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plainyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pnas2009-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pnas2009-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showtags-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showtags-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sort-by-letters-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sort-by-letters-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turabian-formatting-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turabian-formatting-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uni-wtal-ger-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uni-wtal-ger-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uni-wtal-lin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uni-wtal-lin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urlbst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urlbst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-usebib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-usebib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-windycity-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-windycity-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zootaxa-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zootaxa-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-bibtexextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-bibtexextra-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsrefs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsrefs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apacite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apacite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaeologie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaeologie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authordate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authordate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-besjournals.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-besjournals.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bestpapers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bestpapers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bib2gls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bib2gls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibarts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibarts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibexport.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibexport.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibhtml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibhtml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-abnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-abnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ajc2020unofficial.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ajc2020unofficial.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-anonymous.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-anonymous.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-apa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-apa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-apa6.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-apa6.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-archaeology.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-archaeology.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-arthistory-bonn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-arthistory-bonn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bookinarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bookinarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bookinother.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bookinother.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bwl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bwl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-caspervector.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-caspervector.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-chem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-chem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-chicago.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-chicago.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-claves.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-claves.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-dw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-dw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-enc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-enc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-fiwi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-fiwi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-gb7714-2015.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-gb7714-2015.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-german-legal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-german-legal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-gost.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-gost.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-historian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-historian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ieee.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ieee.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ijsra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ijsra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-iso690.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-iso690.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-jura2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-jura2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-juradiss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-juradiss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-license.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-license.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-lni.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-lni.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-luh-ipw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-luh-ipw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-manuscripts-philology.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-manuscripts-philology.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-mla.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-mla.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-morenames.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-morenames.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-multiple-dm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-multiple-dm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-musuos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-musuos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nature.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nature.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nejm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nejm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nottsclassic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nottsclassic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-opcit-booktitle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-opcit-booktitle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-oxref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-oxref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-philosophy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-philosophy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-phys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-phys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-publist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-publist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-realauthor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-realauthor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-sbl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-sbl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-science.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-science.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-shortfields.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-shortfields.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-socialscienceshuberlin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-socialscienceshuberlin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-software.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-software.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-source-division.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-source-division.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-subseries.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-subseries.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-swiss-legal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-swiss-legal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-trad.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-trad.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-true-citepages-omit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-true-citepages-omit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-unified.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-unified.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-vancouver.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-vancouver.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex2bibitem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex2bibitem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopicprefix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopicprefix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibunits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibunits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biolett-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biolett-bst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookdb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookdb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breakcites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breakcites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chbibref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chbibref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chicago-annote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chicago-annote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chembst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chembst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chscite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chscite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-citeall.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-citeall.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-citeref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-citeref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossrefware.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossrefware.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-custom-bib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-custom-bib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-din1505.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-din1505.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dk-bib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dk-bib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doipubmed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doipubmed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecobiblatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecobiblatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econ-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econ-bst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-economic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-economic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-francais-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-francais-bst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gbt7714.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gbt7714.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geschichtsfrkl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geschichtsfrkl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harvard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harvard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harvmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harvmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-historische-zeitschrift.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-historische-zeitschrift.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ietfbibs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ietfbibs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijqc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijqc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inlinebib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inlinebib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iopart-num.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iopart-num.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-is-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-is-bst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jneurosci.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jneurosci.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurabib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurabib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltb2bib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltb2bib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logreq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logreq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luabibentry.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luabibentry.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-margbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-margbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibibliography.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibibliography.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-munich.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-munich.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nmbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nmbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes2bib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes2bib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oscola.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oscola.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perception.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perception.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showtags.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showtags.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sort-by-letters.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sort-by-letters.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turabian-formatting.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turabian-formatting.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uni-wtal-ger.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uni-wtal-ger.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uni-wtal-lin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uni-wtal-lin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urlbst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urlbst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-usebib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-usebib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-windycity.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-windycity.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zootaxa-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zootaxa-bst.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsrefs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsrefs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apacite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apacite.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaeologie.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaeologie.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bib2gls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bib2gls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibarts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibarts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biber.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibexport.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibexport.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-archaeology.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-archaeology.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nejm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nejm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-oxref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-oxref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-philosophy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-philosophy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-software.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-software.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtexperllibs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtexperllibs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopicprefix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopicprefix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibunits.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibunits.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chembst.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chembst.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chscite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chscite.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-custom-bib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-custom-bib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dk-bib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dk-bib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doipubmed.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doipubmed.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gbt7714.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gbt7714.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geschichtsfrkl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geschichtsfrkl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harvard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harvard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icite.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurabib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurabib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltb2bib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltb2bib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luabibentry.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luabibentry.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-margbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-margbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibibliography.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibibliography.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nmbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nmbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes2bib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes2bib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urlbst.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urlbst.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-usebib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-usebib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcite.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aaai-named-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aaai-named-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aaai-named-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aichej-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aichej-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aichej-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ajl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ajl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ajl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsrefs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsrefs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsrefs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-annotate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-annotate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-annotate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apacite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apacite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apacite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apalike2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apalike2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apalike2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaeologie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaeologie-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-archaeologie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authordate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authordate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-authordate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beebe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beebe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beebe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-besjournals-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-besjournals-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-besjournals-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bestpapers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bestpapers-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bestpapers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bib2gls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bib2gls-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bib2gls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibarts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibarts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibarts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biber-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibexport-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibexport-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibexport-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibhtml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibhtml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibhtml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-abnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-abnt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-abnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ajc2020unofficial-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ajc2020unofficial-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-ajc2020unofficial-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-anonymous-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-anonymous-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-anonymous-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-apa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-apa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-apa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-apa6-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-apa6-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-apa6-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-archaeology-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-archaeology-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-archaeology-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-arthistory-bonn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-arthistory-bonn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-arthistory-bonn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-bath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bookinarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bookinarticle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-bookinarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bookinother-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bookinother-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-bookinother-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bwl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bwl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-bwl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-caspervector-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-caspervector-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-caspervector-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-chem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-chem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-chem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-chicago-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-chicago-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-chicago-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-claves-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-claves-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-claves-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-dw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-dw-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-dw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-enc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-enc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-enc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-ext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-fiwi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-fiwi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-fiwi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-gb7714-2015-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-gb7714-2015-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-gb7714-2015-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-german-legal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-german-legal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-german-legal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-gost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-gost-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-gost-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-historian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-historian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-historian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ieee-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ieee-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-ieee-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ijsra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ijsra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-ijsra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-iso690-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-iso690-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-iso690-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-jura2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-jura2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-jura2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-juradiss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-juradiss-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-juradiss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-license-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-license-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-license-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-lni-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-lni-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-lni-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-luh-ipw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-luh-ipw-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-luh-ipw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-manuscripts-philology-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-manuscripts-philology-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-manuscripts-philology-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-mla-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-mla-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-mla-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-morenames-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-morenames-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-morenames-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-multiple-dm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-multiple-dm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-multiple-dm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-musuos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-musuos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-musuos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nature-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nature-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-nature-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nejm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nejm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-nejm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nottsclassic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nottsclassic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-nottsclassic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-opcit-booktitle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-opcit-booktitle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-opcit-booktitle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-oxref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-oxref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-oxref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-philosophy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-philosophy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-philosophy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-phys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-phys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-phys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-publist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-publist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-publist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-realauthor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-realauthor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-realauthor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-sbl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-sbl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-sbl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-science-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-science-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-science-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-shortfields-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-shortfields-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-shortfields-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-socialscienceshuberlin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-socialscienceshuberlin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-socialscienceshuberlin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-software-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-software-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-software-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-source-division-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-source-division-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-source-division-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-subseries-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-subseries-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-subseries-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-swiss-legal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-swiss-legal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-swiss-legal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-trad-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-trad-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-trad-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-true-citepages-omit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-true-citepages-omit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-true-citepages-omit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-unified-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-unified-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-unified-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-vancouver-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-vancouver-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-vancouver-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex2bibitem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex2bibitem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex2bibitem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtexperllibs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtexperllibs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibtexperllibs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibtopic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopicprefix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopicprefix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibtopicprefix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibunits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibunits-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibunits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biolett-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biolett-bst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biolett-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookdb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookdb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookdb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breakcites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breakcites-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-breakcites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cell-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chbibref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chbibref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chbibref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chicago-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chicago-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chicago-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chicagoa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chicagoa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chicagoa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chicago-annote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chicago-annote-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chicago-annote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chembst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chembst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chembst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chscite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chscite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chscite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-citeall-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-citeall-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-citeall-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-citeref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-citeref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-citeref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-compactbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-compactbib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-compactbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossrefware-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossrefware-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crossrefware-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-custom-bib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-custom-bib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-custom-bib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-din1505-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-din1505-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-din1505-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dk-bib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dk-bib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dk-bib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doipubmed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doipubmed-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doipubmed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecobiblatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecobiblatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecobiblatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econ-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econ-bst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-econ-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-economic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-economic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-economic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fbs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figbib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-figbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footbib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-francais-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-francais-bst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-francais-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gbt7714-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gbt7714-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gbt7714-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geschichtsfrkl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geschichtsfrkl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-geschichtsfrkl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harvard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harvard-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harvard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harvmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harvmac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harvmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-historische-zeitschrift-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-historische-zeitschrift-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-historische-zeitschrift-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-icite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ietfbibs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ietfbibs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ietfbibs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijqc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijqc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ijqc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inlinebib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inlinebib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inlinebib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iopart-num-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iopart-num-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iopart-num-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-is-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-is-bst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-is-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jbact-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jbact-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jbact-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jmb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jmb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jmb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jneurosci-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jneurosci-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jneurosci-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurabib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurabib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jurabib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ksfh_nat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ksfh_nat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ksfh_nat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltb2bib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltb2bib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltb2bib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listbib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logreq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logreq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logreq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luabibentry-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luabibentry-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luabibentry-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-margbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-margbib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-margbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multibib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibibliography-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibibliography-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multibibliography-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-munich-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-munich-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-munich-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nmbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nmbib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nmbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes2bib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes2bib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notes2bib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notex-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notex-bst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notex-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oscola-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oscola-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oscola-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perception-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perception-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-perception-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plainyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plainyr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plainyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pnas2009-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pnas2009-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pnas2009-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rsc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showtags-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showtags-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showtags-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sort-by-letters-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sort-by-letters-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sort-by-letters-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitbib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-splitbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turabian-formatting-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turabian-formatting-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turabian-formatting-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uni-wtal-ger-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uni-wtal-ger-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uni-wtal-ger-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uni-wtal-lin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uni-wtal-lin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uni-wtal-lin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urlbst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urlbst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-urlbst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-usebib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-usebib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-usebib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-windycity-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-windycity-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-windycity-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zootaxa-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zootaxa-bst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zootaxa-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-bibtexextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-bibtexextra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-bibtexextra-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsrefs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsrefs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsrefs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apacite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apacite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apacite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaeologie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaeologie.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-archaeologie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authordate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authordate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-authordate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-besjournals.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-besjournals.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-besjournals.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bestpapers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bestpapers.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bestpapers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bib2gls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bib2gls.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bib2gls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibarts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibarts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibarts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biber.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibexport.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibexport.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibexport.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibhtml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibhtml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibhtml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-abnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-abnt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-abnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ajc2020unofficial.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ajc2020unofficial.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-ajc2020unofficial.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-anonymous.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-anonymous.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-anonymous.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-apa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-apa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-apa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-apa6.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-apa6.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-apa6.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-archaeology.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-archaeology.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-archaeology.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-arthistory-bonn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-arthistory-bonn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-arthistory-bonn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-bath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bookinarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bookinarticle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-bookinarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bookinother.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bookinother.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-bookinother.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bwl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bwl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-bwl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-caspervector.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-caspervector.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-caspervector.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-chem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-chem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-chem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-chicago.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-chicago.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-chicago.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-claves.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-claves.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-claves.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-dw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-dw.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-dw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-enc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-enc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-enc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-ext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-fiwi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-fiwi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-fiwi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-gb7714-2015.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-gb7714-2015.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-gb7714-2015.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-german-legal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-german-legal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-german-legal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-gost.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-gost.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-gost.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-historian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-historian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-historian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ieee.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ieee.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-ieee.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-ijsra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-ijsra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-ijsra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-iso690.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-iso690.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-iso690.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-jura2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-jura2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-jura2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-juradiss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-juradiss.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-juradiss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-license.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-license.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-license.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-lni.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-lni.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-lni.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-luh-ipw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-luh-ipw.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-luh-ipw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-manuscripts-philology.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-manuscripts-philology.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-manuscripts-philology.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-mla.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-mla.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-mla.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-morenames.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-morenames.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-morenames.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-multiple-dm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-multiple-dm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-multiple-dm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-musuos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-musuos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-musuos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nature.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nature.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-nature.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nejm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nejm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-nejm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nottsclassic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nottsclassic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-nottsclassic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-opcit-booktitle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-opcit-booktitle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-opcit-booktitle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-oxref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-oxref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-oxref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-philosophy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-philosophy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-philosophy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-phys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-phys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-phys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-publist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-publist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-publist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-realauthor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-realauthor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-realauthor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-sbl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-sbl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-sbl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-science.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-science.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-science.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-shortfields.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-shortfields.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-shortfields.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-socialscienceshuberlin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-socialscienceshuberlin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-socialscienceshuberlin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-software.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-software.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-software.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-source-division.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-source-division.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-source-division.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-subseries.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-subseries.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-subseries.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-swiss-legal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-swiss-legal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-swiss-legal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-trad.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-trad.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-trad.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-true-citepages-omit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-true-citepages-omit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-true-citepages-omit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-unified.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-unified.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-unified.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-vancouver.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-vancouver.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-vancouver.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex2bibitem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex2bibitem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex2bibitem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibtopic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopicprefix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopicprefix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibtopicprefix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibunits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibunits.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibunits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biolett-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biolett-bst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biolett-bst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookdb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookdb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookdb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breakcites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breakcites.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-breakcites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cell.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chbibref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chbibref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chbibref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chicago-annote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chicago-annote.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chicago-annote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chembst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chembst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chembst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chscite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chscite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chscite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-citeall.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-citeall.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-citeall.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-citeref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-citeref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-citeref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossrefware.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossrefware.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crossrefware.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-custom-bib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-custom-bib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-custom-bib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-din1505.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-din1505.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-din1505.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dk-bib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dk-bib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dk-bib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doipubmed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doipubmed.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doipubmed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecobiblatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecobiblatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecobiblatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econ-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econ-bst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-econ-bst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-economic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-economic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-economic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figbib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-figbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footbib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-francais-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-francais-bst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-francais-bst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gbt7714.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gbt7714.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gbt7714.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geschichtsfrkl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geschichtsfrkl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-geschichtsfrkl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harvard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harvard.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harvard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harvmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harvmac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harvmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-historische-zeitschrift.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-historische-zeitschrift.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-historische-zeitschrift.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-icite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ietfbibs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ietfbibs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ietfbibs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijqc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijqc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ijqc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inlinebib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inlinebib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inlinebib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iopart-num.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iopart-num.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iopart-num.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-is-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-is-bst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-is-bst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jneurosci.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jneurosci.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jneurosci.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurabib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurabib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jurabib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltb2bib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltb2bib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltb2bib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listbib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logreq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logreq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logreq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luabibentry.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luabibentry.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luabibentry.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-margbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-margbib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-margbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multibib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibibliography.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibibliography.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multibibliography.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-munich.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-munich.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-munich.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nmbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nmbib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nmbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes2bib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes2bib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notes2bib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oscola.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oscola.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oscola.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perception.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perception.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-perception.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rsc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showtags.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showtags.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showtags.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sort-by-letters.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sort-by-letters.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sort-by-letters.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitbib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-splitbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turabian-formatting.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turabian-formatting.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turabian-formatting.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uni-wtal-ger.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uni-wtal-ger.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uni-wtal-ger.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uni-wtal-lin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uni-wtal-lin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uni-wtal-lin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urlbst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urlbst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-urlbst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-usebib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-usebib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-usebib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vak.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-windycity.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-windycity.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-windycity.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zootaxa-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zootaxa-bst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zootaxa-bst.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsrefs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsrefs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsrefs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apacite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apacite.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apacite.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaeologie.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaeologie.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-archaeologie.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bib2gls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bib2gls.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bib2gls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibarts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibarts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibarts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biber.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biber.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibexport.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibexport.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibexport.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-archaeology.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-archaeology.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-archaeology.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-bath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-bath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-bath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-nejm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-nejm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-nejm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-oxref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-oxref.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-oxref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-philosophy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-philosophy.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-philosophy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-software.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-software.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-software.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtexperllibs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtexperllibs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibtexperllibs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibtopic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibtopicprefix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibtopicprefix.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibtopicprefix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibunits.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibunits.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibunits.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chembst.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chembst.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chembst.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chscite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chscite.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chscite.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collref.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-custom-bib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-custom-bib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-custom-bib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dk-bib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dk-bib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dk-bib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doipubmed.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doipubmed.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doipubmed.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footbib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gbt7714.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gbt7714.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gbt7714.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geschichtsfrkl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geschichtsfrkl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-geschichtsfrkl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harvard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harvard.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harvard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icite.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-icite.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurabib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurabib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jurabib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltb2bib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltb2bib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltb2bib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listbib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luabibentry.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luabibentry.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luabibentry.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-margbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-margbib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-margbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multibib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibibliography.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibibliography.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multibibliography.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nmbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nmbib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nmbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes2bib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes2bib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notes2bib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rsc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitbib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-splitbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urlbst.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urlbst.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-urlbst.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-usebib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-usebib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-usebib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcite.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcite.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=839692c38b35fcf9c8cc72c178f01b4f diff --git a/metadata/md5-cache/dev-texlive/texlive-context-2021 b/metadata/md5-cache/dev-texlive/texlive-context-2021 index 1cea0f2cda79..b51d07c874d1 100644 --- a/metadata/md5-cache/dev-texlive/texlive-context-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-context-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc LICENSE=BSD BSD-2 GPL-1 GPL-2 GPL-3 public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=dev-texlive/texlive-latex-2010 >=app-text/texlive-core-2010[xetex] >=dev-texlive/texlive-metapost-2010 dev-lang/ruby >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jmn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jmn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-notes-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-notes-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-npp-for-context-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-npp-for-context-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-account-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-account-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-algorithmic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-algorithmic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-animation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-animation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-annotation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-annotation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-bnf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-bnf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-chromato-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-chromato-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cmscbf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cmscbf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cmttbf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cmttbf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-construction-plan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-construction-plan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cyrillicnumbers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cyrillicnumbers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-degrade-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-degrade-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-fancybreak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-fancybreak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-filter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-filter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-fullpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-fullpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-gantt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-gantt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-gnuplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-gnuplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-handlecsv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-handlecsv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-inifile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-inifile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-layout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-layout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-letter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-letter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-lettrine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-lettrine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-mathsets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-mathsets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-rst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-rst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-ruby-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-ruby-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-simplefonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-simplefonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-simpleslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-simpleslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-title-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-title-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-transliterator-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-transliterator-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-typearea-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-typearea-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-typescripts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-typescripts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-vim-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-vim-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-visualcounter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-visualcounter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-context-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-context-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-notes-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-notes-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-npp-for-context.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-npp-for-context.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-account.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-account.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-algorithmic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-algorithmic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-animation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-animation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-annotation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-annotation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-bnf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-bnf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-chromato.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-chromato.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cmscbf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cmscbf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cmttbf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cmttbf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-construction-plan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-construction-plan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cyrillicnumbers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cyrillicnumbers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-degrade.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-degrade.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-fancybreak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-fancybreak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-filter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-filter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-fullpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-fullpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-gantt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-gantt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-gnuplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-gnuplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-handlecsv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-handlecsv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-inifile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-inifile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-layout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-layout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-letter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-letter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-lettrine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-lettrine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-mathsets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-mathsets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-rst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-rst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-ruby.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-ruby.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-simplefonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-simplefonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-simpleslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-simpleslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-title.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-title.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-transliterator.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-transliterator.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-typearea.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-typearea.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-typescripts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-typescripts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-vim.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-vim.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-visualcounter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-visualcounter.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-visualcounter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-visualcounter.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jmn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jmn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jmn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-notes-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-notes-zh-cn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-notes-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-npp-for-context-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-npp-for-context-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-npp-for-context-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-account-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-account-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-account-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-algorithmic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-algorithmic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-algorithmic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-animation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-animation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-animation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-annotation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-annotation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-annotation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-bnf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-bnf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-bnf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-chromato-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-chromato-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-chromato-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cmscbf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cmscbf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-cmscbf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cmttbf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cmttbf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-cmttbf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-construction-plan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-construction-plan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-construction-plan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cyrillicnumbers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cyrillicnumbers-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-cyrillicnumbers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-degrade-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-degrade-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-degrade-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-fancybreak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-fancybreak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-fancybreak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-filter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-filter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-filter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-french-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-fullpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-fullpage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-fullpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-gantt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-gantt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-gantt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-gnuplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-gnuplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-gnuplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-handlecsv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-handlecsv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-handlecsv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-inifile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-inifile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-inifile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-layout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-layout-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-layout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-letter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-letter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-letter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-lettrine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-lettrine-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-lettrine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-mathsets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-mathsets-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-mathsets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-rst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-rst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-rst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-ruby-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-ruby-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-ruby-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-simplefonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-simplefonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-simplefonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-simpleslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-simpleslides-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-simpleslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-title-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-title-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-title-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-transliterator-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-transliterator-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-transliterator-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-typearea-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-typearea-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-typearea-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-typescripts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-typescripts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-typescripts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-vim-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-vim-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-vim-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-visualcounter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-visualcounter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-visualcounter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-context-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-context-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-context-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-notes-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-notes-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-notes-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-npp-for-context.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-npp-for-context.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-npp-for-context.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-account.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-account.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-account.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-algorithmic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-algorithmic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-algorithmic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-animation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-animation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-animation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-annotation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-annotation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-annotation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-bnf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-bnf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-bnf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-chromato.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-chromato.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-chromato.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cmscbf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cmscbf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-cmscbf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cmttbf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cmttbf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-cmttbf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-construction-plan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-construction-plan.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-construction-plan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-cyrillicnumbers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-cyrillicnumbers.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-cyrillicnumbers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-degrade.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-degrade.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-degrade.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-fancybreak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-fancybreak.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-fancybreak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-filter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-filter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-filter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-french.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-fullpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-fullpage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-fullpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-gantt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-gantt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-gantt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-gnuplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-gnuplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-gnuplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-handlecsv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-handlecsv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-handlecsv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-inifile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-inifile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-inifile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-layout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-layout.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-layout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-letter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-letter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-letter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-lettrine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-lettrine.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-lettrine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-mathsets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-mathsets.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-mathsets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-rst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-rst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-rst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-ruby.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-ruby.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-ruby.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-simplefonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-simplefonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-simplefonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-simpleslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-simpleslides.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-simpleslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-title.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-title.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-title.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-transliterator.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-transliterator.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-transliterator.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-typearea.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-typearea.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-typearea.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-typescripts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-typescripts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-typescripts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-vim.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-vim.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-vim.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-visualcounter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-visualcounter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-visualcounter.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-context-visualcounter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-context-visualcounter.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-context-visualcounter.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=c40b2f17776fd0e331b8425f91dcbdf0 diff --git a/metadata/md5-cache/dev-texlive/texlive-fontsextra-2021 b/metadata/md5-cache/dev-texlive/texlive-fontsextra-2021 index 4fa2d4e0a310..a35082764471 100644 --- a/metadata/md5-cache/dev-texlive/texlive-fontsextra-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-fontsextra-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=Apache-2.0 BSD CC-BY-SA-4.0 GPL-1 GPL-2 LPPL-1.3 GPL-2+ RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Asana-Math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Asana-Math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-academicons-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-academicons-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accanthis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accanthis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adforn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adforn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adfsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adfsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aesupp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aesupp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alegreya-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alegreya-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alfaslabone-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alfaslabone-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algolrevived-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algolrevived-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-allrunes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-allrunes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-almendra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-almendra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-almfixed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-almfixed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonymouspro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonymouspro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antiqua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antiqua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archivo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archivo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arimo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arimo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arvo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arvo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asapsym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asapsym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascii-font-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascii-font-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aspectratio-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aspectratio-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-astro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-astro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atkinson-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atkinson-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-augie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-augie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auncial-new-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auncial-new-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aurical-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aurical-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-b1encoding-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-b1encoding-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barcodes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barcodes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervald-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervald-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervaldx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervaldx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervillef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervillef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbding-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbding-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbm-macros-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbm-macros-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbold-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbold-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbold-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbold-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-belleek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-belleek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bera-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bera-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-berenisadf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-berenisadf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beuron-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beuron-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bguq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bguq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blacklettert1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blacklettert1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boisik-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boisik-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookhands-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookhands-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boondox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boondox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braille-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braille-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brushscr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brushscr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cabin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cabin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-caladea-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-caladea-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calligra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calligra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calligra-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calligra-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cantarell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cantarell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carlito-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carlito-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carolmin-ps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carolmin-ps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascadia-code-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascadia-code-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccicons-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccicons-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cfr-initials-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cfr-initials-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cfr-lm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cfr-lm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-charissil-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-charissil-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cherokee-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cherokee-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chivo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chivo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cinzel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cinzel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clara-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clara-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clearsans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clearsans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-lgc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-lgc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-mf-extra-bold-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-mf-extra-bold-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-unicode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-unicode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmathbb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmathbb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmbright-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmbright-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmexb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmexb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmll-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmll-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmpica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmpica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmsrb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmsrb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmtiup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmtiup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmupint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmupint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cochineal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cochineal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coelacanth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coelacanth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comfortaa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comfortaa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comicneue-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comicneue-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concmath-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concmath-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cookingsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cookingsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cormorantgaramond-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cormorantgaramond-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-countriesofeurope-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-countriesofeurope-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courier-scaled-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courier-scaled-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courierten-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courierten-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crimson-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crimson-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crimsonpro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crimsonpro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cryst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cryst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cuprum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cuprum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyklop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyklop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dancers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dancers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dantelogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dantelogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dejavu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dejavu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dejavu-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dejavu-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dictsym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dictsym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dingbat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dingbat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-domitian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-domitian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doublestroke-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doublestroke-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doulossil-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doulossil-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dozenal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dozenal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-droid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-droid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dsserif-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dsserif-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duerer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duerer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duerer-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duerer-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dutchcal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dutchcal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ean-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ean-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebgaramond-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebgaramond-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebgaramond-maths-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebgaramond-maths-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eco-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eco-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eczar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eczar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eiad-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eiad-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eiad-ltx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eiad-ltx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ektype-tanka-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ektype-tanka-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-electrum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-electrum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elvish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elvish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigrafica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigrafica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsdice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsdice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erewhon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erewhon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erewhon-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erewhon-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esrelation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esrelation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esstix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esstix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esvect-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esvect-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etbb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etbb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eulervm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eulervm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euxm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euxm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fdsymbol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fdsymbol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetamont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetamont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feyn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feyn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fge-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fge-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fira-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fira-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firamath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firamath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firamath-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firamath-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foekfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foekfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonetika-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonetika-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontawesome-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontawesome-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontawesome5-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontawesome5-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontmfizz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontmfizz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonts-churchslavonic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonts-churchslavonic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fourier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fourier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fouriernc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fouriernc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frcursive-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frcursive-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frederika2016-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frederika2016-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frimurer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frimurer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garamond-libre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garamond-libre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garamond-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garamond-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genealogy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genealogy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentium-tug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentium-tug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsartemisia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsartemisia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsbodoni-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsbodoni-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfscomplutum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfscomplutum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsdidot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsdidot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsdidotclassic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsdidotclassic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsneohellenic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsneohellenic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsneohellenicmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsneohellenicmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfssolomos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfssolomos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gillcm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gillcm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gillius-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gillius-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnu-freefont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnu-freefont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gofonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gofonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gothic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gothic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greenpoint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greenpoint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grotesq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grotesq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gudea-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gudea-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hacm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hacm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hands-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hands-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-heuristica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-heuristica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hfbright-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hfbright-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hfoldsty-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hfoldsty-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hindmadurai-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hindmadurai-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibarra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibarra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifsym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifsym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imfellenglish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imfellenglish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inconsolata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inconsolata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-initials-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-initials-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inriafonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inriafonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ipaex-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ipaex-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iwona-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iwona-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jablantile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jablantile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jamtimes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jamtimes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-josefin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-josefin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-junicode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-junicode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kixfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kixfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kpfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpfonts-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kpfonts-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kurier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kurier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lato-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lato-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexend-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexend-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lfb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lfb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinegc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinegc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinust1math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinust1math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librebaskerville-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librebaskerville-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librebodoni-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librebodoni-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librecaslon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librecaslon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librefranklin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librefranklin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libris-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libris-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linearA-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linearA-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linguisticspro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linguisticspro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lobster2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lobster2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lxfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lxfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ly1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ly1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marcellus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marcellus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathabx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathabx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathabx-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathabx-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathdesign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathdesign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdputu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdputu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdsymbol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdsymbol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-merriweather-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-merriweather-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miama-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miama-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mintspirit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mintspirit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-missaali-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-missaali-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlmodern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlmodern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnsymbol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnsymbol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-montserrat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-montserrat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mweights-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mweights-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newcomputermodern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newcomputermodern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtxsf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtxsf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtxtt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtxtt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-niceframe-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-niceframe-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nimbus15-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nimbus15-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nkarta-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nkarta-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noto-emoji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noto-emoji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notomath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notomath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nunito-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nunito-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-obnov-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-obnov-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocherokee-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocherokee-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-b-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-b-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-b-outline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-b-outline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ogham-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ogham-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oinuit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oinuit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-old-arrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-old-arrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldlatin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldlatin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldstandard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldstandard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opensans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opensans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orkhun-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orkhun-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oswald-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oswald-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overlock-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overlock-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pacioli-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pacioli-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paratype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paratype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phaistos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phaistos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonetic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonetic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pigpen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pigpen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-playfair-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-playfair-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plex-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plex-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plimsoll-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plimsoll-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poiretone-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poiretone-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poltawski-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poltawski-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prodint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prodint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punk-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punk-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punknova-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punknova-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxtxalfa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxtxalfa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qualitype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qualitype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quattrocento-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quattrocento-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-raleway-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-raleway-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recycle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recycle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roboto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roboto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romande-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romande-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rosario-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rosario-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsfso-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsfso-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmathaccent-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmathaccent-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmathfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmathfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauterfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauterfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scholax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scholax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schulschriften-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schulschriften-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semaphor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semaphor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shobhika-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shobhika-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skull-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skull-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourcecodepro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourcecodepro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourcesanspro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourcesanspro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourceserifpro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourceserifpro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spectral-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spectral-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-starfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-starfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-staves-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-staves-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-step-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-step-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stepgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stepgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stickstoo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stickstoo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix2-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix2-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix2-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix2-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-superiors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-superiors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svrsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svrsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tapir-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tapir-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tempora-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tempora-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tengwarscript-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tengwarscript-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tfrupee-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tfrupee-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanodidot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanodidot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanomodern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanomodern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanooldstyle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanooldstyle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tinos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tinos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpslifonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tpslifonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trajan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trajan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twemoji-colr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twemoji-colr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txfontsb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txfontsb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txuprcal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txuprcal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typicons-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typicons-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umtypewriter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umtypewriter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-universa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-universa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-universalis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-universalis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uppunctlm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uppunctlm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urwchancal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urwchancal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venturisadf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venturisadf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wsuipa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wsuipa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcharter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcharter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yfonts-t1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yfonts-t1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yinit-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yinit-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zlmtt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zlmtt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-fontsextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-fontsextra-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Asana-Math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Asana-Math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-academicons.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-academicons.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accanthis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accanthis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adforn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adforn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adfsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adfsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aesupp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aesupp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alegreya.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alegreya.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alfaslabone.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alfaslabone.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algolrevived.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algolrevived.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-allrunes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-allrunes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-almendra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-almendra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-almfixed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-almfixed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonymouspro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonymouspro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antiqua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antiqua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archivo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archivo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arimo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arimo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arvo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arvo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asapsym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asapsym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascii-font.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascii-font.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aspectratio.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aspectratio.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-astro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-astro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atkinson.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atkinson.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-augie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-augie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auncial-new.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auncial-new.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aurical.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aurical.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-b1encoding.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-b1encoding.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barcodes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barcodes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervald.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervald.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervaldx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervaldx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervillef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervillef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbding.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbding.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbm-macros.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbm-macros.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbold.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbold.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbold-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbold-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-belleek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-belleek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bera.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bera.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-berenisadf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-berenisadf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beuron.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beuron.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bguq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bguq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blacklettert1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blacklettert1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boisik.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boisik.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookhands.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookhands.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boondox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boondox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braille.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braille.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brushscr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brushscr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cabin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cabin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-caladea.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-caladea.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calligra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calligra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calligra-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calligra-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cantarell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cantarell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carlito.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carlito.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carolmin-ps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carolmin-ps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascadia-code.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascadia-code.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccicons.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccicons.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cfr-initials.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cfr-initials.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cfr-lm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cfr-lm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-charissil.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-charissil.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cherokee.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cherokee.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chivo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chivo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cinzel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cinzel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clara.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clara.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clearsans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clearsans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-lgc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-lgc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-unicode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-unicode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmathbb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmathbb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmbright.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmbright.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmexb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmexb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmll.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmll.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmpica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmpica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmsrb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmsrb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmtiup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmtiup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmupint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmupint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cochineal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cochineal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coelacanth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coelacanth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comfortaa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comfortaa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comicneue.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comicneue.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concmath-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concmath-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cookingsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cookingsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cormorantgaramond.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cormorantgaramond.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-countriesofeurope.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-countriesofeurope.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courier-scaled.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courier-scaled.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courierten.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courierten.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crimson.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crimson.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crimsonpro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crimsonpro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cryst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cryst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cuprum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cuprum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyklop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyklop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dantelogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dantelogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dejavu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dejavu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dejavu-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dejavu-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dice.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dictsym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dictsym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dingbat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dingbat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-domitian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-domitian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doublestroke.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doublestroke.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doulossil.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doulossil.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dozenal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dozenal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-droid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-droid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dsserif.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dsserif.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duerer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duerer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duerer-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duerer-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dutchcal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dutchcal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ean.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ean.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebgaramond.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebgaramond.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebgaramond-maths.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebgaramond-maths.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eco.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eco.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eczar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eczar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eiad.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eiad.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eiad-ltx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eiad-ltx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ektype-tanka.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ektype-tanka.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-electrum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-electrum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elvish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elvish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigrafica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigrafica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsdice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsdice.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erewhon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erewhon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erewhon-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erewhon-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esrelation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esrelation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esstix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esstix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esvect.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esvect.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etbb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etbb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eulervm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eulervm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fdsymbol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fdsymbol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetamont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetamont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feyn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feyn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fge.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fge.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fira.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fira.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firamath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firamath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firamath-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firamath-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foekfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foekfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonetika.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonetika.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontawesome.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontawesome.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontawesome5.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontawesome5.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontmfizz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontmfizz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonts-churchslavonic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonts-churchslavonic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fourier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fourier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fouriernc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fouriernc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frcursive.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frcursive.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frederika2016.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frederika2016.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frimurer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frimurer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garamond-libre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garamond-libre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garamond-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garamond-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genealogy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genealogy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentium-tug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentium-tug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsartemisia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsartemisia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsbodoni.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsbodoni.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfscomplutum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfscomplutum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsdidot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsdidot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsdidotclassic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsdidotclassic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsneohellenic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsneohellenic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsneohellenicmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsneohellenicmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfssolomos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfssolomos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gillcm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gillcm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gillius.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gillius.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnu-freefont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnu-freefont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gofonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gofonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gothic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gothic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greenpoint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greenpoint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grotesq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grotesq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gudea.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gudea.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hacm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hacm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-heuristica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-heuristica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hfbright.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hfbright.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hfoldsty.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hfoldsty.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hindmadurai.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hindmadurai.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibarra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibarra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifsym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifsym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imfellenglish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imfellenglish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inconsolata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inconsolata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-initials.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-initials.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inriafonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inriafonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ipaex-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ipaex-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iwona.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iwona.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jablantile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jablantile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jamtimes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jamtimes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-josefin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-josefin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-junicode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-junicode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kixfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kixfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kpfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpfonts-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kpfonts-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kurier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kurier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lato.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lato.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexend.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexend.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lfb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lfb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinegc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinegc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinust1math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinust1math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librebaskerville.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librebaskerville.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librebodoni.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librebodoni.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librecaslon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librecaslon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librefranklin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librefranklin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libris.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libris.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linearA.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linearA.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linguisticspro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linguisticspro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lobster2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lobster2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lxfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lxfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ly1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ly1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marcellus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marcellus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathabx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathabx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathabx-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathabx-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathdesign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathdesign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdputu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdputu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdsymbol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdsymbol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-merriweather.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-merriweather.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miama.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miama.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mintspirit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mintspirit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-missaali.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-missaali.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlmodern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlmodern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnsymbol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnsymbol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-montserrat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-montserrat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mweights.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mweights.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newcomputermodern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newcomputermodern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtxsf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtxsf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtxtt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtxtt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-niceframe-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-niceframe-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nimbus15.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nimbus15.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nkarta.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nkarta.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noto-emoji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noto-emoji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notomath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notomath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nunito.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nunito.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-obnov.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-obnov.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocherokee.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocherokee.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-b.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-b.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-b-outline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-b-outline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ogham.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ogham.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oinuit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oinuit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-old-arrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-old-arrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldlatin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldlatin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldstandard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldstandard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opensans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opensans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orkhun.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orkhun.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oswald.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oswald.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overlock.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overlock.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pacioli.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pacioli.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paratype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paratype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phaistos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phaistos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonetic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonetic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pigpen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pigpen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-playfair.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-playfair.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plex-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plex-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plimsoll.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plimsoll.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poiretone.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poiretone.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poltawski.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poltawski.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prodint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prodint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punk-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punk-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punknova.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punknova.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxtxalfa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxtxalfa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qualitype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qualitype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quattrocento.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quattrocento.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-raleway.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-raleway.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recycle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recycle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roboto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roboto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romande.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romande.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rosario.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rosario.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsfso.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsfso.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmathaccent.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmathaccent.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmathfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmathfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauterfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauterfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scholax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scholax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schulschriften.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schulschriften.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semaphor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semaphor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shobhika.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shobhika.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourcecodepro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourcecodepro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourcesanspro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourcesanspro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourceserifpro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourceserifpro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spectral.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spectral.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-starfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-starfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-staves.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-staves.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-step.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-step.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stepgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stepgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stickstoo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stickstoo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix2-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix2-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix2-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix2-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-superiors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-superiors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svrsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svrsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tapir.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tapir.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tempora.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tempora.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tengwarscript.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tengwarscript.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tfrupee.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tfrupee.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanodidot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanodidot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanomodern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanomodern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanooldstyle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanooldstyle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tinos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tinos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpslifonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tpslifonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trajan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trajan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twemoji-colr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twemoji-colr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txfontsb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txfontsb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txuprcal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txuprcal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typicons.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typicons.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-universa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-universa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-universalis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-universalis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uppunctlm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uppunctlm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urwchancal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urwchancal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venturisadf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venturisadf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wsuipa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wsuipa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcharter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcharter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yfonts-t1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yfonts-t1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yinit-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yinit-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zlmtt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zlmtt.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aesupp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aesupp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-allrunes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-allrunes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonymouspro.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonymouspro.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asapsym.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asapsym.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascii-font.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascii-font.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auncial-new.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auncial-new.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-b1encoding.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-b1encoding.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barcodes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barcodes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervald.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervald.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbding.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbding.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbm-macros.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbm-macros.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbold.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbold.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-belleek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-belleek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bguq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bguq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blacklettert1.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blacklettert1.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookhands.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookhands.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccicons.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccicons.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cfr-lm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cfr-lm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chivo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chivo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmbright.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmbright.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmll.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmll.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cookingsymbols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cookingsymbols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dingbat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dingbat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dozenal.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dozenal.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dsserif.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dsserif.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eco.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eco.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eiad-ltx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eiad-ltx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-electrum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-electrum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsdice.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsdice.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esrelation.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esrelation.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esvect.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esvect.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eulervm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eulervm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fdsymbol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fdsymbol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetamont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetamont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feyn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feyn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fge.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fge.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frimurer.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frimurer.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentium-tug.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentium-tug.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnu-freefont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnu-freefont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gothic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gothic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hfoldsty.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hfoldsty.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kpfonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libris.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libris.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linearA.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linearA.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lxfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lxfonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdsymbol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdsymbol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miama.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miama.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnsymbol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnsymbol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nkarta.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nkarta.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-b-outline.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-b-outline.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oinuit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oinuit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pacioli.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pacioli.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phaistos.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phaistos.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plimsoll.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plimsoll.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romande.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romande.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rosario.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rosario.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauterfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauterfonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skull.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skull.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-staves.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-staves.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix2-type1.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix2-type1.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svrsymbols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svrsymbols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tengwarscript.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tengwarscript.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tfrupee.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tfrupee.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpslifonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tpslifonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trajan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trajan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txfontsb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txfontsb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-universa.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-universa.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venturisadf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venturisadf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yfonts.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Asana-Math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Asana-Math-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-Asana-Math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-academicons-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-academicons-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-academicons-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accanthis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accanthis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accanthis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adforn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adforn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adforn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adfsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adfsymbols-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adfsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aesupp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aesupp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aesupp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alegreya-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alegreya-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alegreya-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alfaslabone-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alfaslabone-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alfaslabone-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algolrevived-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algolrevived-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algolrevived-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-allrunes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-allrunes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-allrunes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-almendra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-almendra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-almendra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-almfixed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-almfixed-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-almfixed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonymouspro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonymouspro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anonymouspro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antiqua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antiqua-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-antiqua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-antt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-archaic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archivo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archivo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-archivo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arev-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arimo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arimo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arimo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arvo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arvo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arvo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asapsym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asapsym-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asapsym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascii-font-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascii-font-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ascii-font-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aspectratio-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aspectratio-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aspectratio-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-astro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-astro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-astro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atkinson-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atkinson-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-atkinson-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-augie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-augie-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-augie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auncial-new-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auncial-new-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auncial-new-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aurical-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aurical-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aurical-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-b1encoding-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-b1encoding-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-b1encoding-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barcodes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barcodes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-barcodes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervald-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervald-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-baskervald-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervaldx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervaldx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-baskervaldx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervillef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervillef-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-baskervillef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbding-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbding-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbding-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbm-macros-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbm-macros-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbm-macros-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbold-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbold-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbold-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbold-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbold-type1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbold-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-belleek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-belleek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-belleek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bera-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bera-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bera-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-berenisadf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-berenisadf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-berenisadf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beuron-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beuron-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beuron-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bguq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bguq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bguq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bitter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blacklettert1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blacklettert1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blacklettert1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boisik-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boisik-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boisik-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookhands-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookhands-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookhands-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boondox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boondox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boondox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braille-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braille-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-braille-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brushscr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brushscr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-brushscr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cabin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cabin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cabin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-caladea-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-caladea-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-caladea-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calligra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calligra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calligra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calligra-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calligra-type1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calligra-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cantarell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cantarell-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cantarell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carlito-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carlito-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-carlito-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carolmin-ps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carolmin-ps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-carolmin-ps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascadia-code-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascadia-code-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cascadia-code-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccicons-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccicons-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccicons-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cfr-initials-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cfr-initials-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cfr-initials-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cfr-lm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cfr-lm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cfr-lm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-charissil-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-charissil-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-charissil-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cherokee-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cherokee-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cherokee-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chivo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chivo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chivo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cinzel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cinzel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cinzel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clara-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clara-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clara-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clearsans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clearsans-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clearsans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-lgc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-lgc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cm-lgc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-mf-extra-bold-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-mf-extra-bold-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cm-mf-extra-bold-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-unicode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-unicode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cm-unicode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmathbb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmathbb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmathbb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmbright-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmbright-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmbright-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmexb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmexb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmexb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmll-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmll-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmll-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmpica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmpica-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmpica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmsrb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmsrb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmsrb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmtiup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmtiup-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmtiup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmupint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmupint-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmupint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cochineal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cochineal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cochineal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coelacanth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coelacanth-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coelacanth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comfortaa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comfortaa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-comfortaa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comicneue-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comicneue-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-comicneue-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concmath-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concmath-fonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-concmath-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cookingsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cookingsymbols-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cookingsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cormorantgaramond-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cormorantgaramond-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cormorantgaramond-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-countriesofeurope-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-countriesofeurope-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-countriesofeurope-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courier-scaled-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courier-scaled-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-courier-scaled-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courierten-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courierten-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-courierten-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crimson-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crimson-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crimson-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crimsonpro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crimsonpro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crimsonpro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cryst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cryst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cryst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cuprum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cuprum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cuprum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyklop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyklop-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cyklop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dancers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dancers-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dancers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dantelogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dantelogo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dantelogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dejavu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dejavu-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dejavu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dejavu-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dejavu-otf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dejavu-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dice-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dictsym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dictsym-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dictsym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dingbat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dingbat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dingbat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-domitian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-domitian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-domitian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doublestroke-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doublestroke-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doublestroke-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doulossil-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doulossil-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doulossil-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dozenal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dozenal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dozenal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-droid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-droid-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-droid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dsserif-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dsserif-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dsserif-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duerer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duerer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-duerer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duerer-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duerer-latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-duerer-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dutchcal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dutchcal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dutchcal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ean-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ean-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ean-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebgaramond-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebgaramond-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebgaramond-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebgaramond-maths-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebgaramond-maths-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebgaramond-maths-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eco-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eco-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eco-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eczar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eczar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eczar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eiad-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eiad-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eiad-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eiad-ltx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eiad-ltx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eiad-ltx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ektype-tanka-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ektype-tanka-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ektype-tanka-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-electrum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-electrum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-electrum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elvish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elvish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elvish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigrafica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigrafica-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epigrafica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsdice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsdice-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epsdice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erewhon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erewhon-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-erewhon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erewhon-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erewhon-math-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-erewhon-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esrelation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esrelation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esrelation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esstix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esstix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esstix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esvect-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esvect-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esvect-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etbb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etbb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etbb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eulervm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eulervm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eulervm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euxm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euxm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euxm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fbb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fdsymbol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fdsymbol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fdsymbol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetamont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetamont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fetamont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feyn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feyn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-feyn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fge-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fge-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fge-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fira-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fira-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fira-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firamath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firamath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-firamath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firamath-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firamath-otf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-firamath-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foekfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foekfont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-foekfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonetika-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonetika-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fonetika-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontawesome-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontawesome-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontawesome-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontawesome5-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontawesome5-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontawesome5-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontmfizz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontmfizz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontmfizz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonts-churchslavonic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonts-churchslavonic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fonts-churchslavonic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fourier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fourier-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fourier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fouriernc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fouriernc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fouriernc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frcursive-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frcursive-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frcursive-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frederika2016-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frederika2016-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frederika2016-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frimurer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frimurer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frimurer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garamond-libre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garamond-libre-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-garamond-libre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garamond-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garamond-math-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-garamond-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genealogy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genealogy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-genealogy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentium-tug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentium-tug-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gentium-tug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsartemisia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsartemisia-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsartemisia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsbodoni-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsbodoni-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsbodoni-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfscomplutum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfscomplutum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfscomplutum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsdidot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsdidot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsdidot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsdidotclassic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsdidotclassic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsdidotclassic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsneohellenic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsneohellenic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsneohellenic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsneohellenicmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsneohellenicmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsneohellenicmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfssolomos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfssolomos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfssolomos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gillcm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gillcm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gillcm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gillius-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gillius-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gillius-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnu-freefont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnu-freefont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gnu-freefont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gofonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gofonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gofonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gothic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gothic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gothic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greenpoint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greenpoint-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greenpoint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grotesq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grotesq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grotesq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gudea-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gudea-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gudea-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hacm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hacm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hacm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hands-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hands-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hands-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-heuristica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-heuristica-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-heuristica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hfbright-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hfbright-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hfbright-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hfoldsty-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hfoldsty-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hfoldsty-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hindmadurai-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hindmadurai-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hindmadurai-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibarra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibarra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ibarra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifsym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifsym-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifsym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imfellenglish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imfellenglish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imfellenglish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inconsolata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inconsolata-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inconsolata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-initials-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-initials-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-initials-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inriafonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inriafonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inriafonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ipaex-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ipaex-type1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ipaex-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iwona-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iwona-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iwona-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jablantile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jablantile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jablantile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jamtimes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jamtimes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jamtimes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-josefin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-josefin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-josefin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-junicode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-junicode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-junicode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kixfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kixfont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kixfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kpfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kpfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpfonts-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kpfonts-otf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kpfonts-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kurier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kurier-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kurier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lato-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lato-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lato-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexend-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexend-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lexend-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lfb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lfb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lfb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertine-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinegc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinegc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinegc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-fonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinus-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-otf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinus-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-type1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinus-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinust1math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinust1math-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinust1math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librebaskerville-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librebaskerville-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-librebaskerville-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librebodoni-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librebodoni-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-librebodoni-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librecaslon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librecaslon-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-librecaslon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librefranklin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librefranklin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-librefranklin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libris-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libris-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libris-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linearA-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linearA-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linearA-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linguisticspro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linguisticspro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linguisticspro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lobster2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lobster2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lobster2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lxfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lxfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lxfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ly1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ly1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ly1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-magra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marcellus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marcellus-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marcellus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathabx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathabx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathabx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathabx-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathabx-type1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathabx-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathdesign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathdesign-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathdesign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdputu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdputu-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mdputu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdsymbol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdsymbol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mdsymbol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-merriweather-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-merriweather-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-merriweather-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miama-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miama-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-miama-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mintspirit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mintspirit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mintspirit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-missaali-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-missaali-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-missaali-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlmodern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlmodern-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mlmodern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnsymbol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnsymbol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mnsymbol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-montserrat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-montserrat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-montserrat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mweights-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mweights-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mweights-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newcomputermodern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newcomputermodern-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newcomputermodern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newpx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newtx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtxsf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtxsf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newtxsf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtxtt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtxtt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newtxtt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-niceframe-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-niceframe-type1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-niceframe-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nimbus15-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nimbus15-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nimbus15-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nkarta-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nkarta-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nkarta-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noto-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-noto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noto-emoji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noto-emoji-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-noto-emoji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notomath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notomath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notomath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nunito-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nunito-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nunito-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-obnov-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-obnov-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-obnov-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocherokee-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocherokee-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocherokee-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-b-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-b-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocr-b-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-b-outline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-b-outline-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocr-b-outline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ogham-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ogham-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ogham-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oinuit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oinuit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oinuit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-old-arrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-old-arrows-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-old-arrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldlatin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldlatin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oldlatin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldstandard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldstandard-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oldstandard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opensans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opensans-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-opensans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orkhun-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orkhun-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-orkhun-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oswald-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oswald-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oswald-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overlock-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overlock-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-overlock-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pacioli-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pacioli-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pacioli-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paratype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paratype-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paratype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phaistos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phaistos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phaistos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonetic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonetic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phonetic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pigpen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pigpen-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pigpen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-playfair-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-playfair-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-playfair-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plex-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plex-otf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plex-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plimsoll-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plimsoll-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plimsoll-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poiretone-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poiretone-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poiretone-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poltawski-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poltawski-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poltawski-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prodint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prodint-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prodint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-punk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punk-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punk-latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-punk-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punknova-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punknova-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-punknova-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxtxalfa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxtxalfa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxtxalfa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qualitype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qualitype-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qualitype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quattrocento-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quattrocento-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quattrocento-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-raleway-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-raleway-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-raleway-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recycle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recycle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-recycle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roboto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roboto-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-roboto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romande-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romande-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romande-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rosario-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rosario-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rosario-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsfso-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsfso-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rsfso-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmathaccent-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmathaccent-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sansmathaccent-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmathfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmathfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sansmathfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sauter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauterfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauterfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sauterfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scholax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scholax-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scholax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schulschriften-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schulschriften-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schulschriften-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semaphor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semaphor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semaphor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shobhika-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shobhika-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shobhika-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skull-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skull-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skull-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourcecodepro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourcecodepro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sourcecodepro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourcesanspro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourcesanspro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sourcesanspro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourceserifpro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourceserifpro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sourceserifpro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spectral-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spectral-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spectral-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-starfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-starfont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-starfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-staves-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-staves-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-staves-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-step-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-step-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-step-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stepgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stepgreek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stepgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stickstoo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stickstoo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stickstoo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix2-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix2-otf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stix2-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix2-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix2-type1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stix2-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-superiors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-superiors-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-superiors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svrsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svrsymbols-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svrsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tapir-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tapir-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tapir-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tempora-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tempora-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tempora-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tengwarscript-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tengwarscript-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tengwarscript-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tfrupee-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tfrupee-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tfrupee-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanodidot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanodidot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-theanodidot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanomodern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanomodern-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-theanomodern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanooldstyle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanooldstyle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-theanooldstyle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tinos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tinos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tinos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpslifonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tpslifonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tpslifonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trajan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trajan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trajan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twemoji-colr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twemoji-colr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-twemoji-colr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txfontsb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txfontsb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-txfontsb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txuprcal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txuprcal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-txuprcal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typicons-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typicons-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typicons-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umtypewriter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umtypewriter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umtypewriter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-universa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-universa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-universa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-universalis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-universalis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-universalis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uppunctlm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uppunctlm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uppunctlm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urwchancal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urwchancal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-urwchancal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venturisadf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venturisadf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-venturisadf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wsuipa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wsuipa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wsuipa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcharter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcharter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcharter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xits-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yfonts-t1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yfonts-t1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yfonts-t1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yinit-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yinit-otf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yinit-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zlmtt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zlmtt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zlmtt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-fontsextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-fontsextra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-fontsextra-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Asana-Math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Asana-Math.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-Asana-Math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-academicons.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-academicons.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-academicons.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accanthis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accanthis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accanthis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adforn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adforn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adforn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adfsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adfsymbols.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adfsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aesupp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aesupp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aesupp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alegreya.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alegreya.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alegreya.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alfaslabone.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alfaslabone.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alfaslabone.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algolrevived.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algolrevived.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algolrevived.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-allrunes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-allrunes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-allrunes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-almendra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-almendra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-almendra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-almfixed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-almfixed.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-almfixed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonymouspro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonymouspro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anonymouspro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antiqua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antiqua.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-antiqua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-antt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-archaic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archivo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archivo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-archivo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arev.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arimo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arimo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arimo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arvo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arvo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arvo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asapsym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asapsym.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asapsym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascii-font.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascii-font.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ascii-font.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aspectratio.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aspectratio.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aspectratio.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-astro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-astro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-astro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atkinson.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atkinson.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-atkinson.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-augie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-augie.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-augie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auncial-new.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auncial-new.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auncial-new.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aurical.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aurical.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aurical.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-b1encoding.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-b1encoding.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-b1encoding.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barcodes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barcodes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-barcodes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervald.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervald.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-baskervald.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervaldx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervaldx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-baskervaldx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervillef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervillef.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-baskervillef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbding.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbding.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbding.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbm-macros.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbm-macros.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbm-macros.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbold.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbold.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbold.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbold-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbold-type1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbold-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-belleek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-belleek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-belleek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bera.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bera.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bera.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-berenisadf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-berenisadf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-berenisadf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beuron.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beuron.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beuron.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bguq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bguq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bguq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bitter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blacklettert1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blacklettert1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blacklettert1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boisik.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boisik.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boisik.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookhands.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookhands.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookhands.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boondox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boondox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boondox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braille.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braille.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-braille.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brushscr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brushscr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-brushscr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cabin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cabin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cabin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-caladea.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-caladea.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-caladea.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calligra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calligra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calligra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calligra-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calligra-type1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calligra-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cantarell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cantarell.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cantarell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carlito.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carlito.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-carlito.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carolmin-ps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carolmin-ps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-carolmin-ps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascadia-code.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascadia-code.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cascadia-code.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccicons.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccicons.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccicons.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cfr-initials.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cfr-initials.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cfr-initials.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cfr-lm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cfr-lm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cfr-lm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-charissil.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-charissil.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-charissil.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cherokee.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cherokee.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cherokee.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chivo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chivo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chivo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cinzel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cinzel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cinzel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clara.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clara.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clara.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clearsans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clearsans.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clearsans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-lgc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-lgc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cm-lgc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-unicode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-unicode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cm-unicode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmathbb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmathbb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmathbb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmbright.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmbright.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmbright.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmexb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmexb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmexb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmll.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmll.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmll.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmpica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmpica.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmpica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmsrb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmsrb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmsrb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmtiup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmtiup.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmtiup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmupint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmupint.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmupint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cochineal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cochineal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cochineal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coelacanth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coelacanth.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coelacanth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comfortaa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comfortaa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-comfortaa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comicneue.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comicneue.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-comicneue.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concmath-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concmath-fonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-concmath-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cookingsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cookingsymbols.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cookingsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cormorantgaramond.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cormorantgaramond.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cormorantgaramond.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-countriesofeurope.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-countriesofeurope.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-countriesofeurope.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courier-scaled.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courier-scaled.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-courier-scaled.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courierten.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courierten.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-courierten.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crimson.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crimson.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crimson.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crimsonpro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crimsonpro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crimsonpro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cryst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cryst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cryst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cuprum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cuprum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cuprum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyklop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyklop.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cyklop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dantelogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dantelogo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dantelogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dejavu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dejavu.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dejavu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dejavu-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dejavu-otf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dejavu-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dice.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dice.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dictsym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dictsym.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dictsym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dingbat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dingbat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dingbat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-domitian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-domitian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-domitian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doublestroke.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doublestroke.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doublestroke.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doulossil.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doulossil.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doulossil.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dozenal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dozenal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dozenal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-droid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-droid.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-droid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dsserif.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dsserif.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dsserif.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duerer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duerer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-duerer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duerer-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duerer-latex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-duerer-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dutchcal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dutchcal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dutchcal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ean.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ean.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ean.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebgaramond.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebgaramond.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebgaramond.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebgaramond-maths.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebgaramond-maths.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebgaramond-maths.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eco.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eco.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eco.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eczar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eczar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eczar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eiad.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eiad.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eiad.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eiad-ltx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eiad-ltx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eiad-ltx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ektype-tanka.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ektype-tanka.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ektype-tanka.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-electrum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-electrum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-electrum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elvish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elvish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elvish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigrafica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigrafica.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epigrafica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsdice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsdice.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epsdice.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erewhon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erewhon.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-erewhon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erewhon-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erewhon-math.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-erewhon-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esrelation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esrelation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esrelation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esstix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esstix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esstix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esvect.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esvect.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esvect.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etbb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etbb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etbb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eulervm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eulervm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eulervm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fbb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fdsymbol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fdsymbol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fdsymbol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetamont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetamont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fetamont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feyn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feyn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-feyn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fge.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fge.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fge.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fira.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fira.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fira.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firamath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firamath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-firamath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firamath-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firamath-otf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-firamath-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foekfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foekfont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-foekfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonetika.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonetika.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fonetika.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontawesome.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontawesome.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontawesome.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontawesome5.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontawesome5.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontawesome5.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontmfizz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontmfizz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontmfizz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonts-churchslavonic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonts-churchslavonic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fonts-churchslavonic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fourier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fourier.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fourier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fouriernc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fouriernc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fouriernc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frcursive.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frcursive.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frcursive.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frederika2016.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frederika2016.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frederika2016.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frimurer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frimurer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frimurer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garamond-libre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garamond-libre.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-garamond-libre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garamond-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garamond-math.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-garamond-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genealogy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genealogy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-genealogy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentium-tug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentium-tug.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gentium-tug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsartemisia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsartemisia.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsartemisia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsbodoni.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsbodoni.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsbodoni.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfscomplutum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfscomplutum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfscomplutum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsdidot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsdidot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsdidot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsdidotclassic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsdidotclassic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsdidotclassic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsneohellenic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsneohellenic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsneohellenic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsneohellenicmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsneohellenicmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsneohellenicmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfssolomos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfssolomos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfssolomos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gillcm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gillcm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gillcm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gillius.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gillius.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gillius.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnu-freefont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnu-freefont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gnu-freefont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gofonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gofonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gofonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gothic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gothic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gothic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greenpoint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greenpoint.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greenpoint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grotesq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grotesq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grotesq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gudea.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gudea.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gudea.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hacm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hacm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hacm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-heuristica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-heuristica.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-heuristica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hfbright.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hfbright.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hfbright.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hfoldsty.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hfoldsty.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hfoldsty.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hindmadurai.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hindmadurai.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hindmadurai.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibarra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibarra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ibarra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifsym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifsym.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifsym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imfellenglish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imfellenglish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imfellenglish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inconsolata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inconsolata.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inconsolata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-initials.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-initials.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-initials.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inriafonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inriafonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inriafonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ipaex-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ipaex-type1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ipaex-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iwona.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iwona.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iwona.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jablantile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jablantile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jablantile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jamtimes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jamtimes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jamtimes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-josefin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-josefin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-josefin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-junicode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-junicode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-junicode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kixfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kixfont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kixfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kpfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kpfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpfonts-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kpfonts-otf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kpfonts-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kurier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kurier.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kurier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lato.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lato.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lato.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexend.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexend.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lexend.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lfb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lfb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lfb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertine.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinegc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinegc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinegc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-fonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinus-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-otf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinus-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinus-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinus-type1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinus-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libertinust1math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libertinust1math.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libertinust1math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librebaskerville.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librebaskerville.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-librebaskerville.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librebodoni.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librebodoni.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-librebodoni.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librecaslon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librecaslon.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-librecaslon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librefranklin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librefranklin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-librefranklin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libris.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libris.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libris.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linearA.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linearA.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linearA.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linguisticspro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linguisticspro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linguisticspro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lobster2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lobster2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lobster2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lxfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lxfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lxfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ly1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ly1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ly1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-magra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marcellus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marcellus.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marcellus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathabx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathabx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathabx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathabx-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathabx-type1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathabx-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathdesign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathdesign.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathdesign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdputu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdputu.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mdputu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdsymbol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdsymbol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mdsymbol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-merriweather.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-merriweather.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-merriweather.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miama.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miama.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-miama.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mintspirit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mintspirit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mintspirit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-missaali.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-missaali.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-missaali.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlmodern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlmodern.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mlmodern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnsymbol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnsymbol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mnsymbol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-montserrat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-montserrat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-montserrat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mweights.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mweights.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mweights.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newcomputermodern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newcomputermodern.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newcomputermodern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newpx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newtx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtxsf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtxsf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newtxsf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newtxtt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newtxtt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newtxtt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-niceframe-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-niceframe-type1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-niceframe-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nimbus15.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nimbus15.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nimbus15.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nkarta.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nkarta.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nkarta.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noto.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-noto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noto-emoji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noto-emoji.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-noto-emoji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notomath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notomath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notomath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nunito.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nunito.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nunito.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-obnov.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-obnov.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-obnov.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocherokee.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocherokee.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocherokee.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-b.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-b.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocr-b.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-b-outline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-b-outline.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocr-b-outline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ogham.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ogham.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ogham.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oinuit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oinuit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oinuit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-old-arrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-old-arrows.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-old-arrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldlatin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldlatin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oldlatin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldstandard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldstandard.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oldstandard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opensans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opensans.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-opensans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orkhun.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orkhun.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-orkhun.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oswald.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oswald.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oswald.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overlock.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overlock.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-overlock.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pacioli.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pacioli.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pacioli.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paratype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paratype.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paratype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phaistos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phaistos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phaistos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonetic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonetic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phonetic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pigpen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pigpen.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pigpen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-playfair.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-playfair.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-playfair.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plex-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plex-otf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plex-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plimsoll.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plimsoll.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plimsoll.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poiretone.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poiretone.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poiretone.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poltawski.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poltawski.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poltawski.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prodint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prodint.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prodint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-punk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punk-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punk-latex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-punk-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-punknova.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-punknova.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-punknova.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxtxalfa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxtxalfa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxtxalfa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qualitype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qualitype.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qualitype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quattrocento.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quattrocento.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quattrocento.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-raleway.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-raleway.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-raleway.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recycle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recycle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-recycle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roboto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roboto.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-roboto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romande.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romande.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romande.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rosario.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rosario.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rosario.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsfso.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsfso.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rsfso.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmathaccent.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmathaccent.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sansmathaccent.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmathfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmathfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sansmathfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauterfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauterfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sauterfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scholax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scholax.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scholax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schulschriften.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schulschriften.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schulschriften.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semaphor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semaphor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semaphor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shobhika.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shobhika.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shobhika.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourcecodepro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourcecodepro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sourcecodepro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourcesanspro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourcesanspro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sourcesanspro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sourceserifpro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sourceserifpro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sourceserifpro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spectral.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spectral.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spectral.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-starfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-starfont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-starfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-staves.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-staves.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-staves.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-step.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-step.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-step.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stepgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stepgreek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stepgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stickstoo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stickstoo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stickstoo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix2-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix2-otf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stix2-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix2-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix2-type1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stix2-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-superiors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-superiors.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-superiors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svrsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svrsymbols.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svrsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tapir.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tapir.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tapir.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tempora.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tempora.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tempora.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tengwarscript.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tengwarscript.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tengwarscript.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tfrupee.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tfrupee.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tfrupee.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanodidot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanodidot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-theanodidot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanomodern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanomodern.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-theanomodern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theanooldstyle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theanooldstyle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-theanooldstyle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tinos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tinos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tinos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpslifonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tpslifonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tpslifonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trajan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trajan.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trajan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twemoji-colr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twemoji-colr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-twemoji-colr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txfontsb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txfontsb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-txfontsb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txuprcal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txuprcal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-txuprcal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typicons.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typicons.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typicons.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-universa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-universa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-universa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-universalis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-universalis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-universalis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uppunctlm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uppunctlm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uppunctlm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urwchancal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urwchancal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-urwchancal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venturisadf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venturisadf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-venturisadf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wsuipa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wsuipa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wsuipa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcharter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcharter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcharter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xits.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yfonts-t1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yfonts-t1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yfonts-t1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yinit-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yinit-otf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yinit-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zlmtt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zlmtt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zlmtt.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aesupp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aesupp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aesupp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-allrunes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-allrunes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-allrunes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonymouspro.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonymouspro.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anonymouspro.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-archaic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-archaic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-archaic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arev.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asapsym.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asapsym.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asapsym.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascii-font.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascii-font.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ascii-font.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auncial-new.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auncial-new.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auncial-new.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-b1encoding.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-b1encoding.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-b1encoding.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barcodes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barcodes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-barcodes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baskervald.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baskervald.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-baskervald.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbding.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbding.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbding.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbm-macros.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbm-macros.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbm-macros.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbold.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbold.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbold.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-belleek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-belleek.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-belleek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bguq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bguq.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bguq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blacklettert1.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blacklettert1.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blacklettert1.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookhands.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookhands.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookhands.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccicons.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccicons.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccicons.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cfr-lm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cfr-lm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cfr-lm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chivo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chivo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chivo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmbright.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmbright.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmbright.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmll.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmll.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmll.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cookingsymbols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cookingsymbols.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cookingsymbols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dingbat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dingbat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dingbat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dozenal.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dozenal.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dozenal.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dsserif.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dsserif.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dsserif.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eco.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eco.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eco.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eiad-ltx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eiad-ltx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eiad-ltx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-electrum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-electrum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-electrum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsdice.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsdice.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epsdice.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esrelation.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esrelation.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esrelation.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esvect.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esvect.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esvect.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eulervm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eulervm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eulervm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fdsymbol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fdsymbol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fdsymbol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetamont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetamont.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fetamont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feyn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feyn.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-feyn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fge.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fge.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fge.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frimurer.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frimurer.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frimurer.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentium-tug.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentium-tug.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gentium-tug.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnu-freefont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnu-freefont.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gnu-freefont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gothic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gothic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gothic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hfoldsty.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hfoldsty.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hfoldsty.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kpfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kpfonts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kpfonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libris.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libris.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libris.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linearA.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linearA.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linearA.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lxfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lxfonts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lxfonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdsymbol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdsymbol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mdsymbol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miama.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miama.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-miama.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnsymbol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnsymbol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mnsymbol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nkarta.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nkarta.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nkarta.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-b-outline.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-b-outline.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocr-b-outline.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oinuit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oinuit.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oinuit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pacioli.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pacioli.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pacioli.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phaistos.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phaistos.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phaistos.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plimsoll.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plimsoll.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plimsoll.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romande.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romande.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romande.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rosario.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rosario.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rosario.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauterfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauterfonts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sauterfonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skull.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skull.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skull.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-staves.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-staves.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-staves.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stix2-type1.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stix2-type1.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stix2-type1.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svrsymbols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svrsymbols.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svrsymbols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tengwarscript.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tengwarscript.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tengwarscript.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tfrupee.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tfrupee.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tfrupee.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tpslifonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tpslifonts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tpslifonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trajan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trajan.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trajan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txfontsb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txfontsb.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-txfontsb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-universa.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-universa.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-universa.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venturisadf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venturisadf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-venturisadf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yfonts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yfonts.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=e41122c5e4c33a0c831c617e0519e979 diff --git a/metadata/md5-cache/dev-texlive/texlive-fontsrecommended-2021 b/metadata/md5-cache/dev-texlive/texlive-fontsrecommended-2021 index 2b20de0dcf51..616b1db11676 100644 --- a/metadata/md5-cache/dev-texlive/texlive-fontsrecommended-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-fontsrecommended-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=BSD GPL-1 GPL-2 LPPL-1.3 LPPL-1.3c OFL public-domain TeX TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-avantgar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-avantgar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookman-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-charter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-charter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-super-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-super-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmextra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euro-ce-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euro-ce-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eurosym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eurosym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fpl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fpl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-helvetic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-helvetic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lm-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lm-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marvosym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marvosym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpazo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpazo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manfnt-font-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manfnt-font-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflogo-font-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mflogo-font-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncntrsbk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncntrsbk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-palatino-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-palatino-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsfs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsfs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-symbol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-symbol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-times-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-times-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utopia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utopia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasy-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasy-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasysym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasysym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zapfchan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zapfchan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zapfding-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zapfding-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-fontsrecommended-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-fontsrecommended-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-charter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-charter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-super.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-super.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euro-ce.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euro-ce.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eurosym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eurosym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fpl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fpl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lm-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lm-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marvosym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marvosym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpazo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpazo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflogo-font.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mflogo-font.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsfs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsfs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utopia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utopia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasy-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasy-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasysym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasysym.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euro.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euro.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fpl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fpl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marvosym.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marvosym.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpazo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpazo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre-math.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre-math.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasysym.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasysym.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-avantgar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-avantgar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-avantgar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookman-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookman-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-charter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-charter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-charter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-super-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-super-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cm-super-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmextra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmextra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courier-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-courier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euro-ce-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euro-ce-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euro-ce-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eurosym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eurosym-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eurosym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fpl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fpl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fpl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-helvetic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-helvetic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-helvetic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lm-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lm-math-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lm-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marvosym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marvosym-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marvosym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpazo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpazo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathpazo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manfnt-font-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manfnt-font-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-manfnt-font-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflogo-font-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mflogo-font-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mflogo-font-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncntrsbk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncntrsbk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ncntrsbk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-palatino-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-palatino-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-palatino-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsfs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsfs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rsfs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-symbol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-symbol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-symbol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-gyre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre-math-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-gyre-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-times-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-times-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-times-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tipa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-txfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utopia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utopia-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-utopia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wasy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasy-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasy-type1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wasy-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasysym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasysym-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wasysym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zapfchan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zapfchan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zapfchan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zapfding-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zapfding-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zapfding-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-fontsrecommended-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-fontsrecommended-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-fontsrecommended-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-charter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-charter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-charter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cm-super.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cm-super.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cm-super.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euro-ce.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euro-ce.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euro-ce.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eurosym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eurosym.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eurosym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fpl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fpl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fpl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lm-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lm-math.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lm-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marvosym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marvosym.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marvosym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpazo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpazo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathpazo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mflogo-font.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mflogo-font.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mflogo-font.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rsfs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rsfs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rsfs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-gyre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre-math.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-gyre-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tipa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-txfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utopia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utopia.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-utopia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wasy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasy-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasy-type1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wasy-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasysym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasysym.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wasysym.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euro.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euro.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euro.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fpl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fpl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fpl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marvosym.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marvosym.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marvosym.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpazo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpazo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathpazo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-gyre.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-gyre-math.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-gyre-math.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-gyre-math.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wasysym.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wasysym.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wasysym.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=51b4085e89bae86aec36c6ec7e7364dc diff --git a/metadata/md5-cache/dev-texlive/texlive-fontutils-2021 b/metadata/md5-cache/dev-texlive/texlive-fontutils-2021 index 6f24f48b236e..75cce5b0c8e5 100644 --- a/metadata/md5-cache/dev-texlive/texlive-fontutils-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-fontutils-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=Artistic BSD GPL-1 GPL-2 LPPL-1.3 LPPL-1.3c public-domain TeX TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afm2pl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afm2pl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-albatross-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-albatross-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dosepsbin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dosepsbin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epstopdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epstopdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontware-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontware-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcdftypetools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcdftypetools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metatype1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metatype1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ps2pk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ps2pk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ps2eps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ps2eps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psutils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psutils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvipsconfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvipsconfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontinst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontinst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mf2pt1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mf2pt1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t1utils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t1utils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-fontutils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-fontutils-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afm2pl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afm2pl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-albatross.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-albatross.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dosepsbin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dosepsbin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epstopdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epstopdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontware.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontware.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcdftypetools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcdftypetools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ps2pk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ps2pk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ps2eps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ps2eps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psutils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psutils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontinst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontinst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mf2pt1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mf2pt1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t1utils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t1utils.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-albatross.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-albatross.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dosepsbin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dosepsbin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metatype1.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metatype1.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontinst.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontinst.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afm2pl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afm2pl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-afm2pl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-albatross-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-albatross-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-albatross-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dosepsbin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dosepsbin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dosepsbin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epstopdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epstopdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epstopdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontware-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontware-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontware-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcdftypetools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcdftypetools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lcdftypetools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metatype1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metatype1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metatype1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ps2pk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ps2pk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ps2pk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ps2eps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ps2eps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ps2eps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psutils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psutils-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psutils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvipsconfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvipsconfig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dvipsconfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontinst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontinst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontinst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mf2pt1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mf2pt1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mf2pt1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t1utils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t1utils-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-t1utils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-fontutils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-fontutils-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-fontutils-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afm2pl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afm2pl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-afm2pl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-albatross.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-albatross.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-albatross.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dosepsbin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dosepsbin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dosepsbin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epstopdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epstopdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epstopdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontware.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontware.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontware.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcdftypetools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcdftypetools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lcdftypetools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ps2pk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ps2pk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ps2pk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ps2eps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ps2eps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ps2eps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psutils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psutils.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psutils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontinst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontinst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontinst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mf2pt1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mf2pt1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mf2pt1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t1utils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t1utils.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-t1utils.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-albatross.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-albatross.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-albatross.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dosepsbin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dosepsbin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dosepsbin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metatype1.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metatype1.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metatype1.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontinst.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontinst.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontinst.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=9673a51716a053801d64bc5be2037c08 diff --git a/metadata/md5-cache/dev-texlive/texlive-formatsextra-2021 b/metadata/md5-cache/dev-texlive/texlive-formatsextra-2021 index 2f45e86272ef..cb9ee4a69567 100644 --- a/metadata/md5-cache/dev-texlive/texlive-formatsextra-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-formatsextra-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=GPL-1 GPL-2 GPL-2+ RDEPEND=>=dev-texlive/texlive-basic-2021 >=dev-texlive/texlive-latex-2021 >=dev-texlive/texlive-plaingeneric-2021 dev-texlive/texlive-xetex >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eplain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eplain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jadetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jadetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lollipop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lollipop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-passivetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-passivetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psizzl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psizzl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-startex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-startex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texsis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texsis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmltexconfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmltexconfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aleph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aleph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antomega-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antomega-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lambda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lambda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mxedruli-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mxedruli-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-omega-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-omega-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-omegaware-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-omegaware-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-otibet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-otibet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-formatsextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-formatsextra-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eplain.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eplain.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jadetex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jadetex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lollipop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lollipop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psizzl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psizzl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-startex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-startex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texsis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texsis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aleph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aleph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antomega.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antomega.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mxedruli.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mxedruli.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-omega.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-omega.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-omegaware.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-omegaware.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-otibet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-otibet.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eplain.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eplain.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jadetex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jadetex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psizzl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psizzl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-startex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-startex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antomega.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antomega.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-otibet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-otibet.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-edmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eplain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eplain-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eplain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jadetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jadetex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jadetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lollipop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lollipop-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lollipop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mltex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-passivetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-passivetex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-passivetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psizzl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psizzl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psizzl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-startex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-startex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-startex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texsis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texsis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texsis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmltex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xmltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmltexconfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmltexconfig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xmltexconfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aleph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aleph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aleph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antomega-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antomega-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-antomega-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lambda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lambda-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lambda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mxedruli-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mxedruli-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mxedruli-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-omega-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-omega-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-omega-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-omegaware-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-omegaware-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-omegaware-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-otibet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-otibet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-otibet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-formatsextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-formatsextra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-formatsextra-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-edmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eplain.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eplain.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eplain.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jadetex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jadetex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jadetex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lollipop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lollipop.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lollipop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mltex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psizzl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psizzl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psizzl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-startex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-startex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-startex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texsis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texsis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texsis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmltex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xmltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aleph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aleph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aleph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antomega.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antomega.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-antomega.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mxedruli.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mxedruli.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mxedruli.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-omega.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-omega.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-omega.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-omegaware.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-omegaware.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-omegaware.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-otibet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-otibet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-otibet.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmac.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-edmac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eplain.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eplain.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eplain.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jadetex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jadetex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jadetex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psizzl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psizzl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psizzl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-startex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-startex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-startex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antomega.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antomega.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-antomega.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-otibet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-otibet.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-otibet.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=403bcdeb0893bcb7cfbc733ce7cfad8d diff --git a/metadata/md5-cache/dev-texlive/texlive-games-2021 b/metadata/md5-cache/dev-texlive/texlive-games-2021 index 3fe4a8361cab..e3a99558a419 100644 --- a/metadata/md5-cache/dev-texlive/texlive-games-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-games-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=CC-BY-SA-4.0 GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-latex-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bartel-chess-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bartel-chess-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chess-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chess-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chess-problem-diagrams-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chess-problem-diagrams-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessboard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessboard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessfss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessfss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossword-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossword-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crosswrd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crosswrd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-egameps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-egameps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gamebook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gamebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-go-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-go-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hanoi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hanoi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-havannah-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-havannah-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hexgame-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hexgame-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hmtrump-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hmtrump-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-horoscop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-horoscop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jigsaw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jigsaw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labyrinth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labyrinth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logicpuzzle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logicpuzzle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musikui-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musikui-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nimsticks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nimsticks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onedown-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onedown-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-othello-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-othello-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-othelloboard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-othelloboard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-crosswords-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-crosswords-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psgo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psgo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realtranspose-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realtranspose-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reverxii-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reverxii-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rubik-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rubik-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schwalbe-chess-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schwalbe-chess-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sgame-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sgame-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skaknew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skaknew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudoku-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudoku-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudokubundle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudokubundle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xskak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xskak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-games-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-games-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bartel-chess-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bartel-chess-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chess.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chess.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chess-problem-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chess-problem-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessboard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessboard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessfss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessfss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossword.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossword.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crosswrd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crosswrd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-egameps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-egameps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gamebook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gamebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-go.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-go.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-havannah.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-havannah.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hexgame.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hexgame.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hmtrump.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hmtrump.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-horoscop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-horoscop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jigsaw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jigsaw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labyrinth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labyrinth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logicpuzzle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logicpuzzle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musikui.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musikui.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nimsticks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nimsticks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onedown.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onedown.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-othello.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-othello.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-othelloboard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-othelloboard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-crosswords.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-crosswords.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psgo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psgo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realtranspose.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realtranspose.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reverxii.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reverxii.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rubik.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rubik.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schwalbe-chess.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schwalbe-chess.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sgame.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sgame.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skaknew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skaknew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudoku.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudoku.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudokubundle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudokubundle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xskak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xskak.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chess-problem-diagrams.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chess-problem-diagrams.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessboard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessboard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessfss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessfss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossword.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossword.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crosswrd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crosswrd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gamebook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gamebook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-go.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-go.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-havannah.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-havannah.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-horoscop.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-horoscop.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nimsticks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nimsticks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onedown.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onedown.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realtranspose.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realtranspose.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rubik.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rubik.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schwalbe-chess.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schwalbe-chess.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soup.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soup.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudoku.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudoku.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudokubundle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudokubundle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xskak.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xskak.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bartel-chess-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bartel-chess-fonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bartel-chess-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chess-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chess-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chess-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chess-problem-diagrams-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chess-problem-diagrams-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chess-problem-diagrams-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessboard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessboard-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chessboard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessfss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessfss-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chessfss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossword-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossword-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crossword-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crosswrd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crosswrd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crosswrd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-egameps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-egameps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-egameps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gamebook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gamebook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gamebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-go-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-go-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-go-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hanoi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hanoi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hanoi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-havannah-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-havannah-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-havannah-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hexgame-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hexgame-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hexgame-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hmtrump-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hmtrump-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hmtrump-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-horoscop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-horoscop-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-horoscop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jigsaw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jigsaw-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jigsaw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labyrinth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labyrinth-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labyrinth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logicpuzzle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logicpuzzle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logicpuzzle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musikui-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musikui-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musikui-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nimsticks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nimsticks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nimsticks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onedown-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onedown-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-onedown-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-othello-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-othello-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-othello-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-othelloboard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-othelloboard-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-othelloboard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-crosswords-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-crosswords-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pas-crosswords-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psgo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psgo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psgo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realtranspose-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realtranspose-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realtranspose-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reverxii-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reverxii-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-reverxii-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rubik-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rubik-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rubik-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schwalbe-chess-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schwalbe-chess-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schwalbe-chess-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sgame-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sgame-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sgame-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skaknew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skaknew-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skaknew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soup-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudoku-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudoku-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sudoku-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudokubundle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudokubundle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sudokubundle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xskak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xskak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xskak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-games-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-games-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-games-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bartel-chess-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bartel-chess-fonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bartel-chess-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chess.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chess.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chess.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chess-problem-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chess-problem-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chess-problem-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessboard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessboard.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chessboard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessfss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessfss.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chessfss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossword.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossword.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crossword.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crosswrd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crosswrd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crosswrd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-egameps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-egameps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-egameps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gamebook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gamebook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gamebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-go.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-go.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-go.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-havannah.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-havannah.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-havannah.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hexgame.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hexgame.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hexgame.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hmtrump.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hmtrump.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hmtrump.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-horoscop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-horoscop.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-horoscop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jigsaw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jigsaw.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jigsaw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labyrinth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labyrinth.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labyrinth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logicpuzzle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logicpuzzle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logicpuzzle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musikui.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musikui.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musikui.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nimsticks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nimsticks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nimsticks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onedown.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onedown.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-onedown.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-othello.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-othello.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-othello.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-othelloboard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-othelloboard.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-othelloboard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-crosswords.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-crosswords.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pas-crosswords.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psgo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psgo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psgo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realtranspose.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realtranspose.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realtranspose.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reverxii.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reverxii.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-reverxii.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rubik.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rubik.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rubik.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schwalbe-chess.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schwalbe-chess.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schwalbe-chess.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sgame.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sgame.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sgame.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skak.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skaknew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skaknew.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skaknew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soup.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudoku.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudoku.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sudoku.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudokubundle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudokubundle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sudokubundle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xskak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xskak.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xskak.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chess-problem-diagrams.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chess-problem-diagrams.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chess-problem-diagrams.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessboard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessboard.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chessboard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chessfss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chessfss.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chessfss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossword.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossword.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crossword.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crosswrd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crosswrd.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crosswrd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gamebook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gamebook.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gamebook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-go.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-go.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-go.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-havannah.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-havannah.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-havannah.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-horoscop.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-horoscop.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-horoscop.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nimsticks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nimsticks.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nimsticks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onedown.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onedown.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-onedown.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realtranspose.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realtranspose.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realtranspose.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rubik.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rubik.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rubik.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schwalbe-chess.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schwalbe-chess.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schwalbe-chess.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soup.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soup.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soup.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudoku.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudoku.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sudoku.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sudokubundle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sudokubundle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sudokubundle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xskak.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xskak.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xskak.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=9d6f381e83de80a2b9ad238a4e1ee300 diff --git a/metadata/md5-cache/dev-texlive/texlive-humanities-2021 b/metadata/md5-cache/dev-texlive/texlive-humanities-2021 index 8863fc6490de..ec4d507321f7 100644 --- a/metadata/md5-cache/dev-texlive/texlive-humanities-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-humanities-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 LPPL-1.3c RDEPEND=>=dev-texlive/texlive-latex-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adtrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adtrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-lds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-lds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-mouth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-mouth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-parse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-parse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-covington-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-covington-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diadia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diadia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dramatist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dramatist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvgloss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvgloss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecltree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecltree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edfnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edfnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ednotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ednotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledform-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledform-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gb4e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gb4e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmverse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmverse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jura-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jura-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-juraabbrev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-juraabbrev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-juramisc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-juramisc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurarsp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurarsp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ledmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ledmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexikon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexikon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ling-macros-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ling-macros-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linguex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linguex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-liturg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-liturg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metrix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metrix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nnext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nnext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parallel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parallel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parrun-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parrun-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonrule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonrule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plari-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plari-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-play-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-play-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poemscol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poemscol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetry-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetry-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetrytex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetrytex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qobitree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qobitree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qtree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qtree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reledmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reledmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rrgtrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rrgtrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rtklage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rtklage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-screenplay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-screenplay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-screenplay-pkg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-screenplay-pkg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textglos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textglos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theatre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theatre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thalie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thalie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tree-dvips-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tree-dvips-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xyling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xyling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-humanities-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-humanities-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adtrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adtrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-lds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-lds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-mouth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-mouth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-parse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-parse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-covington.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-covington.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diadia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diadia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dramatist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dramatist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvgloss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvgloss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecltree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecltree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edfnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edfnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ednotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ednotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledform.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledform.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gb4e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gb4e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmverse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmverse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jura.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jura.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-juraabbrev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-juraabbrev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-juramisc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-juramisc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurarsp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurarsp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ledmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ledmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexikon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexikon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ling-macros.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ling-macros.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linguex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linguex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-liturg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-liturg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metrix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metrix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nnext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nnext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parallel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parallel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parrun.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parrun.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonrule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonrule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plari.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plari.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-play.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-play.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poemscol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poemscol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetry.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetry.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetrytex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetrytex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qobitree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qobitree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qtree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qtree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reledmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reledmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rrgtrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rrgtrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rtklage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rtklage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-screenplay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-screenplay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-screenplay-pkg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-screenplay-pkg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textglos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textglos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theatre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theatre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thalie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thalie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tree-dvips.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tree-dvips.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xyling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xyling.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-lds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-lds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-mouth.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-mouth.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dramatist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dramatist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvgloss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvgloss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edfnotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edfnotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledform.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledform.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledmac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledmac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jura.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jura.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-juraabbrev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-juraabbrev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurarsp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurarsp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ledmac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ledmac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-liturg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-liturg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metrix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metrix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nnext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nnext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parallel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parallel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parrun.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parrun.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plari.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plari.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-play.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-play.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poemscol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poemscol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetry.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetry.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetrytex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetrytex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reledmac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reledmac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rrgtrees.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rrgtrees.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-screenplay.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-screenplay.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textglos.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textglos.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thalie.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thalie.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verse.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verse.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adtrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adtrees-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adtrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-lds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-lds-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-lds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-mouth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-mouth-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-mouth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-parse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-parse-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-parse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-covington-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-covington-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-covington-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diadia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diadia-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diadia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dramatist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dramatist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dramatist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvgloss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvgloss-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dvgloss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecltree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecltree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecltree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edfnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edfnotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-edfnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ednotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ednotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ednotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledform-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledform-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eledform-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledmac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eledmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gb4e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gb4e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gb4e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmverse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmverse-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmverse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jura-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jura-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jura-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-juraabbrev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-juraabbrev-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-juraabbrev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-juramisc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-juramisc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-juramisc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurarsp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurarsp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jurarsp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ledmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ledmac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ledmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexikon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexikon-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lexikon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lexref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ling-macros-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ling-macros-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ling-macros-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linguex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linguex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linguex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-liturg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-liturg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-liturg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metrix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metrix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metrix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nnext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nnext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nnext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parallel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parallel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parallel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parrun-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parrun-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parrun-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonrule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonrule-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phonrule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plari-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plari-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plari-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-play-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-play-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-play-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poemscol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poemscol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poemscol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetry-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetry-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poetry-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetrytex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetrytex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poetrytex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qobitree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qobitree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qobitree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qtree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qtree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qtree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reledmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reledmac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-reledmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rrgtrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rrgtrees-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rrgtrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rtklage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rtklage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rtklage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-screenplay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-screenplay-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-screenplay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-screenplay-pkg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-screenplay-pkg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-screenplay-pkg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sides-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textglos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textglos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textglos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theatre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theatre-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-theatre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thalie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thalie-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thalie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tree-dvips-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tree-dvips-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tree-dvips-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verse-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xyling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xyling-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xyling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-humanities-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-humanities-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-humanities-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adtrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adtrees.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adtrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-lds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-lds.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-lds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-mouth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-mouth.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-mouth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-parse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-parse.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-parse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-covington.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-covington.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-covington.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diadia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diadia.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diadia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dramatist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dramatist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dramatist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvgloss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvgloss.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dvgloss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecltree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecltree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecltree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edfnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edfnotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-edfnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ednotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ednotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ednotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledform.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledform.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eledform.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledmac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eledmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gb4e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gb4e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gb4e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmverse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmverse.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmverse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jura.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jura.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jura.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-juraabbrev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-juraabbrev.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-juraabbrev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-juramisc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-juramisc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-juramisc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurarsp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurarsp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jurarsp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ledmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ledmac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ledmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexikon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexikon.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lexikon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lexref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lexref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lexref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ling-macros.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ling-macros.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ling-macros.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linguex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linguex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linguex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-liturg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-liturg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-liturg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metrix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metrix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metrix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nnext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nnext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nnext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parallel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parallel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parallel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parrun.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parrun.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parrun.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonrule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonrule.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phonrule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plari.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plari.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plari.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-play.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-play.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-play.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poemscol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poemscol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poemscol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetry.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetry.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poetry.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetrytex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetrytex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poetrytex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qobitree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qobitree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qobitree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qtree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qtree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qtree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reledmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reledmac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-reledmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rrgtrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rrgtrees.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rrgtrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rtklage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rtklage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rtklage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-screenplay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-screenplay.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-screenplay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-screenplay-pkg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-screenplay-pkg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-screenplay-pkg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sides.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textglos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textglos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textglos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theatre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theatre.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-theatre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thalie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thalie.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thalie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tree-dvips.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tree-dvips.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tree-dvips.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verse.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xyling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xyling.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xyling.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-lds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-lds.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-lds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-mouth.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-mouth.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-mouth.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dramatist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dramatist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dramatist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvgloss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvgloss.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dvgloss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edfnotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edfnotes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-edfnotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledform.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledform.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eledform.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eledmac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eledmac.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eledmac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jura.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jura.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jura.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-juraabbrev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-juraabbrev.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-juraabbrev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jurarsp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jurarsp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jurarsp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ledmac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ledmac.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ledmac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-liturg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-liturg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-liturg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metrix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metrix.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metrix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nnext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nnext.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nnext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parallel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parallel.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parallel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parrun.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parrun.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parrun.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plari.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plari.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plari.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-play.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-play.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-play.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poemscol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poemscol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poemscol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetry.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetry.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poetry.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poetrytex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poetrytex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poetrytex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reledmac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reledmac.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-reledmac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rrgtrees.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rrgtrees.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rrgtrees.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-screenplay.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-screenplay.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-screenplay.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textglos.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textglos.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textglos.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thalie.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thalie.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thalie.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verse.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verse.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verse.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=c3e9c920b421b9db778b84fd8b6fa24c diff --git a/metadata/md5-cache/dev-texlive/texlive-langarabic-2021 b/metadata/md5-cache/dev-texlive/texlive-langarabic-2021 index 9d20cb8e6eb0..9ad70c65ff00 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langarabic-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langarabic-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=GPL-2 GPL-3+ LPPL-1.3 LPPL-1.3c OFL public-domain RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alkalami-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alkalami-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alpha-persian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alpha-persian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amiri-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amiri-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabi-add-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabi-add-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabluatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabluatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidihl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidihl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dad-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dad-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ghab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ghab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvarabic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvarabic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-arabic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-arabic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-farsi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-farsi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imsproc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imsproc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kurdishlipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kurdishlipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-persian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-persian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luabidi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luabidi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-na-box-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-na-box-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-persian-bib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-persian-bib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simurgh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simurgh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texnegar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texnegar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian-hm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian-hm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langarabic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langarabic-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alkalami.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alkalami.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alpha-persian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alpha-persian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amiri.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amiri.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabi-add.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabi-add.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabluatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabluatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidihl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidihl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dad.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dad.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ghab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ghab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvarabic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvarabic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imsproc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imsproc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kurdishlipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kurdishlipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-persian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-persian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luabidi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luabidi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-na-box.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-na-box.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-persian-bib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-persian-bib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simurgh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simurgh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texnegar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texnegar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian-hm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian-hm.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabluatex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabluatex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texnegar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texnegar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian-hm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian-hm.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alkalami-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alkalami-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alkalami-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alpha-persian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alpha-persian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alpha-persian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amiri-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amiri-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amiri-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabi-add-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabi-add-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabi-add-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabluatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabluatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabluatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabtex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidihl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidihl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidihl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dad-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dad-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dad-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ghab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ghab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ghab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvarabic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvarabic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hvarabic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-arabic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-arabic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-arabic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-farsi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-farsi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-farsi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imsproc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imsproc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imsproc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kurdishlipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kurdishlipsum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kurdishlipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-persian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-persian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-persian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luabidi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luabidi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luabidi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-na-box-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-na-box-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-na-box-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-persian-bib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-persian-bib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-persian-bib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quran-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sexam-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simurgh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simurgh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simurgh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texnegar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texnegar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texnegar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tram-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xepersian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian-hm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian-hm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xepersian-hm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langarabic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langarabic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langarabic-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alkalami.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alkalami.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alkalami.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alpha-persian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alpha-persian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alpha-persian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amiri.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amiri.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amiri.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabi-add.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabi-add.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabi-add.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabluatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabluatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabluatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabtex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidihl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidihl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidihl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dad.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dad.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dad.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ghab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ghab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ghab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvarabic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvarabic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hvarabic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imsproc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imsproc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imsproc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kurdishlipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kurdishlipsum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kurdishlipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-persian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-persian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-persian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luabidi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luabidi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luabidi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-na-box.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-na-box.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-na-box.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-persian-bib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-persian-bib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-persian-bib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quran.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sexam.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simurgh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simurgh.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simurgh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texnegar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texnegar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texnegar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tram.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xepersian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian-hm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian-hm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xepersian-hm.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabluatex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabluatex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabluatex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidi.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texnegar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texnegar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texnegar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xepersian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xepersian-hm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xepersian-hm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xepersian-hm.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=a54a06765d06bd722c7a689e8d8d31c4 diff --git a/metadata/md5-cache/dev-texlive/texlive-langchinese-2021 b/metadata/md5-cache/dev-texlive/texlive-langchinese-2021 index 53d9438a7f7d..0eb432817a3a 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langchinese-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langchinese-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=FDL-1.1 GPL-1 GPL-2 LGPL-2 LPPL-1.3 LPPL-1.3c MIT public-domain TeX TeX-other-free RDEPEND=>=dev-texlive/texlive-langcjk-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arphic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arphic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arphic-ttf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arphic-ttf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-by-example-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-by-example-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-faq-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-faq-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-manual-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-manual-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cns-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cns-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctex-faq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctex-faq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fandol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fandol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fduthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fduthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-chinese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-chinese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-install-latex-guide-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-install-latex-guide-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-notes-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-notes-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-chinese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-chinese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nanicolle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nanicolle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-njurepo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-njurepo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfornament-han-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfornament-han-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qyxf-book-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qyxf-book-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texproposal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texproposal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xtuthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xtuthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upzhkinsoku-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upzhkinsoku-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpinyin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpinyin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhlineskip-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhlineskip-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhlipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhlipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhmetrics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhmetrics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhmetrics-uptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhmetrics-uptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhnumber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhnumber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhspacing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhspacing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langchinese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langchinese-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arphic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arphic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arphic-ttf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arphic-ttf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-by-example-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-by-example-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-faq-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-faq-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-manual-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-manual-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cns.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cns.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctex-faq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctex-faq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fandol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fandol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fduthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fduthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-install-latex-guide-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-install-latex-guide-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-notes-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-notes-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-chinese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-chinese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nanicolle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nanicolle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-njurepo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-njurepo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfornament-han.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfornament-han.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qyxf-book.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qyxf-book.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texproposal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texproposal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xtuthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xtuthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upzhkinsoku.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upzhkinsoku.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpinyin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpinyin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhlineskip.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhlineskip.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhlipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhlipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhmetrics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhmetrics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhmetrics-uptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhmetrics-uptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhnumber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhnumber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhspacing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhspacing.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fduthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fduthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-njurepo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-njurepo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpinyin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpinyin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhlipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhlipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhmetrics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhmetrics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhnumber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhnumber.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arphic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arphic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arphic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arphic-ttf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arphic-ttf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arphic-ttf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-by-example-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-by-example-zh-cn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asymptote-by-example-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-faq-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-faq-zh-cn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asymptote-faq-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-manual-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-manual-zh-cn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asymptote-manual-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cns-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cns-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cns-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctex-faq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctex-faq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctex-faq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fandol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fandol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fandol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fduthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fduthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fduthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-chinese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-chinese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-chinese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient-cn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-impatient-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-install-latex-guide-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-install-latex-guide-zh-cn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-install-latex-guide-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-notes-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-notes-zh-cn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-notes-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-chinese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-chinese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-chinese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nanicolle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nanicolle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nanicolle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-njurepo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-njurepo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-njurepo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfornament-han-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfornament-han-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfornament-han-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qyxf-book-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qyxf-book-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qyxf-book-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-zh-cn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-zh-cn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-zh-cn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texproposal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texproposal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texproposal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xtuthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xtuthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xtuthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upzhkinsoku-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upzhkinsoku-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-upzhkinsoku-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpinyin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpinyin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpinyin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhlineskip-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhlineskip-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhlineskip-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhlipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhlipsum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhlipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhmetrics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhmetrics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhmetrics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhmetrics-uptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhmetrics-uptex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhmetrics-uptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhnumber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhnumber-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhnumber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhspacing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhspacing-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhspacing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langchinese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langchinese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langchinese-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arphic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arphic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arphic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arphic-ttf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arphic-ttf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arphic-ttf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-by-example-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-by-example-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asymptote-by-example-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-faq-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-faq-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asymptote-faq-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asymptote-manual-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asymptote-manual-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asymptote-manual-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cns.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cns.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cns.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctex-faq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctex-faq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctex-faq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fandol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fandol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fandol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fduthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fduthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fduthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient-cn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-impatient-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-install-latex-guide-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-install-latex-guide-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-install-latex-guide-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-notes-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-notes-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-notes-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-chinese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-chinese.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-chinese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nanicolle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nanicolle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nanicolle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-njurepo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-njurepo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-njurepo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfornament-han.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfornament-han.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfornament-han.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qyxf-book.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qyxf-book.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qyxf-book.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-zh-cn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texproposal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texproposal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texproposal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xtuthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xtuthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xtuthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upzhkinsoku.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upzhkinsoku.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-upzhkinsoku.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpinyin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpinyin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpinyin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhlineskip.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhlineskip.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhlineskip.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhlipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhlipsum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhlipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhmetrics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhmetrics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhmetrics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhmetrics-uptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhmetrics-uptex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhmetrics-uptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhnumber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhnumber.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhnumber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhspacing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhspacing.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhspacing.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fduthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fduthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fduthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-njurepo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-njurepo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-njurepo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpinyin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpinyin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpinyin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhlipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhlipsum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhlipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhmetrics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhmetrics.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhmetrics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zhnumber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zhnumber.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zhnumber.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=f0e873d7b516e1c91382c6831fc140d8 diff --git a/metadata/md5-cache/dev-texlive/texlive-langcjk-2021 b/metadata/md5-cache/dev-texlive/texlive-langcjk-2021 index 4adbf2a83ad9..b460cc9086cf 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langcjk-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langcjk-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=BSD GPL-1 GPL-2 GPL-3 LPPL-1.3 LPPL-1.3c MIT TeX RDEPEND=>=dev-texlive/texlive-basic-2021 >=dev-texlive/texlive-basic-2019 >=app-text/texlive-core-2010[cjk] >=dev-texlive/texlive-latex-2011 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adobemapping-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adobemapping-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-c90-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-c90-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-gs-integrate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-gs-integrate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjkpunct-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjkpunct-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjkutils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjkutils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dnp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dnp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garuda-c90-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garuda-c90-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixjfm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixjfm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jfmutil-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jfmutil-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-norasi-c90-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-norasi-c90-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxtatescale-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxtatescale-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcjk2uni-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcjk2uni-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjafont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjafont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langcjk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langcjk-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-c90.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-c90.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-gs-integrate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-gs-integrate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjkpunct.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjkpunct.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjkutils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjkutils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixjfm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixjfm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jfmutil.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jfmutil.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxtatescale.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxtatescale.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcjk2uni.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcjk2uni.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjafont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjafont.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-c90.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-c90.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-gs-integrate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-gs-integrate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjkpunct.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjkpunct.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garuda-c90.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garuda-c90.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-norasi-c90.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-norasi-c90.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcjk2uni.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcjk2uni.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adobemapping-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adobemapping-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adobemapping-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-c90-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-c90-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-c90-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-gs-integrate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-gs-integrate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjk-gs-integrate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjkpunct-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjkpunct-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjkpunct-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjkutils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjkutils-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjkutils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dnp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dnp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dnp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garuda-c90-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garuda-c90-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-garuda-c90-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixjfm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixjfm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixjfm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jfmutil-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jfmutil-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jfmutil-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-norasi-c90-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-norasi-c90-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-norasi-c90-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxtatescale-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxtatescale-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxtatescale-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcjk2uni-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcjk2uni-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcjk2uni-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjafont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjafont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zxjafont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langcjk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langcjk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langcjk-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-c90.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-c90.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-c90.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-gs-integrate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-gs-integrate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjk-gs-integrate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjkpunct.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjkpunct.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjkpunct.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjkutils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjkutils.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjkutils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixjfm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixjfm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixjfm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jfmutil.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jfmutil.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jfmutil.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxtatescale.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxtatescale.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxtatescale.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcjk2uni.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcjk2uni.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcjk2uni.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjafont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjafont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zxjafont.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-c90.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-c90.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-c90.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-gs-integrate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-gs-integrate.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjk-gs-integrate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjkpunct.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjkpunct.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjkpunct.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garuda-c90.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garuda-c90.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-garuda-c90.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-norasi-c90.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-norasi-c90.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-norasi-c90.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcjk2uni.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcjk2uni.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcjk2uni.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=51ee9fa0740c13bb3e86f99417472925 diff --git a/metadata/md5-cache/dev-texlive/texlive-langcyrillic-2021 b/metadata/md5-cache/dev-texlive/texlive-langcyrillic-2021 index 6f9dd57769cc..91ae681087ce 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langcyrillic-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langcyrillic-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=GPL-1 GPL-2 LPPL-1.3 LPPL-1.3c MIT public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=dev-texlive/texlive-latex-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-belarusian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-belarusian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bulgarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bulgarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-russian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-russian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbianc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbianc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-ukrainian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-ukrainian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-churchslavonic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-churchslavonic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmcyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmcyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrillic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrillic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrillic-bin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrillic-bin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrplain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrplain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-disser-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-disser-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eskd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eskd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eskdx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eskdx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gost-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-belarusian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-belarusian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-bulgarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-bulgarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-churchslavonic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-churchslavonic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-mongolian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-mongolian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-russian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-russian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-serbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-serbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-ukrainian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-ukrainian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcyw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcyw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lhcyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lhcyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-bulgarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-bulgarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-mongol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-mongol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-russian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-russian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-ukr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-ukr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mongolian-babel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mongolian-babel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-montex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-montex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpman-ru-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpman-ru-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numnameru-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numnameru-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eucl-translation-bg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eucl-translation-bg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ruhyphen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ruhyphen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-russ-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-russ-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-apostrophe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-apostrophe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-date-lat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-date-lat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-def-cyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-def-cyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-lig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-lig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-ru-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-ru-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-sr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-sr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ukrhyph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ukrhyph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecyrmongolian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecyrmongolian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langcyrillic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langcyrillic-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-belarusian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-belarusian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-russian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-russian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbianc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbianc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-ukrainian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-ukrainian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-churchslavonic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-churchslavonic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmcyr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmcyr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrillic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrillic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrillic-bin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrillic-bin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-disser.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-disser.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eskd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eskd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eskdx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eskdx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gost.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gost.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcyw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcyw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-mongol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-mongol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-russian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-russian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-ukr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-ukr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mongolian-babel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mongolian-babel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-montex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-montex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpman-ru.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpman-ru.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numnameru.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numnameru.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eucl-translation-bg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eucl-translation-bg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-russ.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-russ.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-apostrophe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-apostrophe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-date-lat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-date-lat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-def-cyr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-def-cyr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-lig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-lig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-ru.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-ru.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-sr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-sr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ukrhyph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ukrhyph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecyrmongolian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecyrmongolian.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-belarusian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-belarusian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bulgarian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bulgarian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-russian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-russian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbianc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbianc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-ukrainian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-ukrainian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrillic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrillic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-disser.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-disser.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eskd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eskd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gost.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gost.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcyw.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcyw.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lh.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lh.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lhcyr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lhcyr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mongolian-babel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mongolian-babel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ruhyphen.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ruhyphen.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecyrmongolian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecyrmongolian.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-belarusian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-belarusian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-belarusian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bulgarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bulgarian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-bulgarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-russian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-russian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-russian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-serbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbianc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbianc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-serbianc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-ukrainian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-ukrainian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-ukrainian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-churchslavonic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-churchslavonic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-churchslavonic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmcyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmcyr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmcyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrillic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrillic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cyrillic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrillic-bin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrillic-bin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cyrillic-bin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrplain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrplain-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cyrplain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-disser-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-disser-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-disser-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eskd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eskd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eskd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eskdx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eskdx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eskdx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gost-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gost-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-belarusian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-belarusian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-belarusian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-bulgarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-bulgarian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-bulgarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-churchslavonic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-churchslavonic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-churchslavonic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-mongolian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-mongolian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-mongolian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-russian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-russian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-russian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-serbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-serbian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-serbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-ukrainian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-ukrainian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-ukrainian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcyw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcyw-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lcyw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lhcyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lhcyr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lhcyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-bulgarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-bulgarian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-bulgarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-mongol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-mongol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-mongol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-russian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-russian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-russian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-ukr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-ukr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-ukr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mongolian-babel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mongolian-babel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mongolian-babel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-montex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-montex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-montex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpman-ru-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpman-ru-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpman-ru-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numnameru-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numnameru-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numnameru-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eucl-translation-bg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eucl-translation-bg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-eucl-translation-bg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ruhyphen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ruhyphen-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ruhyphen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-russ-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-russ-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-russ-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-apostrophe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-apostrophe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-serbian-apostrophe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-date-lat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-date-lat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-serbian-date-lat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-def-cyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-def-cyr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-serbian-def-cyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-lig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-lig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-serbian-lig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-t2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-ru-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-ru-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-ru-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-sr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-sr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-sr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ukrhyph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ukrhyph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ukrhyph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecyrmongolian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecyrmongolian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xecyrmongolian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langcyrillic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langcyrillic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langcyrillic-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-belarusian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-belarusian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-belarusian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-russian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-russian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-russian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-serbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbianc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbianc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-serbianc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-ukrainian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-ukrainian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-ukrainian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-churchslavonic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-churchslavonic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-churchslavonic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmcyr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmcyr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmcyr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrillic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrillic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cyrillic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrillic-bin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrillic-bin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cyrillic-bin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-disser.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-disser.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-disser.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eskd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eskd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eskd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eskdx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eskdx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eskdx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gost.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gost.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gost.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcyw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcyw.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lcyw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lh.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-mongol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-mongol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-mongol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-russian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-russian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-russian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-ukr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-ukr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-ukr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mongolian-babel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mongolian-babel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mongolian-babel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-montex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-montex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-montex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpman-ru.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpman-ru.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpman-ru.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numnameru.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numnameru.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numnameru.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eucl-translation-bg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eucl-translation-bg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-eucl-translation-bg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-russ.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-russ.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-russ.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-apostrophe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-apostrophe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-serbian-apostrophe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-date-lat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-date-lat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-serbian-date-lat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-def-cyr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-def-cyr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-serbian-def-cyr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-serbian-lig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-serbian-lig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-serbian-lig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-t2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-ru.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-ru.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-ru.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-sr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-sr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-sr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ukrhyph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ukrhyph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ukrhyph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecyrmongolian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecyrmongolian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xecyrmongolian.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-belarusian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-belarusian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-belarusian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bulgarian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bulgarian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-bulgarian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-russian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-russian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-russian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-serbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-serbianc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-serbianc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-serbianc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-ukrainian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-ukrainian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-ukrainian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyrillic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyrillic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cyrillic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-disser.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-disser.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-disser.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eskd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eskd.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eskd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gost.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gost.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gost.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcyw.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcyw.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lcyw.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lh.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lh.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lh.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lhcyr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lhcyr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lhcyr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mongolian-babel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mongolian-babel.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mongolian-babel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ruhyphen.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ruhyphen.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ruhyphen.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecyrmongolian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecyrmongolian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xecyrmongolian.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=22bd4ef9189e67eef5449d758469752e diff --git a/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2021 b/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2021 index 62af50056201..8b306fc7d1b4 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=GPL-1 GPL-2 LPPL-1.3 TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=dev-texlive/texlive-latex-2021 >=app-text/texlive-core-2014[xetex] >=dev-texlive/texlive-luatex-2016 >=dev-texlive/texlive-langenglish-2019 >=dev-texlive/texlive-langeuropean-2019 >=dev-texlive/texlive-langfrench-2019 >=dev-texlive/texlive-langgerman-2019 >=dev-texlive/texlive-langpolish-2019 >=dev-texlive/texlive-langspanish-2019 >=dev-texlive/texlive-langitalian-2019 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-czech-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-czech-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cnbwp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cnbwp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csbulletin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csbulletin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cslatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cslatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csplain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csplain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-czech-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-czech-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-slovak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-slovak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-czech-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-czech-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-slovak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-slovak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-cz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-cz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langczechslovak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langczechslovak-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-czech.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-czech.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cnbwp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cnbwp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csbulletin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csbulletin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cslatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cslatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-czech.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-czech.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-slovak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-slovak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-cz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-cz.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-czech.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-czech.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovak.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovak.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cslatex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cslatex.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-czech-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-czech-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-czech-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-slovak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cnbwp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cnbwp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cnbwp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csbulletin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csbulletin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csbulletin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cslatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cslatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cslatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csplain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csplain-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csplain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cstex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-czech-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-czech-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-czech-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-slovak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-slovak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-slovak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-czech-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-czech-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-czech-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-slovak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-slovak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-slovak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-cz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-cz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-cz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langczechslovak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langczechslovak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langczechslovak-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-czech.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-czech.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-czech.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovak.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-slovak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cnbwp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cnbwp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cnbwp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csbulletin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csbulletin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csbulletin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cslatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cslatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cslatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cstex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-czech.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-czech.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-czech.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-slovak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-slovak.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-slovak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-cz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-cz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-cz.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-czech.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-czech.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-czech.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovak.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovak.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-slovak.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cslatex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cslatex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cslatex.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=eaef3c91715a1b9ef289220cbe3f1037 diff --git a/metadata/md5-cache/dev-texlive/texlive-langenglish-2021 b/metadata/md5-cache/dev-texlive/texlive-langenglish-2021 index 7425111f35f4..8ab66b87a591 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langenglish-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langenglish-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=CC-BY-SA-4.0 FDL-1.1 GPL-1 GPL-2 GPL-2+ RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-MemoirChapStyles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-MemoirChapStyles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Type1fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Type1fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amiweb2c-guide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amiweb2c-guide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscls-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscls-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amslatex-primer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amslatex-primer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-around-the-bend-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-around-the-bend-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascii-chart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascii-chart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-cheatsheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-cheatsheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-components-of-TeX-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-components-of-TeX-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comprehensive-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comprehensive-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dickimaw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dickimaw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docsurvey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docsurvey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxtut-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxtut-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-first-latex-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-first-latex-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forest-quickstart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forest-quickstart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guide-to-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guide-to-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-happy4th-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-happy4th-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intro-scientific-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intro-scientific-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-brochure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-brochure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-course-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-course-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-doc-ptr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-doc-ptr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-graphics-companion-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-graphics-companion-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-refsheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-refsheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-veryshortguide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-veryshortguide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-web-companion-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-web-companion-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4wp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4wp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcourse-rug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcourse-rug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileinfo-pkgs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexfileinfo-pkgs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-macros2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-macros2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-math-into-latex-4-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-math-into-latex-4-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maths-symbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maths-symbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memdesign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memdesign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metafont-beginners-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metafont-beginners-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost-examples-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost-examples-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patgen2-tutorial-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patgen2-tutorial-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pictexsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pictexsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plain-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plain-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-short-math-guide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-short-math-guide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplified-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplified-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-startlatex2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-startlatex2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svg-inkscape-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svg-inkscape-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tamethebeast-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tamethebeast-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-font-errors-cheatsheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-font-errors-cheatsheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-nutshell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-nutshell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-overview-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-overview-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-refs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-refs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texbytopic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texbytopic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texonly-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texonly-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlepages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlepages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlc2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlc2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlmgrbasics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlmgrbasics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-undergradmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-undergradmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualfaq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualfaq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-webguide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-webguide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langenglish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langenglish-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-MemoirChapStyles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-MemoirChapStyles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Type1fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Type1fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amiweb2c-guide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amiweb2c-guide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscls-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscls-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amslatex-primer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amslatex-primer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-around-the-bend.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-around-the-bend.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascii-chart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascii-chart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-components-of-TeX.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-components-of-TeX.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comprehensive.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comprehensive.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dickimaw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dickimaw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docsurvey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docsurvey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxtut.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxtut.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-first-latex-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-first-latex-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forest-quickstart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forest-quickstart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guide-to-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guide-to-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-happy4th.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-happy4th.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intro-scientific.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intro-scientific.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-english.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-english.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-brochure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-brochure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-course.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-course.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-doc-ptr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-doc-ptr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-graphics-companion.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-graphics-companion.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-refsheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-refsheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-veryshortguide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-veryshortguide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-web-companion.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-web-companion.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4wp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4wp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcourse-rug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcourse-rug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileinfo-pkgs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexfileinfo-pkgs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-english.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-english.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-macros2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-macros2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-math-into-latex-4.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-math-into-latex-4.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maths-symbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maths-symbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memdesign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memdesign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metafont-beginners.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metafont-beginners.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost-examples.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost-examples.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patgen2-tutorial.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patgen2-tutorial.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pictexsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pictexsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plain-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plain-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-short-math-guide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-short-math-guide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplified-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplified-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-startlatex2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-startlatex2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svg-inkscape.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svg-inkscape.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tamethebeast.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tamethebeast.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-font-errors-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-font-errors-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-nutshell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-nutshell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-overview.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-overview.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-refs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-refs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texbytopic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texbytopic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texonly.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texonly.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlepages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlepages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlc2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlc2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlmgrbasics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlmgrbasics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-undergradmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-undergradmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualfaq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualfaq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-webguide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-webguide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexref.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileinfo-pkgs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexfileinfo-pkgs.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-english-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-MemoirChapStyles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-MemoirChapStyles-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-MemoirChapStyles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Type1fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Type1fonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-Type1fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amiweb2c-guide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amiweb2c-guide-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amiweb2c-guide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscls-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscls-doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amscls-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amslatex-primer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amslatex-primer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amslatex-primer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-around-the-bend-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-around-the-bend-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-around-the-bend-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascii-chart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascii-chart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ascii-chart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-cheatsheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-cheatsheet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-cheatsheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-components-of-TeX-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-components-of-TeX-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-components-of-TeX-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comprehensive-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comprehensive-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-comprehensive-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dickimaw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dickimaw-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dickimaw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docsurvey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docsurvey-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docsurvey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxtut-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxtut-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dtxtut-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-first-latex-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-first-latex-doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-first-latex-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forest-quickstart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forest-quickstart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forest-quickstart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gentle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guide-to-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guide-to-latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guide-to-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-happy4th-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-happy4th-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-happy4th-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-impatient-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intro-scientific-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intro-scientific-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-intro-scientific-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-english-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2tabu-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-brochure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-brochure-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-brochure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-course-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-course-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-course-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-doc-ptr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-doc-ptr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-doc-ptr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-graphics-companion-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-graphics-companion-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-graphics-companion-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-refsheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-refsheet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-refsheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-veryshortguide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-veryshortguide-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-veryshortguide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-web-companion-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-web-companion-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-web-companion-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex2e-help-texinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4wp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4wp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex4wp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcheat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcourse-rug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcourse-rug-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcourse-rug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileinfo-pkgs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexfileinfo-pkgs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexfileinfo-pkgs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-english-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-macros2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-macros2e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-macros2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-math-into-latex-4-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-math-into-latex-4-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-math-into-latex-4-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maths-symbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maths-symbols-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-maths-symbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memdesign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memdesign-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memdesign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metafont-beginners-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metafont-beginners-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metafont-beginners-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost-examples-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost-examples-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metapost-examples-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patgen2-tutorial-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patgen2-tutorial-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-patgen2-tutorial-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pictexsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pictexsum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pictexsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plain-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plain-doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plain-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-short-math-guide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-short-math-guide-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-short-math-guide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplified-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplified-latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplified-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-startlatex2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-startlatex2e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-startlatex2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svg-inkscape-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svg-inkscape-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svg-inkscape-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tamethebeast-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tamethebeast-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tamethebeast-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tds-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-font-errors-cheatsheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-font-errors-cheatsheet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-font-errors-cheatsheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-nutshell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-nutshell-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-nutshell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-overview-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-overview-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-overview-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-refs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-refs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-refs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texbytopic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texbytopic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texbytopic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texonly-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texonly-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texonly-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlepages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlepages-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titlepages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlc2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlc2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tlc2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlmgrbasics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlmgrbasics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tlmgrbasics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-undergradmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-undergradmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-undergradmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualfaq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualfaq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-visualfaq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-webguide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-webguide-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-webguide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetexref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langenglish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langenglish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langenglish-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-MemoirChapStyles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-MemoirChapStyles.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-MemoirChapStyles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Type1fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Type1fonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-Type1fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amiweb2c-guide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amiweb2c-guide.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amiweb2c-guide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscls-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscls-doc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amscls-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amslatex-primer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amslatex-primer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amslatex-primer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-around-the-bend.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-around-the-bend.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-around-the-bend.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascii-chart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascii-chart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ascii-chart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biblatex-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biblatex-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biblatex-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-components-of-TeX.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-components-of-TeX.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-components-of-TeX.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comprehensive.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comprehensive.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-comprehensive.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dickimaw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dickimaw.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dickimaw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docsurvey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docsurvey.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docsurvey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxtut.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxtut.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dtxtut.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-first-latex-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-first-latex-doc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-first-latex-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forest-quickstart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forest-quickstart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forest-quickstart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gentle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guide-to-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guide-to-latex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guide-to-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-happy4th.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-happy4th.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-happy4th.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-impatient.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intro-scientific.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intro-scientific.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-intro-scientific.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-english.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-english.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2tabu-english.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-brochure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-brochure.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-brochure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-course.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-course.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-course.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-doc-ptr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-doc-ptr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-doc-ptr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-graphics-companion.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-graphics-companion.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-graphics-companion.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-refsheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-refsheet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-refsheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-veryshortguide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-veryshortguide.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-veryshortguide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-web-companion.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-web-companion.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-web-companion.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex2e-help-texinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4wp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4wp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex4wp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcheat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcourse-rug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcourse-rug.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcourse-rug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileinfo-pkgs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexfileinfo-pkgs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexfileinfo-pkgs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-english.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-english.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-english.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-macros2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-macros2e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-macros2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-math-into-latex-4.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-math-into-latex-4.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-math-into-latex-4.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maths-symbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maths-symbols.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-maths-symbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memdesign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memdesign.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memdesign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metafont-beginners.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metafont-beginners.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metafont-beginners.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost-examples.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost-examples.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metapost-examples.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patgen2-tutorial.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patgen2-tutorial.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-patgen2-tutorial.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pictexsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pictexsum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pictexsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plain-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plain-doc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plain-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-short-math-guide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-short-math-guide.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-short-math-guide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplified-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplified-latex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplified-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-startlatex2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-startlatex2e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-startlatex2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svg-inkscape.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svg-inkscape.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svg-inkscape.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tamethebeast.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tamethebeast.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tamethebeast.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tds.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-font-errors-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-font-errors-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-font-errors-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-nutshell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-nutshell.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-nutshell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-overview.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-overview.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-overview.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-refs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-refs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-refs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texbytopic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texbytopic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texbytopic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texonly.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texonly.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texonly.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlepages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlepages.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titlepages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlc2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlc2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tlc2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlmgrbasics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlmgrbasics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tlmgrbasics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-undergradmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-undergradmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-undergradmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualfaq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualfaq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-visualfaq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-webguide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-webguide.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-webguide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetexref.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexfileinfo-pkgs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexfileinfo-pkgs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexfileinfo-pkgs.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=ef5ce8398757d918157185e11bfa47d1 diff --git a/metadata/md5-cache/dev-texlive/texlive-langeuropean-2021 b/metadata/md5-cache/dev-texlive/texlive-langeuropean-2021 index 82fccf13d884..69cf9699447b 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langeuropean-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langeuropean-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 LPPL-1.3c public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-armtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-armtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-albanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-albanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bosnian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bosnian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-breton-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-breton-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-croatian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-croatian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-danish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-danish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-dutch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-dutch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-estonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-estonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-finnish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-finnish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-friulan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-friulan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-hungarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-hungarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-icelandic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-icelandic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-irish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-irish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-kurmanji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-kurmanji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latvian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latvian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-macedonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-macedonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-norsk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-norsk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-occitan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-occitan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-piedmontese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-piedmontese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romansh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romansh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-samin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-samin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-scottish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-scottish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovenian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovenian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-swedish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-swedish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-turkish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-turkish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-welsh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-welsh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-finbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-finbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gloss-occitan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gloss-occitan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrlatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrlatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hulipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hulipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-croatian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-croatian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-danish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-danish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-dutch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-dutch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-estonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-estonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-finnish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-finnish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-friulan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-friulan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-hungarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-hungarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-icelandic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-icelandic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-irish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-irish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-kurmanji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-kurmanji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-latin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-latin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-latvian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-latvian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-lithuanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-lithuanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-macedonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-macedonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-norwegian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-norwegian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-occitan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-occitan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-piedmontese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-piedmontese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-romanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-romanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-romansh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-romansh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-slovenian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-slovenian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-swedish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-swedish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-turkish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-turkish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-uppersorbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-uppersorbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-welsh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-welsh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lithuanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lithuanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-dutch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-dutch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-estonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-estonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-finnish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-finnish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-slovenian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-slovenian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-turkish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-turkish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nevelok-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nevelok-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rojud-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rojud-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swebib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swebib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turkmen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turkmen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langeuropean-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langeuropean-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-armtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-armtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-albanian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-albanian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bosnian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bosnian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-breton.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-breton.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-croatian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-croatian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-danish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-danish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-dutch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-dutch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-estonian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-estonian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-finnish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-finnish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-friulan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-friulan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-hungarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-hungarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-icelandic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-icelandic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-irish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-irish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-kurmanji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-kurmanji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latvian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latvian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-macedonian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-macedonian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-norsk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-norsk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-occitan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-occitan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-piedmontese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-piedmontese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romanian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romanian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romansh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romansh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-samin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-samin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-scottish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-scottish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovenian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovenian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-swedish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-swedish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-turkish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-turkish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-welsh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-welsh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gloss-occitan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gloss-occitan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrlatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrlatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hulipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hulipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-hungarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-hungarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lithuanian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lithuanian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-dutch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-dutch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-estonian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-estonian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-finnish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-finnish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-slovenian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-slovenian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-turkish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-turkish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nevelok.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nevelok.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rojud.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rojud.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swebib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swebib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turkmen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turkmen.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-albanian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-albanian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bosnian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bosnian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-breton.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-breton.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-croatian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-croatian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-danish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-danish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-dutch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-dutch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-estonian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-estonian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-finnish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-finnish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-friulan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-friulan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-icelandic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-icelandic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-irish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-irish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-kurmanji.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-kurmanji.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latvian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latvian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-macedonian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-macedonian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-norsk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-norsk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-occitan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-occitan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-piedmontese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-piedmontese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romanian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romanian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romansh.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romansh.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-samin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-samin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-scottish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-scottish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovenian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovenian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-swedish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-swedish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-turkish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-turkish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-welsh.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-welsh.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gloss-occitan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gloss-occitan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrlatex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrlatex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hulipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hulipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-turkish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-turkish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nevelok.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nevelok.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turkmen.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turkmen.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-armtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-armtex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-armtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-albanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-albanian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-albanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bosnian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bosnian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-bosnian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-breton-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-breton-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-breton-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-croatian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-croatian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-croatian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-danish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-danish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-danish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-dutch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-dutch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-dutch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-estonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-estonian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-estonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-finnish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-finnish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-finnish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-friulan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-friulan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-friulan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-hungarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-hungarian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-hungarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-icelandic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-icelandic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-icelandic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-irish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-irish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-irish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-kurmanji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-kurmanji-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-kurmanji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-latin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latvian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latvian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-latvian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-macedonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-macedonian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-macedonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-norsk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-norsk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-norsk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-occitan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-occitan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-occitan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-piedmontese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-piedmontese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-piedmontese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romanian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-romanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romansh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romansh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-romansh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-samin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-samin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-samin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-scottish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-scottish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-scottish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovenian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovenian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-slovenian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-swedish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-swedish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-swedish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-turkish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-turkish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-turkish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-welsh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-welsh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-welsh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-finbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-finbib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-finbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gloss-occitan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gloss-occitan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gloss-occitan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrlatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrlatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hrlatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hulipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hulipsum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hulipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-croatian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-croatian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-croatian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-danish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-danish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-danish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-dutch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-dutch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-dutch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-estonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-estonian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-estonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-finnish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-finnish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-finnish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-friulan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-friulan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-friulan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-hungarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-hungarian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-hungarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-icelandic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-icelandic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-icelandic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-irish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-irish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-irish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-kurmanji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-kurmanji-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-kurmanji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-latin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-latin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-latin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-latvian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-latvian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-latvian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-lithuanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-lithuanian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-lithuanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-macedonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-macedonian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-macedonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-norwegian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-norwegian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-norwegian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-occitan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-occitan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-occitan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-piedmontese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-piedmontese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-piedmontese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-romanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-romanian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-romanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-romansh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-romansh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-romansh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-slovenian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-slovenian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-slovenian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-swedish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-swedish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-swedish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-turkish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-turkish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-turkish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-uppersorbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-uppersorbian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-uppersorbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-welsh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-welsh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-welsh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lithuanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lithuanian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lithuanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-dutch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-dutch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-dutch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-estonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-estonian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-estonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-finnish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-finnish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-finnish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-slovenian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-slovenian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-slovenian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-turkish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-turkish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-turkish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nevelok-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nevelok-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nevelok-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rojud-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rojud-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rojud-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swebib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swebib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-swebib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turkmen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turkmen-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turkmen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langeuropean-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langeuropean-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langeuropean-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-armtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-armtex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-armtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-albanian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-albanian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-albanian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bosnian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bosnian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-bosnian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-breton.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-breton.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-breton.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-croatian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-croatian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-croatian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-danish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-danish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-danish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-dutch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-dutch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-dutch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-estonian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-estonian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-estonian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-finnish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-finnish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-finnish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-friulan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-friulan.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-friulan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-hungarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-hungarian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-hungarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-icelandic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-icelandic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-icelandic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-irish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-irish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-irish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-kurmanji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-kurmanji.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-kurmanji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-latin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latvian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latvian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-latvian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-macedonian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-macedonian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-macedonian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-norsk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-norsk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-norsk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-occitan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-occitan.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-occitan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-piedmontese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-piedmontese.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-piedmontese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romanian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romanian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-romanian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romansh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romansh.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-romansh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-samin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-samin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-samin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-scottish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-scottish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-scottish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovenian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovenian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-slovenian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-swedish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-swedish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-swedish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-turkish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-turkish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-turkish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-welsh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-welsh.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-welsh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gloss-occitan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gloss-occitan.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gloss-occitan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrlatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrlatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hrlatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hulipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hulipsum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hulipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-hungarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-hungarian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-hungarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lithuanian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lithuanian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lithuanian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-dutch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-dutch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-dutch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-estonian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-estonian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-estonian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-finnish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-finnish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-finnish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-slovenian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-slovenian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-slovenian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-turkish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-turkish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-turkish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nevelok.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nevelok.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nevelok.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rojud.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rojud.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rojud.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swebib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swebib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-swebib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turkmen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turkmen.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turkmen.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-albanian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-albanian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-albanian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-bosnian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-bosnian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-bosnian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-breton.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-breton.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-breton.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-croatian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-croatian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-croatian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-danish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-danish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-danish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-dutch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-dutch.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-dutch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-estonian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-estonian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-estonian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-finnish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-finnish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-finnish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-friulan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-friulan.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-friulan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-icelandic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-icelandic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-icelandic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-irish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-irish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-irish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-kurmanji.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-kurmanji.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-kurmanji.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-latin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-latvian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-latvian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-latvian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-macedonian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-macedonian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-macedonian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-norsk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-norsk.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-norsk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-occitan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-occitan.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-occitan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-piedmontese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-piedmontese.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-piedmontese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romanian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romanian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-romanian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-romansh.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-romansh.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-romansh.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-samin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-samin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-samin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-scottish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-scottish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-scottish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-slovenian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-slovenian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-slovenian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-swedish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-swedish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-swedish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-turkish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-turkish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-turkish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-welsh.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-welsh.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-welsh.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gloss-occitan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gloss-occitan.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gloss-occitan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrlatex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrlatex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hrlatex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hulipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hulipsum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hulipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-turkish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-turkish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-turkish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nevelok.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nevelok.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nevelok.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turkmen.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turkmen.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turkmen.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=e937976f5f859fce4d694e1c7279ab9a diff --git a/metadata/md5-cache/dev-texlive/texlive-langfrench-2021 b/metadata/md5-cache/dev-texlive/texlive-langfrench-2021 index 8f4967583154..96b1297aef86 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langfrench-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langfrench-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=GPL-2 CC-BY-4.0 RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aeguill-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aeguill-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-annee-scolaire-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-annee-scolaire-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apprendre-a-programmer-en-tex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apprendre-a-programmer-en-tex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apprends-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apprends-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-basque-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-basque-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-book-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-book-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-date-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-date-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bib-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bib-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-droit-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-droit-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-e-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-e-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epslatex-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epslatex-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expose-expl3-dunkerque-2019-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expose-expl3-dunkerque-2019-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facture-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facture-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formation-latex-ul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formation-latex-ul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frenchmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frenchmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frpseudocode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frpseudocode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-basque-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-basque-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impnattypo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impnattypo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mafr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mafr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matapli-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matapli-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-profcollege-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-profcollege-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabvar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabvar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tdsfrmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tdsfrmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-array-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-array-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-dcolumn-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-dcolumn-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-natbib-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-natbib-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-tabbing-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-tabbing-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-variations-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-variations-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualtikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualtikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langfrench-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langfrench-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aeguill.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aeguill.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-annee-scolaire.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-annee-scolaire.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apprendre-a-programmer-en-tex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apprendre-a-programmer-en-tex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apprends-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apprends-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-basque.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-basque.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-book.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-book.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-date.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-date.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bib-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bib-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-droit-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-droit-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-e-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-e-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epslatex-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epslatex-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expose-expl3-dunkerque-2019.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expose-expl3-dunkerque-2019.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facture.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facture.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formation-latex-ul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formation-latex-ul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frenchmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frenchmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frpseudocode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frpseudocode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impnattypo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impnattypo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mafr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mafr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matapli.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matapli.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-profcollege.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-profcollege.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabvar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabvar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tdsfrmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tdsfrmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-array-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-array-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-dcolumn-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-dcolumn-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-natbib-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-natbib-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-tabbing-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-tabbing-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-variations.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-variations.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualtikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualtikz.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-annee-scolaire.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-annee-scolaire.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-basque.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-basque.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-french.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-french.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-book.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-book.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-date.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-date.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-french.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-french.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facture.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facture.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formation-latex-ul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formation-latex-ul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frenchmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frenchmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-basque.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-basque.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impnattypo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impnattypo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabvar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabvar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tdsfrmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tdsfrmath.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aeguill-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aeguill-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aeguill-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-annee-scolaire-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-annee-scolaire-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-annee-scolaire-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apprendre-a-programmer-en-tex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apprendre-a-programmer-en-tex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apprendre-a-programmer-en-tex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apprends-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apprends-latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apprends-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-basque-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-basque-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-basque-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-french-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-book-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-book-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-basque-book-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-date-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-date-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-basque-date-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bib-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bib-fr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bib-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-french-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs-fr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-booktabs-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-droit-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-droit-fr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-droit-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-e-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-e-french-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-e-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epslatex-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epslatex-fr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epslatex-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expose-expl3-dunkerque-2019-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expose-expl3-dunkerque-2019-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expose-expl3-dunkerque-2019-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facture-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facture-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-facture-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formation-latex-ul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formation-latex-ul-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-formation-latex-ul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frenchmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frenchmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frenchmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frletter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frpseudocode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frpseudocode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frpseudocode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-basque-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-basque-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-basque-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-french-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient-fr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-impatient-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impnattypo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impnattypo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-impnattypo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-french-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2tabu-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo-fr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex2e-help-texinfo-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-french-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mafr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mafr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mafr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matapli-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matapli-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matapli-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-profcollege-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-profcollege-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-profcollege-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabvar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabvar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabvar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tdsfrmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tdsfrmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tdsfrmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-fr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-array-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-array-fr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-array-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-dcolumn-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-dcolumn-fr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-dcolumn-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-natbib-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-natbib-fr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-natbib-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-tabbing-fr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-tabbing-fr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-tabbing-fr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-variations-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-variations-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-variations-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualtikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualtikz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-visualtikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langfrench-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langfrench-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langfrench-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aeguill.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aeguill.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aeguill.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-annee-scolaire.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-annee-scolaire.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-annee-scolaire.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apprendre-a-programmer-en-tex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apprendre-a-programmer-en-tex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apprendre-a-programmer-en-tex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apprends-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apprends-latex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apprends-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-basque.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-basque.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-basque.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-french.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-book.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-book.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-basque-book.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-date.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-date.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-basque-date.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bib-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bib-fr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bib-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-french.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs-fr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-booktabs-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-droit-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-droit-fr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-droit-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-e-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-e-french.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-e-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epslatex-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epslatex-fr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epslatex-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expose-expl3-dunkerque-2019.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expose-expl3-dunkerque-2019.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expose-expl3-dunkerque-2019.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facture.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facture.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-facture.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formation-latex-ul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formation-latex-ul.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-formation-latex-ul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frenchmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frenchmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frenchmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frletter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frpseudocode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frpseudocode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frpseudocode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impatient-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impatient-fr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-impatient-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impnattypo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impnattypo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-impnattypo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-french.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2tabu-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo-fr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex2e-help-texinfo-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-french.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mafr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mafr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mafr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matapli.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matapli.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matapli.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-profcollege.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-profcollege.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-profcollege.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabvar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabvar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabvar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tdsfrmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tdsfrmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tdsfrmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-fr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-array-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-array-fr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-array-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-dcolumn-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-dcolumn-fr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-dcolumn-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-natbib-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-natbib-fr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-natbib-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-tabbing-fr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-tabbing-fr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-tabbing-fr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-variations.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-variations.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-variations.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualtikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualtikz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-visualtikz.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-annee-scolaire.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-annee-scolaire.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-annee-scolaire.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-basque.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-basque.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-basque.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-french.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-french.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-french.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-book.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-book.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-basque-book.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basque-date.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basque-date.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-basque-date.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-french.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-french.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-french.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facture.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facture.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-facture.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formation-latex-ul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formation-latex-ul.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-formation-latex-ul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frenchmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frenchmath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frenchmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-basque.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-basque.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-basque.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-impnattypo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-impnattypo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-impnattypo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabvar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabvar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabvar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tdsfrmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tdsfrmath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tdsfrmath.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=7c5d08e399b29568077b00672d9d2c4c diff --git a/metadata/md5-cache/dev-texlive/texlive-langgerman-2021 b/metadata/md5-cache/dev-texlive/texlive-langgerman-2021 index 250494754570..91e2ad9c9e30 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langgerman-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langgerman-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=FDL-1.1 GPL-1 GPL-2 LPPL-1.3 LPPL-1.3c MIT OPL TeX-other-free RDEPEND=!~dev-texlive/texlive-xetex-2020 >=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apalike-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apalike-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csquotes-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csquotes-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dehyph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dehyph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dehyph-exptl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dehyph-exptl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dhua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dhua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtk-bibliography-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtk-bibliography-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etdipa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etdipa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoolbox-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoolbox-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifinddo-info-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifinddo-info-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-germbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-germbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-germkorr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-germkorr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hausarbeit-jura-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hausarbeit-jura-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-script-examples-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-script-examples-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2picfaq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2picfaq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-microtype-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-microtype-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-milog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-milog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-r_und_s-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-r_und_s-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schulmathematik-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schulmathematik-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templates-fenn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templates-fenn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templates-sommer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templates-sommer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipa-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipa-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-arsclassica-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-arsclassica-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-biblatex-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-biblatex-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-chemsym-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-chemsym-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-ecv-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-ecv-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-enumitem-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-enumitem-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-europecv-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-europecv-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-filecontents-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-filecontents-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-moreverb-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-moreverb-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-udesoftec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-udesoftec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhrzeit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhrzeit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umlaute-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umlaute-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-voss-mathcol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-voss-mathcol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langgerman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langgerman-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apalike-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apalike-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csquotes-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csquotes-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dehyph-exptl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dehyph-exptl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dhua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dhua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtk-bibliography.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtk-bibliography.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etdipa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etdipa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoolbox-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoolbox-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifinddo-info.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifinddo-info.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-germbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-germbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-germkorr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-germkorr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hausarbeit-jura.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hausarbeit-jura.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-script-examples.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-script-examples.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2picfaq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2picfaq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-microtype-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-microtype-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-milog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-milog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-r_und_s.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-r_und_s.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schulmathematik.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schulmathematik.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templates-fenn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templates-fenn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templates-sommer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templates-sommer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipa-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipa-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-arsclassica-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-arsclassica-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-biblatex-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-biblatex-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-chemsym-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-chemsym-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-ecv-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-ecv-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-enumitem-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-enumitem-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-europecv-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-europecv-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-filecontents-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-filecontents-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-moreverb-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-moreverb-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-udesoftec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-udesoftec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhrzeit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhrzeit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umlaute.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umlaute.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-voss-mathcol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-voss-mathcol.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-german.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-german.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dhua.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dhua.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifinddo-info.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifinddo-info.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-german.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-german.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hausarbeit-jura.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hausarbeit-jura.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal-de.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal-de.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-udesoftec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-udesoftec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umlaute.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umlaute.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apalike-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apalike-german-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apalike-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-german-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-german-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-booktabs-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csquotes-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csquotes-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csquotes-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dehyph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dehyph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dehyph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dehyph-exptl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dehyph-exptl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dehyph-exptl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dhua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dhua-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dhua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtk-bibliography-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtk-bibliography-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dtk-bibliography-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etdipa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etdipa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etdipa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoolbox-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoolbox-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etoolbox-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifinddo-info-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifinddo-info-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fifinddo-info-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-german-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-germbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-germbib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-germbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-germkorr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-germkorr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-germkorr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hausarbeit-jura-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hausarbeit-jura-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hausarbeit-jura-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-german-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-script-examples-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-script-examples-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-koma-script-examples-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2picfaq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2picfaq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2picfaq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2tabu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcheat-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-german-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-doc-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-microtype-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-microtype-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-microtype-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-milog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-milog-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-milog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quran-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-r_und_s-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-r_und_s-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-r_und_s-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schulmathematik-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schulmathematik-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schulmathematik-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templates-fenn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templates-fenn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-templates-fenn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templates-sommer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templates-sommer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-templates-sommer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termcal-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipa-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipa-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tipa-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-arsclassica-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-arsclassica-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-arsclassica-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-biblatex-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-biblatex-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-biblatex-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-chemsym-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-chemsym-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-chemsym-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-ecv-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-ecv-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-ecv-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-enumitem-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-enumitem-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-enumitem-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-europecv-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-europecv-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-europecv-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-filecontents-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-filecontents-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-filecontents-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-moreverb-de-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-moreverb-de-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-moreverb-de-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-udesoftec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-udesoftec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-udesoftec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhrzeit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhrzeit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uhrzeit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umlaute-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umlaute-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umlaute-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-voss-mathcol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-voss-mathcol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-voss-mathcol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langgerman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langgerman-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langgerman-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apalike-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apalike-german.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apalike-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-german.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibleref-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibleref-german.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibleref-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-booktabs-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csquotes-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csquotes-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csquotes-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dehyph-exptl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dehyph-exptl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dehyph-exptl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dhua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dhua.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dhua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtk-bibliography.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtk-bibliography.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dtk-bibliography.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etdipa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etdipa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etdipa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoolbox-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoolbox-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etoolbox-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifinddo-info.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifinddo-info.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fifinddo-info.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-german.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-germbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-germbib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-germbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-germkorr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-germkorr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-germkorr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hausarbeit-jura.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hausarbeit-jura.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hausarbeit-jura.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-script-examples.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-script-examples.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-koma-script-examples.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2picfaq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2picfaq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2picfaq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2tabu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcheat-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-german.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-doc-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-microtype-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-microtype-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-microtype-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-milog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-milog.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-milog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quran-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-r_und_s.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-r_und_s.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-r_und_s.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schulmathematik.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schulmathematik.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schulmathematik.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templates-fenn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templates-fenn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-templates-fenn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templates-sommer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templates-sommer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-templates-sommer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termcal-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipa-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipa-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tipa-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-arsclassica-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-arsclassica-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-arsclassica-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-biblatex-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-biblatex-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-biblatex-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-chemsym-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-chemsym-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-chemsym-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-ecv-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-ecv-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-ecv-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-enumitem-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-enumitem-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-enumitem-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-europecv-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-europecv-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-europecv-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-filecontents-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-filecontents-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-filecontents-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translation-moreverb-de.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translation-moreverb-de.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translation-moreverb-de.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-udesoftec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-udesoftec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-udesoftec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhrzeit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhrzeit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uhrzeit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umlaute.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umlaute.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umlaute.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-voss-mathcol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-voss-mathcol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-voss-mathcol.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-german.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-german.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-german.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dhua.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dhua.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dhua.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifinddo-info.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifinddo-info.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fifinddo-info.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-german.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-german.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-german.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hausarbeit-jura.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hausarbeit-jura.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hausarbeit-jura.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal-de.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal-de.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termcal-de.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-udesoftec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-udesoftec.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-udesoftec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umlaute.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umlaute.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umlaute.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=b5ad65aa0da5cb1be675a6fe5b98511f diff --git a/metadata/md5-cache/dev-texlive/texlive-langgreek-2021 b/metadata/md5-cache/dev-texlive/texlive-langgreek-2021 index ceb48226dba6..643a6bbb38f6 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langgreek-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langgreek-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=GPL-1 GPL-2 LGPL-3 LPPL-1.3 LPPL-1.3c public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-greek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-greek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-begingreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-begingreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-betababel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-betababel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbfonts-fd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbfonts-fd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsbaskerville-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsbaskerville-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsporson-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsporson-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greek-fontenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greek-fontenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greek-inputenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greek-inputenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greekdates-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greekdates-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greektex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greektex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greektonoi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greektonoi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-greek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-greek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-ancientgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-ancientgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibycus-babel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibycus-babel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibygrk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibygrk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kerkis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kerkis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-levy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-levy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkgrkindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkgrkindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-teubner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-teubner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yannisgr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yannisgr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langgreek-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-greek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-greek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-begingreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-begingreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-betababel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-betababel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbfonts-fd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbfonts-fd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsbaskerville.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsbaskerville.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsporson.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsporson.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greek-fontenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greek-fontenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greek-inputenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greek-inputenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greekdates.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greekdates.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greektex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greektex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greektonoi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greektonoi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-greek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-greek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibycus-babel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibycus-babel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibygrk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibygrk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kerkis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kerkis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-levy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-levy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkgrkindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkgrkindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-teubner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-teubner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yannisgr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yannisgr.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-greek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-greek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-begingreek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-begingreek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbfonts-fd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbfonts-fd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greek-fontenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greek-fontenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greekdates.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greekdates.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibycus-babel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibycus-babel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-teubner.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-teubner.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xgreek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xgreek.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-greek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-greek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-greek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-begingreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-begingreek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-begingreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-betababel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-betababel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-betababel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cbfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbfonts-fd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbfonts-fd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cbfonts-fd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsbaskerville-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsbaskerville-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsbaskerville-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsporson-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsporson-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsporson-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greek-fontenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greek-fontenc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greek-fontenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greek-inputenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greek-inputenc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greek-inputenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greekdates-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greekdates-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greekdates-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greektex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greektex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greektex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greektonoi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greektonoi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greektonoi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-greek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-greek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-greek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-ancientgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-ancientgreek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-ancientgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibycus-babel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibycus-babel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ibycus-babel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibygrk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibygrk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ibygrk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kerkis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kerkis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kerkis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-levy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-levy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-levy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lgreek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkgrkindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkgrkindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mkgrkindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-teubner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-teubner-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-teubner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xgreek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yannisgr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yannisgr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yannisgr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langgreek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langgreek-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-greek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-greek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-greek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-begingreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-begingreek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-begingreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-betababel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-betababel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-betababel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cbfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbfonts-fd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbfonts-fd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cbfonts-fd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsbaskerville.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsbaskerville.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsbaskerville.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfsporson.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfsporson.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfsporson.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greek-fontenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greek-fontenc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greek-fontenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greek-inputenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greek-inputenc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greek-inputenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greekdates.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greekdates.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greekdates.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greektex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greektex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greektex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greektonoi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greektonoi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greektonoi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-greek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-greek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-greek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibycus-babel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibycus-babel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ibycus-babel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibygrk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibygrk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ibygrk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kerkis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kerkis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kerkis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-levy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-levy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-levy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lgreek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkgrkindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkgrkindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mkgrkindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-teubner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-teubner.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-teubner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xgreek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yannisgr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yannisgr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yannisgr.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-greek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-greek.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-greek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-begingreek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-begingreek.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-begingreek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbfonts-fd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbfonts-fd.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cbfonts-fd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greek-fontenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greek-fontenc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greek-fontenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-greekdates.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-greekdates.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-greekdates.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ibycus-babel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ibycus-babel.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ibycus-babel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-teubner.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-teubner.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-teubner.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xgreek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xgreek.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xgreek.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=4b3adb4331cfcaf9a4c2e7fcb7bd6d2d diff --git a/metadata/md5-cache/dev-texlive/texlive-langitalian-2021 b/metadata/md5-cache/dev-texlive/texlive-langitalian-2021 index 89d6ce6d9912..b6e0464277a0 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langitalian-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langitalian-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=FDL-1.1 GPL-1 GPL-2 LGPL-2 LPPL-1.3 LPPL-1.3c TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antanilipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antanilipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsldoc-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsldoc-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsmath-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsmath-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsthdoc-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsthdoc-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codicefiscaleitaliano-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codicefiscaleitaliano-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhdr-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhdr-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixltxhyph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixltxhyph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frontespizio-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frontespizio-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-itnumpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-itnumpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4wp-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4wp-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layaureo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layaureo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfrag-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfrag-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langitalian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langitalian-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antanilipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antanilipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsldoc-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsldoc-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsmath-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsmath-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsthdoc-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsthdoc-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codicefiscaleitaliano.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codicefiscaleitaliano.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhdr-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhdr-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixltxhyph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixltxhyph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frontespizio.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frontespizio.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-itnumpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-itnumpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4wp-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4wp-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layaureo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layaureo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfrag-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfrag-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifica.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antanilipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antanilipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-italian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-italian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codicefiscaleitaliano.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codicefiscaleitaliano.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixltxhyph.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixltxhyph.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frontespizio.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frontespizio.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-itnumpar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-itnumpar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layaureo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layaureo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifica.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifica.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antanilipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antanilipsum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-antanilipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsldoc-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsldoc-it-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsldoc-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsmath-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsmath-it-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsmath-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsthdoc-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsthdoc-it-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsthdoc-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-italian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codicefiscaleitaliano-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codicefiscaleitaliano-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codicefiscaleitaliano-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhdr-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhdr-it-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyhdr-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixltxhyph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixltxhyph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixltxhyph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frontespizio-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frontespizio-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frontespizio-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-italian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-itnumpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-itnumpar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-itnumpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-italian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2tabu-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4wp-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4wp-it-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex4wp-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layaureo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layaureo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-layaureo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-italian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfrag-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfrag-italian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psfrag-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-it-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-it-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-it-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifica-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verifica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langitalian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langitalian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langitalian-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antanilipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antanilipsum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-antanilipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsldoc-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsldoc-it.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsldoc-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsmath-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsmath-it.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsmath-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsthdoc-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsthdoc-it.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsthdoc-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-italian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codicefiscaleitaliano.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codicefiscaleitaliano.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codicefiscaleitaliano.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhdr-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhdr-it.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyhdr-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixltxhyph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixltxhyph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixltxhyph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frontespizio.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frontespizio.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frontespizio.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-itnumpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-itnumpar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-itnumpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-italian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2tabu-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4wp-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4wp-it.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex4wp-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layaureo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layaureo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-layaureo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-italian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfrag-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfrag-italian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psfrag-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-it.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-it.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-it.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifica.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verifica.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-antanilipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-antanilipsum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-antanilipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-italian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-italian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-italian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codicefiscaleitaliano.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codicefiscaleitaliano.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codicefiscaleitaliano.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixltxhyph.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixltxhyph.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixltxhyph.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frontespizio.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frontespizio.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frontespizio.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-itnumpar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-itnumpar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-itnumpar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layaureo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layaureo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-layaureo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifica.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifica.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verifica.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=a7007c07049807de916c06fddfe46367 diff --git a/metadata/md5-cache/dev-texlive/texlive-langjapanese-2021 b/metadata/md5-cache/dev-texlive/texlive-langjapanese-2021 index 318792826e6e..3792d5c63bf1 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langjapanese-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langjapanese-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc LICENSE=BSD BSD-2 GPL-1 GPL-2 LPPL-1.3 MIT OFL public-domain TeX TeX-other-free RDEPEND=>=dev-texlive/texlive-langcjk-2021 >=dev-texlive/texlive-latexextra-2021 !=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-japanese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-japanese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxbase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxbase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxcjkjatype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxcjkjatype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxghost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxghost-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjaholiday-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjaholiday-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjalipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjalipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjaprnind-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjaprnind-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjatoucs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjatoucs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjscls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjscls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxorigcapt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxorigcapt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxwareki-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxwareki-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-convbkmk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-convbkmk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotesj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotesj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentombow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentombow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-haranoaji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-haranoaji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-haranoaji-extra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-haranoaji-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifxptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifxptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ipaex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ipaex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf-uptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf-uptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlreq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlreq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlreq-deluxe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlreq-deluxe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jsclasses-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jsclasses-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-japanese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-japanese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexja-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexja-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mendex-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mendex-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morisawa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morisawa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbibtex-base-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbibtex-base-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platex-tools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platex-tools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platexcheat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platexcheat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plautopatch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plautopatch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-base-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-base-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-fontmaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-fontmaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-manual-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-manual-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex2pdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex2pdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxbase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxbase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxchfon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxchfon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxcjkcat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxcjkcat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxjahyper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxjahyper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxjodel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxjodel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxrubrica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxrubrica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxufont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxufont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-ja-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-ja-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uplatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uplatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex-base-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex-base-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wadalab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wadalab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjafbfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjafbfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjatype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjatype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langjapanese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langjapanese-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-japanese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-japanese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxbase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxbase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxcjkjatype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxcjkjatype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxghost.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxghost.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjaholiday.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjaholiday.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjalipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjalipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjaprnind.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjaprnind.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjatoucs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjatoucs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjscls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjscls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxorigcapt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxorigcapt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxwareki.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxwareki.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-convbkmk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-convbkmk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotesj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotesj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentombow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentombow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-haranoaji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-haranoaji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-haranoaji-extra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-haranoaji-extra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifxptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifxptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ipaex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ipaex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf-uptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf-uptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlreq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlreq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlreq-deluxe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlreq-deluxe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jsclasses.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jsclasses.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-japanese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-japanese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexja.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexja.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mendex-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mendex-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morisawa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morisawa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbibtex-base.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbibtex-base.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platex-tools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platex-tools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platexcheat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platexcheat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plautopatch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plautopatch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-base.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-base.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-fontmaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-fontmaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-manual.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-manual.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex2pdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex2pdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxbase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxbase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxchfon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxchfon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxcjkcat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxcjkcat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxjahyper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxjahyper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxjodel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxjodel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxrubrica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxrubrica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxufont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxufont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-ja.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-ja.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uplatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uplatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex-base.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex-base.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wadalab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wadalab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjafbfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjafbfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjatype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjatype.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascmac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascmac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-japanese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-japanese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjscls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjscls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf-uptex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf-uptex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlreq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlreq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jsclasses.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jsclasses.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexja.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexja.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mendex-doc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mendex-doc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morisawa.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morisawa.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-fontmaps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-fontmaps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxrubrica.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxrubrica.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uplatex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uplatex.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascmac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ascmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-japanese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-japanese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-japanese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxbase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxbase-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxbase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxcjkjatype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxcjkjatype-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxcjkjatype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxghost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxghost-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxghost-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjaholiday-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjaholiday-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxjaholiday-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjalipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjalipsum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxjalipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjaprnind-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjaprnind-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxjaprnind-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjatoucs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjatoucs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxjatoucs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjscls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjscls-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxjscls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxorigcapt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxorigcapt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxorigcapt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxwareki-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxwareki-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxwareki-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-convbkmk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-convbkmk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-convbkmk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotesj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotesj-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endnotesj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentombow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentombow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gentombow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-haranoaji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-haranoaji-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-haranoaji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-haranoaji-extra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-haranoaji-extra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-haranoaji-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifptex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifxptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifxptex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifxptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ipaex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ipaex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ipaex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-japanese-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf-uptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf-uptex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-japanese-otf-uptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlreq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlreq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jlreq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlreq-deluxe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlreq-deluxe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jlreq-deluxe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jsclasses-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jsclasses-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jsclasses-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-japanese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-japanese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-japanese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexja-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexja-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexja-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mendex-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mendex-doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mendex-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morisawa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morisawa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morisawa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbibtex-base-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbibtex-base-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pbibtex-base-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-platex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platex-tools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platex-tools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-platex-tools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platexcheat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platexcheat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-platexcheat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plautopatch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plautopatch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plautopatch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-base-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-base-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex-base-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-fontmaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-fontmaps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex-fontmaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-fonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-manual-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-manual-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex-manual-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex2pdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex2pdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex2pdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxbase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxbase-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxbase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxchfon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxchfon-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxchfon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxcjkcat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxcjkcat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxcjkcat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxjahyper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxjahyper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxjahyper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxjodel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxjodel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxjodel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxrubrica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxrubrica-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxrubrica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxufont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxufont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxufont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-ja-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-ja-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-ja-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uplatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uplatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uplatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex-base-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex-base-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uptex-base-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex-fonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uptex-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wadalab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wadalab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wadalab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjafbfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjafbfont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zxjafbfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjatype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjatype-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zxjatype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langjapanese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langjapanese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langjapanese-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascmac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ascmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-japanese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-japanese.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-japanese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxbase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxbase.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxbase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxcjkjatype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxcjkjatype.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxcjkjatype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxghost.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxghost.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxghost.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjaholiday.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjaholiday.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxjaholiday.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjalipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjalipsum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxjalipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjaprnind.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjaprnind.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxjaprnind.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjatoucs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjatoucs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxjatoucs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjscls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjscls.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxjscls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxorigcapt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxorigcapt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxorigcapt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxwareki.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxwareki.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxwareki.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-convbkmk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-convbkmk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-convbkmk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotesj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotesj.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endnotesj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gentombow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gentombow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gentombow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-haranoaji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-haranoaji.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-haranoaji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-haranoaji-extra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-haranoaji-extra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-haranoaji-extra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifptex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifxptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifxptex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifxptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ipaex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ipaex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ipaex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-japanese-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf-uptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf-uptex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-japanese-otf-uptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlreq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlreq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jlreq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlreq-deluxe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlreq-deluxe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jlreq-deluxe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jsclasses.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jsclasses.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jsclasses.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-japanese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-japanese.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-japanese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexja.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexja.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexja.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mendex-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mendex-doc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mendex-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morisawa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morisawa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morisawa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbibtex-base.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbibtex-base.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pbibtex-base.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-platex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platex-tools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platex-tools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-platex-tools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platexcheat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platexcheat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-platexcheat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plautopatch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plautopatch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plautopatch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-base.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-base.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex-base.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-fontmaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-fontmaps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex-fontmaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-manual.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-manual.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex-manual.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex2pdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex2pdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex2pdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxbase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxbase.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxbase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxchfon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxchfon.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxchfon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxcjkcat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxcjkcat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxcjkcat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxjahyper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxjahyper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxjahyper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxjodel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxjodel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxjodel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxrubrica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxrubrica.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxrubrica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxufont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxufont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxufont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-ja.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-ja.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-ja.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uplatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uplatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uplatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex-base.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex-base.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uptex-base.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uptex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uptex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uptex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wadalab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wadalab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wadalab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjafbfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjafbfont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zxjafbfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zxjatype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zxjatype.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zxjatype.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascmac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascmac.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ascmac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-japanese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-japanese.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-japanese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxjscls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxjscls.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxjscls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-japanese-otf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-japanese-otf-uptex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-japanese-otf-uptex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-japanese-otf-uptex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlreq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlreq.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jlreq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jsclasses.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jsclasses.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jsclasses.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexja.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexja.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexja.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mendex-doc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mendex-doc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mendex-doc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morisawa.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morisawa.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morisawa.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-platex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-platex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-platex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptex-fontmaps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptex-fontmaps.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptex-fontmaps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxrubrica.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxrubrica.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxrubrica.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uplatex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uplatex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uplatex.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=e969ae72c30abbf58f243caee2e57d4e diff --git a/metadata/md5-cache/dev-texlive/texlive-langkorean-2021 b/metadata/md5-cache/dev-texlive/texlive-langkorean-2021 index effab251f1d6..db3982152d15 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langkorean-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langkorean-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=FDL-1.1 GPL-2 LPPL-1.3 LPPL-1.3c OFL TeX-other-free RDEPEND=>=dev-texlive/texlive-langcjk-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baekmuk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baekmuk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-ko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-ko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-oblivoir-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-oblivoir-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-plain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-plain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-utf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-utf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-utils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-utils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-korean-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-korean-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nanumtype1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nanumtype1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmhanguljamo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmhanguljamo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unfonts-core-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unfonts-core-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unfonts-extra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unfonts-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langkorean-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langkorean-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baekmuk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baekmuk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-ko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-ko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-oblivoir.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-oblivoir.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-plain.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-plain.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-utf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-utf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-utils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-utils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-korean.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-korean.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nanumtype1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nanumtype1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmhanguljamo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmhanguljamo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unfonts-core.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unfonts-core.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unfonts-extra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unfonts-extra.doc-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baekmuk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baekmuk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-baekmuk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-ko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-ko-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjk-ko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-oblivoir-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-oblivoir-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kotex-oblivoir-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-plain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-plain-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kotex-plain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-utf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-utf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kotex-utf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-utils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-utils-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kotex-utils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-korean-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-korean-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-korean-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nanumtype1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nanumtype1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nanumtype1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmhanguljamo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmhanguljamo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pmhanguljamo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uhc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unfonts-core-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unfonts-core-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unfonts-core-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unfonts-extra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unfonts-extra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unfonts-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langkorean-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langkorean-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langkorean-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-baekmuk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-baekmuk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-baekmuk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjk-ko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjk-ko.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjk-ko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-oblivoir.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-oblivoir.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kotex-oblivoir.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-plain.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-plain.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kotex-plain.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-utf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-utf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kotex-utf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kotex-utils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kotex-utils.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kotex-utils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-korean.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-korean.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-korean.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nanumtype1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nanumtype1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nanumtype1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmhanguljamo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmhanguljamo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pmhanguljamo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uhc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unfonts-core.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unfonts-core.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unfonts-core.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unfonts-extra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unfonts-extra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unfonts-extra.doc-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=44fb9e2d470769830c137d069f0160cd diff --git a/metadata/md5-cache/dev-texlive/texlive-langother-2021 b/metadata/md5-cache/dev-texlive/texlive-langother-2021 index be117884002d..082edc9a0d1a 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langother-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langother-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=CC-BY-SA-4.0 GPL-1 GPL-2 GPL-2+ RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aalok-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aalok-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akshar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akshar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsldoc-vn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsldoc-vn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aramaic-serto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aramaic-serto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-azerbaijani-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-azerbaijani-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-esperanto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-esperanto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-georgian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-georgian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-hebrew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-hebrew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-indonesian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-indonesian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-interlingua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-interlingua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-malay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-malay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-sorbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-sorbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-thai-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-thai-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-vietnamese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-vietnamese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bengali-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bengali-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-burmese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-burmese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chhaya-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chhaya-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjhebrew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjhebrew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebong-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebong-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ethiop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ethiop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ethiop-t1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ethiop-t1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonts-tlwg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonts-tlwg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hindawi-latex-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hindawi-latex-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-afrikaans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-afrikaans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-armenian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-armenian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-coptic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-coptic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-esperanto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-esperanto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-ethiopic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-ethiopic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-georgian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-georgian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-indic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-indic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-indonesian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-indonesian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-interlingua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-interlingua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-sanskrit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-sanskrit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-thai-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-thai-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-turkmen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-turkmen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-mr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-mr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexbangla-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexbangla-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latino-sine-flexione-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latino-sine-flexione-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-thai-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-thai-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-vietnamese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-vietnamese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marathi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marathi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntheorem-vn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntheorem-vn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-padauk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-padauk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-bn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-bn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-ur-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-ur-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanskrit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanskrit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanskrit-t1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanskrit-t1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thaienum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thaienum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thaispec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thaispec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-alphabets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-alphabets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-velthuis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-velthuis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vntex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vntex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wnri-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wnri-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wnri-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wnri-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-devanagari-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-devanagari-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langother-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langother-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aalok.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aalok.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akshar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akshar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsldoc-vn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsldoc-vn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aramaic-serto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aramaic-serto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-azerbaijani.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-azerbaijani.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-esperanto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-esperanto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-georgian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-georgian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-hebrew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-hebrew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-indonesian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-indonesian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-interlingua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-interlingua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-malay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-malay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-sorbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-sorbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-thai.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-thai.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-vietnamese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-vietnamese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bengali.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bengali.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-burmese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-burmese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chhaya.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chhaya.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjhebrew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjhebrew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebong.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebong.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ethiop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ethiop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ethiop-t1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ethiop-t1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonts-tlwg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonts-tlwg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hindawi-latex-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hindawi-latex-template.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-sanskrit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-sanskrit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-mr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-mr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexbangla.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexbangla.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latino-sine-flexione.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latino-sine-flexione.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-thai.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-thai.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-vietnamese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-vietnamese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marathi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marathi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntheorem-vn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntheorem-vn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-padauk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-padauk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-bn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-bn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-ur.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-ur.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanskrit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanskrit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanskrit-t1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanskrit-t1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thaienum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thaienum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thaispec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thaispec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-alphabets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-alphabets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-velthuis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-velthuis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vntex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vntex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wnri.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wnri.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wnri-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wnri-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-devanagari.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-devanagari.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aalok.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aalok.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akshar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akshar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-azerbaijani.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-azerbaijani.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-esperanto.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-esperanto.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-hebrew.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-hebrew.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-indonesian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-indonesian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-interlingua.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-interlingua.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-malay.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-malay.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-sorbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-sorbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-thai.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-thai.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-vietnamese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-vietnamese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bengali.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bengali.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-burmese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-burmese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chhaya.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chhaya.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ethiop.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ethiop.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonts-tlwg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonts-tlwg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-armenian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-armenian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-ethiopic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-ethiopic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-turkmen.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-turkmen.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marathi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marathi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanskrit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanskrit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thaispec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thaispec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vntex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vntex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wnri-latex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wnri-latex.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aalok-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aalok-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aalok-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akshar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akshar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-akshar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsldoc-vn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsldoc-vn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsldoc-vn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aramaic-serto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aramaic-serto-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aramaic-serto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-azerbaijani-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-azerbaijani-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-azerbaijani-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-esperanto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-esperanto-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-esperanto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-georgian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-georgian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-georgian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-hebrew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-hebrew-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-hebrew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-indonesian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-indonesian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-indonesian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-interlingua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-interlingua-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-interlingua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-malay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-malay-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-malay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-sorbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-sorbian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-sorbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-thai-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-thai-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-thai-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-vietnamese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-vietnamese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-vietnamese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangtex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bangtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bengali-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bengali-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bengali-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-burmese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-burmese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-burmese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chhaya-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chhaya-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chhaya-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjhebrew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjhebrew-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjhebrew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebong-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebong-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebong-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ethiop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ethiop-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ethiop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ethiop-t1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ethiop-t1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ethiop-t1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonts-tlwg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonts-tlwg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fonts-tlwg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hindawi-latex-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hindawi-latex-template-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hindawi-latex-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-afrikaans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-afrikaans-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-afrikaans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-armenian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-armenian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-armenian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-coptic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-coptic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-coptic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-esperanto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-esperanto-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-esperanto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-ethiopic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-ethiopic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-ethiopic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-georgian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-georgian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-georgian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-indic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-indic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-indic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-indonesian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-indonesian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-indonesian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-interlingua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-interlingua-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-interlingua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-sanskrit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-sanskrit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-sanskrit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-thai-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-thai-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-thai-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-turkmen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-turkmen-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-turkmen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-mr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-mr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-mr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexbangla-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexbangla-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexbangla-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latino-sine-flexione-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latino-sine-flexione-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latino-sine-flexione-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-thai-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-thai-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-thai-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-vietnamese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-vietnamese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-vietnamese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marathi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marathi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marathi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntheorem-vn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntheorem-vn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ntheorem-vn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-padauk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-padauk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-padauk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-bn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-bn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quran-bn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-ur-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-ur-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quran-ur-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanskrit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanskrit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sanskrit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanskrit-t1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanskrit-t1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sanskrit-t1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thaienum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thaienum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thaienum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thaispec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thaispec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thaispec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-alphabets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-alphabets-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unicode-alphabets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-velthuis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-velthuis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-velthuis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vntex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vntex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vntex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wnri-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wnri-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wnri-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wnri-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wnri-latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wnri-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-devanagari-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-devanagari-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetex-devanagari-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langother-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langother-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langother-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aalok.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aalok.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aalok.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akshar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akshar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-akshar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsldoc-vn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsldoc-vn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsldoc-vn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aramaic-serto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aramaic-serto.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aramaic-serto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-azerbaijani.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-azerbaijani.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-azerbaijani.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-esperanto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-esperanto.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-esperanto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-georgian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-georgian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-georgian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-hebrew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-hebrew.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-hebrew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-indonesian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-indonesian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-indonesian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-interlingua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-interlingua.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-interlingua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-malay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-malay.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-malay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-sorbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-sorbian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-sorbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-thai.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-thai.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-thai.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-vietnamese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-vietnamese.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-vietnamese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangtex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bangtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bengali.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bengali.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bengali.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-burmese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-burmese.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-burmese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chhaya.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chhaya.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chhaya.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cjhebrew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cjhebrew.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cjhebrew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebong.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebong.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebong.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ethiop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ethiop.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ethiop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ethiop-t1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ethiop-t1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ethiop-t1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonts-tlwg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonts-tlwg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fonts-tlwg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hindawi-latex-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hindawi-latex-template.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hindawi-latex-template.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-sanskrit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-sanskrit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-sanskrit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-mr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-mr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-mr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexbangla.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexbangla.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexbangla.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latino-sine-flexione.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latino-sine-flexione.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latino-sine-flexione.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-thai.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-thai.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-thai.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-vietnamese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-vietnamese.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-vietnamese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marathi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marathi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marathi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntheorem-vn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntheorem-vn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ntheorem-vn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-padauk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-padauk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-padauk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-bn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-bn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quran-bn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quran-ur.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quran-ur.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quran-ur.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanskrit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanskrit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sanskrit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanskrit-t1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanskrit-t1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sanskrit-t1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thaienum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thaienum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thaienum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thaispec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thaispec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thaispec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-alphabets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-alphabets.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unicode-alphabets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-velthuis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-velthuis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-velthuis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vntex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vntex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vntex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wnri.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wnri.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wnri.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wnri-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wnri-latex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wnri-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-devanagari.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-devanagari.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetex-devanagari.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aalok.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aalok.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aalok.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akshar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akshar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-akshar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-azerbaijani.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-azerbaijani.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-azerbaijani.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-esperanto.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-esperanto.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-esperanto.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-hebrew.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-hebrew.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-hebrew.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-indonesian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-indonesian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-indonesian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-interlingua.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-interlingua.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-interlingua.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-malay.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-malay.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-malay.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-sorbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-sorbian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-sorbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-thai.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-thai.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-thai.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-vietnamese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-vietnamese.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-vietnamese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bengali.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bengali.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bengali.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-burmese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-burmese.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-burmese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chhaya.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chhaya.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chhaya.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ethiop.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ethiop.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ethiop.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonts-tlwg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonts-tlwg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fonts-tlwg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-armenian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-armenian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-armenian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-ethiopic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-ethiopic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-ethiopic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-turkmen.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-turkmen.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-turkmen.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marathi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marathi.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marathi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanskrit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanskrit.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sanskrit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thaispec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thaispec.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thaispec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vntex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vntex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vntex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wnri-latex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wnri-latex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wnri-latex.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=d3904c5c2b9c1a2cc4ff6112f83a3b84 diff --git a/metadata/md5-cache/dev-texlive/texlive-langpolish-2021 b/metadata/md5-cache/dev-texlive/texlive-langpolish-2021 index 2ea9c98a5024..8881a312dc18 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langpolish-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langpolish-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=FDL-1.1 GPL-2 LPPL-1.2 LPPL-1.3 LPPL-1.3c public-domain TeX RDEPEND=>=dev-texlive/texlive-latex-2021 >=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-polish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-polish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bredzenie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bredzenie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cc-pl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cc-pl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gustlib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gustlib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gustprog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gustprog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-polish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-polish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-polish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-polish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwcls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwcls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polski-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polski-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-przechlewski-book-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-przechlewski-book-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qpxqtx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qpxqtx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-virtual-academy-pl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-virtual-academy-pl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-pl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-pl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utf8mex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utf8mex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langpolish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langpolish-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-polish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-polish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bredzenie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bredzenie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cc-pl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cc-pl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gustlib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gustlib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gustprog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gustprog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-polish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-polish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwcls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwcls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polski.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polski.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-przechlewski-book.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-przechlewski-book.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qpxqtx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qpxqtx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-virtual-academy-pl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-virtual-academy-pl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-pl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-pl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utf8mex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utf8mex.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-polish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-polish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwcls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwcls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polski.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polski.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-polish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-polish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-polish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bredzenie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bredzenie-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bredzenie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cc-pl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cc-pl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cc-pl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gustlib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gustlib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gustlib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gustprog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gustprog-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gustprog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-polish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-polish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-polish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-polish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-polish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-polish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwcls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwcls-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mwcls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polski-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polski-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polski-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-przechlewski-book-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-przechlewski-book-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-przechlewski-book-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qpxqtx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qpxqtx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qpxqtx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-virtual-academy-pl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-virtual-academy-pl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-virtual-academy-pl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-pl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-pl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-pl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utf8mex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utf8mex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-utf8mex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langpolish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langpolish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langpolish-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-polish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-polish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-polish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bredzenie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bredzenie.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bredzenie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cc-pl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cc-pl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cc-pl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gustlib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gustlib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gustlib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gustprog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gustprog.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gustprog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-polish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-polish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-polish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwcls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwcls.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mwcls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polski.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polski.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polski.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-przechlewski-book.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-przechlewski-book.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-przechlewski-book.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qpxqtx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qpxqtx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qpxqtx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-virtual-academy-pl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-virtual-academy-pl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-virtual-academy-pl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-pl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-pl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-pl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utf8mex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utf8mex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-utf8mex.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-polish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-polish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-polish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwcls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwcls.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mwcls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polski.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polski.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polski.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=2645e28ae6a395f6f439f2e4db71889d diff --git a/metadata/md5-cache/dev-texlive/texlive-langportuguese-2021 b/metadata/md5-cache/dev-texlive/texlive-langportuguese-2021 index cb3ed8d28ae9..2eeb9c1190da 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langportuguese-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langportuguese-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=GPL-1 GPL-2 GPL-2+ RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-portuges-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-portuges-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-tut-pt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-tut-pt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cursolatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cursolatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feupphdteses-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feupphdteses-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-portuguese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-portuguese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-via-exemplos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-via-exemplos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-ptbr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-ptbr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-portuguese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-portuguese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numberpt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numberpt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ordinalpt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ordinalpt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xypic-tut-pt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xypic-tut-pt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langportuguese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langportuguese-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-portuges.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-portuges.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-tut-pt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-tut-pt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cursolatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cursolatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feupphdteses.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feupphdteses.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-via-exemplos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-via-exemplos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-ptbr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-ptbr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-portuguese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-portuguese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numberpt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numberpt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ordinalpt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ordinalpt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xypic-tut-pt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xypic-tut-pt.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-portuges.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-portuges.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numberpt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numberpt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ordinalpt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ordinalpt.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-portuges-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-portuges-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-portuges-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-tut-pt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-tut-pt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamer-tut-pt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cursolatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cursolatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cursolatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feupphdteses-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feupphdteses-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-feupphdteses-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-portuguese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-portuguese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-portuguese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-via-exemplos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-via-exemplos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-via-exemplos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-ptbr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-ptbr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcheat-ptbr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-portuguese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-portuguese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-portuguese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numberpt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numberpt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numberpt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ordinalpt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ordinalpt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ordinalpt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xypic-tut-pt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xypic-tut-pt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xypic-tut-pt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langportuguese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langportuguese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langportuguese-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-portuges.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-portuges.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-portuges.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-tut-pt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-tut-pt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamer-tut-pt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cursolatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cursolatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cursolatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feupphdteses.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feupphdteses.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-feupphdteses.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-via-exemplos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-via-exemplos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-via-exemplos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-ptbr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-ptbr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcheat-ptbr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-portuguese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-portuguese.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-portuguese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numberpt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numberpt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numberpt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ordinalpt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ordinalpt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ordinalpt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xypic-tut-pt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xypic-tut-pt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xypic-tut-pt.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-portuges.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-portuges.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-portuges.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numberpt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numberpt.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numberpt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ordinalpt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ordinalpt.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ordinalpt.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=ea87496f549bfc078f91cf6b232cd8c9 diff --git a/metadata/md5-cache/dev-texlive/texlive-langspanish-2021 b/metadata/md5-cache/dev-texlive/texlive-langspanish-2021 index a99f53a56054..303fa3c5e359 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langspanish-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-langspanish-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=GPL-2 LPPL-1.3 MIT public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-catalan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-catalan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-galician-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-galician-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-es-tex-faq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-es-tex-faq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-catalan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-catalan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-galician-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-galician-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-esmx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-esmx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-es-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-es-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langspanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langspanish-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-catalan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-catalan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-galician.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-galician.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-es-tex-faq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-es-tex-faq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-esmx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-esmx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-es.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-es.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-catalan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-catalan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-galician.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-galician.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-spanish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-spanish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-galician.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-galician.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-spanish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-spanish.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-catalan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-catalan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-catalan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-galician-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-galician-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-galician-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-spanish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-es-tex-faq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-es-tex-faq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-es-tex-faq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-catalan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-catalan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-catalan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-galician-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-galician-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-galician-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-spanish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-spanish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2tabu-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo-spanish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex2e-help-texinfo-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-esmx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-esmx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcheat-esmx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-spanish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-es-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-es-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-es-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-langspanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-langspanish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-langspanish-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-catalan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-catalan.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-catalan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-galician.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-galician.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-galician.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-spanish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-es-tex-faq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-es-tex-faq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-es-tex-faq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-spanish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l2tabu-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l2tabu-spanish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l2tabu-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex2e-help-texinfo-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex2e-help-texinfo-spanish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex2e-help-texinfo-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcheat-esmx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcheat-esmx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcheat-esmx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lshort-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lshort-spanish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lshort-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlive-es.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlive-es.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlive-es.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-catalan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-catalan.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-catalan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-galician.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-galician.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-galician.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-spanish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-spanish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-spanish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-galician.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-galician.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-galician.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphen-spanish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphen-spanish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphen-spanish.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=1f3e5eb152c62b16ac2218792022bcb0 diff --git a/metadata/md5-cache/dev-texlive/texlive-latex-2021 b/metadata/md5-cache/dev-texlive/texlive-latex-2021 index e71dc47c5869..29ee82a8d9c6 100644 --- a/metadata/md5-cache/dev-texlive/texlive-latex-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-latex-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=GPL-2 LPPL-1.3 LPPL-1.3c public-domain RDEPEND=>=dev-texlive/texlive-basic-2021 !~dev-texlive/texlive-latexrecommended-2020 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ae-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ae-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atbegshi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atbegshi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atveryend-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atveryend-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auxhook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auxhook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babelbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babelbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigintcalc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigintcalc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitset-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitset-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookmark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookmark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carlisle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carlisle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colortbl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colortbl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epstopdf-pkg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epstopdf-pkg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etexcmds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etexcmds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhdr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhdr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firstaid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firstaid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fix2col-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fix2col-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geometry-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geometry-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gettitlestring-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gettitlestring-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-cfg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-cfg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grfext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grfext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hopatch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hopatch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hycolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hycolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intcalc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intcalc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvdefinekeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvdefinekeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvoptions-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvoptions-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvsetkeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvsetkeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3backend-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3backend-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3kernel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3kernel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3packages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3packages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-bin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-bin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexconfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexconfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letltxmacro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letltxmacro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxcmds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxcmds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxmisc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxmisc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfnfss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfnfss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mptopdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mptopdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-natbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-natbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oberdiek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oberdiek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagesel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagesel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfescape-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfescape-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pslatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pslatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psnfss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psnfss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pspicture-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pspicture-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rerunfilecheck-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rerunfilecheck-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uniquecounter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uniquecounter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-url-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-url-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-latex-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ae.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ae.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atbegshi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atbegshi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atveryend.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atveryend.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auxhook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auxhook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-english.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-english.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babelbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babelbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigintcalc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigintcalc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitset.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitset.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookmark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookmark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carlisle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carlisle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colortbl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colortbl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epstopdf-pkg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epstopdf-pkg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etexcmds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etexcmds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firstaid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firstaid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fix2col.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fix2col.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geometry.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geometry.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gettitlestring.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gettitlestring.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-cfg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-cfg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grfext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grfext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hopatch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hopatch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hycolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hycolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intcalc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intcalc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvdefinekeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvdefinekeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvoptions.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvoptions.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvsetkeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvsetkeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3backend.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3backend.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3kernel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3kernel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3packages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3packages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-bin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-bin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letltxmacro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letltxmacro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxcmds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxcmds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfnfss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfnfss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mptopdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mptopdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-natbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-natbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oberdiek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oberdiek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagesel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagesel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfescape.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfescape.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psnfss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psnfss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pspicture.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pspicture.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rerunfilecheck.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rerunfilecheck.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uniquecounter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uniquecounter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-url.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-url.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ae.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ae.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atbegshi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atbegshi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atveryend.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atveryend.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auxhook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auxhook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-english.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-english.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigintcalc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigintcalc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitset.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitset.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookmark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookmark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carlisle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carlisle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colortbl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colortbl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epstopdf-pkg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epstopdf-pkg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etexcmds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etexcmds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhdr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhdr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firstaid.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firstaid.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fix2col.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fix2col.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geometry.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geometry.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gettitlestring.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gettitlestring.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grfext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grfext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hopatch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hopatch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hycolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hycolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intcalc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intcalc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvdefinekeys.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvdefinekeys.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvoptions.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvoptions.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvsetkeys.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvsetkeys.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3backend.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3backend.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3kernel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3kernel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3packages.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3packages.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letltxmacro.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letltxmacro.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxcmds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxcmds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfnfss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfnfss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-natbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-natbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oberdiek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oberdiek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagesel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagesel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfescape.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfescape.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pslatex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pslatex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psnfss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psnfss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pspicture.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pspicture.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rerunfilecheck.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rerunfilecheck.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uniquecounter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uniquecounter.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ae-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ae-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ae-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscls-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amscls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atbegshi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atbegshi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-atbegshi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atveryend-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atveryend-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-atveryend-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auxhook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auxhook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auxhook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-english-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babelbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babelbib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babelbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigintcalc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigintcalc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bigintcalc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitset-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitset-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bitset-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookmark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookmark-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookmark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carlisle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carlisle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-carlisle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colortbl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colortbl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colortbl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epstopdf-pkg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epstopdf-pkg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epstopdf-pkg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etexcmds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etexcmds-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etexcmds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhdr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhdr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyhdr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firstaid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firstaid-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-firstaid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fix2col-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fix2col-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fix2col-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geometry-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geometry-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-geometry-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gettitlestring-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gettitlestring-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gettitlestring-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-cfg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-cfg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphics-cfg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grfext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grfext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grfext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hopatch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hopatch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hopatch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hycolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hycolor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hycolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyperref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intcalc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intcalc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-intcalc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvdefinekeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvdefinekeys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvdefinekeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvoptions-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvoptions-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvoptions-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvsetkeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvsetkeys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvsetkeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3backend-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3backend-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3backend-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3kernel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3kernel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3kernel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3packages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3packages-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3packages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-bin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-bin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-bin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-fonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexconfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexconfig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexconfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letltxmacro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letltxmacro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-letltxmacro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxcmds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxcmds-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxcmds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxmisc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxmisc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxmisc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfnfss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfnfss-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfnfss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mptopdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mptopdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mptopdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-natbib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-natbib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-natbib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oberdiek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oberdiek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oberdiek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagesel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagesel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagesel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfescape-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfescape-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfescape-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pslatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pslatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pslatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psnfss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psnfss-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psnfss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pspicture-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pspicture-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pspicture-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refcount-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rerunfilecheck-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rerunfilecheck-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rerunfilecheck-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringenc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stringenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uniquecounter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uniquecounter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uniquecounter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-url-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-url-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-url-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-latex-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ae.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ae.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ae.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscls.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amscls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atbegshi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atbegshi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-atbegshi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atveryend.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atveryend.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-atveryend.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auxhook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auxhook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auxhook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-english.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-english.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-english.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babelbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babelbib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babelbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigintcalc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigintcalc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bigintcalc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitset.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitset.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bitset.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookmark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookmark.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookmark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carlisle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carlisle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-carlisle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colortbl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colortbl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colortbl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epstopdf-pkg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epstopdf-pkg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epstopdf-pkg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etexcmds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etexcmds.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etexcmds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firstaid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firstaid.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-firstaid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fix2col.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fix2col.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fix2col.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geometry.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geometry.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-geometry.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gettitlestring.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gettitlestring.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gettitlestring.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-cfg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-cfg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphics-cfg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grfext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grfext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grfext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hopatch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hopatch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hopatch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hycolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hycolor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hycolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyperref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intcalc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intcalc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-intcalc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvdefinekeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvdefinekeys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvdefinekeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvoptions.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvoptions.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvoptions.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvsetkeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvsetkeys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvsetkeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3backend.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3backend.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3backend.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3kernel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3kernel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3kernel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3packages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3packages.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3packages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-bin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-bin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-bin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letltxmacro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letltxmacro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-letltxmacro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxcmds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxcmds.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxcmds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfnfss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfnfss.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfnfss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mptopdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mptopdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mptopdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-natbib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-natbib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-natbib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oberdiek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oberdiek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oberdiek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagesel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagesel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagesel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfescape.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfescape.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfescape.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psnfss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psnfss.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psnfss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pspicture.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pspicture.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pspicture.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refcount.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rerunfilecheck.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rerunfilecheck.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rerunfilecheck.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringenc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stringenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uniquecounter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uniquecounter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uniquecounter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-url.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-url.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-url.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ae.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ae.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ae.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscls.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amscls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsmath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atbegshi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atbegshi.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-atbegshi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atveryend.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atveryend.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-atveryend.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auxhook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auxhook.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auxhook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-babel-english.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-babel-english.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-babel-english.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigintcalc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigintcalc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bigintcalc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitset.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitset.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bitset.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookmark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookmark.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookmark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carlisle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carlisle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-carlisle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colortbl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colortbl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colortbl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epstopdf-pkg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epstopdf-pkg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epstopdf-pkg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etexcmds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etexcmds.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etexcmds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhdr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhdr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyhdr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-firstaid.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-firstaid.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-firstaid.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fix2col.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fix2col.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fix2col.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-geometry.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-geometry.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-geometry.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gettitlestring.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gettitlestring.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gettitlestring.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grfext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grfext.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grfext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hopatch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hopatch.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hopatch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hycolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hycolor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hycolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperref.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyperref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intcalc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intcalc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-intcalc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvdefinekeys.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvdefinekeys.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvdefinekeys.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvoptions.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvoptions.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvoptions.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvsetkeys.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvsetkeys.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvsetkeys.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3backend.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3backend.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3backend.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3kernel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3kernel.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3kernel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3packages.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3packages.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3packages.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letltxmacro.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letltxmacro.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-letltxmacro.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxcmds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxcmds.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxcmds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfnfss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfnfss.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfnfss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-natbib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-natbib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-natbib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oberdiek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oberdiek.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oberdiek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagesel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagesel.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagesel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfescape.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfescape.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfescape.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pslatex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pslatex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pslatex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psnfss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psnfss.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psnfss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pspicture.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pspicture.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pspicture.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refcount.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rerunfilecheck.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rerunfilecheck.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rerunfilecheck.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringenc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stringenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tools.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uniquecounter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uniquecounter.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uniquecounter.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=0afd0858df06977730615f27057354e5 diff --git a/metadata/md5-cache/dev-texlive/texlive-latexextra-2021 b/metadata/md5-cache/dev-texlive/texlive-latexextra-2021 index fbd1d042556f..6505af8ee4bc 100644 --- a/metadata/md5-cache/dev-texlive/texlive-latexextra-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-latexextra-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=Apache-2.0 Artistic BSD GPL-2 CC0-1.0 RDEPEND=>=dev-texlive/texlive-latexrecommended-2021 >=dev-texlive/texlive-pictures-2021 dev-perl/Spreadsheet-ParseExcel >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-2up-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-2up-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ESIEEcv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ESIEEcv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-GS1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-GS1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-HA-prosper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-HA-prosper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Tabbing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Tabbing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a0poster-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a0poster-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a4wide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a4wide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a5comb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a5comb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abraces-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abraces-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abstract-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abstract-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accessibility-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accessibility-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accsupp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accsupp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-achemso-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-achemso-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acronym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acronym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acroterm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acroterm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialangle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialangle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialsymbol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialsymbol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addlines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addlines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjmulticol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjmulticol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjustbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjustbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adrconv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adrconv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-advdate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-advdate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akktex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akktex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alertmessage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alertmessage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alnumsec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alnumsec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alphalph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alphalph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-altfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-altfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsaddr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsaddr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-animate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-animate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonchap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonchap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-answers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-answers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anyfontsize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anyfontsize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-appendix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-appendix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-appendixnumberbeamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-appendixnumberbeamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apptools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apptools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabicfront-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabicfront-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arcs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arcs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraycols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraycols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arrayjobx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arrayjobx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraysort-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraysort-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arydshln-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arydshln-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asciilist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asciilist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-askinclude-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-askinclude-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-assignment-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-assignment-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-assoccnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-assoccnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-association-matrix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-association-matrix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atenddvi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atenddvi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aurl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aurl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authoraftertitle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authoraftertitle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authorarchive-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authorarchive-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authorindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authorindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autofancyhdr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autofancyhdr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autonum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autonum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autopdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autopdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-avremu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-avremu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axessibility-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axessibility-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-background-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-background-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bankstatement-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bankstatement-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bashful-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bashful-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basicarith-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basicarith-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bchart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bchart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer2thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer2thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-rl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-rl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerappendixnote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerappendixnote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beameraudience-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beameraudience-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerauxtheme-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerauxtheme-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamercolorthemeowl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamercolorthemeowl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerdarkthemes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerdarkthemes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerposter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerposter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamersubframe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamersubframe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-cuerna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-cuerna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-detlevcm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-detlevcm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-epyt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-epyt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-focus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-focus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-light-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-light-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-metropolis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-metropolis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-npbt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-npbt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-phnompenh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-phnompenh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-pure-minimalistic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-pure-minimalistic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-saintpetersburg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-saintpetersburg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-upenn-bc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-upenn-bc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerthemejltree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerthemejltree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerthemenirma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerthemenirma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerthemenord-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerthemenord-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bearwear-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bearwear-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beaulivre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beaulivre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beton-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beton-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bewerbung-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bewerbung-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bez123-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bez123-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bhcexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bhcexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibletext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibletext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigfoot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigfoot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigints-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigints-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biochemistry-colors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biochemistry-colors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bithesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bithesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bizcard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bizcard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blindtext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blindtext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blkarray-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blkarray-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-block-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-block-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blowup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blowup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bnumexpr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bnumexpr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bold-extra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bold-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookcover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookcover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookest-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookest-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booklet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booklet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookshelf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookshelf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boolexpr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boolexpr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bophook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bophook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxedminipage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxedminipage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxhandler-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxhandler-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bracketkey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bracketkey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braket-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braket-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breakurl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breakurl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bubblesort-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bubblesort-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bullcntr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bullcntr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxcalc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxcalc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxdpx-beamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxdpx-beamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxdvidriver-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxdvidriver-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxenclose-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxenclose-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxnewfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxnewfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxpapersize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxpapersize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxpdfver-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxpdfver-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxtexlogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxtexlogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calcage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calcage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calctab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calctab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculator-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculator-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calrsfs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calrsfs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cals-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cals-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calxxxx-yyyy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calxxxx-yyyy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cancel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cancel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-canoniclayout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-canoniclayout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-capt-of-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-capt-of-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-captcont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-captcont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-captdef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-captdef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carbohydrates-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carbohydrates-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cases-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cases-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-casyl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-casyl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfilebetweentags-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfilebetweentags-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catechis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catechis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catoptions-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catoptions-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbcoptic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbcoptic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccaption-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccaption-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cclicenses-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cclicenses-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd-cover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd-cover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cdpbundl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cdpbundl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cellprops-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cellprops-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cellspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cellspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-censor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-censor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-centeredline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-centeredline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-centerlastline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-centerlastline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changebar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changebar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changelayout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changelayout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changelog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changelog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changepage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changepage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chappg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chappg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chapterfolder-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chapterfolder-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cheatsheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cheatsheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkend-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkend-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chextras-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chextras-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-childdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-childdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chkfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chkfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chngcntr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chngcntr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chronology-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chronology-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circ-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circ-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circledsteps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circledsteps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classpack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classpack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clefval-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clefval-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cleveref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cleveref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clipboard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clipboard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clock-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clock-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrdblpg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrdblpg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrstrip-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrstrip-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmdstring-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmdstring-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmdtrack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmdtrack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmsd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmsd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cnltx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cnltx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cntformats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cntformats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cntperchap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cntperchap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codedoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codedoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codepage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codepage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codesection-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codesection-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collcell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collcell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collectbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collectbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colophon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colophon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-color-edits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-color-edits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colordoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colordoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coloring-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coloring-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colortab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colortab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorwav-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorwav-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorweb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorweb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colourchange-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colourchange-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combelow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combelow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commado-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commado-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commedit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commedit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comment-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comment-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-competences-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-competences-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concepts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concepts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concprog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concprog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conditext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conditext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-constants-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-constants-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-continue-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-continue-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contour-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contour-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contracard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contracard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conv-xkv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conv-xkv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking-units-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking-units-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cool-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cool-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coollist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coollist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolstr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolstr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolthms-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolthms-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooltooltips-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooltooltips-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coordsys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coordsys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-copyedit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-copyedit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-copyrightbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-copyrightbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coseoul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coseoul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-counttexruns-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-counttexruns-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courseoutline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courseoutline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coursepaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coursepaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coverpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coverpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cprotect-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cprotect-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossreference-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossreference-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossreftools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossreftools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csquotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csquotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-css-colors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-css-colors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csvmerge-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csvmerge-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csvsimple-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csvsimple-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cuisine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cuisine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currency-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currency-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currvita-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currvita-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cutwin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cutwin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cv4tw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cv4tw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cweb-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cybercic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cybercic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashrule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashrule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashundergaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashundergaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dataref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dataref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datatool-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datatool-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dateiliste-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dateiliste-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datenumber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datenumber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bahasai-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bahasai-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-basque-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-basque-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-breton-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-breton-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bulgarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bulgarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-catalan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-catalan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-croatian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-croatian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-czech-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-czech-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-danish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-danish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-dutch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-dutch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-en-fulltext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-en-fulltext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-esperanto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-esperanto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-estonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-estonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-finnish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-finnish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-galician-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-galician-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-greek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-greek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-hebrew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-hebrew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-icelandic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-icelandic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-irish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-irish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-it-fulltext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-it-fulltext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-latin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-latin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-lsorbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-lsorbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-magyar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-magyar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-norsk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-norsk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-polish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-polish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-portuges-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-portuges-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-romanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-romanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-russian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-russian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-samin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-samin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-scottish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-scottish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-serbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-serbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovene-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovene-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-swedish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-swedish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-turkish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-turkish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-ukrainian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-ukrainian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-usorbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-usorbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-welsh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-welsh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dblfloatfix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dblfloatfix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decimal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decimal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decorule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decorule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimtxt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimtxt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-denisbdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-denisbdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diabetes-logbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diabetes-logbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagnose-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagnose-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dialogl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dialogl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dichokey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dichokey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dinbrief-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dinbrief-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-directory-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-directory-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtytalk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtytalk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dlfltxb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dlfltxb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dnaseq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dnaseq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doclicense-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doclicense-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmfp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmfp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmute-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmute-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doctools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doctools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-documentation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-documentation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docutils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docutils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotarrow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotarrow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotlessi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotlessi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotseqn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotseqn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-download-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-download-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dpfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dpfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dprogress-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dprogress-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftcopy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftcopy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftfigure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftfigure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftwatermark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftwatermark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxdescribe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxdescribe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxgallery-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxgallery-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duckuments-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duckuments-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ducksay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ducksay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvdcoll-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvdcoll-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynamicnumber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynamicnumber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynblocks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynblocks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ean13isbn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ean13isbn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easy-todo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easy-todo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easybook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easybook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfloats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfloats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyformat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyformat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easylist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easylist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyreview-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyreview-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebezier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebezier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecclesiastic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecclesiastic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econlipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econlipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edichokey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edichokey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmargin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmargin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eemeir-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eemeir-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-efbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-efbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-egplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-egplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ehhline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ehhline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-einfart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-einfart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantnote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantnote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantpaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantpaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elements-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elements-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipsis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipsis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elocalloc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elocalloc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elpres-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elpres-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elzcards-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elzcards-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emarks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emarks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedall-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedall-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embrac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embrac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emptypage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emptypage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emulateapj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emulateapj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endheads-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endheads-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotes-hy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotes-hy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engpron-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engpron-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engrec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engrec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enotez-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enotez-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enumitem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enumitem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enumitem-zref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enumitem-zref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-envbig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-envbig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-environ-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-environ-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-envlab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-envlab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigraph-keys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigraph-keys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epiolmec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epiolmec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eq-pin2corr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eq-pin2corr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnalign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnalign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqname-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqname-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqparbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqparbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-errata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-errata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erw-l3-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erw-l3-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esami-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esami-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esdiff-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esdiff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esint-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esint-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etaremune-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etaremune-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etextools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etextools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eukdate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eukdate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eulerpx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eulerpx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-europasscv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-europasscv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-europecv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-europecv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyhook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyhook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everypage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everypage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-n-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-n-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-randomizechoices-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-randomizechoices-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-examdesign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-examdesign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exframe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exframe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-example-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-example-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-examplep-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-examplep-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exceltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exceltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-excludeonly-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-excludeonly-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercise-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercise-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercisebank-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercisebank-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercisepoints-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercisepoints-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercises-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercises-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exesheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exesheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exp-testopt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exp-testopt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expdlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expdlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-export-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-export-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exsheets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exsheets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exsol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exsol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extract-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extract-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facsimile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facsimile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-factura-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-factura-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhandout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhandout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancylabel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancylabel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancynum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancynum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancypar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancypar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytabs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytabs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytooltips-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytooltips-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcolumn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcolumn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetchcls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetchcls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fewerfloatpages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fewerfloatpages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ffslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ffslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fgruler-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fgruler-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fibeamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fibeamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifo-stack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifo-stack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figsize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figsize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontents-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontents-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontentsdef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontentsdef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filedate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filedate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fileinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fileinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filemod-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filemod-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fink-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fink-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-finstrut-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-finstrut-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fithesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fithesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixcmex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixcmex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixfoot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixfoot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixme-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixme-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixmetodonotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixmetodonotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fjodor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fjodor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flabels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flabels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flacards-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flacards-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flagderiv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flagderiv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flashcards-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flashcards-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flashmovie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flashmovie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flipbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flipbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flippdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flippdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatflt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatflt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatrow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatrow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowfram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowfram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmtcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmtcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fn2end-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fn2end-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnbreak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnbreak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fncychap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fncychap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fncylab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fncylab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnpara-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnpara-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnpct-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnpct-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnumprint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnumprint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foilhtml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foilhtml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontaxes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontaxes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontsetup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontsetup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontsize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontsize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonttable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonttable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnotebackref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnotebackref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnoterange-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnoterange-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnpag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnpag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forarray-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forarray-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foreign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foreign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forloop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forloop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formlett-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formlett-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forms16be-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forms16be-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formular-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formular-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fragments-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fragments-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frame-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frame-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-framed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-framed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frankenstein-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frankenstein-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frege-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frege-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-froufrou-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-froufrou-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftcap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftcap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftnxtra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftnxtra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullblck-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullblck-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullminipage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullminipage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullwidth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullwidth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-calligra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-calligra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-cyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-cyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-sueterlin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-sueterlin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fvextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fvextra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fwlw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fwlw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-g-brief-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-g-brief-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gatherenum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gatherenum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gauss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gauss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gcard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gcard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gcite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gcite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gender-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gender-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genmpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genmpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getfiledate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getfiledate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getitems-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getitems-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ginpenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ginpenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitfile-info-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitfile-info-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitinfo2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitinfo2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitlog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitlog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitver-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitver-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-globalvals-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-globalvals-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gloss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gloss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-danish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-danish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-dutch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-dutch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-estonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-estonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-extra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-finnish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-finnish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-irish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-irish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-magyar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-magyar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-nynorsk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-nynorsk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-polish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-polish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-portuges-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-portuges-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-serbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-serbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-slovene-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-slovene-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmdoc-enhance-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmdoc-enhance-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmiflink-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmiflink-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmutils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmutils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmverb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmverb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grabbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grabbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicx-psmin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicx-psmin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicxbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicxbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphpaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphpaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grayhints-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grayhints-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grfpaste-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grfpaste-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grid-system-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grid-system-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridpapers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridpapers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridset-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridset-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitlogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitlogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-halloweenmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-halloweenmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hackthefootline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hackthefootline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-handin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-handin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-handout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-handout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hang-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hang-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hanging-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hanging-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hardwrap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hardwrap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harnon-cv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harnon-cv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harpoon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harpoon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-he-she-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-he-she-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hhtensor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hhtensor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-highlightlatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-highlightlatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-histogr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-histogr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitreport-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitreport-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobsub-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobsub-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hpsdiss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hpsdiss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrefhide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrefhide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvqrurl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvqrurl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypdestopt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypdestopt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypdvips-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypdvips-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperbar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperbar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypernat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypernat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperxmp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperxmp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphenat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphenat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-identkey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-identkey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-idxcmds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-idxcmds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-idxlayout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-idxlayout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iffont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iffont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifmslide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifmslide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifmtarg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifmtarg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifnextok-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifnextok-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifoddpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifoddpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifthenx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifthenx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iitem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iitem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-image-gallery-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-image-gallery-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imakeidx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imakeidx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-import-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-import-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-incgraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-incgraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-indextools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-indextools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inline-images-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inline-images-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inlinedef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inlinedef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputenx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputenx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputtrc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputtrc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interactiveworkbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interactiveworkbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interfaces-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interfaces-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intopdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intopdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inversepath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inversepath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice-class-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice-class-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso10303-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso10303-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isonums-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isonums-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isopt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isopt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isorot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isorot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isotope-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isotope-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-issuulinks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-issuulinks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iwhdp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iwhdp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlabels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlabels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jslectureplanner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jslectureplanner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jumplines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jumplines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jvlisting-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jvlisting-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kalendarium-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kalendarium-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kantlipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kantlipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kerntest-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kerntest-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keycommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keycommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyreader-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyreader-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keystroke-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keystroke-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyval2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyval2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyvaltable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyvaltable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knowledge-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knowledge-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-moderncvclassic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-moderncvclassic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-script-sfs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-script-sfs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv-rg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv-rg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ktv-texdata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ktv-texdata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3build-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3build-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labels4easylist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labels4easylist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labelschanged-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labelschanged-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpackage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpackage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-amsmath-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-amsmath-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-base-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-base-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-bin-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-bin-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-firstaid-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-firstaid-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-graphics-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-graphics-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-tools-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-tools-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-uni8-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-uni8-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcolors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcolors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexdemo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexdemo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexgit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexgit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layouts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layouts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lazylist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lazylist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lccaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lccaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leading-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leading-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leaflet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leaflet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lebhart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lebhart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lectures-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lectures-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lectureslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lectureslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leftidx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leftidx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leftindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leftindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leipzig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leipzig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lengthconvert-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lengthconvert-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lettre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lettre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lettrine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lettrine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lewis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lewis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lhelp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lhelp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linegoal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linegoal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lisp-on-tex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lisp-on-tex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listingsutf8-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listingsutf8-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listlbls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listlbls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listliketab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listliketab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listofsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listofsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lkproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lkproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lmake-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lmake-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-locality-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-locality-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logical-markup-utils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logical-markup-utils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logpap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logpap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longfbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longfbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longfigure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longfigure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longnamefilelist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longnamefilelist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-loops-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-loops-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lsc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lsc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstaddons-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstaddons-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstfiracode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstfiracode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lt3graph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lt3graph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltablex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltablex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltabptch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltabptch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxdockit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxdockit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxguidex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxguidex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxkeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxkeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxnew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxnew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxtools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxtools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-check-hyphen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-check-hyphen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-physical-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-physical-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatodonotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatodonotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-macroswap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-macroswap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magaz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magaz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magicnum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magicnum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecookbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecookbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makerobust-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makerobust-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailmerge-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailmerge-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebarcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebarcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecirc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecirc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecmds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecmds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makedtx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makedtx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeglos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeglos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mandi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mandi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manfnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manfnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manuscript-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manuscript-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manyind-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manyind-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginnote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginnote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-markdown-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-markdown-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathalpha-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathalpha-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathastext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathastext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfam256-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfam256-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maybemath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maybemath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcaption-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcaption-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mceinleger-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mceinleger-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mciteplus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mciteplus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdframed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdframed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-media4svg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-media4svg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-media9-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-media9-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-medstarbeamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-medstarbeamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-meetingmins-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-meetingmins-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memexsupp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memexsupp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memory-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memory-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mensa-tex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mensa-tex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menucard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menucard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menukeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menukeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metanorma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metanorma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metastr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metastr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-method-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-method-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfirstuc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfirstuc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mftinc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mftinc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mi-solns-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mi-solns-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-midpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-midpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mindflow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mindflow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minibox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minibox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minidocument-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minidocument-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minifp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minifp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minimalist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minimalist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minipage-marginpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minipage-marginpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minitoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minitoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minorrevision-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minorrevision-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minted-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minted-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minutes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minutes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mla-paper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mla-paper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mleftright-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mleftright-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mmap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mmap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moderncv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moderncv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modernposter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modernposter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moderntimeline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moderntimeline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modroman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modroman-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modular-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modular-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-monofill-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-monofill-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moodle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moodle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moreenum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moreenum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morefloats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morefloats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morehype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morehype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moresize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moresize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moreverb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moreverb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morewrites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morewrites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-movie15-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-movie15-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mparhack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mparhack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpostinl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpostinl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mslapa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mslapa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mtgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mtgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multenum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multenum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiaudience-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiaudience-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibbl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibbl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicolrule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicolrule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multidef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multidef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multienv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multienv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiexpand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiexpand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multilang-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multilang-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multirow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multirow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mversion-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mversion-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mycv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mycv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mylatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mylatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mylatexformat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mylatexformat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nameauth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nameauth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namespc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namespc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncclatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncclatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncctools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncctools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-needspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-needspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nestquot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nestquot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newcommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newcommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newenviron-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newenviron-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newlfm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newlfm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newspaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newspaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newunicodechar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newunicodechar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newvbtm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newvbtm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newverbs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newverbs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nextpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nextpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nfssext-cfr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nfssext-cfr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicefilelist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicefilelist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-niceframe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-niceframe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicetext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicetext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nidanfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nidanfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nlctdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nlctdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noconflict-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noconflict-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noindentafter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noindentafter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noitcrul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noitcrul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nolbreaks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nolbreaks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomencl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomencl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomentbl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomentbl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonumonpart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonumonpart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nopageno-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nopageno-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-normalcolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-normalcolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notespages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notespages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notestex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notestex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notoccite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notoccite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nowidow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nowidow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntheorem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntheorem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numberedblock-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numberedblock-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numname-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numname-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numprint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numprint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numspell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numspell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocg-p-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocg-p-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocgx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocgx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocgx2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocgx2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-octavo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-octavo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldstyle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldstyle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onlyamsmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onlyamsmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opcit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opcit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optidef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optidef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optional-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optional-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-options-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-options-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orcidlink-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orcidlink-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orientation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orientation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outliner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outliner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outlines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outlines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outlining-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outlining-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overlays-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overlays-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-padcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-padcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagenote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagenote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagerange-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagerange-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pageslts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pageslts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papercdcase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papercdcase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papermas-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papermas-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papertex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papertex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paracol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paracol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parades-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parades-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paralist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paralist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paresse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paresse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parsa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parsa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parselines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parselines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-cours-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-cours-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-cv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-cv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-tableur-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-tableur-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patchcmd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patchcmd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pauldoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pauldoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pawpict-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pawpict-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbalance-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbalance-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbsheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbsheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdf14-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdf14-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcolmk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcolmk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcomment-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcomment-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcprot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcprot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfmarginpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfmarginpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfoverlay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfoverlay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpagediff-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpagediff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpc-movie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpc-movie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfprivacy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfprivacy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfreview-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfreview-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfscreen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfscreen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfslide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfslide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfsync-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfsync-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfwin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfwin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pecha-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pecha-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-permute-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-permute-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-petiteannonce-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-petiteannonce-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phffullpagefigure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phffullpagefigure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfnote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfnote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfparen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfparen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfqit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfqit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfquotetext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfquotetext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfsvnwatermark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfsvnwatermark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfthm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfthm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonenumbers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonenumbers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-photo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-photo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-picture-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-picture-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piff-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkgloader-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pkgloader-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeins-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeins-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantslabels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantslabels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plates-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plates-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plweb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plweb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmboxdraw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmboxdraw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynom-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynom-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynomial-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynomial-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polytable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polytable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-postcards-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-postcards-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poster-mac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poster-mac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ppr-prv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ppr-prv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-practicalreports-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-practicalreports-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prelim2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prelim2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preprint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preprint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pressrelease-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pressrelease-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prettyref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prettyref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preview-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preview-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-printlen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-printlen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-probsoln-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-probsoln-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-program-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-program-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-progress-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-progress-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-progressbar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-progressbar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proofread-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proofread-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-properties-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-properties-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prosper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prosper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-protex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-protex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-protocol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-protocol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfragx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfragx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstool-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstool-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstring-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstring-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxgreeks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxgreeks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pygmentex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pygmentex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-python-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-python-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qcm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qcm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qstest-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qstest-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quicktype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quicktype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quiz2socrative-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quiz2socrative-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotchap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotchap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quoting-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quoting-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotmark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotmark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ran_toks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ran_toks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randtext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randtext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rccol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rccol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs-multi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs-multi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcsinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcsinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-readablecv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-readablecv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-readarray-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-readarray-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realboxes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realboxes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipebook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipecard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipecard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rectopma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rectopma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refcheck-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refcheck-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refenums-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refenums-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reflectgraphics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reflectgraphics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refman-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refstyle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refstyle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regexpatch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regexpatch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-register-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-register-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regstats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regstats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-relenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-relenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-relsize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-relsize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repeatindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repeatindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repltext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repltext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-returntogrid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-returntogrid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rgltxdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rgltxdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rjlparshap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rjlparshap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rlepsf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rlepsf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rmpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rmpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-robustcommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-robustcommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-robustindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-robustindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbarpagenumber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbarpagenumber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanneg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanneg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romannum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romannum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rotfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rotfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rotpages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rotpages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roundbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roundbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rterface-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rterface-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rtkinenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rtkinenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rulerbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rulerbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rulercompass-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rulercompass-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-runcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-runcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rvwrite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rvwrite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanitize-umlaut-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanitize-umlaut-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauerj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauerj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savefnmark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savefnmark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savesym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savesym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savetrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savetrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scale-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scale-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scalebar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scalebar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scalerel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scalerel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scanpages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scanpages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schedule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schedule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schooldocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schooldocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scontents-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scontents-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrlayer-fancyhdr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrlayer-fancyhdr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrlttr2copy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrlttr2copy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sdaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sdaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sdrt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sdrt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-secdot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-secdot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-secnum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-secnum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectionbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectionbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectionbreak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectionbreak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectsty-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectsty-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seealso-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seealso-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selectp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selectp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selinput-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selinput-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantic-markup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantic-markup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semesterplanner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semesterplanner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semioneside-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semioneside-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semproc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semproc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sepfootnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sepfootnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seqsplit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seqsplit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesstime-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesstime-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sf298-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sf298-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sffms-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sffms-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sfmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sfmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadethm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadethm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadowtext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadowtext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shapepar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shapepar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shipunov-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shipunov-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shorttoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shorttoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-show2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-show2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showcharinbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showcharinbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showdim-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showdim-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showexpl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showexpl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showhyphens-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showhyphens-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showlabels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showlabels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidecap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidecap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidenotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidenotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-silence-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-silence-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpleinvoice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpleinvoice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplivre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplivre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sitem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sitem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeldoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeldoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeycommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeycommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeyval-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeyval-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skills-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skills-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skrapport-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skrapport-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-slantsc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-slantsc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smalltableof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smalltableof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartunits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartunits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-snapshot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-snapshot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-snotez-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-snotez-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soulpos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soulpos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soulutf8-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soulutf8-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spacingtricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spacingtricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spark-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spark-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sparklines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sparklines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sphack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sphack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spotcolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spotcolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spreadtab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spreadtab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spverbatim-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spverbatim-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srbook-mem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srbook-mem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcltx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srcltx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sseq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sseq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stackengine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stackengine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-standalone-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-standalone-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdclsdv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdclsdv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stealcaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stealcaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-storebox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-storebox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-storecmd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-storecmd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringstrings-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringstrings-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sttools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sttools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stubs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stubs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-studenthandouts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-studenthandouts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subdepth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subdepth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subdocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subdocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqnarray-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqnarray-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfigmat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfigmat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfigure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfigure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfiles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfiles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substitutefont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substitutefont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-supertabular-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-supertabular-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suppose-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suppose-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svgcolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svgcolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-multi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-multi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-prov-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-prov-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svninfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svninfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swfigure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swfigure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntrace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntrace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synttree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-synttree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabfigures-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabfigures-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tableaux-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tableaux-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablefootnote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablefootnote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tableof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tableof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablestyles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablestyles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablists-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablists-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablvar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablvar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabstackengine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabstackengine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabto-ltx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabto-ltx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularborder-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularborder-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularcalc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularcalc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabulary-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabulary-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagging-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagging-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagpair-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagpair-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagpdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagpdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-talk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-talk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tamefloats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tamefloats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tasks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tasks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tcldoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tcldoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tcolorbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tcolorbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tdclock-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tdclock-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-technics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-technics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ted-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ted-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templatetools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templatetools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testhyphens-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testhyphens-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testidx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testidx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-label-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-label-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-locale-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-locale-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlogos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlogos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texmate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texmate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texments-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texments-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texpower-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texpower-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texshade-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texshade-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texvc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texvc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textfit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textfit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textmerg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textmerg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textpos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textpos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textualicomma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textualicomma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theoremref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theoremref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thinsp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thinsp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmtools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmtools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threadcol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threadcol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeparttable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeparttable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeparttablex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeparttablex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumbs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumbs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumby-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumby-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ticket-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ticket-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlecaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlecaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlefoot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlefoot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlepic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlepic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titleref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titleref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlesec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlesec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocbibind-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocbibind-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocdata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocdata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocloft-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocloft-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocvsec2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocvsec2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todonotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todonotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tokcycle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tokcycle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tokenizer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tokenizer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toolbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toolbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topiclongtable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topiclongtable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totalcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totalcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totpages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totpages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translations-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translations-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-transparent-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-transparent-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trfsigns-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trfsigns-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trimspaces-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trimspaces-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trivfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trivfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trsym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trsym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-truncate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-truncate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tucv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tucv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turnthepage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turnthepage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twoinone-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twoinone-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twoup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twoup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txgreeks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txgreeks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-type1cm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-type1cm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typed-checklist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typed-checklist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeface-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typeface-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typoaid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typoaid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typogrid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typogrid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uassign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uassign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uebungsblatt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uebungsblatt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umoline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umoline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underlin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underlin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underoverlap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underoverlap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-undolabl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-undolabl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitipa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitipa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitconv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitconv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-units-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-units-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unravel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unravel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upmethodology-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upmethodology-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upquote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upquote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uri-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uri-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ushort-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ushort-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utf8add-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utf8add-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uwmslide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uwmslide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-variablelm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-variablelm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varsfromjobname-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varsfromjobname-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varwidth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varwidth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vcell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vcell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vdmlisting-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vdmlisting-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbasef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbasef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbatimbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbatimbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbatimcopy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbatimcopy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbdef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbdef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbments-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbments-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifiche-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifiche-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-version-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-version-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-versions-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-versions-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-versonotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-versonotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vertbars-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vertbars-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vgrid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vgrid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vhistory-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vhistory-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vmargin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vmargin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-volumes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-volumes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vpe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vpe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vruler-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vruler-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vtable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vtable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vwcol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vwcol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wallcalendar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wallcalendar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wallpaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wallpaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-warning-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-warning-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-warpcol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-warpcol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-was-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-was-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-webquiz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-webquiz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widetable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widetable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widows-and-orphans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widows-and-orphans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-williams-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-williams-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-willowtreebook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-willowtreebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-withargs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-withargs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wordcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wordcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wordlike-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wordlike-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-worksheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-worksheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wrapfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wrapfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wtref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wtref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xargs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xargs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xassoccnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xassoccnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xbmks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xbmks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcntperchap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcntperchap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-material-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-material-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-solarized-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-solarized-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcomment-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcomment-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcookybooky-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcookybooky-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcpdftips-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcpdftips-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xellipsis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xellipsis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xfakebold-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xfakebold-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xfor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xfor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xhfill-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xhfill-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xifthen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xifthen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xkcdcolors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xkcdcolors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xltabular-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xltabular-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmpincl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmpincl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xnewcommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xnewcommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xoptarg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xoptarg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpatch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpatch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpeek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpeek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xprintlen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xprintlen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpunctuate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpunctuate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xsavebox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xsavebox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xsim-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xsim-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xstring-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xstring-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xtab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xtab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xurl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xurl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xwatermark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xwatermark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xytree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xytree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yafoot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yafoot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yaletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yaletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yagusylo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yagusylo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ycbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ycbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ydoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ydoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yplan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yplan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zebra-goodies-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zebra-goodies-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zed-csp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zed-csp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ziffer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ziffer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zwgetfdate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zwgetfdate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zwpagelayout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zwpagelayout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-latexextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-latexextra-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-2up.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-2up.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ESIEEcv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ESIEEcv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-GS1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-GS1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-HA-prosper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-HA-prosper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Tabbing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Tabbing.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a0poster.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a0poster.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a4wide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a4wide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a5comb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a5comb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abraces.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abraces.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abstract.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abstract.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accessibility.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accessibility.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accsupp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accsupp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-achemso.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-achemso.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acronym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acronym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acroterm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acroterm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialangle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialangle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialsymbol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialsymbol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addlines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addlines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjmulticol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjmulticol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjustbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjustbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adrconv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adrconv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-advdate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-advdate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akktex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akktex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alertmessage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alertmessage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alnumsec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alnumsec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alphalph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alphalph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-altfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-altfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsaddr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsaddr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-animate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-animate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonchap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonchap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-answers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-answers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anyfontsize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anyfontsize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-appendix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-appendix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-appendixnumberbeamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-appendixnumberbeamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apptools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apptools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabicfront.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabicfront.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arcs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arcs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraycols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraycols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arrayjobx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arrayjobx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraysort.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraysort.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arydshln.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arydshln.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asciilist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asciilist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-askinclude.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-askinclude.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-assignment.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-assignment.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-assoccnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-assoccnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-association-matrix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-association-matrix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atenddvi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atenddvi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aurl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aurl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authoraftertitle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authoraftertitle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authorarchive.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authorarchive.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authorindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authorindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autofancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autofancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autonum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autonum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autopdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autopdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-avremu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-avremu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axessibility.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axessibility.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-background.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-background.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bankstatement.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bankstatement.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bashful.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bashful.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basicarith.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basicarith.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bchart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bchart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer2thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer2thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-rl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-rl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerappendixnote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerappendixnote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beameraudience.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beameraudience.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerauxtheme.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerauxtheme.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamercolorthemeowl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamercolorthemeowl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerdarkthemes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerdarkthemes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerposter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerposter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamersubframe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamersubframe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-cuerna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-cuerna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-detlevcm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-detlevcm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-epyt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-epyt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-focus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-focus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-light.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-light.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-metropolis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-metropolis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-npbt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-npbt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-phnompenh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-phnompenh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-pure-minimalistic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-pure-minimalistic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-saintpetersburg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-saintpetersburg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-upenn-bc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-upenn-bc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerthemenirma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerthemenirma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerthemenord.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerthemenord.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bearwear.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bearwear.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beaulivre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beaulivre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beton.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beton.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bewerbung.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bewerbung.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bez123.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bez123.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bhcexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bhcexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibletext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibletext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigfoot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigfoot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigints.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigints.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biochemistry-colors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biochemistry-colors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bithesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bithesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bizcard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bizcard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blindtext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blindtext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blkarray.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blkarray.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-block.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-block.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blowup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blowup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bnumexpr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bnumexpr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bold-extra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bold-extra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookcover.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookcover.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookest.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookest.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booklet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booklet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookshelf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookshelf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boolexpr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boolexpr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bophook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bophook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxedminipage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxedminipage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxhandler.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxhandler.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bracketkey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bracketkey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braket.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braket.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breakurl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breakurl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bubblesort.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bubblesort.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bullcntr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bullcntr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxcalc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxcalc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxdpx-beamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxdpx-beamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxdvidriver.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxdvidriver.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxenclose.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxenclose.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxnewfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxnewfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxpapersize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxpapersize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxpdfver.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxpdfver.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxtexlogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxtexlogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calcage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calcage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calctab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calctab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculator.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculator.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calrsfs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calrsfs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cals.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cals.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calxxxx-yyyy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calxxxx-yyyy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cancel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cancel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-canoniclayout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-canoniclayout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-capt-of.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-capt-of.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-captcont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-captcont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-captdef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-captdef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carbohydrates.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carbohydrates.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cases.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cases.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-casyl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-casyl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfilebetweentags.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfilebetweentags.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catechis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catechis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catoptions.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catoptions.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbcoptic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbcoptic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccaption.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccaption.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cclicenses.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cclicenses.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd-cover.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd-cover.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cdpbundl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cdpbundl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cellprops.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cellprops.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cellspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cellspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-censor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-censor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-centeredline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-centeredline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-centerlastline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-centerlastline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changebar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changebar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changelayout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changelayout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changelog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changelog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changepage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changepage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chappg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chappg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chapterfolder.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chapterfolder.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkend.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkend.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chextras.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chextras.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-childdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-childdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chkfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chkfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chngcntr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chngcntr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chronology.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chronology.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circ.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circ.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circledsteps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circledsteps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classpack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classpack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clefval.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clefval.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cleveref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cleveref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clipboard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clipboard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clock.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clock.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrdblpg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrdblpg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrstrip.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrstrip.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmdstring.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmdstring.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmdtrack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmdtrack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmsd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmsd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cnltx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cnltx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cntformats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cntformats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cntperchap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cntperchap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codedoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codedoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codepage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codepage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codesection.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codesection.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collcell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collcell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collectbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collectbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colophon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colophon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-color-edits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-color-edits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colordoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colordoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coloring.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coloring.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colortab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colortab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorwav.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorwav.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorweb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorweb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colourchange.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colourchange.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combelow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combelow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commado.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commado.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commedit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commedit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comment.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comment.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-competences.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-competences.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concepts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concepts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concprog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concprog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conditext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conditext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-constants.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-constants.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-continue.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-continue.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contour.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contour.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contracard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contracard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conv-xkv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conv-xkv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking-units.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking-units.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cool.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cool.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coollist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coollist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolstr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolstr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolthms.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolthms.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooltooltips.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooltooltips.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coordsys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coordsys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-copyedit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-copyedit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-copyrightbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-copyrightbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coseoul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coseoul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-counttexruns.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-counttexruns.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courseoutline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courseoutline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coursepaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coursepaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coverpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coverpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cprotect.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cprotect.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossreference.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossreference.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossreftools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossreftools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csquotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csquotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-css-colors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-css-colors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csvmerge.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csvmerge.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csvsimple.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csvsimple.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cuisine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cuisine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currency.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currency.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currvita.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currvita.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cutwin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cutwin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cv4tw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cv4tw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cweb-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cybercic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cybercic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashrule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashrule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashundergaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashundergaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dataref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dataref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datatool.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datatool.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dateiliste.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dateiliste.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datenumber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datenumber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bahasai.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bahasai.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-basque.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-basque.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-breton.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-breton.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-catalan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-catalan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-croatian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-croatian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-czech.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-czech.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-danish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-danish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-dutch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-dutch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-en-fulltext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-en-fulltext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-english.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-english.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-esperanto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-esperanto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-estonian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-estonian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-finnish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-finnish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-galician.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-galician.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-greek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-greek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-hebrew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-hebrew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-icelandic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-icelandic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-irish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-irish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-it-fulltext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-it-fulltext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-latin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-latin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-lsorbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-lsorbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-magyar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-magyar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-norsk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-norsk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-polish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-polish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-portuges.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-portuges.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-romanian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-romanian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-russian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-russian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-samin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-samin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-scottish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-scottish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-serbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-serbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovene.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovene.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-swedish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-swedish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-turkish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-turkish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-ukrainian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-ukrainian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-usorbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-usorbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-welsh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-welsh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dblfloatfix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dblfloatfix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decimal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decimal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decorule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decorule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimtxt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimtxt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-denisbdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-denisbdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diabetes-logbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diabetes-logbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagnose.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagnose.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dialogl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dialogl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dichokey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dichokey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dinbrief.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dinbrief.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-directory.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-directory.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtytalk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtytalk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dlfltxb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dlfltxb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dnaseq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dnaseq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doclicense.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doclicense.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmfp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmfp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmute.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmute.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doctools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doctools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-documentation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-documentation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docutils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docutils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotarrow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotarrow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotlessi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotlessi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotseqn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotseqn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-download.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-download.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dpfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dpfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dprogress.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dprogress.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftcopy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftcopy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftfigure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftfigure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftwatermark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftwatermark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxdescribe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxdescribe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxgallery.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxgallery.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duckuments.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duckuments.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ducksay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ducksay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvdcoll.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvdcoll.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynamicnumber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynamicnumber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynblocks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynblocks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ean13isbn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ean13isbn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easy-todo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easy-todo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easybook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easybook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfloats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfloats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyformat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyformat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easylist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easylist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyreview.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyreview.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebezier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebezier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecclesiastic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecclesiastic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econlipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econlipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edichokey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edichokey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmargin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmargin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eemeir.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eemeir.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-efbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-efbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-egplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-egplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ehhline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ehhline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-einfart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-einfart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantnote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantnote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantpaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantpaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elements.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elements.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipsis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipsis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elocalloc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elocalloc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elpres.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elpres.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elzcards.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elzcards.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emarks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emarks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedall.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedall.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embrac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embrac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emptypage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emptypage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emulateapj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emulateapj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endheads.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endheads.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotes-hy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotes-hy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engpron.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engpron.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engrec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engrec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enotez.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enotez.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enumitem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enumitem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enumitem-zref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enumitem-zref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-envbig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-envbig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-environ.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-environ.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-envlab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-envlab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigraph-keys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigraph-keys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epiolmec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epiolmec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eq-pin2corr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eq-pin2corr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnalign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnalign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqparbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqparbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-errata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-errata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erw-l3.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erw-l3.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esami.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esami.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esdiff.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esdiff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esint-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esint-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etaremune.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etaremune.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etextools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etextools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eukdate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eukdate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eulerpx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eulerpx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-europasscv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-europasscv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-europecv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-europecv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyhook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyhook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everypage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everypage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-n.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-n.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-randomizechoices.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-randomizechoices.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-examdesign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-examdesign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exframe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exframe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-examplep.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-examplep.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exceltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exceltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-excludeonly.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-excludeonly.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercise.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercise.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercisebank.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercisebank.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercisepoints.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercisepoints.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercises.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercises.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exesheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exesheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exp-testopt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exp-testopt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expdlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expdlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-export.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-export.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exsheets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exsheets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exsol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exsol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extract.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extract.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facsimile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facsimile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-factura.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-factura.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhandout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhandout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancylabel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancylabel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancynum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancynum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancypar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancypar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytabs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytabs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytooltips.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytooltips.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcolumn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcolumn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetchcls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetchcls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fewerfloatpages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fewerfloatpages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ffslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ffslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fgruler.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fgruler.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fibeamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fibeamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifo-stack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifo-stack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figsize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figsize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontents.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontents.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontentsdef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontentsdef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filedate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filedate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fileinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fileinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filemod.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filemod.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fink.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fink.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-finstrut.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-finstrut.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fithesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fithesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixcmex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixcmex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixfoot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixfoot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixme.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixme.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixmetodonotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixmetodonotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fjodor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fjodor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flabels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flabels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flacards.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flacards.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flagderiv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flagderiv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flashcards.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flashcards.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flashmovie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flashmovie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flipbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flipbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flippdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flippdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatflt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatflt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatrow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatrow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowfram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowfram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmtcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmtcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fn2end.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fn2end.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnbreak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnbreak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fncychap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fncychap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fncylab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fncylab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnpara.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnpara.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnpct.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnpct.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnumprint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnumprint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foilhtml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foilhtml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontaxes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontaxes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontsetup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontsetup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontsize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontsize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonttable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonttable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnotebackref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnotebackref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnoterange.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnoterange.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnpag.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnpag.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forarray.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forarray.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foreign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foreign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forloop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forloop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formlett.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formlett.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forms16be.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forms16be.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formular.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formular.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fragments.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fragments.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frame.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frame.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-framed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-framed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frankenstein.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frankenstein.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frege.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frege.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-froufrou.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-froufrou.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftcap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftcap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftnxtra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftnxtra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullblck.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullblck.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullminipage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullminipage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullwidth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullwidth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-calligra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-calligra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-sueterlin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-sueterlin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fvextra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fvextra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fwlw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fwlw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-g-brief.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-g-brief.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gatherenum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gatherenum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gauss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gauss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gcard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gcard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gcite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gcite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gender.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gender.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genmpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genmpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getfiledate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getfiledate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getitems.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getitems.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ginpenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ginpenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitfile-info.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitfile-info.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitinfo2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitinfo2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitlog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitlog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitver.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitver.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-globalvals.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-globalvals.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gloss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gloss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-danish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-danish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-dutch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-dutch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-english.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-english.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-estonian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-estonian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-extra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-extra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-finnish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-finnish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-irish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-irish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-magyar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-magyar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-nynorsk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-nynorsk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-polish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-polish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-portuges.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-portuges.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-serbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-serbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-slovene.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-slovene.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmdoc-enhance.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmdoc-enhance.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmiflink.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmiflink.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmutils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmutils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmverb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmverb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grabbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grabbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicx-psmin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicx-psmin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicxbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicxbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphpaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphpaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grayhints.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grayhints.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grfpaste.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grfpaste.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grid-system.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grid-system.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridpapers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridpapers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridset.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridset.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitlogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitlogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-halloweenmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-halloweenmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hackthefootline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hackthefootline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-handin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-handin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-handout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-handout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hang.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hang.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hanging.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hanging.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hardwrap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hardwrap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harnon-cv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harnon-cv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harpoon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harpoon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-he-she.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-he-she.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hhtensor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hhtensor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-highlightlatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-highlightlatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-histogr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-histogr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitreport.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitreport.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobsub.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobsub.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hpsdiss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hpsdiss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrefhide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrefhide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvqrurl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvqrurl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypdestopt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypdestopt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypdvips.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypdvips.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperbar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperbar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypernat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypernat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperxmp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperxmp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphenat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphenat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-identkey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-identkey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-idxcmds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-idxcmds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-idxlayout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-idxlayout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iffont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iffont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifmslide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifmslide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifmtarg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifmtarg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifnextok.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifnextok.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifoddpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifoddpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifthenx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifthenx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iitem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iitem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-image-gallery.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-image-gallery.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imakeidx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imakeidx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-import.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-import.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-incgraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-incgraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-indextools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-indextools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inline-images.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inline-images.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inlinedef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inlinedef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputenx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputenx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputtrc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputtrc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interactiveworkbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interactiveworkbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interfaces.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interfaces.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intopdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intopdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inversepath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inversepath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice-class.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice-class.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso10303.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso10303.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isonums.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isonums.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isopt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isopt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isorot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isorot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isotope.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isotope.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-issuulinks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-issuulinks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iwhdp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iwhdp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlabels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlabels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jslectureplanner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jslectureplanner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jumplines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jumplines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jvlisting.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jvlisting.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kalendarium.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kalendarium.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kantlipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kantlipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kerntest.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kerntest.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keycommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keycommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyreader.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyreader.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keystroke.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keystroke.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyval2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyval2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyvaltable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyvaltable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knowledge.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knowledge.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-moderncvclassic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-moderncvclassic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-script-sfs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-script-sfs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv-rg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv-rg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ktv-texdata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ktv-texdata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3build.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3build.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labels4easylist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labels4easylist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labelschanged.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labelschanged.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpackage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpackage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-amsmath-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-amsmath-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-base-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-base-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-bin-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-bin-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-firstaid-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-firstaid-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-graphics-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-graphics-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-tools-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-tools-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-uni8.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-uni8.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcolors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcolors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexdemo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexdemo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexgit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexgit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layouts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layouts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lazylist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lazylist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lccaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lccaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leading.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leading.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leaflet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leaflet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lebhart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lebhart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lectures.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lectures.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lectureslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lectureslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leftidx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leftidx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leftindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leftindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leipzig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leipzig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lengthconvert.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lengthconvert.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lettre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lettre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lettrine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lettrine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lewis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lewis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lhelp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lhelp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linegoal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linegoal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lisp-on-tex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lisp-on-tex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listing.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listingsutf8.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listingsutf8.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listlbls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listlbls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listliketab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listliketab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listofsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listofsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lkproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lkproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lmake.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lmake.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-locality.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-locality.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logical-markup-utils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logical-markup-utils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logpap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logpap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longfbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longfbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longfigure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longfigure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longnamefilelist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longnamefilelist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-loops.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-loops.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lsc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lsc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstaddons.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstaddons.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstfiracode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstfiracode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lt3graph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lt3graph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltablex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltablex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltabptch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltabptch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxdockit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxdockit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxguidex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxguidex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxkeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxkeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxnew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxnew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxtools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxtools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-check-hyphen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-check-hyphen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-physical.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-physical.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatodonotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatodonotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-macroswap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-macroswap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magaz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magaz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magicnum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magicnum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecookbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecookbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makerobust.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makerobust.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailing.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailmerge.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailmerge.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebarcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebarcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecirc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecirc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecmds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecmds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makedtx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makedtx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeglos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeglos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mandi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mandi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manfnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manfnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manuscript.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manuscript.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manyind.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manyind.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginnote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginnote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-markdown.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-markdown.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathalpha.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathalpha.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathastext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathastext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfam256.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfam256.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maybemath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maybemath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcaption.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcaption.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mceinleger.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mceinleger.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mciteplus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mciteplus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdframed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdframed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-media4svg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-media4svg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-media9.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-media9.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-medstarbeamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-medstarbeamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-meetingmins.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-meetingmins.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memexsupp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memexsupp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memory.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memory.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mensa-tex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mensa-tex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menucard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menucard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menukeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menukeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metanorma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metanorma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metastr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metastr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-method.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-method.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfirstuc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfirstuc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mftinc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mftinc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mi-solns.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mi-solns.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-midpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-midpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mindflow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mindflow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minibox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minibox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minidocument.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minidocument.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minifp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minifp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minimalist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minimalist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minipage-marginpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minipage-marginpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minitoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minitoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minorrevision.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minorrevision.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minted.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minted.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minutes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minutes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mla-paper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mla-paper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mleftright.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mleftright.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mmap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mmap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moderncv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moderncv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modernposter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modernposter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moderntimeline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moderntimeline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modroman.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modroman.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modular.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modular.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-monofill.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-monofill.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moodle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moodle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moreenum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moreenum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morefloats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morefloats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morehype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morehype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moresize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moresize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moreverb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moreverb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morewrites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morewrites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-movie15.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-movie15.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mparhack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mparhack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpostinl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpostinl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mslapa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mslapa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mtgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mtgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multenum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multenum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiaudience.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiaudience.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibbl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibbl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicolrule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicolrule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multidef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multidef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multienv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multienv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiexpand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiexpand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multilang.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multilang.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multirow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multirow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mversion.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mversion.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mycv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mycv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mylatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mylatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mylatexformat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mylatexformat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nag.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nag.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nameauth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nameauth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namespc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namespc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncclatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncclatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncctools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncctools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-needspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-needspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newcommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newcommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newenviron.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newenviron.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newlfm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newlfm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newspaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newspaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newunicodechar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newunicodechar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newvbtm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newvbtm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newverbs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newverbs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nfssext-cfr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nfssext-cfr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicefilelist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicefilelist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-niceframe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-niceframe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicetext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicetext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nidanfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nidanfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nlctdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nlctdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noconflict.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noconflict.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noindentafter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noindentafter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noitcrul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noitcrul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nolbreaks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nolbreaks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomencl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomencl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomentbl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomentbl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonumonpart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonumonpart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nopageno.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nopageno.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-normalcolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-normalcolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notespages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notespages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notestex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notestex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notoccite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notoccite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nowidow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nowidow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntheorem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntheorem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numberedblock.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numberedblock.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numname.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numname.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numprint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numprint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numspell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numspell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocg-p.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocg-p.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocgx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocgx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocgx2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocgx2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-octavo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-octavo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldstyle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldstyle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onlyamsmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onlyamsmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opcit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opcit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optidef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optidef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optional.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optional.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-options.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-options.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orcidlink.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orcidlink.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orientation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orientation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outliner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outliner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outlines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outlines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outlining.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outlining.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overlays.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overlays.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-padcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-padcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagenote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagenote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagerange.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagerange.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pageslts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pageslts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papercdcase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papercdcase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papermas.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papermas.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papertex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papertex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paracol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paracol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parades.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parades.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paralist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paralist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paresse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paresse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parsa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parsa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parselines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parselines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-cours.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-cours.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-cv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-cv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-tableur.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-tableur.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patchcmd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patchcmd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pauldoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pauldoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pawpict.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pawpict.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbalance.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbalance.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbsheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbsheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdf14.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdf14.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcolmk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcolmk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcomment.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcomment.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcprot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcprot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfmarginpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfmarginpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfoverlay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfoverlay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpagediff.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpagediff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpc-movie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpc-movie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfprivacy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfprivacy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfreview.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfreview.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfscreen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfscreen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfslide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfslide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfsync.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfsync.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfwin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfwin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pecha.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pecha.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-permute.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-permute.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-petiteannonce.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-petiteannonce.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phffullpagefigure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phffullpagefigure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfnote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfnote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfparen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfparen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfqit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfqit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfquotetext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfquotetext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfsvnwatermark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfsvnwatermark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfthm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfthm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonenumbers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonenumbers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-photo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-photo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-picture.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-picture.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piff.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkgloader.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pkgloader.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeins.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeins.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantslabels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantslabels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plates.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plates.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plweb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plweb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmboxdraw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmboxdraw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynom.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynom.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynomial.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynomial.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polytable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polytable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-postcards.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-postcards.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poster-mac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poster-mac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ppr-prv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ppr-prv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-practicalreports.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-practicalreports.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prelim2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prelim2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preprint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preprint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pressrelease.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pressrelease.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prettyref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prettyref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preview.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preview.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-printlen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-printlen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-probsoln.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-probsoln.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-program.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-program.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-progress.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-progress.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-progressbar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-progressbar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proofread.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proofread.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-properties.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-properties.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prosper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prosper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-protex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-protex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-protocol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-protocol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfragx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfragx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstool.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstool.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstring.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstring.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxgreeks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxgreeks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pygmentex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pygmentex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-python.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-python.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qcm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qcm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qstest.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qstest.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quicktype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quicktype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quiz2socrative.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quiz2socrative.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotchap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotchap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quoting.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quoting.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotmark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotmark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ran_toks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ran_toks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randtext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randtext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rccol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rccol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs-multi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs-multi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcsinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcsinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-readablecv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-readablecv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-readarray.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-readarray.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realboxes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realboxes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipebook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipecard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipecard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rectopma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rectopma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refcheck.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refcheck.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refenums.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refenums.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reflectgraphics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reflectgraphics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refman.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refman.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refstyle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refstyle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regexpatch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regexpatch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-register.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-register.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regstats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regstats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-relenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-relenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-relsize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-relsize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repeatindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repeatindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repltext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repltext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-returntogrid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-returntogrid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rgltxdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rgltxdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rjlparshap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rjlparshap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rlepsf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rlepsf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rmpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rmpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-robustcommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-robustcommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-robustindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-robustindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbarpagenumber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbarpagenumber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanneg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanneg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romannum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romannum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rotfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rotfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rotpages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rotpages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roundbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roundbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rterface.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rterface.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rtkinenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rtkinenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rulerbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rulerbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rulercompass.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rulercompass.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-runcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-runcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rvwrite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rvwrite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanitize-umlaut.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanitize-umlaut.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauerj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauerj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savefnmark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savefnmark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savetrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savetrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scale.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scale.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scalebar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scalebar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scalerel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scalerel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scanpages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scanpages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schedule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schedule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schooldocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schooldocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scontents.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scontents.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrlayer-fancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrlayer-fancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrlttr2copy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrlttr2copy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sdaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sdaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sdrt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sdrt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-secdot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-secdot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-secnum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-secnum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectionbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectionbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectionbreak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectionbreak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectsty.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectsty.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seealso.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seealso.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selectp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selectp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selinput.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selinput.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantic-markup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantic-markup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semesterplanner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semesterplanner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semioneside.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semioneside.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semproc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semproc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sepfootnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sepfootnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seqsplit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seqsplit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesstime.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesstime.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sf298.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sf298.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sffms.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sffms.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadethm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadethm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadowtext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadowtext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shapepar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shapepar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shipunov.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shipunov.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shorttoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shorttoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-show2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-show2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showcharinbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showcharinbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showdim.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showdim.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showexpl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showexpl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showhyphens.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showhyphens.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showlabels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showlabels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidecap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidecap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidenotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidenotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-silence.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-silence.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpleinvoice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpleinvoice.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplivre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplivre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sitem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sitem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeldoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeldoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeycommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeycommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeyval.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeyval.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skills.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skills.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skrapport.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skrapport.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-slantsc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-slantsc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smalltableof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smalltableof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartunits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartunits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-snapshot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-snapshot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-snotez.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-snotez.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soulpos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soulpos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soulutf8.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soulutf8.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spacingtricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spacingtricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spark-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spark-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sparklines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sparklines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sphack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sphack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spotcolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spotcolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spreadtab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spreadtab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spverbatim.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spverbatim.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srbook-mem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srbook-mem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcltx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srcltx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sseq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sseq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stackengine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stackengine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-standalone.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-standalone.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdclsdv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdclsdv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stealcaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stealcaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-storebox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-storebox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-storecmd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-storecmd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringstrings.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringstrings.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sttools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sttools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stubs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stubs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-studenthandouts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-studenthandouts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subdepth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subdepth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subdocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subdocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqnarray.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqnarray.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfigmat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfigmat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfigure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfigure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfiles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfiles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substitutefont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substitutefont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-supertabular.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-supertabular.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suppose.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suppose.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svgcolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svgcolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-multi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-multi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-prov.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-prov.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svninfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svninfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swfigure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swfigure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntrace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntrace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synttree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-synttree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabfigures.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabfigures.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tableaux.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tableaux.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablefootnote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablefootnote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tableof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tableof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablestyles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablestyles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablists.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablists.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablvar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablvar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabstackengine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabstackengine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabto-ltx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabto-ltx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularborder.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularborder.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularcalc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularcalc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabulary.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabulary.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagging.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagging.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagpair.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagpair.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagpdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagpdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-talk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-talk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tamefloats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tamefloats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tasks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tasks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tcldoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tcldoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tcolorbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tcolorbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tdclock.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tdclock.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-technics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-technics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ted.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ted.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templatetools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templatetools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testhyphens.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testhyphens.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testidx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testidx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-label.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-label.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-locale.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-locale.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texmate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texmate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texments.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texments.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texpower.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texpower.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texshade.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texshade.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texvc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texvc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textfit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textfit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textmerg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textmerg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textpos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textpos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textualicomma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textualicomma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theoremref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theoremref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thinsp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thinsp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmtools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmtools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threadcol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threadcol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeparttable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeparttable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeparttablex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeparttablex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumbs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumbs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumby.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumby.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ticket.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ticket.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlecaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlecaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlepic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlepic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titleref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titleref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlesec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlesec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocbibind.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocbibind.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocdata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocdata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocloft.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocloft.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocvsec2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocvsec2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todonotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todonotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tokcycle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tokcycle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tokenizer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tokenizer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toolbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toolbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topiclongtable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topiclongtable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totalcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totalcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totpages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totpages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translations.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translations.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-transparent.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-transparent.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trfsigns.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trfsigns.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trimspaces.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trimspaces.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trivfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trivfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trsym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trsym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-truncate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-truncate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tucv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tucv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turnthepage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turnthepage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twoinone.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twoinone.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twoup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twoup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txgreeks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txgreeks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-type1cm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-type1cm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typed-checklist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typed-checklist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeface.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typeface.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typoaid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typoaid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typogrid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typogrid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uassign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uassign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uebungsblatt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uebungsblatt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umoline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umoline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underlin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underlin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underoverlap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underoverlap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-undolabl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-undolabl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitipa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitipa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitconv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitconv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-units.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-units.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unravel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unravel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upmethodology.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upmethodology.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upquote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upquote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uri.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uri.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ushort.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ushort.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utf8add.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utf8add.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uwmslide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uwmslide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-variablelm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-variablelm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varsfromjobname.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varsfromjobname.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varwidth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varwidth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vcell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vcell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vdmlisting.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vdmlisting.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbasef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbasef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbatimbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbatimbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbatimcopy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbatimcopy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbdef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbdef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbments.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbments.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifiche.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifiche.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-version.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-version.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-versions.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-versions.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-versonotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-versonotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vertbars.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vertbars.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vgrid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vgrid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vhistory.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vhistory.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vmargin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vmargin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-volumes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-volumes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vpe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vpe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vruler.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vruler.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vtable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vtable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vwcol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vwcol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wallcalendar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wallcalendar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wallpaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wallpaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-warning.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-warning.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-warpcol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-warpcol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-was.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-was.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-webquiz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-webquiz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widetable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widetable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widows-and-orphans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widows-and-orphans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-williams.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-williams.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-willowtreebook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-willowtreebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-withargs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-withargs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wordcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wordcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wordlike.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wordlike.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-worksheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-worksheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wrapfig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wrapfig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wtref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wtref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xargs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xargs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xassoccnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xassoccnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xbmks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xbmks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcntperchap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcntperchap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-material.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-material.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-solarized.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-solarized.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcomment.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcomment.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcookybooky.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcookybooky.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcpdftips.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcpdftips.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xellipsis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xellipsis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xfakebold.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xfakebold.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xfor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xfor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xhfill.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xhfill.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xifthen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xifthen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xkcdcolors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xkcdcolors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xltabular.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xltabular.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmpincl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmpincl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xnewcommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xnewcommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xoptarg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xoptarg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpatch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpatch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpeek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpeek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xprintlen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xprintlen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpunctuate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpunctuate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xsavebox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xsavebox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xsim.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xsim.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xstring.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xstring.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xtab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xtab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xurl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xurl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xwatermark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xwatermark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xytree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xytree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yafoot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yafoot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yaletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yaletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yagusylo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yagusylo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ycbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ycbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ydoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ydoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yplan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yplan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zebra-goodies.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zebra-goodies.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zed-csp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zed-csp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ziffer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ziffer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zwgetfdate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zwgetfdate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zwpagelayout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zwpagelayout.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ESIEEcv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ESIEEcv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-GS1.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-GS1.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-HA-prosper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-HA-prosper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Tabbing.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Tabbing.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abstract.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abstract.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accessibility.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accessibility.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accsupp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accsupp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-achemso.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-achemso.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acronym.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acronym.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acroterm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acroterm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialangle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialangle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialsymbol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialsymbol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addlines.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addlines.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjmulticol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjmulticol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjustbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjustbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adrconv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adrconv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alertmessage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alertmessage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alnumsec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alnumsec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alphalph.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alphalph.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-altfont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-altfont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsaddr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsaddr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-animate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-animate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-answers.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-answers.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-appendix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-appendix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apptools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apptools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arcs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arcs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraycols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraycols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraysort.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraysort.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arydshln.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arydshln.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asciilist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asciilist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-askinclude.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-askinclude.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atenddvi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atenddvi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autonum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autonum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autopdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autopdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-avremu.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-avremu.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axessibility.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axessibility.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-background.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-background.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basicarith.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basicarith.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerappendixnote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerappendixnote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamercolorthemeowl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamercolorthemeowl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamersubframe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamersubframe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-cuerna.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-cuerna.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-metropolis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-metropolis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-saintpetersburg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-saintpetersburg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bearwear.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bearwear.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beton.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beton.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bewerbung.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bewerbung.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bez123.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bez123.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bhcexam.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bhcexam.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigfoot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigfoot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bithesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bithesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bizcard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bizcard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blindtext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blindtext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blowup.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blowup.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bnumexpr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bnumexpr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boites.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boites.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookcover.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookcover.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booklet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booklet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookshelf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookshelf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boolexpr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boolexpr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bophook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bophook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxedminipage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxedminipage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxhandler.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxhandler.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breakurl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breakurl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bubblesort.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bubblesort.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bullcntr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bullcntr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calcage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calcage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculator.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculator.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cals.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cals.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-canoniclayout.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-canoniclayout.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-capt-of.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-capt-of.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-captcont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-captcont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfilebetweentags.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfilebetweentags.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catechis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catechis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccaption.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccaption.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cclicenses.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cclicenses.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd-cover.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd-cover.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cdpbundl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cdpbundl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cellprops.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cellprops.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-centerlastline.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-centerlastline.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changebar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changebar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changepage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changepage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chappg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chappg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chapterfolder.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chapterfolder.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cheatsheet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cheatsheet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chextras.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chextras.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-childdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-childdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chletter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chletter.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circ.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circ.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classpack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classpack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clefval.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clefval.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cleveref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cleveref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrdblpg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrdblpg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrstrip.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrstrip.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmdtrack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmdtrack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codepage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codepage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codesection.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codesection.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collcell.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collcell.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collectbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collectbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colophon.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colophon.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-color-edits.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-color-edits.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colordoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colordoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorwav.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorwav.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorweb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorweb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combine.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combine.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commado.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commado.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commedit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commedit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-competences.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-competences.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-constants.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-constants.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-continue.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-continue.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contour.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contour.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contracard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contracard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conv-xkv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conv-xkv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking-units.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking-units.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cool.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cool.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coollist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coollist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolstr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolstr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolthms.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolthms.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooltooltips.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooltooltips.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coordsys.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coordsys.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-copyedit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-copyedit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-counttexruns.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-counttexruns.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coverpage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coverpage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cprotect.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cprotect.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossreference.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossreference.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csvmerge.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csvmerge.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cuisine.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cuisine.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currency.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currency.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currfile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currfile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currvita.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currvita.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cutwin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cutwin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyber.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cybercic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cybercic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashrule.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashrule.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashundergaps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashundergaps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datax.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datax.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datatool.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datatool.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dateiliste.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dateiliste.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datenumber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datenumber.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bahasai.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bahasai.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-basque.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-basque.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-breton.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-breton.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bulgarian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bulgarian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-catalan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-catalan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-croatian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-croatian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-czech.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-czech.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-danish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-danish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-dutch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-dutch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-en-fulltext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-en-fulltext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-english.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-english.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-esperanto.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-esperanto.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-estonian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-estonian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-finnish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-finnish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-french.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-french.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-galician.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-galician.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-german.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-german.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-greek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-greek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-hebrew.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-hebrew.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-icelandic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-icelandic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-irish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-irish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-italian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-italian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-it-fulltext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-it-fulltext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-latin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-latin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-lsorbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-lsorbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-magyar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-magyar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-norsk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-norsk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-polish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-polish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-portuges.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-portuges.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-romanian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-romanian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-russian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-russian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-samin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-samin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-scottish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-scottish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-serbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-serbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovak.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovak.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovene.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovene.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-spanish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-spanish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-swedish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-swedish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-turkish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-turkish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-ukrainian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-ukrainian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-usorbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-usorbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-welsh.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-welsh.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decimal.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decimal.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decorule.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decorule.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimtxt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimtxt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-denisbdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-denisbdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dialogl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dialogl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dinbrief.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dinbrief.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtytalk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtytalk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dnaseq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dnaseq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doclicense.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doclicense.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmfp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmfp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmute.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmute.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doctools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doctools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-documentation.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-documentation.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotarrow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotarrow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotseqn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotseqn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-download.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-download.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dprogress.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dprogress.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftcopy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftcopy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftwatermark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftwatermark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxdescribe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxdescribe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duckuments.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duckuments.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ducksay.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ducksay.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynamicnumber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynamicnumber.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easybook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easybook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfig.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfig.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfloats.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfloats.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyreview.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyreview.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebezier.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebezier.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecclesiastic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecclesiastic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econlipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econlipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ed.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ed.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmargin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmargin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eemeir.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eemeir.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-efbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-efbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-egplot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-egplot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipsis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipsis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elocalloc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elocalloc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elzcards.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elzcards.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emarks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emarks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedall.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedall.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedfile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedfile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emptypage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emptypage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endheads.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endheads.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotes-hy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotes-hy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engpron.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engpron.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engrec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engrec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enumitem-zref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enumitem-zref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-environ.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-environ.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-envlab.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-envlab.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigraph.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigraph.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epiolmec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epiolmec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eq-pin2corr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eq-pin2corr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqlist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqlist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnalign.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnalign.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqparbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqparbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-errata.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-errata.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erw-l3.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erw-l3.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esdiff.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esdiff.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etaremune.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etaremune.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etextools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etextools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eukdate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eukdate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyhook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyhook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everypage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everypage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-n.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-n.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-examdesign.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-examdesign.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exframe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exframe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercise.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercise.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercises.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercises.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exesheet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exesheet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exp-testopt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exp-testopt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expdlist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expdlist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-export.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-export.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exsol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exsol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extract.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extract.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facsimile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facsimile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-factura.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-factura.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancylabel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancylabel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancynum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancynum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancypar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancypar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytabs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytabs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytooltips.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytooltips.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcolumn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcolumn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetchcls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetchcls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fewerfloatpages.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fewerfloatpages.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fgruler.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fgruler.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fibeamer.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fibeamer.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifo-stack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifo-stack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontents.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontents.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontentsdef.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontentsdef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filedate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filedate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fileinfo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fileinfo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fink.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fink.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-finstrut.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-finstrut.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fithesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fithesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixcmex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixcmex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixme.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixme.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixmetodonotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixmetodonotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flabels.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flabels.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flagderiv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flagderiv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flashcards.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flashcards.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flippdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flippdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatflt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatflt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatrow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatrow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowfram.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowfram.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmtcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmtcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnbreak.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnbreak.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnumprint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnumprint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foilhtml.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foilhtml.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontaxes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontaxes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontsize.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontsize.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonttable.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonttable.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnoterange.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnoterange.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnpag.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnpag.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forarray.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forarray.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foreign.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foreign.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forloop.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forloop.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forms16be.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forms16be.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formular.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formular.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frankenstein.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frankenstein.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-froufrou.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-froufrou.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftnxtra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftnxtra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullblck.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullblck.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullminipage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullminipage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-calligra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-calligra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-sueterlin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-sueterlin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fvextra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fvextra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-g-brief.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-g-brief.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gatherenum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gatherenum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gcite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gcite.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gender.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gender.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genmpage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genmpage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getitems.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getitems.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ginpenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ginpenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitfile-info.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitfile-info.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-danish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-danish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-dutch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-dutch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-english.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-english.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-estonian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-estonian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-extra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-extra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-finnish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-finnish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-french.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-french.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-german.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-german.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-irish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-irish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-italian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-italian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-magyar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-magyar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-nynorsk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-nynorsk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-polish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-polish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-portuges.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-portuges.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-serbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-serbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-slovene.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-slovene.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-spanish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-spanish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmdoc-enhance.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmdoc-enhance.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grabbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grabbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicx-psmin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicx-psmin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicxbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicxbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphpaper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphpaper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grayhints.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grayhints.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grid.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grid.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridpapers.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridpapers.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridset.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridset.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitlogo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitlogo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-halloweenmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-halloweenmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hanging.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hanging.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hardwrap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hardwrap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hhtensor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hhtensor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-histogr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-histogr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitreport.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitreport.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hpsdiss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hpsdiss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrefhide.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrefhide.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperbar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperbar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperxmp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperxmp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphenat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphenat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-idxlayout.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-idxlayout.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iffont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iffont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifmtarg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifmtarg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifnextok.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifnextok.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifoddpage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifoddpage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iitem.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iitem.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imakeidx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imakeidx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-indextools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-indextools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inlinedef.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inlinedef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputenx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputenx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputtrc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputtrc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interfaces.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interfaces.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intopdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intopdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inversepath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inversepath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice2.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice2.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso10303.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso10303.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isorot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isorot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isotope.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isotope.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-issuulinks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-issuulinks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jvlisting.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jvlisting.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kalendarium.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kalendarium.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kantlipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kantlipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kerntest.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kerntest.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keycommand.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keycommand.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyvaltable.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyvaltable.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knowledge.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knowledge.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv-rg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv-rg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ktv-texdata.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ktv-texdata.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3build.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3build.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labbook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labbook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labels.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labels.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labelschanged.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labelschanged.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpackage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpackage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-amsmath-dev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-amsmath-dev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-base-dev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-base-dev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-firstaid-dev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-firstaid-dev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-graphics-dev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-graphics-dev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-tools-dev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-tools-dev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcolors.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcolors.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexdemo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexdemo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexgit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexgit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layouts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layouts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lccaps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lccaps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leading.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leading.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leaflet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leaflet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leftidx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leftidx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leipzig.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leipzig.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lengthconvert.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lengthconvert.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lettrine.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lettrine.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lhelp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lhelp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libgreek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libgreek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linegoal.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linegoal.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listingsutf8.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listingsutf8.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listlbls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listlbls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listliketab.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listliketab.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listofsymbols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listofsymbols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lmake.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lmake.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-locality.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-locality.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logpap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logpap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longfigure.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longfigure.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longnamefilelist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longnamefilelist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstaddons.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstaddons.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxnew.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxnew.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatodonotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatodonotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-macroswap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-macroswap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magicnum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magicnum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailing.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailing.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailmerge.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailmerge.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecell.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecell.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecmds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecmds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makedtx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makedtx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mandi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mandi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manfnt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manfnt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manuscript.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manuscript.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginnote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginnote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-markdown.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-markdown.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathastext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathastext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathexam.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathexam.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcaption.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcaption.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcite.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdframed.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdframed.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-media9.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-media9.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-meetingmins.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-meetingmins.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memory.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memory.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menu.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menu.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menucard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menucard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menukeys.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menukeys.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metastr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metastr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-method.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-method.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metre.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metre.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfirstuc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfirstuc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mftinc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mftinc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mi-solns.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mi-solns.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mindflow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mindflow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minibox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minibox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minidocument.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minidocument.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minifp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minifp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minipage-marginpar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minipage-marginpar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minted.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minted.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minutes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minutes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mleftright.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mleftright.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moderntimeline.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moderntimeline.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modroman.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modroman.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-monofill.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-monofill.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moodle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moodle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morefloats.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morefloats.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morehype.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morehype.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moresize.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moresize.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moreverb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moreverb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morewrites.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morewrites.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mparhack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mparhack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpostinl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpostinl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mtgreek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mtgreek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiaudience.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiaudience.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibbl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibbl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicolrule.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicolrule.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multidef.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multidef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multienv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multienv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiexpand.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiexpand.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multilang.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multilang.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multirow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multirow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mversion.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mversion.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mycv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mycv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mylatexformat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mylatexformat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nag.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nag.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nameauth.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nameauth.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namespc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namespc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncctools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncctools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-needspace.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-needspace.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newlfm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newlfm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newspaper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newspaper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newunicodechar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newunicodechar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newvbtm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newvbtm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newverbs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newverbs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicefilelist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicefilelist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-niceframe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-niceframe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicetext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicetext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nidanfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nidanfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noitcrul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noitcrul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomencl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomencl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomentbl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomentbl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonumonpart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonumonpart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-normalcolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-normalcolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notespages.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notespages.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nowidow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nowidow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntheorem.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntheorem.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numprint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numprint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocgx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocgx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-octavo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-octavo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldstyle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldstyle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onlyamsmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onlyamsmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opcit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opcit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orcidlink.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orcidlink.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outlining.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outlining.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overpic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overpic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-padcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-padcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagenote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagenote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pageslts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pageslts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papercdcase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papercdcase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papermas.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papermas.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papertex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papertex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paracol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paracol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paralist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paralist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paresse.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paresse.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parselines.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parselines.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patchcmd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patchcmd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pauldoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pauldoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pawpict.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pawpict.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbalance.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbalance.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbsheet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbsheet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdf14.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdf14.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcprot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcprot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfoverlay.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfoverlay.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpc-movie.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpc-movie.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfprivacy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfprivacy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perltex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perltex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-permute.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-permute.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phffullpagefigure.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phffullpagefigure.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfnote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfnote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfparen.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfparen.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfqit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfqit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfquotetext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfquotetext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfsvnwatermark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfsvnwatermark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfthm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfthm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-photo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-photo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-picture.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-picture.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plweb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plweb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmboxdraw.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmboxdraw.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynom.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynom.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynomial.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynomial.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polytable.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polytable.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ppr-prv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ppr-prv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prelim2e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prelim2e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preprint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preprint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pressrelease.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pressrelease.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prettyref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prettyref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preview.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preview.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-probsoln.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-probsoln.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proofread.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proofread.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-protocol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-protocol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfragx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfragx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxgreeks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxgreeks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qcm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qcm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qstest.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qstest.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsymbols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsymbols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotchap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotchap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quoting.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quoting.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotmark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotmark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ran_toks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ran_toks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rccol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rccol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs-multi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs-multi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcsinfo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcsinfo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realboxes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realboxes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipecard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipecard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reflectgraphics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reflectgraphics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refman.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refman.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refstyle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refstyle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regexpatch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regexpatch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-register.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-register.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regstats.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regstats.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-relenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-relenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repltext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repltext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rgltxdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rgltxdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rjlparshap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rjlparshap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-robustcommand.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-robustcommand.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbarpagenumber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbarpagenumber.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romannum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romannum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rotfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rotfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rtkinenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rtkinenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rulercompass.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rulercompass.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauerj.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauerj.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savefnmark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savefnmark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savetrees.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savetrees.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scale.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scale.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scalebar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scalebar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schedule.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schedule.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schooldocs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schooldocs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scontents.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scontents.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrlayer-fancyhdr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrlayer-fancyhdr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sdaps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sdaps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-secnum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-secnum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectsty.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectsty.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seealso.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seealso.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selinput.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selinput.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semesterplanner.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semesterplanner.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semioneside.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semioneside.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semproc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semproc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seqsplit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seqsplit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesstime.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesstime.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sf298.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sf298.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sffms.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sffms.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shorttoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shorttoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-show2e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-show2e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showcharinbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showcharinbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showexpl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showexpl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showlabels.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showlabels.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidecap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidecap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidenotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidenotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-silence.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-silence.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sitem.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sitem.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skrapport.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skrapport.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-slantsc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-slantsc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-snapshot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-snapshot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soulutf8.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soulutf8.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spacingtricks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spacingtricks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spverbatim.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spverbatim.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcltx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srcltx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sseq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sseq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-standalone.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-standalone.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdclsdv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdclsdv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stealcaps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stealcaps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdpage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdpage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-storebox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-storebox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringstrings.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringstrings.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sttools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sttools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subdepth.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subdepth.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqnarray.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqnarray.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfigure.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfigure.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfiles.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfiles.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-supertabular.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-supertabular.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-multi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-multi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-prov.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-prov.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svninfo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svninfo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swfigure.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swfigure.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntrace.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntrace.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synttree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-synttree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabfigures.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabfigures.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablefootnote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablefootnote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tableof.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tableof.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablestyles.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablestyles.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablists.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablists.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablvar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablvar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabu.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabu.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularborder.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularborder.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularew.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularew.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabulary.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabulary.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagpdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagpdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-talk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-talk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tcldoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tcldoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ted.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ted.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templatetools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templatetools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termlist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termlist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testhyphens.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testhyphens.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testidx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testidx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-label.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-label.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-locale.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-locale.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texmate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texmate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texments.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texments.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texpower.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texpower.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texshade.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texshade.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texvc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texvc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textfit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textfit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textmerg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textmerg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textpos.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textpos.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textualicomma.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textualicomma.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmtools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmtools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threadcol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threadcol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumbs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumbs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titling.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titling.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocbibind.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocbibind.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocdata.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocdata.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocloft.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocloft.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocvsec2.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocvsec2.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todonotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todonotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toolbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toolbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totalcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totalcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totpages.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totpages.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-transparent.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-transparent.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trfsigns.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trfsigns.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trimspaces.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trimspaces.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trivfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trivfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trsym.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trsym.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tucv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tucv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twoup.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twoup.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txgreeks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txgreeks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-type1cm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-type1cm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typed-checklist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typed-checklist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeface.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typeface.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typogrid.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typogrid.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umoline.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umoline.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underlin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underlin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-undolabl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-undolabl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitipa.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitipa.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-units.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-units.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unravel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unravel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upquote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upquote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uri.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uri.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ushort.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ushort.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifiche.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifiche.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-versonotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-versonotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vgrid.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vgrid.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vmargin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vmargin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-volumes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-volumes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vwcol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vwcol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-warpcol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-warpcol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-was.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-was.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widetable.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widetable.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widows-and-orphans.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widows-and-orphans.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wordlike.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wordlike.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xargs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xargs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xbmks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xbmks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-material.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-material.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-solarized.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-solarized.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcookybooky.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcookybooky.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcpdftips.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcpdftips.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xellipsis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xellipsis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xfor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xfor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmpincl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmpincl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpatch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpatch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpeek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpeek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpunctuate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpunctuate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xsavebox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xsavebox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xtab.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xtab.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yafoot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yafoot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yaletter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yaletter.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yagusylo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yagusylo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ydoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ydoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zebra-goodies.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zebra-goodies.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zref.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-2up-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-2up-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-2up-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ESIEEcv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ESIEEcv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ESIEEcv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-GS1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-GS1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-GS1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-HA-prosper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-HA-prosper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-HA-prosper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Tabbing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Tabbing-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-Tabbing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a0poster-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a0poster-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-a0poster-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a4wide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a4wide-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-a4wide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a5comb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a5comb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-a5comb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abraces-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abraces-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abraces-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abstract-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abstract-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abstract-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accessibility-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accessibility-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accessibility-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accsupp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accsupp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accsupp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-achemso-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-achemso-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-achemso-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acronym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acronym-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acronym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acroterm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acroterm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acroterm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialangle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialangle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-actuarialangle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialsymbol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialsymbol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-actuarialsymbol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addfont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-addfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addlines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addlines-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-addlines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjmulticol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjmulticol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adjmulticol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjustbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjustbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adjustbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adrconv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adrconv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adrconv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-advdate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-advdate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-advdate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akktex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akktex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-akktex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akletter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-akletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alertmessage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alertmessage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alertmessage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alnumsec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alnumsec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alnumsec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alphalph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alphalph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alphalph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-altfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-altfont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-altfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsaddr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsaddr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsaddr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-animate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-animate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-animate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonchap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonchap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anonchap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-answers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-answers-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-answers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anyfontsize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anyfontsize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anyfontsize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-appendix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-appendix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-appendix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-appendixnumberbeamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-appendixnumberbeamer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-appendixnumberbeamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apptools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apptools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apptools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabicfront-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabicfront-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabicfront-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arcs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arcs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arcs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraycols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraycols-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arraycols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arrayjobx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arrayjobx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arrayjobx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraysort-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraysort-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arraysort-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arydshln-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arydshln-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arydshln-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asciilist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asciilist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asciilist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-askinclude-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-askinclude-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-askinclude-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-assignment-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-assignment-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-assignment-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-assoccnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-assoccnt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-assoccnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-association-matrix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-association-matrix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-association-matrix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atenddvi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atenddvi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-atenddvi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-attachfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aurl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aurl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aurl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authoraftertitle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authoraftertitle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-authoraftertitle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authorarchive-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authorarchive-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-authorarchive-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authorindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authorindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-authorindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autofancyhdr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autofancyhdr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autofancyhdr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autonum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autonum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autonum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autopdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autopdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autopdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-avremu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-avremu-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-avremu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axessibility-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axessibility-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-axessibility-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-background-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-background-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-background-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bankstatement-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bankstatement-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bankstatement-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bashful-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bashful-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bashful-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basicarith-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basicarith-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-basicarith-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bchart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bchart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bchart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer2thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer2thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamer2thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-rl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-rl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamer-rl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerappendixnote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerappendixnote-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerappendixnote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beameraudience-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beameraudience-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beameraudience-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerauxtheme-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerauxtheme-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerauxtheme-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamercolorthemeowl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamercolorthemeowl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamercolorthemeowl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerdarkthemes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerdarkthemes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerdarkthemes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerposter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerposter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerposter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamersubframe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamersubframe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamersubframe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-cuerna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-cuerna-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-cuerna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-detlevcm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-detlevcm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-detlevcm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-epyt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-epyt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-epyt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-focus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-focus-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-focus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-light-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-light-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-light-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-metropolis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-metropolis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-metropolis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-npbt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-npbt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-npbt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-phnompenh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-phnompenh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-phnompenh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-pure-minimalistic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-pure-minimalistic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-pure-minimalistic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-saintpetersburg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-saintpetersburg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-saintpetersburg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-upenn-bc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-upenn-bc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-upenn-bc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerthemejltree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerthemejltree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerthemejltree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerthemenirma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerthemenirma-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerthemenirma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerthemenord-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerthemenord-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerthemenord-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bearwear-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bearwear-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bearwear-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beaulivre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beaulivre-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beaulivre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beton-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beton-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beton-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bewerbung-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bewerbung-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bewerbung-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bez123-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bez123-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bez123-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bhcexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bhcexam-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bhcexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibletext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibletext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibletext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigfoot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigfoot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bigfoot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigints-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigints-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bigints-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biochemistry-colors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biochemistry-colors-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biochemistry-colors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bithesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bithesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bithesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bizcard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bizcard-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bizcard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blindtext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blindtext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blindtext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blkarray-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blkarray-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blkarray-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-block-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-block-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-block-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blowup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blowup-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blowup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bnumexpr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bnumexpr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bnumexpr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boites-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bold-extra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bold-extra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bold-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookcover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookcover-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookcover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookest-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookest-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookest-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booklet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booklet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-booklet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookshelf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookshelf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookshelf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boolexpr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boolexpr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boolexpr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bophook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bophook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bophook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxedminipage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxedminipage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boxedminipage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxhandler-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxhandler-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boxhandler-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bracketkey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bracketkey-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bracketkey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braket-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braket-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-braket-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breakurl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breakurl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-breakurl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bubblesort-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bubblesort-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bubblesort-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bullcntr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bullcntr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bullcntr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxcalc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxcalc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxcalc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxdpx-beamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxdpx-beamer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxdpx-beamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxdvidriver-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxdvidriver-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxdvidriver-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxenclose-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxenclose-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxenclose-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxnewfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxnewfont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxnewfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxpapersize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxpapersize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxpapersize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxpdfver-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxpdfver-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxpdfver-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxtexlogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxtexlogo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxtexlogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calcage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calcage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calcage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calctab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calctab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calctab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculator-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculator-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calculator-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calrsfs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calrsfs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calrsfs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cals-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cals-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cals-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calxxxx-yyyy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calxxxx-yyyy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calxxxx-yyyy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cancel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cancel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cancel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-canoniclayout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-canoniclayout-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-canoniclayout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-capt-of-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-capt-of-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-capt-of-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-captcont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-captcont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-captcont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-captdef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-captdef-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-captdef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carbohydrates-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carbohydrates-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-carbohydrates-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cases-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cases-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cases-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-casyl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-casyl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-casyl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catchfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfilebetweentags-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfilebetweentags-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catchfilebetweentags-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catechis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catechis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catechis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catoptions-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catoptions-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catoptions-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbcoptic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbcoptic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cbcoptic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccaption-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccaption-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccaption-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cclicenses-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cclicenses-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cclicenses-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd-cover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd-cover-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cd-cover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cdpbundl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cdpbundl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cdpbundl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cellprops-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cellprops-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cellprops-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cellspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cellspace-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cellspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-censor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-censor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-censor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-centeredline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-centeredline-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-centeredline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-centerlastline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-centerlastline-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-centerlastline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changebar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changebar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changebar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changelayout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changelayout-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changelayout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changelog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changelog-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changelog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changepage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changepage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changepage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chappg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chappg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chappg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chapterfolder-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chapterfolder-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chapterfolder-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cheatsheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cheatsheet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cheatsheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkend-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkend-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-checkend-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chextras-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chextras-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chextras-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-childdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-childdoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-childdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chkfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chkfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chkfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chletter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chngcntr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chngcntr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chngcntr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chronology-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chronology-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chronology-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circ-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circ-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-circ-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circledsteps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circledsteps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-circledsteps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-classics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classpack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classpack-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-classpack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clefval-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clefval-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clefval-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cleveref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cleveref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cleveref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clipboard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clipboard-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clipboard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clock-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clock-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clock-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrdblpg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrdblpg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clrdblpg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrstrip-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrstrip-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clrstrip-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmdstring-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmdstring-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmdstring-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmdtrack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmdtrack-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmdtrack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmsd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmsd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmsd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cnltx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cnltx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cnltx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cntformats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cntformats-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cntformats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cntperchap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cntperchap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cntperchap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codedoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codedoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codedoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codepage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codepage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codepage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codesection-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codesection-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codesection-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collcell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collcell-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collcell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collectbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collectbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collectbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colophon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colophon-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colophon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-color-edits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-color-edits-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-color-edits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colordoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colordoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colordoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorinfo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coloring-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coloring-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coloring-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorspace-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colortab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colortab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colortab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorwav-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorwav-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorwav-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorweb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorweb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorweb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colourchange-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colourchange-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colourchange-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combelow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combelow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combelow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combine-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comma-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-comma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commado-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commado-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-commado-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commedit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commedit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-commedit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comment-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comment-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-comment-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-competences-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-competences-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-competences-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concepts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concepts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-concepts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concprog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concprog-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-concprog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conditext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conditext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-conditext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-constants-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-constants-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-constants-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-continue-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-continue-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-continue-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contour-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contour-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-contour-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contracard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contracard-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-contracard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conv-xkv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conv-xkv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-conv-xkv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cooking-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking-units-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking-units-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cooking-units-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cool-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cool-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cool-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coollist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coollist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coollist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolstr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolstr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coolstr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolthms-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolthms-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coolthms-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooltooltips-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooltooltips-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cooltooltips-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coordsys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coordsys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coordsys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-copyedit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-copyedit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-copyedit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-copyrightbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-copyrightbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-copyrightbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coseoul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coseoul-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coseoul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-counttexruns-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-counttexruns-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-counttexruns-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courseoutline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courseoutline-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-courseoutline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coursepaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coursepaper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coursepaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coverpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coverpage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coverpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cprotect-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cprotect-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cprotect-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossreference-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossreference-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crossreference-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossreftools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossreftools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crossreftools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csquotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csquotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csquotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-css-colors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-css-colors-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-css-colors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csvmerge-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csvmerge-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csvmerge-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csvsimple-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csvsimple-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csvsimple-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cuisine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cuisine-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cuisine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currency-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currency-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-currency-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currfile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-currfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currvita-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currvita-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-currvita-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cutwin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cutwin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cutwin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cv4tw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cv4tw-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cv4tw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cweb-latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cweb-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyber-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cyber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cybercic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cybercic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cybercic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dashbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashrule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashrule-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dashrule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashundergaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashundergaps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dashundergaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dataref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dataref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dataref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datax-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datatool-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datatool-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datatool-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dateiliste-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dateiliste-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dateiliste-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datenumber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datenumber-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datenumber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bahasai-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bahasai-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-bahasai-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-basque-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-basque-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-basque-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-breton-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-breton-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-breton-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bulgarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bulgarian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-bulgarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-catalan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-catalan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-catalan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-croatian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-croatian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-croatian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-czech-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-czech-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-czech-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-danish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-danish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-danish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-dutch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-dutch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-dutch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-en-fulltext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-en-fulltext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-en-fulltext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-english-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-esperanto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-esperanto-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-esperanto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-estonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-estonian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-estonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-finnish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-finnish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-finnish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-french-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-galician-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-galician-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-galician-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-german-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-greek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-greek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-greek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-hebrew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-hebrew-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-hebrew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-icelandic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-icelandic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-icelandic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-irish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-irish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-irish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-italian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-it-fulltext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-it-fulltext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-it-fulltext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-latin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-latin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-latin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-lsorbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-lsorbian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-lsorbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-magyar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-magyar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-magyar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-norsk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-norsk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-norsk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-polish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-polish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-polish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-portuges-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-portuges-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-portuges-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-romanian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-romanian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-romanian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-russian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-russian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-russian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-samin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-samin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-samin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-scottish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-scottish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-scottish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-serbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-serbian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-serbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-slovak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovene-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovene-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-slovene-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-spanish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-swedish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-swedish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-swedish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-turkish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-turkish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-turkish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-ukrainian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-ukrainian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-ukrainian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-usorbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-usorbian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-usorbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-welsh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-welsh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-welsh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dblfloatfix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dblfloatfix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dblfloatfix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decimal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decimal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-decimal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decorule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decorule-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-decorule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimtxt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimtxt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-delimtxt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-denisbdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-denisbdoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-denisbdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diabetes-logbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diabetes-logbook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diabetes-logbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diagbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagnose-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagnose-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diagnose-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dialogl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dialogl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dialogl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dichokey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dichokey-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dichokey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dinbrief-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dinbrief-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dinbrief-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-directory-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-directory-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-directory-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtytalk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtytalk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dirtytalk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dlfltxb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dlfltxb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dlfltxb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dnaseq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dnaseq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dnaseq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doclicense-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doclicense-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doclicense-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmfp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmfp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docmfp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmute-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmute-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docmute-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doctools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doctools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doctools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-documentation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-documentation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-documentation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docutils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docutils-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docutils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotarrow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotarrow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dotarrow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotlessi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotlessi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dotlessi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotseqn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotseqn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dotseqn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-download-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-download-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-download-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dpfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dpfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dpfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dprogress-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dprogress-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dprogress-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftcopy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftcopy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-draftcopy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftfigure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftfigure-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-draftfigure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftwatermark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftwatermark-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-draftwatermark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dtk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxdescribe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxdescribe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dtxdescribe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxgallery-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxgallery-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dtxgallery-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duckuments-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duckuments-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-duckuments-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ducksay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ducksay-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ducksay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvdcoll-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvdcoll-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dvdcoll-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynamicnumber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynamicnumber-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dynamicnumber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynblocks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynblocks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dynblocks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ean13isbn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ean13isbn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ean13isbn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easy-todo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easy-todo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easy-todo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easybook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easybook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easybook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easyfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfloats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfloats-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easyfloats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyformat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyformat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easyformat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easylist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easylist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easylist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyreview-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyreview-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easyreview-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebezier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebezier-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebezier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecclesiastic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecclesiastic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecclesiastic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econlipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econlipsum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-econlipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ed-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edichokey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edichokey-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-edichokey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmargin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmargin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-edmargin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eemeir-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eemeir-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eemeir-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-efbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-efbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-efbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-egplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-egplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-egplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ehhline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ehhline-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ehhline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-einfart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-einfart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-einfart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantbook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elegantbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantnote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantnote-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elegantnote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantpaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantpaper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elegantpaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elements-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elements-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elements-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipsis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipsis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ellipsis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elocalloc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elocalloc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elocalloc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elpres-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elpres-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elpres-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elzcards-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elzcards-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elzcards-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emarks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emarks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emarks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedall-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedall-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-embedall-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedfile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-embedfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embrac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embrac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-embrac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emptypage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emptypage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emptypage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emulateapj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emulateapj-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emulateapj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endheads-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endheads-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endheads-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotes-hy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotes-hy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endnotes-hy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engpron-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engpron-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-engpron-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engrec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engrec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-engrec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enotez-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enotez-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enotez-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enumitem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enumitem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enumitem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enumitem-zref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enumitem-zref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enumitem-zref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-envbig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-envbig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-envbig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-environ-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-environ-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-environ-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-envlab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-envlab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-envlab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigraph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epigraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigraph-keys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigraph-keys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epigraph-keys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epiolmec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epiolmec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epiolmec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eq-pin2corr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eq-pin2corr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eq-pin2corr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqell-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqlist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnalign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnalign-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqnalign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqname-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqname-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqname-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqparbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqparbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqparbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-errata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-errata-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-errata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erw-l3-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erw-l3-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-erw-l3-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esami-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esami-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esami-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esdiff-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esdiff-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esdiff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esint-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esint-type1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esint-type1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esint-type1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etaremune-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etaremune-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etaremune-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etextools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etextools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etextools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eukdate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eukdate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eukdate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eulerpx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eulerpx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eulerpx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-europasscv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-europasscv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-europasscv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-europecv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-europecv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-europecv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyhook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyhook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everyhook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everypage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everypage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everypage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-n-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-n-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exam-n-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-randomizechoices-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-randomizechoices-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exam-randomizechoices-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-examdesign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-examdesign-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-examdesign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exframe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exframe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exframe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-example-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-example-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-example-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-examplep-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-examplep-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-examplep-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exceltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exceltex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exceltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-excludeonly-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-excludeonly-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-excludeonly-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercise-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercise-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exercise-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercisebank-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercisebank-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exercisebank-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercisepoints-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercisepoints-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exercisepoints-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercises-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercises-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exercises-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exesheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exesheet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exesheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exp-testopt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exp-testopt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exp-testopt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expdlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expdlist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expdlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-export-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-export-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-export-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exsheets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exsheets-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exsheets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exsol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exsol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exsol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extract-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extract-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-extract-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facsimile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facsimile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-facsimile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-factura-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-factura-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-factura-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhandout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhandout-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyhandout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancylabel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancylabel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancylabel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancynum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancynum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancynum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancypar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancypar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancypar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyslides-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytabs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytabs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancytabs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytooltips-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytooltips-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancytooltips-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcolumn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcolumn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fcolumn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetchcls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetchcls-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fetchcls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fewerfloatpages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fewerfloatpages-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fewerfloatpages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ffslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ffslides-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ffslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fgruler-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fgruler-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fgruler-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fibeamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fibeamer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fibeamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifo-stack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifo-stack-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fifo-stack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figsize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figsize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-figsize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontents-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontents-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filecontents-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontentsdef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontentsdef-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filecontentsdef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filedate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filedate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filedate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fileinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fileinfo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fileinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filemod-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filemod-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filemod-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fink-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fink-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fink-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-finstrut-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-finstrut-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-finstrut-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fithesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fithesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fithesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixcmex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixcmex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixcmex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixfoot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixfoot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixfoot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixme-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixme-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixme-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixmetodonotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixmetodonotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixmetodonotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fjodor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fjodor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fjodor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flabels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flabels-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flabels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flacards-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flacards-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flacards-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flagderiv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flagderiv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flagderiv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flashcards-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flashcards-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flashcards-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flashmovie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flashmovie-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flashmovie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flipbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flipbook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flipbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flippdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flippdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flippdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatflt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatflt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-floatflt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatrow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatrow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-floatrow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowfram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowfram-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flowfram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fmp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmtcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmtcount-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fmtcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fn2end-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fn2end-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fn2end-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnbreak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnbreak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnbreak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fncychap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fncychap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fncychap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fncylab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fncylab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fncylab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnpara-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnpara-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnpara-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnpct-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnpct-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnpct-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnumprint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnumprint-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnumprint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foilhtml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foilhtml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-foilhtml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontaxes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontaxes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontaxes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontsetup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontsetup-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontsetup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontsize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontsize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontsize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonttable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonttable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fonttable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footmisc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footmisx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnotebackref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnotebackref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footnotebackref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnoterange-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnoterange-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footnoterange-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnpag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnpag-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footnpag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forarray-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forarray-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forarray-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foreign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foreign-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-foreign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forloop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forloop-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forloop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formlett-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formlett-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-formlett-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forms16be-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forms16be-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forms16be-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formular-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formular-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-formular-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fragments-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fragments-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fragments-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frame-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frame-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frame-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-framed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-framed-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-framed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frankenstein-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frankenstein-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frankenstein-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frege-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frege-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frege-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-froufrou-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-froufrou-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-froufrou-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftcap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftcap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ftcap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftnxtra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftnxtra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ftnxtra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullblck-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullblck-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fullblck-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullminipage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullminipage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fullminipage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullwidth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullwidth-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fullwidth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-calligra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-calligra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fundus-calligra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-cyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-cyr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fundus-cyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-sueterlin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-sueterlin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fundus-sueterlin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fvextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fvextra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fvextra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fwlw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fwlw-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fwlw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-g-brief-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-g-brief-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-g-brief-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gatherenum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gatherenum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gatherenum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gauss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gauss-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gauss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gcard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gcard-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gcard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gcite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gcite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gcite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gender-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gender-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gender-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genmpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genmpage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-genmpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getfiledate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getfiledate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-getfiledate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getitems-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getitems-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-getitems-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ginpenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ginpenc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ginpenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitfile-info-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitfile-info-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gitfile-info-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitinfo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gitinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitinfo2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitinfo2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gitinfo2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitlog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitlog-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gitlog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitver-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitver-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gitver-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-globalvals-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-globalvals-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-globalvals-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gloss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gloss-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gloss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-danish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-danish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-danish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-dutch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-dutch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-dutch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-english-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-english-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-english-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-estonian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-estonian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-estonian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-extra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-extra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-finnish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-finnish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-finnish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-french-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-french-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-french-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-german-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-german-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-german-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-irish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-irish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-irish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-italian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-italian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-italian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-magyar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-magyar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-magyar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-nynorsk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-nynorsk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-nynorsk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-polish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-polish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-polish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-portuges-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-portuges-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-portuges-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-serbian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-serbian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-serbian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-slovene-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-slovene-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-slovene-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-spanish-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-spanish-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-spanish-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmdoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmdoc-enhance-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmdoc-enhance-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmdoc-enhance-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmiflink-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmiflink-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmiflink-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmutils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmutils-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmutils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmverb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmverb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmverb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grabbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grabbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grabbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicx-psmin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicx-psmin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphicx-psmin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicxbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicxbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphicxbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphpaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphpaper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphpaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grayhints-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grayhints-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grayhints-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grfpaste-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grfpaste-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grfpaste-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grid-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grid-system-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grid-system-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grid-system-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridpapers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridpapers-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gridpapers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridset-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridset-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gridset-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridslides-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gridslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitlogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitlogo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guitlogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-halloweenmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-halloweenmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-halloweenmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hackthefootline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hackthefootline-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hackthefootline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-handin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-handin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-handin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-handout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-handout-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-handout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hang-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hang-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hang-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hanging-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hanging-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hanging-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hardwrap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hardwrap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hardwrap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harnon-cv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harnon-cv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harnon-cv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harpoon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harpoon-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harpoon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-he-she-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-he-she-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-he-she-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hhtensor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hhtensor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hhtensor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-highlightlatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-highlightlatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-highlightlatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-histogr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-histogr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-histogr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hitec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitreport-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitreport-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hitreport-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hletter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobsub-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobsub-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hobsub-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hpsdiss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hpsdiss-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hpsdiss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrefhide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrefhide-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hrefhide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hvindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvqrurl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvqrurl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hvqrurl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypdestopt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypdestopt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hypdestopt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypdvips-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypdvips-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hypdvips-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperbar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperbar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyperbar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypernat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypernat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hypernat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperxmp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperxmp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyperxmp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphenat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphenat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphenat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-identkey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-identkey-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-identkey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-idxcmds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-idxcmds-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-idxcmds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-idxlayout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-idxlayout-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-idxlayout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iffont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iffont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iffont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifmslide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifmslide-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifmslide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifmtarg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifmtarg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifmtarg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifnextok-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifnextok-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifnextok-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifoddpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifoddpage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifoddpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifthenx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifthenx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifthenx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iitem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iitem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iitem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-image-gallery-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-image-gallery-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-image-gallery-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imakeidx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imakeidx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imakeidx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-import-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-import-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-import-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-incgraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-incgraph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-incgraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-indextools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-indextools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-indextools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inline-images-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inline-images-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inline-images-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inlinedef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inlinedef-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inlinedef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputenx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputenx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inputenx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputtrc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputtrc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inputtrc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interactiveworkbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interactiveworkbook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interactiveworkbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interfaces-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interfaces-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interfaces-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intopdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intopdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-intopdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inversepath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inversepath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inversepath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-invoice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice-class-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice-class-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-invoice-class-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-invoice2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iso-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso10303-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso10303-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iso10303-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isodate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isodoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isonums-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isonums-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isonums-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isopt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isopt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isopt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isorot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isorot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isorot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isotope-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isotope-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isotope-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-issuulinks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-issuulinks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-issuulinks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iwhdp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iwhdp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iwhdp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlabels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlabels-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jlabels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jslectureplanner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jslectureplanner-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jslectureplanner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jumplines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jumplines-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jumplines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jvlisting-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jvlisting-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jvlisting-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kalendarium-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kalendarium-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kalendarium-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kantlipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kantlipsum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kantlipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kerntest-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kerntest-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kerntest-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keycommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keycommand-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keycommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyreader-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyreader-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyreader-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keystroke-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keystroke-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keystroke-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyval2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyval2e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyval2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyvaltable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyvaltable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyvaltable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knowledge-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knowledge-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-knowledge-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-moderncvclassic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-moderncvclassic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-koma-moderncvclassic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-script-sfs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-script-sfs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-koma-script-sfs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-komacv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv-rg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv-rg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-komacv-rg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ktv-texdata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ktv-texdata-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ktv-texdata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3build-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3build-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3build-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labbook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labels-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labels4easylist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labels4easylist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labels4easylist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labelschanged-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labelschanged-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labelschanged-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpackage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpackage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lastpackage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lastpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-amsmath-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-amsmath-dev-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-amsmath-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-base-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-base-dev-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-base-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-bin-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-bin-dev-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-bin-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-firstaid-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-firstaid-dev-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-firstaid-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-graphics-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-graphics-dev-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-graphics-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-tools-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-tools-dev-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-tools-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-uni8-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-uni8-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-uni8-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcolors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcolors-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcolors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexdemo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexdemo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexdemo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexgit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexgit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexgit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layouts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layouts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-layouts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lazylist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lazylist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lazylist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lccaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lccaps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lccaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lcd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lcg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leading-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leading-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leading-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leaflet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leaflet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leaflet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lebhart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lebhart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lebhart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lectures-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lectures-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lectures-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lectureslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lectureslides-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lectureslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leftidx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leftidx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leftidx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leftindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leftindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leftindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leipzig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leipzig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leipzig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lengthconvert-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lengthconvert-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lengthconvert-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lettre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lettre-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lettre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lettrine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lettrine-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lettrine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lewis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lewis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lewis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lhelp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lhelp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lhelp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libgreek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-limap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linegoal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linegoal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linegoal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linop-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lipsum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lisp-on-tex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lisp-on-tex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lisp-on-tex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listing-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listingsutf8-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listingsutf8-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listingsutf8-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listlbls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listlbls-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listlbls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listliketab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listliketab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listliketab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listofsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listofsymbols-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listofsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lkproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lkproof-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lkproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lmake-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lmake-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lmake-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-locality-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-locality-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-locality-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logical-markup-utils-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logical-markup-utils-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logical-markup-utils-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logpap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logpap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logpap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longfbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longfbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-longfbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longfigure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longfigure-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-longfigure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longnamefilelist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longnamefilelist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-longnamefilelist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-loops-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-loops-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-loops-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lsc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lsc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lsc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstaddons-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstaddons-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lstaddons-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstfiracode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstfiracode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lstfiracode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lt3graph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lt3graph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lt3graph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltablex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltablex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltablex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltabptch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltabptch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltabptch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxdockit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxdockit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxdockit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxguidex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxguidex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxguidex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxkeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxkeys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxkeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxnew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxnew-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxnew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxtools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxtools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxtools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-check-hyphen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-check-hyphen-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-check-hyphen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-physical-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-physical-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-physical-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatodonotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatodonotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatodonotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-macroswap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-macroswap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-macroswap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magaz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magaz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-magaz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magicnum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magicnum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-magicnum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecookbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecookbook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makecookbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makerobust-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makerobust-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makerobust-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailing-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mailing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailmerge-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailmerge-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mailmerge-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebarcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebarcode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makebarcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebase-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makebase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makebox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecell-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makecell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecirc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecirc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makecirc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecmds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecmds-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makecmds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makedtx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makedtx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makedtx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeglos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeglos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makeglos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mandi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mandi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mandi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manfnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manfnt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-manfnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manuscript-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manuscript-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-manuscript-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manyind-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manyind-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-manyind-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marginfit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marginfix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginnote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginnote-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marginnote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-markdown-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-markdown-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-markdown-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathalpha-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathalpha-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathalpha-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathastext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathastext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathastext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathexam-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfam256-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfam256-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathfam256-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathfont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maybemath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maybemath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-maybemath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcaption-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcaption-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcaption-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mceinleger-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mceinleger-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mceinleger-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcexam-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mciteplus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mciteplus-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mciteplus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdframed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdframed-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mdframed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-media4svg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-media4svg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-media4svg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-media9-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-media9-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-media9-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-medstarbeamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-medstarbeamer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-medstarbeamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-meetingmins-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-meetingmins-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-meetingmins-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memexsupp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memexsupp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memexsupp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memory-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memory-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memory-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mensa-tex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mensa-tex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mensa-tex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menu-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-menu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menucard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menucard-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-menucard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menukeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menukeys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-menukeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metalogox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metanorma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metanorma-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metanorma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metastr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metastr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metastr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-method-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-method-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-method-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metre-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfirstuc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfirstuc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfirstuc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mftinc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mftinc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mftinc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mi-solns-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mi-solns-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mi-solns-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-midpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-midpage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-midpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mindflow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mindflow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mindflow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minibox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minibox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minibox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minidocument-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minidocument-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minidocument-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minifp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minifp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minifp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minimalist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minimalist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minimalist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minipage-marginpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minipage-marginpar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minipage-marginpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minitoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minitoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minitoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minorrevision-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minorrevision-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minorrevision-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minted-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minted-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minted-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minutes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minutes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minutes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mla-paper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mla-paper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mla-paper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mleftright-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mleftright-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mleftright-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mmap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mmap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mmap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moderncv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moderncv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moderncv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modernposter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modernposter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modernposter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moderntimeline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moderntimeline-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moderntimeline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modroman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modroman-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modroman-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modular-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modular-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modular-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-monofill-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-monofill-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-monofill-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moodle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moodle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moodle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moreenum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moreenum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moreenum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morefloats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morefloats-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morefloats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morehype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morehype-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morehype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moresize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moresize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moresize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moreverb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moreverb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moreverb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morewrites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morewrites-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morewrites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-movie15-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-movie15-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-movie15-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mparhack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mparhack-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mparhack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpostinl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpostinl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpostinl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-msc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-msg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mslapa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mslapa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mslapa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mtgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mtgreek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mtgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multenum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multenum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multenum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiaudience-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiaudience-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multiaudience-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibbl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibbl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multibbl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multicap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicolrule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicolrule-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multicolrule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multidef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multidef-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multidef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multienv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multienv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multienv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiexpand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiexpand-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multiexpand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multilang-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multilang-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multilang-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multirow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multirow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multirow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mversion-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mversion-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mversion-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mwe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mycv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mycv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mycv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mylatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mylatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mylatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mylatexformat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mylatexformat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mylatexformat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nag-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nameauth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nameauth-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nameauth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namespc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namespc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-namespc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncclatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncclatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ncclatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncctools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncctools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ncctools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-needspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-needspace-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-needspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nestquot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nestquot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nestquot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newcommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newcommand-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newcommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newenviron-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newenviron-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newenviron-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newlfm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newlfm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newlfm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newspaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newspaper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newspaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newunicodechar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newunicodechar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newunicodechar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newvbtm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newvbtm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newvbtm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newverbs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newverbs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newverbs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nextpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nextpage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nextpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nfssext-cfr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nfssext-cfr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nfssext-cfr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicefilelist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicefilelist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nicefilelist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-niceframe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-niceframe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-niceframe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicetext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicetext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nicetext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nidanfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nidanfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nidanfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nlctdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nlctdoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nlctdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noconflict-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noconflict-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-noconflict-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noindentafter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noindentafter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-noindentafter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noitcrul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noitcrul-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-noitcrul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nolbreaks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nolbreaks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nolbreaks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomencl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomencl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nomencl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomentbl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomentbl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nomentbl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nonfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonumonpart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonumonpart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nonumonpart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nopageno-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nopageno-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nopageno-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-normalcolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-normalcolor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-normalcolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notespages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notespages-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notespages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notestex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notestex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notestex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notoccite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notoccite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notoccite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nowidow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nowidow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nowidow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntheorem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntheorem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ntheorem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numberedblock-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numberedblock-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numberedblock-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numname-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numname-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numname-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numprint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numprint-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numprint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numspell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numspell-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numspell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocg-p-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocg-p-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocg-p-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocgx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocgx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocgx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocgx2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocgx2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocgx2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocr-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-octavo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-octavo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-octavo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldstyle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldstyle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oldstyle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onlyamsmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onlyamsmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-onlyamsmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opcit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opcit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-opcit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optidef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optidef-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-optidef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optional-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optional-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-optional-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-options-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-options-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-options-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orcidlink-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orcidlink-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-orcidlink-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orientation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orientation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-orientation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outline-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-outline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outliner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outliner-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-outliner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outlines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outlines-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-outlines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outlining-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outlining-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-outlining-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overlays-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overlays-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-overlays-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overpic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-overpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-padcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-padcount-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-padcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecolor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagecolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagecont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagenote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagenote-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagenote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagerange-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagerange-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagerange-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pageslts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pageslts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pageslts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papercdcase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papercdcase-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-papercdcase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papermas-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papermas-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-papermas-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papertex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papertex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-papertex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paracol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paracol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paracol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parades-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parades-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parades-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paralist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paralist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paralist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paresse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paresse-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paresse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parnotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parsa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parsa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parsa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parselines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parselines-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parselines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-cours-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-cours-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pas-cours-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-cv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-cv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pas-cv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-tableur-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-tableur-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pas-tableur-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-patch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patchcmd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patchcmd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-patchcmd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pauldoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pauldoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pauldoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pawpict-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pawpict-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pawpict-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbalance-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbalance-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pbalance-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbsheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbsheet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pbsheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdf14-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdf14-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdf14-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcolmk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcolmk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfcolmk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcomment-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcomment-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfcomment-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcprot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcprot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfcprot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfmarginpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfmarginpar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfmarginpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfoverlay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfoverlay-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfoverlay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpagediff-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpagediff-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfpagediff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfpc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpc-movie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpc-movie-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfpc-movie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfprivacy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfprivacy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfprivacy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfreview-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfreview-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfreview-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfscreen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfscreen-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfscreen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfslide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfslide-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfslide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfsync-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfsync-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfsync-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfwin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfwin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfwin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pecha-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pecha-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pecha-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perltex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-perltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-permute-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-permute-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-permute-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-petiteannonce-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-petiteannonce-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-petiteannonce-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phffullpagefigure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phffullpagefigure-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phffullpagefigure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfnote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfnote-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfnote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfparen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfparen-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfparen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfqit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfqit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfqit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfquotetext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfquotetext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfquotetext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfsvnwatermark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfsvnwatermark-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfsvnwatermark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfthm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfthm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfthm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-philex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonenumbers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonenumbers-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phonenumbers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-photo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-photo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-photo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-picture-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-picture-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-picture-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piff-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piff-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-piff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkgloader-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pkgloader-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pkgloader-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeins-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeins-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeins-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantslabels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantslabels-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plantslabels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plates-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plates-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plates-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plweb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plweb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plweb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmboxdraw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmboxdraw-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pmboxdraw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynom-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynom-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polynom-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynomial-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynomial-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polynomial-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polytable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polytable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polytable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-postcards-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-postcards-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-postcards-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poster-mac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poster-mac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poster-mac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-powerdot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ppr-prv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ppr-prv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ppr-prv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-practicalreports-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-practicalreports-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-practicalreports-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prelim2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prelim2e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prelim2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preprint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preprint-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-preprint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pressrelease-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pressrelease-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pressrelease-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prettyref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prettyref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prettyref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preview-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preview-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-preview-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-printlen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-printlen-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-printlen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-probsoln-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-probsoln-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-probsoln-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-program-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-program-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-program-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-progress-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-progress-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-progress-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-progressbar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-progressbar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-progressbar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proofread-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proofread-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proofread-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-properties-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-properties-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-properties-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prosper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prosper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prosper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-protex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-protex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-protex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-protocol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-protocol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-protocol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfragx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfragx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psfragx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstool-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstool-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pstool-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstring-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstring-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pstring-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxgreeks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxgreeks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxgreeks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pygmentex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pygmentex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pygmentex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-python-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-python-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-python-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qcm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qcm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qcm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qstest-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qstest-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qstest-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsymbols-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quicktype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quicktype-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quicktype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quiz2socrative-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quiz2socrative-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quiz2socrative-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotchap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotchap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quotchap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quoting-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quoting-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quoting-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotmark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotmark-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quotmark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ran_toks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ran_toks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ran_toks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randtext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randtext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-randtext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rccol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rccol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rccol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs-multi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs-multi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rcs-multi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcsinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcsinfo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rcsinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-readablecv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-readablecv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-readablecv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-readarray-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-readarray-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-readarray-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realboxes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realboxes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realboxes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-recipe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipebook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipebook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-recipebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipecard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipecard-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-recipecard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rectopma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rectopma-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rectopma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refcheck-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refcheck-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refcheck-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refenums-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refenums-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refenums-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reflectgraphics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reflectgraphics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-reflectgraphics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refman-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refman-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refstyle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refstyle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refstyle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regcount-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-regcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regexpatch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regexpatch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-regexpatch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-register-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-register-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-register-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regstats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regstats-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-regstats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-relenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-relenc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-relenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-relsize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-relsize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-relsize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repeatindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repeatindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-repeatindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repltext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repltext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-repltext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-returntogrid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-returntogrid-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-returntogrid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rgltxdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rgltxdoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rgltxdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rjlparshap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rjlparshap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rjlparshap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rlepsf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rlepsf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rlepsf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rmpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rmpage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rmpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-robustcommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-robustcommand-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-robustcommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-robustindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-robustindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-robustindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romanbar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbarpagenumber-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbarpagenumber-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romanbarpagenumber-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanneg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanneg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romanneg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romannum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romannum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romannum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rotfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rotfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rotfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rotpages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rotpages-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rotpages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roundbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roundbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-roundbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rterface-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rterface-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rterface-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rtkinenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rtkinenc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rtkinenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rulerbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rulerbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rulerbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rulercompass-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rulercompass-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rulercompass-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-runcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-runcode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-runcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rvwrite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rvwrite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rvwrite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanitize-umlaut-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanitize-umlaut-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sanitize-umlaut-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauerj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauerj-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sauerj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savefnmark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savefnmark-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-savefnmark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savesym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savesym-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-savesym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savetrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savetrees-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-savetrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scale-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scale-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scale-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scalebar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scalebar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scalebar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scalerel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scalerel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scalerel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scanpages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scanpages-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scanpages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schedule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schedule-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schedule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schooldocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schooldocs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schooldocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scontents-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scontents-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scontents-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrlayer-fancyhdr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrlayer-fancyhdr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scrlayer-fancyhdr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrlttr2copy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrlttr2copy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scrlttr2copy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sdaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sdaps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sdaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sdrt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sdrt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sdrt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-secdot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-secdot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-secdot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-secnum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-secnum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-secnum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectionbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectionbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sectionbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectionbreak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectionbreak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sectionbreak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectsty-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectsty-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sectsty-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seealso-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seealso-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seealso-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selectp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selectp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-selectp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selinput-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selinput-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-selinput-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semantex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semantic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantic-markup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantic-markup-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semantic-markup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semesterplanner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semesterplanner-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semesterplanner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semioneside-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semioneside-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semioneside-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semproc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semproc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semproc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semtex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sepfootnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sepfootnotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sepfootnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seqsplit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seqsplit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seqsplit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesstime-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesstime-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sesstime-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sf298-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sf298-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sf298-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sffms-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sffms-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sffms-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sfmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sfmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sfmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadethm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadethm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shadethm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shadow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadowtext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadowtext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shadowtext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shapepar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shapepar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shapepar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shdoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shipunov-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shipunov-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shipunov-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shorttoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shorttoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shorttoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-show2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-show2e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-show2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showcharinbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showcharinbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showcharinbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showdim-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showdim-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showdim-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showexpl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showexpl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showexpl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showhyphens-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showhyphens-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showhyphens-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showlabels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showlabels-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showlabels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidecap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidecap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sidecap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidenotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidenotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sidenotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-silence-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-silence-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-silence-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplecd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplecv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpleinvoice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpleinvoice-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simpleinvoice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplivre-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplivre-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplivre-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sitem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sitem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sitem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skdoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeldoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeldoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skeldoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeycommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeycommand-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skeycommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeyval-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeyval-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skeyval-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skills-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skills-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skills-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skrapport-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skrapport-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skrapport-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-slantsc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-slantsc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-slantsc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smalltableof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smalltableof-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-smalltableof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartunits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartunits-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-smartunits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-smartref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-snapshot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-snapshot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-snapshot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-snotez-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-snotez-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-snotez-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soulpos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soulpos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soulpos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soulutf8-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soulutf8-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soulutf8-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spacingtricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spacingtricks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spacingtricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spark-otf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spark-otf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spark-otf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sparklines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sparklines-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sparklines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sphack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sphack-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sphack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-splitindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spotcolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spotcolor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spotcolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spreadtab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spreadtab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spreadtab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spverbatim-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spverbatim-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spverbatim-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srbook-mem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srbook-mem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-srbook-mem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcltx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srcltx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-srcltx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sseq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sseq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sseq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sslides-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sslides-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sslides-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stack-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stackengine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stackengine-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stackengine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-standalone-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-standalone-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-standalone-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdclsdv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdclsdv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stdclsdv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stealcaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stealcaps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stealcaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdpage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdpage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stdpage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-storebox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-storebox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-storebox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-storecmd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-storecmd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-storecmd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringstrings-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringstrings-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stringstrings-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sttools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sttools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sttools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stubs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stubs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stubs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-studenthandouts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-studenthandouts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-studenthandouts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subdepth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subdepth-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subdepth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subdocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subdocs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subdocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subeqn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqnarray-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqnarray-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subeqnarray-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfigmat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfigmat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfigmat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfigure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfigure-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfigure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfiles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfiles-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfiles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substitutefont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substitutefont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-substitutefont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-substr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-supertabular-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-supertabular-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-supertabular-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suppose-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suppose-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-suppose-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svgcolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svgcolor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svgcolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-multi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-multi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svn-multi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-prov-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-prov-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svn-prov-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svninfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svninfo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svninfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swfigure-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swfigure-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-swfigure-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntax-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-syntax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntrace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntrace-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-syntrace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synttree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-synttree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-synttree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabfigures-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabfigures-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabfigures-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tableaux-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tableaux-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tableaux-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablefootnote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablefootnote-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablefootnote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tableof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tableof-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tableof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablestyles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablestyles-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablestyles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablists-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablists-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablists-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabls-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablvar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablvar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablvar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabstackengine-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabstackengine-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabstackengine-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabto-ltx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabto-ltx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabto-ltx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabu-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularborder-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularborder-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabularborder-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularcalc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularcalc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabularcalc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularew-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularew-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabularew-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabulary-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabulary-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabulary-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagging-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagging-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tagging-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagpair-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagpair-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tagpair-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagpdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagpdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tagpdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-talk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-talk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-talk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tamefloats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tamefloats-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tamefloats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tasks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tasks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tasks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tcldoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tcldoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tcldoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tcolorbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tcolorbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tcolorbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tdclock-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tdclock-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tdclock-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-technics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-technics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-technics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ted-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ted-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ted-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templatetools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templatetools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-templatetools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termcal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termlist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testhyphens-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testhyphens-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-testhyphens-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testidx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testidx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-testidx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-label-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-label-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-label-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-locale-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-locale-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-locale-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texlogos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texlogos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texlogos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texmate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texmate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texmate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texments-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texments-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texments-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texpower-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texpower-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texpower-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texshade-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texshade-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texshade-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texvc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texvc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texvc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textfit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textfit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textfit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textmerg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textmerg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textmerg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textpos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textpos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textpos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textualicomma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textualicomma-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textualicomma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theoremref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theoremref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-theoremref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thinsp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thinsp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thinsp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmtools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmtools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thmtools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threadcol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threadcol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-threadcol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeparttable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeparttable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-threeparttable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeparttablex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeparttablex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-threeparttablex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thumb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumbs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumbs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thumbs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumby-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumby-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thumby-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ticket-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ticket-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ticket-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlecaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlecaps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titlecaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlefoot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlefoot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titlefoot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlepic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlepic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titlepic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titleref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titleref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titleref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlesec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlesec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titlesec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titling-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocbibind-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocbibind-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocbibind-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocdata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocdata-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocdata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocloft-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocloft-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocloft-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocvsec2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocvsec2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocvsec2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-todo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todonotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todonotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-todonotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tokcycle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tokcycle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tokcycle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tokenizer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tokenizer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tokenizer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toolbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toolbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-toolbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-topfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topiclongtable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topiclongtable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-topiclongtable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totalcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totalcount-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-totalcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totcount-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-totcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totpages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totpages-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-totpages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translations-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translations-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translations-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-transparent-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-transparent-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-transparent-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trfsigns-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trfsigns-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trfsigns-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trimspaces-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trimspaces-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trimspaces-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trivfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trivfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trivfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trsym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trsym-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trsym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-truncate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-truncate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-truncate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tucv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tucv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tucv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turnthepage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turnthepage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turnthepage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twoinone-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twoinone-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-twoinone-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twoup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twoup-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-twoup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txgreeks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txgreeks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-txgreeks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-type1cm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-type1cm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-type1cm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typed-checklist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typed-checklist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typed-checklist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeface-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typeface-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typeface-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typoaid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typoaid-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typoaid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typogrid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typogrid-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typogrid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uassign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uassign-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uassign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uebungsblatt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uebungsblatt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uebungsblatt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umoline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umoline-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umoline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underlin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underlin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-underlin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underoverlap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underoverlap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-underoverlap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-undolabl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-undolabl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-undolabl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitipa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitipa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unitipa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitconv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitconv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unitconv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-units-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-units-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-units-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unravel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unravel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unravel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upmethodology-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upmethodology-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-upmethodology-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upquote-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upquote-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-upquote-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uri-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uri-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uri-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ushort-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ushort-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ushort-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uspace-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utf8add-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utf8add-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-utf8add-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uwmslide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uwmslide-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uwmslide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-variablelm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-variablelm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-variablelm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-varindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varsfromjobname-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varsfromjobname-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-varsfromjobname-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varwidth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varwidth-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-varwidth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vcell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vcell-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vcell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vdmlisting-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vdmlisting-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vdmlisting-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbasef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbasef-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verbasef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbatimbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbatimbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verbatimbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbatimcopy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbatimcopy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verbatimcopy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbdef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbdef-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verbdef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbments-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbments-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verbments-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifiche-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifiche-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verifiche-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-version-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-version-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-version-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-versions-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-versions-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-versions-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-versonotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-versonotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-versonotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vertbars-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vertbars-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vertbars-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vgrid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vgrid-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vgrid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vhistory-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vhistory-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vhistory-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vmargin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vmargin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vmargin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-volumes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-volumes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-volumes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vpe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vpe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vpe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vruler-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vruler-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vruler-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vtable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vtable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vtable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vwcol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vwcol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vwcol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wallcalendar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wallcalendar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wallcalendar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wallpaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wallpaper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wallpaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-warning-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-warning-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-warning-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-warpcol-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-warpcol-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-warpcol-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-was-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-was-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-was-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-webquiz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-webquiz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-webquiz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widetable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widetable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-widetable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widows-and-orphans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widows-and-orphans-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-widows-and-orphans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-williams-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-williams-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-williams-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-willowtreebook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-willowtreebook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-willowtreebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-withargs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-withargs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-withargs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wordcount-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wordcount-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wordcount-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wordlike-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wordlike-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wordlike-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-worksheet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-worksheet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-worksheet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wrapfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wrapfig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wrapfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wtref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wtref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wtref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xargs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xargs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xargs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xassoccnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xassoccnt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xassoccnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xbmks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xbmks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xbmks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcntperchap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcntperchap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcntperchap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-material-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-material-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcolor-material-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-solarized-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-solarized-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcolor-solarized-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcomment-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcomment-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcomment-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcookybooky-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcookybooky-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcookybooky-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcpdftips-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcpdftips-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcpdftips-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xdoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xellipsis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xellipsis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xellipsis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xfakebold-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xfakebold-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xfakebold-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xfor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xfor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xfor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xhfill-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xhfill-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xhfill-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xifthen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xifthen-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xifthen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xint-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xkcdcolors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xkcdcolors-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xkcdcolors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xltabular-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xltabular-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xltabular-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmpincl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmpincl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xmpincl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xnewcommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xnewcommand-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xnewcommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xoptarg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xoptarg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xoptarg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpatch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpatch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpatch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpeek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpeek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpeek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xprintlen-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xprintlen-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xprintlen-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpunctuate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpunctuate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpunctuate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xsavebox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xsavebox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xsavebox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xsim-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xsim-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xsim-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xstring-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xstring-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xstring-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xtab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xtab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xtab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xurl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xurl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xurl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xwatermark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xwatermark-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xwatermark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xytree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xytree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xytree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yafoot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yafoot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yafoot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yaletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yaletter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yaletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yagusylo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yagusylo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yagusylo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ycbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ycbook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ycbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ydoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ydoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ydoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yplan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yplan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yplan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zebra-goodies-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zebra-goodies-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zebra-goodies-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zed-csp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zed-csp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zed-csp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ziffer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ziffer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ziffer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zwgetfdate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zwgetfdate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zwgetfdate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zwpagelayout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zwpagelayout-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zwpagelayout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-latexextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-latexextra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-latexextra-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-2up.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-2up.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-2up.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ESIEEcv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ESIEEcv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ESIEEcv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-GS1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-GS1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-GS1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-HA-prosper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-HA-prosper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-HA-prosper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Tabbing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Tabbing.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-Tabbing.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a0poster.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a0poster.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-a0poster.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a4wide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a4wide.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-a4wide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-a5comb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-a5comb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-a5comb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abraces.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abraces.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abraces.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abstract.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abstract.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abstract.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accessibility.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accessibility.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accessibility.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accsupp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accsupp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accsupp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-achemso.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-achemso.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-achemso.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acronym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acronym.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acronym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acroterm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acroterm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acroterm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialangle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialangle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-actuarialangle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialsymbol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialsymbol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-actuarialsymbol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addfont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-addfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addlines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addlines.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-addlines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjmulticol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjmulticol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adjmulticol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjustbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjustbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adjustbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adrconv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adrconv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adrconv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-advdate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-advdate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-advdate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akktex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akktex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-akktex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-akletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-akletter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-akletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alertmessage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alertmessage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alertmessage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alnumsec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alnumsec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alnumsec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alphalph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alphalph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alphalph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-altfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-altfont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-altfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsaddr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsaddr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsaddr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-animate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-animate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-animate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonchap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonchap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anonchap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-answers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-answers.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-answers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anyfontsize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anyfontsize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anyfontsize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-appendix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-appendix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-appendix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-appendixnumberbeamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-appendixnumberbeamer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-appendixnumberbeamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apptools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apptools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apptools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabicfront.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabicfront.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabicfront.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arcs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arcs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arcs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraycols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraycols.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arraycols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arrayjobx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arrayjobx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arrayjobx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraysort.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraysort.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arraysort.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arydshln.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arydshln.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arydshln.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asciilist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asciilist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asciilist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-askinclude.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-askinclude.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-askinclude.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-assignment.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-assignment.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-assignment.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-assoccnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-assoccnt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-assoccnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-association-matrix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-association-matrix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-association-matrix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atenddvi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atenddvi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-atenddvi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-attachfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aurl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aurl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aurl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authoraftertitle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authoraftertitle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-authoraftertitle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authorarchive.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authorarchive.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-authorarchive.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-authorindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-authorindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-authorindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autofancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autofancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autofancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autonum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autonum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autonum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autopdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autopdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autopdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-avremu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-avremu.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-avremu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axessibility.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axessibility.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-axessibility.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-background.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-background.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-background.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bankstatement.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bankstatement.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bankstatement.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bashful.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bashful.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bashful.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basicarith.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basicarith.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-basicarith.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bchart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bchart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bchart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer2thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer2thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamer2thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-rl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-rl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamer-rl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerappendixnote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerappendixnote.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerappendixnote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beameraudience.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beameraudience.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beameraudience.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerauxtheme.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerauxtheme.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerauxtheme.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamercolorthemeowl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamercolorthemeowl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamercolorthemeowl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerdarkthemes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerdarkthemes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerdarkthemes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerposter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerposter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerposter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamersubframe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamersubframe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamersubframe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-cuerna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-cuerna.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-cuerna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-detlevcm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-detlevcm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-detlevcm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-epyt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-epyt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-epyt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-focus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-focus.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-focus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-light.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-light.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-light.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-metropolis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-metropolis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-metropolis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-npbt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-npbt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-npbt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-phnompenh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-phnompenh.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-phnompenh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-pure-minimalistic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-pure-minimalistic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-pure-minimalistic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-saintpetersburg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-saintpetersburg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-saintpetersburg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-upenn-bc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-upenn-bc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-upenn-bc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerthemenirma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerthemenirma.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerthemenirma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerthemenord.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerthemenord.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerthemenord.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bearwear.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bearwear.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bearwear.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beaulivre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beaulivre.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beaulivre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beton.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beton.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beton.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bewerbung.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bewerbung.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bewerbung.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bez123.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bez123.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bez123.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bhcexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bhcexam.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bhcexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bibletext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bibletext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bibletext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigfoot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigfoot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bigfoot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigints.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigints.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bigints.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biochemistry-colors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biochemistry-colors.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biochemistry-colors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bithesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bithesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bithesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bizcard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bizcard.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bizcard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blindtext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blindtext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blindtext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blkarray.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blkarray.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blkarray.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-block.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-block.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-block.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blowup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blowup.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blowup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bnumexpr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bnumexpr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bnumexpr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boites.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bold-extra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bold-extra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bold-extra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookcover.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookcover.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookcover.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookest.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookest.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookest.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booklet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booklet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-booklet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookshelf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookshelf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookshelf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boolexpr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boolexpr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boolexpr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bophook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bophook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bophook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxedminipage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxedminipage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boxedminipage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxhandler.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxhandler.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boxhandler.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bracketkey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bracketkey.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bracketkey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braket.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braket.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-braket.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breakurl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breakurl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-breakurl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bubblesort.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bubblesort.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bubblesort.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bullcntr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bullcntr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bullcntr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxcalc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxcalc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxcalc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxdpx-beamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxdpx-beamer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxdpx-beamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxdvidriver.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxdvidriver.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxdvidriver.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxenclose.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxenclose.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxenclose.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxnewfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxnewfont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxnewfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxpapersize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxpapersize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxpapersize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxpdfver.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxpdfver.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxpdfver.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxtexlogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxtexlogo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxtexlogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calcage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calcage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calcage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calctab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calctab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calctab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculator.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculator.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calculator.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calrsfs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calrsfs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calrsfs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cals.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cals.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cals.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calxxxx-yyyy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calxxxx-yyyy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calxxxx-yyyy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cancel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cancel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cancel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-canoniclayout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-canoniclayout.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-canoniclayout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-capt-of.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-capt-of.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-capt-of.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-captcont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-captcont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-captcont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-captdef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-captdef.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-captdef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-carbohydrates.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-carbohydrates.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-carbohydrates.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cases.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cases.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cases.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-casyl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-casyl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-casyl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catchfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfilebetweentags.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfilebetweentags.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catchfilebetweentags.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catechis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catechis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catechis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catoptions.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catoptions.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catoptions.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cbcoptic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cbcoptic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cbcoptic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccaption.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccaption.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccaption.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cclicenses.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cclicenses.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cclicenses.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd-cover.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd-cover.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cd-cover.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cdpbundl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cdpbundl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cdpbundl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cellprops.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cellprops.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cellprops.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cellspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cellspace.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cellspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-censor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-censor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-censor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-centeredline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-centeredline.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-centeredline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-centerlastline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-centerlastline.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-centerlastline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changebar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changebar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changebar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changelayout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changelayout.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changelayout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changelog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changelog.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changelog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changepage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changepage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changepage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chappg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chappg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chappg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chapterfolder.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chapterfolder.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chapterfolder.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cheatsheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkend.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkend.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-checkend.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chextras.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chextras.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chextras.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-childdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-childdoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-childdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chkfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chkfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chkfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chletter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chngcntr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chngcntr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chngcntr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chronology.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chronology.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chronology.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circ.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circ.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-circ.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circledsteps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circledsteps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-circledsteps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-classics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classpack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classpack.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-classpack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clefval.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clefval.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clefval.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cleveref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cleveref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cleveref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clipboard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clipboard.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clipboard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clock.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clock.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clock.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrdblpg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrdblpg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clrdblpg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrstrip.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrstrip.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clrstrip.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmdstring.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmdstring.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmdstring.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmdtrack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmdtrack.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmdtrack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmsd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmsd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmsd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cnltx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cnltx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cnltx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cntformats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cntformats.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cntformats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cntperchap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cntperchap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cntperchap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codedoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codedoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codedoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codepage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codepage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codepage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codesection.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codesection.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codesection.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collcell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collcell.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collcell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collectbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collectbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collectbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colophon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colophon.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colophon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-color-edits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-color-edits.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-color-edits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colordoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colordoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colordoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorinfo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coloring.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coloring.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coloring.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorspace.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colortab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colortab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colortab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorwav.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorwav.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorwav.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorweb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorweb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorweb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colourchange.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colourchange.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colourchange.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combelow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combelow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combelow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combine.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comma.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-comma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commado.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commado.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-commado.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commedit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commedit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-commedit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-comment.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-comment.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-comment.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-competences.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-competences.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-competences.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concepts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concepts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-concepts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concprog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concprog.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-concprog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conditext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conditext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-conditext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-constants.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-constants.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-constants.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-continue.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-continue.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-continue.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contour.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contour.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-contour.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contracard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contracard.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-contracard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conv-xkv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conv-xkv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-conv-xkv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cooking.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking-units.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking-units.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cooking-units.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cool.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cool.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cool.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coollist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coollist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coollist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolstr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolstr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coolstr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolthms.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolthms.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coolthms.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooltooltips.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooltooltips.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cooltooltips.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coordsys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coordsys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coordsys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-copyedit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-copyedit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-copyedit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-copyrightbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-copyrightbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-copyrightbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coseoul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coseoul.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coseoul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-counttexruns.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-counttexruns.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-counttexruns.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-courseoutline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-courseoutline.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-courseoutline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coursepaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coursepaper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coursepaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coverpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coverpage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coverpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cprotect.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cprotect.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cprotect.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossreference.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossreference.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crossreference.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossreftools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossreftools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crossreftools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csquotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csquotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csquotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-css-colors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-css-colors.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-css-colors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csvmerge.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csvmerge.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csvmerge.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csvsimple.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csvsimple.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csvsimple.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cuisine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cuisine.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cuisine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currency.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currency.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-currency.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currfile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-currfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currvita.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currvita.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-currvita.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cutwin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cutwin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cutwin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cv4tw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cv4tw.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cv4tw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cweb-latex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cweb-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyber.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cyber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cybercic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cybercic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cybercic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dashbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashrule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashrule.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dashrule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashundergaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashundergaps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dashundergaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dataref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dataref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dataref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datax.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datatool.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datatool.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datatool.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dateiliste.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dateiliste.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dateiliste.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datenumber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datenumber.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datenumber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bahasai.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bahasai.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-bahasai.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-basque.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-basque.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-basque.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-breton.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-breton.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-breton.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-bulgarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-catalan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-catalan.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-catalan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-croatian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-croatian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-croatian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-czech.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-czech.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-czech.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-danish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-danish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-danish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-dutch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-dutch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-dutch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-en-fulltext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-en-fulltext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-en-fulltext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-english.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-english.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-english.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-esperanto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-esperanto.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-esperanto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-estonian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-estonian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-estonian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-finnish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-finnish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-finnish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-french.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-galician.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-galician.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-galician.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-german.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-greek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-greek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-greek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-hebrew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-hebrew.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-hebrew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-icelandic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-icelandic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-icelandic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-irish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-irish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-irish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-italian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-it-fulltext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-it-fulltext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-it-fulltext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-latin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-latin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-latin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-lsorbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-lsorbian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-lsorbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-magyar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-magyar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-magyar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-norsk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-norsk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-norsk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-polish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-polish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-polish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-portuges.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-portuges.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-portuges.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-romanian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-romanian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-romanian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-russian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-russian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-russian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-samin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-samin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-samin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-scottish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-scottish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-scottish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-serbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-serbian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-serbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovak.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-slovak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovene.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovene.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-slovene.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-spanish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-swedish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-swedish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-swedish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-turkish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-turkish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-turkish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-ukrainian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-ukrainian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-ukrainian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-usorbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-usorbian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-usorbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-welsh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-welsh.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-welsh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dblfloatfix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dblfloatfix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dblfloatfix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decimal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decimal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-decimal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decorule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decorule.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-decorule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimtxt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimtxt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-delimtxt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-denisbdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-denisbdoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-denisbdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diabetes-logbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diabetes-logbook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diabetes-logbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diagbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagnose.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagnose.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diagnose.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dialogl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dialogl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dialogl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dichokey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dichokey.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dichokey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dinbrief.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dinbrief.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dinbrief.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-directory.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-directory.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-directory.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtytalk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtytalk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dirtytalk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dlfltxb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dlfltxb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dlfltxb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dnaseq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dnaseq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dnaseq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doclicense.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doclicense.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doclicense.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmfp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmfp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docmfp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmute.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmute.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docmute.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doctools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doctools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doctools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-documentation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-documentation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-documentation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docutils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docutils.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docutils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotarrow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotarrow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dotarrow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotlessi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotlessi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dotlessi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotseqn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotseqn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dotseqn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-download.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-download.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-download.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dpfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dpfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dpfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dprogress.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dprogress.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dprogress.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftcopy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftcopy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-draftcopy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftfigure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftfigure.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-draftfigure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftwatermark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftwatermark.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-draftwatermark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dtk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxdescribe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxdescribe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dtxdescribe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxgallery.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxgallery.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dtxgallery.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duckuments.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duckuments.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-duckuments.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ducksay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ducksay.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ducksay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dvdcoll.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dvdcoll.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dvdcoll.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynamicnumber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynamicnumber.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dynamicnumber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynblocks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynblocks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dynblocks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ean13isbn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ean13isbn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ean13isbn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easy-todo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easy-todo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easy-todo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easybook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easybook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easybook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easyfig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfloats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfloats.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easyfloats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyformat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyformat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easyformat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easylist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easylist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easylist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyreview.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyreview.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easyreview.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebezier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebezier.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebezier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecclesiastic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecclesiastic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecclesiastic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econlipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econlipsum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-econlipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ed.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edichokey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edichokey.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-edichokey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmargin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmargin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-edmargin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eemeir.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eemeir.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eemeir.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-efbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-efbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-efbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-egplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-egplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-egplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ehhline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ehhline.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ehhline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-einfart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-einfart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-einfart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantbook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elegantbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantnote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantnote.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elegantnote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elegantpaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elegantpaper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elegantpaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elements.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elements.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elements.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipsis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipsis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ellipsis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elocalloc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elocalloc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elocalloc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elpres.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elpres.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elpres.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elzcards.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elzcards.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elzcards.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emarks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emarks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emarks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedall.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedall.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-embedall.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedfile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-embedfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embrac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embrac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-embrac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emptypage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emptypage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emptypage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emulateapj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emulateapj.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emulateapj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endheads.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endheads.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endheads.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotes-hy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotes-hy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endnotes-hy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engpron.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engpron.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-engpron.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engrec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engrec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-engrec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enotez.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enotez.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enotez.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enumitem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enumitem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enumitem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enumitem-zref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enumitem-zref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enumitem-zref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-envbig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-envbig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-envbig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-environ.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-environ.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-environ.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-envlab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-envlab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-envlab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigraph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epigraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigraph-keys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigraph-keys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epigraph-keys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epiolmec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epiolmec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epiolmec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eq-pin2corr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eq-pin2corr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eq-pin2corr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqell.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqlist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnalign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnalign.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqnalign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqparbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqparbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqparbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-errata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-errata.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-errata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erw-l3.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erw-l3.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-erw-l3.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esami.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esami.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esami.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esdiff.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esdiff.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esdiff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esint.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esint-type1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esint-type1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esint-type1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etaremune.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etaremune.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etaremune.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etextools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etextools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etextools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eukdate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eukdate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eukdate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eulerpx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eulerpx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eulerpx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-europasscv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-europasscv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-europasscv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-europecv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-europecv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-europecv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyhook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyhook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everyhook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everypage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everypage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everypage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-n.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-n.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exam-n.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-randomizechoices.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-randomizechoices.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exam-randomizechoices.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-examdesign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-examdesign.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-examdesign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exframe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exframe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exframe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-examplep.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-examplep.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-examplep.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exceltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exceltex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exceltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-excludeonly.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-excludeonly.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-excludeonly.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercise.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercise.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exercise.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercisebank.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercisebank.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exercisebank.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercisepoints.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercisepoints.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exercisepoints.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercises.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercises.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exercises.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exesheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exesheet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exesheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exp-testopt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exp-testopt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exp-testopt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expdlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expdlist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expdlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-export.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-export.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-export.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exsheets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exsheets.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exsheets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exsol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exsol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exsol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extract.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extract.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-extract.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facsimile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facsimile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-facsimile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-factura.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-factura.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-factura.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyhandout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyhandout.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyhandout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancylabel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancylabel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancylabel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancynum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancynum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancynum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancypar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancypar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancypar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyslides.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytabs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytabs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancytabs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytooltips.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytooltips.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancytooltips.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcolumn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcolumn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fcolumn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetchcls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetchcls.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fetchcls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fewerfloatpages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fewerfloatpages.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fewerfloatpages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ffslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ffslides.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ffslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fgruler.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fgruler.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fgruler.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fibeamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fibeamer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fibeamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifo-stack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifo-stack.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fifo-stack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figsize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figsize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-figsize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontents.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontents.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filecontents.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontentsdef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontentsdef.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filecontentsdef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filedate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filedate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filedate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fileinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fileinfo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fileinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filemod.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filemod.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filemod.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fink.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fink.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fink.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-finstrut.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-finstrut.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-finstrut.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fithesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fithesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fithesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixcmex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixcmex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixcmex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixfoot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixfoot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixfoot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixme.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixme.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixme.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixmetodonotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixmetodonotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixmetodonotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fjodor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fjodor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fjodor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flabels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flabels.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flabels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flacards.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flacards.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flacards.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flagderiv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flagderiv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flagderiv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flashcards.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flashcards.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flashcards.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flashmovie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flashmovie.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flashmovie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flipbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flipbook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flipbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flippdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flippdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flippdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatflt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatflt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-floatflt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatrow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatrow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-floatrow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowfram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowfram.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flowfram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fmp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmtcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmtcount.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fmtcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fn2end.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fn2end.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fn2end.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnbreak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnbreak.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnbreak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fncychap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fncychap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fncychap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fncylab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fncylab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fncylab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnpara.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnpara.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnpara.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnpct.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnpct.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnpct.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnumprint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnumprint.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnumprint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foilhtml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foilhtml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-foilhtml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontaxes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontaxes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontaxes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontsetup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontsetup.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontsetup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontsize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontsize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontsize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonttable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonttable.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fonttable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footmisc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footmisx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnotebackref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnotebackref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footnotebackref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnoterange.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnoterange.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footnoterange.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnpag.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnpag.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footnpag.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forarray.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forarray.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forarray.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foreign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foreign.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-foreign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forloop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forloop.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forloop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formlett.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formlett.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-formlett.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forms16be.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forms16be.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forms16be.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formular.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formular.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-formular.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fragments.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fragments.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fragments.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frame.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frame.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frame.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-framed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-framed.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-framed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frankenstein.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frankenstein.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frankenstein.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frege.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frege.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frege.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-froufrou.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-froufrou.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-froufrou.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftcap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftcap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ftcap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftnxtra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftnxtra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ftnxtra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullblck.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullblck.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fullblck.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullminipage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullminipage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fullminipage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullwidth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullwidth.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fullwidth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-calligra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-calligra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fundus-calligra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-sueterlin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-sueterlin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fundus-sueterlin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fvextra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fvextra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fvextra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fwlw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fwlw.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fwlw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-g-brief.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-g-brief.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-g-brief.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gatherenum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gatherenum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gatherenum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gauss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gauss.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gauss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gcard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gcard.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gcard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gcite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gcite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gcite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gender.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gender.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gender.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genmpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genmpage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-genmpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getfiledate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getfiledate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-getfiledate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getitems.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getitems.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-getitems.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ginpenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ginpenc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ginpenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitfile-info.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitfile-info.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gitfile-info.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitinfo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gitinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitinfo2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitinfo2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gitinfo2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitlog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitlog.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gitlog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitver.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitver.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gitver.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-globalvals.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-globalvals.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-globalvals.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gloss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gloss.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gloss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-danish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-danish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-danish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-dutch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-dutch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-dutch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-english.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-english.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-english.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-estonian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-estonian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-estonian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-extra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-extra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-extra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-finnish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-finnish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-finnish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-french.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-french.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-french.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-german.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-german.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-german.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-irish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-irish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-irish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-italian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-italian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-italian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-magyar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-magyar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-magyar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-nynorsk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-nynorsk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-nynorsk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-polish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-polish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-polish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-portuges.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-portuges.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-portuges.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-serbian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-serbian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-serbian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-slovene.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-slovene.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-slovene.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-spanish.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-spanish.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-spanish.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmdoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmdoc-enhance.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmdoc-enhance.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmdoc-enhance.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmiflink.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmiflink.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmiflink.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmutils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmutils.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmutils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmverb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmverb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmverb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grabbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grabbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grabbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicx-psmin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicx-psmin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphicx-psmin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicxbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicxbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphicxbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphpaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphpaper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphpaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grayhints.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grayhints.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grayhints.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grfpaste.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grfpaste.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grfpaste.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grid.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grid-system.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grid-system.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grid-system.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridpapers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridpapers.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gridpapers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridset.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridset.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gridset.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridslides.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gridslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitlogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitlogo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guitlogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-halloweenmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-halloweenmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-halloweenmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hackthefootline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hackthefootline.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hackthefootline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-handin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-handin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-handin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-handout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-handout.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-handout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hang.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hang.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hang.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hanging.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hanging.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hanging.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hardwrap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hardwrap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hardwrap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harnon-cv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harnon-cv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harnon-cv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harpoon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harpoon.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harpoon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-he-she.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-he-she.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-he-she.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hhtensor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hhtensor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hhtensor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-highlightlatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-highlightlatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-highlightlatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-histogr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-histogr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-histogr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hitec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitreport.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitreport.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hitreport.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hletter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobsub.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobsub.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hobsub.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hpsdiss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hpsdiss.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hpsdiss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrefhide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrefhide.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hrefhide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hvindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvqrurl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvqrurl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hvqrurl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypdestopt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypdestopt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hypdestopt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypdvips.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypdvips.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hypdvips.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperbar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperbar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyperbar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hypernat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hypernat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hypernat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperxmp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperxmp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyperxmp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphenat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphenat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphenat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-identkey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-identkey.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-identkey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-idxcmds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-idxcmds.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-idxcmds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-idxlayout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-idxlayout.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-idxlayout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iffont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iffont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iffont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifmslide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifmslide.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifmslide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifmtarg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifmtarg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifmtarg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifnextok.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifnextok.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifnextok.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifoddpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifoddpage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifoddpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifthenx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifthenx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifthenx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iitem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iitem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iitem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-image-gallery.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-image-gallery.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-image-gallery.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imakeidx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imakeidx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imakeidx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-import.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-import.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-import.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-incgraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-incgraph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-incgraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-indextools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-indextools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-indextools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inline-images.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inline-images.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inline-images.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inlinedef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inlinedef.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inlinedef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputenx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputenx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inputenx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputtrc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputtrc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inputtrc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interactiveworkbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interactiveworkbook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interactiveworkbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interfaces.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interfaces.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interfaces.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intopdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intopdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-intopdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inversepath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inversepath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inversepath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-invoice.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice-class.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice-class.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-invoice-class.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-invoice2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iso.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso10303.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso10303.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iso10303.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isodate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isodoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isonums.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isonums.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isonums.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isopt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isopt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isopt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isorot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isorot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isorot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isotope.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isotope.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isotope.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-issuulinks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-issuulinks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-issuulinks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iwhdp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iwhdp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iwhdp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jlabels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jlabels.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jlabels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jslectureplanner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jslectureplanner.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jslectureplanner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jumplines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jumplines.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jumplines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jvlisting.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jvlisting.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jvlisting.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kalendarium.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kalendarium.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kalendarium.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kantlipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kantlipsum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kantlipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kerntest.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kerntest.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kerntest.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keycommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keycommand.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keycommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyreader.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyreader.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyreader.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keystroke.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keystroke.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keystroke.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyval2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyval2e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyval2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyvaltable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyvaltable.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyvaltable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knowledge.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knowledge.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-knowledge.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-moderncvclassic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-moderncvclassic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-koma-moderncvclassic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-script-sfs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-script-sfs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-koma-script-sfs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-komacv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv-rg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv-rg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-komacv-rg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ktv-texdata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ktv-texdata.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ktv-texdata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3build.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3build.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3build.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labbook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labels.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labels4easylist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labels4easylist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labels4easylist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labelschanged.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labelschanged.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labelschanged.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpackage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpackage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lastpackage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lastpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-amsmath-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-amsmath-dev.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-amsmath-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-base-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-base-dev.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-base-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-bin-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-bin-dev.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-bin-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-firstaid-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-firstaid-dev.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-firstaid-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-graphics-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-graphics-dev.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-graphics-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-tools-dev.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-tools-dev.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-tools-dev.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-uni8.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-uni8.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-uni8.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcolors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcolors.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcolors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexdemo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexdemo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexdemo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexgit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexgit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexgit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layouts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layouts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-layouts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lazylist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lazylist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lazylist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lccaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lccaps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lccaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lcd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lcg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leading.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leading.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leading.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leaflet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leaflet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leaflet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lebhart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lebhart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lebhart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lectures.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lectures.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lectures.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lectureslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lectureslides.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lectureslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leftidx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leftidx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leftidx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leftindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leftindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leftindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leipzig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leipzig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leipzig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lengthconvert.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lengthconvert.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lengthconvert.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lettre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lettre.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lettre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lettrine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lettrine.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lettrine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lewis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lewis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lewis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lhelp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lhelp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lhelp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libgreek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-limap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linegoal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linegoal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linegoal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linop.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lipsum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lisp-on-tex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lisp-on-tex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lisp-on-tex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listing.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listing.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listingsutf8.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listingsutf8.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listingsutf8.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listlbls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listlbls.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listlbls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listliketab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listliketab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listliketab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listofsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listofsymbols.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listofsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lkproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lkproof.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lkproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lmake.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lmake.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lmake.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-locality.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-locality.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-locality.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logical-markup-utils.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logical-markup-utils.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logical-markup-utils.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logpap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logpap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logpap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longfbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longfbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-longfbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longfigure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longfigure.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-longfigure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longnamefilelist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longnamefilelist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-longnamefilelist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-loops.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-loops.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-loops.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lsc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lsc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lsc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstaddons.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstaddons.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lstaddons.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstfiracode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstfiracode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lstfiracode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lt3graph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lt3graph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lt3graph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltablex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltablex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltablex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltabptch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltabptch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltabptch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxdockit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxdockit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxdockit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxguidex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxguidex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxguidex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxkeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxkeys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxkeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxnew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxnew.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxnew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxtools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxtools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxtools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-check-hyphen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-check-hyphen.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-check-hyphen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-physical.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-physical.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-physical.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatodonotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatodonotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatodonotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-macroswap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-macroswap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-macroswap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magaz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magaz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-magaz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magicnum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magicnum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-magicnum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecookbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecookbook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makecookbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makerobust.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makerobust.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makerobust.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailing.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mailing.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailmerge.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailmerge.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mailmerge.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebarcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebarcode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makebarcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebase.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makebase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makebox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecell.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makecell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecirc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecirc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makecirc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecmds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecmds.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makecmds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makedtx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makedtx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makedtx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeglos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeglos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makeglos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mandi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mandi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mandi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manfnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manfnt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-manfnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manuscript.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manuscript.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-manuscript.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manyind.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manyind.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-manyind.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marginfit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marginfix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginnote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginnote.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marginnote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-markdown.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-markdown.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-markdown.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathalpha.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathalpha.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathalpha.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathastext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathastext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathastext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathexam.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfam256.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfam256.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathfam256.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathfont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maybemath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maybemath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-maybemath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcaption.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcaption.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcaption.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mceinleger.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mceinleger.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mceinleger.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcexam.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mciteplus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mciteplus.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mciteplus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdframed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdframed.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mdframed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-media4svg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-media4svg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-media4svg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-media9.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-media9.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-media9.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-medstarbeamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-medstarbeamer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-medstarbeamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-meetingmins.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-meetingmins.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-meetingmins.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memexsupp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memexsupp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memexsupp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memory.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memory.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memory.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mensa-tex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mensa-tex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mensa-tex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menu.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-menu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menucard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menucard.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-menucard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menukeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menukeys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-menukeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metalogox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metanorma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metanorma.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metanorma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metastr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metastr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metastr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-method.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-method.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-method.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metre.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfirstuc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfirstuc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfirstuc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mftinc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mftinc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mftinc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mi-solns.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mi-solns.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mi-solns.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-midpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-midpage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-midpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mindflow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mindflow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mindflow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minibox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minibox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minibox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minidocument.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minidocument.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minidocument.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minifp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minifp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minifp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minimalist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minimalist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minimalist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minipage-marginpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minipage-marginpar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minipage-marginpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minitoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minitoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minitoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minorrevision.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minorrevision.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minorrevision.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minted.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minted.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minted.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minutes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minutes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minutes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mla-paper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mla-paper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mla-paper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mleftright.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mleftright.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mleftright.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mmap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mmap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mmap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moderncv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moderncv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moderncv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modernposter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modernposter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modernposter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moderntimeline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moderntimeline.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moderntimeline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modroman.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modroman.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modroman.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modular.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modular.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modular.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-monofill.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-monofill.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-monofill.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moodle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moodle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moodle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moreenum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moreenum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moreenum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morefloats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morefloats.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morefloats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morehype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morehype.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morehype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moresize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moresize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moresize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moreverb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moreverb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moreverb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morewrites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morewrites.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morewrites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-movie15.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-movie15.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-movie15.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mparhack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mparhack.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mparhack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpostinl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpostinl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpostinl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-msc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-msg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mslapa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mslapa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mslapa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mtgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mtgreek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mtgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multenum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multenum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multenum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiaudience.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiaudience.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multiaudience.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibbl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibbl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multibbl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multicap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicolrule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicolrule.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multicolrule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multidef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multidef.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multidef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multienv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multienv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multienv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiexpand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiexpand.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multiexpand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multilang.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multilang.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multilang.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multirow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multirow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multirow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mversion.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mversion.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mversion.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mwe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mycv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mycv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mycv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mylatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mylatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mylatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mylatexformat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mylatexformat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mylatexformat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nag.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nag.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nag.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nameauth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nameauth.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nameauth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namespc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namespc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-namespc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncclatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncclatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ncclatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncctools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncctools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ncctools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-needspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-needspace.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-needspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newcommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newcommand.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newcommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newenviron.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newenviron.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newenviron.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newlfm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newlfm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newlfm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newspaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newspaper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newspaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newunicodechar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newunicodechar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newunicodechar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newvbtm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newvbtm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newvbtm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newverbs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newverbs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newverbs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nfssext-cfr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nfssext-cfr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nfssext-cfr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicefilelist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicefilelist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nicefilelist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-niceframe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-niceframe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-niceframe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicetext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicetext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nicetext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nidanfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nidanfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nidanfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nlctdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nlctdoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nlctdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noconflict.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noconflict.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-noconflict.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noindentafter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noindentafter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-noindentafter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noitcrul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noitcrul.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-noitcrul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nolbreaks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nolbreaks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nolbreaks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomencl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomencl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nomencl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomentbl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomentbl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nomentbl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nonfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonumonpart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonumonpart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nonumonpart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nopageno.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nopageno.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nopageno.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-normalcolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-normalcolor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-normalcolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notespages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notespages.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notespages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notestex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notestex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notestex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notoccite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notoccite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notoccite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nowidow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nowidow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nowidow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntheorem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntheorem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ntheorem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numberedblock.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numberedblock.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numberedblock.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numname.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numname.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numname.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numprint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numprint.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numprint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numspell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numspell.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numspell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocg-p.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocg-p.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocg-p.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocgx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocgx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocgx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocgx2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocgx2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocgx2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocr-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocr-latex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocr-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-octavo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-octavo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-octavo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldstyle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldstyle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oldstyle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onlyamsmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onlyamsmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-onlyamsmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opcit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opcit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-opcit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optidef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optidef.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-optidef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optional.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optional.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-optional.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-options.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-options.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-options.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orcidlink.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orcidlink.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-orcidlink.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orientation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orientation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-orientation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outline.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-outline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outliner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outliner.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-outliner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outlines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outlines.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-outlines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outlining.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outlining.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-outlining.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overlays.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overlays.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-overlays.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overpic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-overpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-padcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-padcount.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-padcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecolor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagecolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagecont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagenote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagenote.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagenote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagerange.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagerange.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagerange.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pageslts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pageslts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pageslts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papercdcase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papercdcase.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-papercdcase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papermas.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papermas.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-papermas.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papertex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papertex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-papertex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paracol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paracol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paracol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parades.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parades.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parades.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paralist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paralist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paralist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paresse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paresse.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paresse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parnotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parsa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parsa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parsa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parselines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parselines.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parselines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-cours.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-cours.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pas-cours.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-cv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-cv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pas-cv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pas-tableur.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pas-tableur.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pas-tableur.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patchcmd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patchcmd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-patchcmd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pauldoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pauldoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pauldoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pawpict.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pawpict.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pawpict.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbalance.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbalance.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pbalance.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbsheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbsheet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pbsheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdf14.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdf14.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdf14.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcolmk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcolmk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfcolmk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcomment.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcomment.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfcomment.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcprot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcprot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfcprot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfmarginpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfmarginpar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfmarginpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfoverlay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfoverlay.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfoverlay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpagediff.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpagediff.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfpagediff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfpc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpc-movie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpc-movie.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfpc-movie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfprivacy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfprivacy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfprivacy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfreview.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfreview.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfreview.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfscreen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfscreen.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfscreen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfslide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfslide.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfslide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfsync.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfsync.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfsync.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfwin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfwin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfwin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pecha.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pecha.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pecha.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perltex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-perltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-permute.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-permute.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-permute.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-petiteannonce.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-petiteannonce.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-petiteannonce.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phffullpagefigure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phffullpagefigure.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phffullpagefigure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfnote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfnote.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfnote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfparen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfparen.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfparen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfqit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfqit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfqit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfquotetext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfquotetext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfquotetext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfsvnwatermark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfsvnwatermark.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfsvnwatermark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfthm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfthm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfthm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-philex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phonenumbers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phonenumbers.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phonenumbers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-photo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-photo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-photo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-picture.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-picture.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-picture.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piff.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piff.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-piff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkgloader.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pkgloader.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pkgloader.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeins.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeins.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeins.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantslabels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantslabels.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plantslabels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plates.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plates.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plates.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plweb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plweb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plweb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmboxdraw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmboxdraw.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pmboxdraw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynom.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynom.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polynom.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynomial.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynomial.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polynomial.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polytable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polytable.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polytable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-postcards.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-postcards.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-postcards.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poster-mac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poster-mac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poster-mac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-powerdot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ppr-prv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ppr-prv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ppr-prv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-practicalreports.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-practicalreports.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-practicalreports.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prelim2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prelim2e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prelim2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preprint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preprint.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-preprint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pressrelease.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pressrelease.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pressrelease.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prettyref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prettyref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prettyref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preview.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preview.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-preview.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-printlen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-printlen.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-printlen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-probsoln.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-probsoln.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-probsoln.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-program.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-program.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-program.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-progress.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-progress.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-progress.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-progressbar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-progressbar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-progressbar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proofread.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proofread.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proofread.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-properties.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-properties.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-properties.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prosper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prosper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prosper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-protex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-protex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-protex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-protocol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-protocol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-protocol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfragx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfragx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psfragx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstool.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstool.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pstool.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstring.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstring.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pstring.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxgreeks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxgreeks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxgreeks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pygmentex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pygmentex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pygmentex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-python.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-python.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-python.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qcm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qcm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qcm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qstest.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qstest.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qstest.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsymbols.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quicktype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quicktype.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quicktype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quiz2socrative.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quiz2socrative.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quiz2socrative.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotchap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotchap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quotchap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quoting.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quoting.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quoting.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotmark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotmark.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quotmark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ran_toks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ran_toks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ran_toks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randtext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randtext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-randtext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rccol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rccol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rccol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs-multi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs-multi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rcs-multi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcsinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcsinfo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rcsinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-readablecv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-readablecv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-readablecv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-readarray.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-readarray.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-readarray.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realboxes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realboxes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realboxes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-recipe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipebook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipebook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-recipebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipecard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipecard.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-recipecard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rectopma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rectopma.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rectopma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refcheck.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refcheck.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refcheck.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refenums.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refenums.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refenums.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reflectgraphics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reflectgraphics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-reflectgraphics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refman.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refman.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refman.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refstyle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refstyle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refstyle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regcount.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-regcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regexpatch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regexpatch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-regexpatch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-register.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-register.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-register.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regstats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regstats.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-regstats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-relenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-relenc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-relenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-relsize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-relsize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-relsize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repeatindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repeatindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-repeatindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repltext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repltext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-repltext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-returntogrid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-returntogrid.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-returntogrid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rgltxdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rgltxdoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rgltxdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rjlparshap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rjlparshap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rjlparshap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rlepsf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rlepsf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rlepsf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rmpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rmpage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rmpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-robustcommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-robustcommand.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-robustcommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-robustindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-robustindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-robustindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romanbar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbarpagenumber.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbarpagenumber.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romanbarpagenumber.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanneg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanneg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romanneg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romannum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romannum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romannum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rotfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rotfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rotfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rotpages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rotpages.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rotpages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roundbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roundbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-roundbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rterface.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rterface.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rterface.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rtkinenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rtkinenc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rtkinenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rulerbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rulerbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rulerbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rulercompass.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rulercompass.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rulercompass.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-runcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-runcode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-runcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rvwrite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rvwrite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rvwrite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sanitize-umlaut.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sanitize-umlaut.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sanitize-umlaut.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauerj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauerj.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sauerj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savefnmark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savefnmark.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-savefnmark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savetrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savetrees.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-savetrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scale.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scale.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scale.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scalebar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scalebar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scalebar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scalerel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scalerel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scalerel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scanpages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scanpages.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scanpages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schedule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schedule.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schedule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schooldocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schooldocs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schooldocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scontents.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scontents.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scontents.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrlayer-fancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrlayer-fancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scrlayer-fancyhdr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrlttr2copy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrlttr2copy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scrlttr2copy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sdaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sdaps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sdaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sdrt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sdrt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sdrt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-secdot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-secdot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-secdot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-secnum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-secnum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-secnum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectionbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectionbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sectionbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectionbreak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectionbreak.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sectionbreak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectsty.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectsty.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sectsty.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seealso.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seealso.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seealso.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selectp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selectp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-selectp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selinput.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selinput.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-selinput.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semantex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semantic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantic-markup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantic-markup.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semantic-markup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semesterplanner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semesterplanner.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semesterplanner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semioneside.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semioneside.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semioneside.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semproc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semproc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semproc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semtex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sepfootnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sepfootnotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sepfootnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seqsplit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seqsplit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seqsplit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesstime.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesstime.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sesstime.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sf298.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sf298.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sf298.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sffms.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sffms.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sffms.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadethm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadethm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shadethm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shadow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shadowtext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shadowtext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shadowtext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shapepar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shapepar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shapepar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shdoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shipunov.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shipunov.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shipunov.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shorttoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shorttoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shorttoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-show2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-show2e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-show2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showcharinbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showcharinbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showcharinbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showdim.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showdim.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showdim.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showexpl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showexpl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showexpl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showhyphens.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showhyphens.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showhyphens.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showlabels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showlabels.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showlabels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidecap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidecap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sidecap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidenotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidenotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sidenotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-silence.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-silence.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-silence.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplecd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplecv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpleinvoice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpleinvoice.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simpleinvoice.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplivre.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplivre.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplivre.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sitem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sitem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sitem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skdoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeldoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeldoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skeldoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeycommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeycommand.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skeycommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skeyval.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skeyval.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skeyval.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skills.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skills.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skills.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skrapport.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skrapport.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skrapport.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-slantsc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-slantsc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-slantsc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smalltableof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smalltableof.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-smalltableof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartunits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartunits.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-smartunits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-smartref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-snapshot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-snapshot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-snapshot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-snotez.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-snotez.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-snotez.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soulpos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soulpos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soulpos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soulutf8.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soulutf8.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soulutf8.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spacingtricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spacingtricks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spacingtricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spark-otf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spark-otf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spark-otf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sparklines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sparklines.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sparklines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sphack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sphack.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sphack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-splitindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spotcolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spotcolor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spotcolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spreadtab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spreadtab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spreadtab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spverbatim.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spverbatim.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spverbatim.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srbook-mem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srbook-mem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-srbook-mem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcltx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srcltx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-srcltx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sseq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sseq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sseq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sslides.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sslides.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sslides.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stackengine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stackengine.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stackengine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-standalone.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-standalone.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-standalone.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdclsdv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdclsdv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stdclsdv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stealcaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stealcaps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stealcaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdpage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdpage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stdpage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-storebox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-storebox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-storebox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-storecmd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-storecmd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-storecmd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringstrings.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringstrings.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stringstrings.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sttools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sttools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sttools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stubs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stubs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stubs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-studenthandouts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-studenthandouts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-studenthandouts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subdepth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subdepth.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subdepth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subdocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subdocs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subdocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subeqn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqnarray.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqnarray.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subeqnarray.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfigmat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfigmat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfigmat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfigure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfigure.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfigure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfiles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfiles.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfiles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substitutefont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substitutefont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-substitutefont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-substr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-supertabular.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-supertabular.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-supertabular.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suppose.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suppose.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-suppose.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svgcolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svgcolor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svgcolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-multi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-multi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svn-multi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-prov.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-prov.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svn-prov.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svninfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svninfo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svninfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swfigure.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swfigure.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-swfigure.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntax.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-syntax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntrace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntrace.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-syntrace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synttree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-synttree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-synttree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabfigures.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabfigures.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabfigures.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tableaux.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tableaux.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tableaux.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablefootnote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablefootnote.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablefootnote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tableof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tableof.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tableof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablestyles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablestyles.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablestyles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablists.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablists.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablists.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabls.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablvar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablvar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablvar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabstackengine.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabstackengine.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabstackengine.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabto-ltx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabto-ltx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabto-ltx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabu.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularborder.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularborder.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabularborder.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularcalc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularcalc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabularcalc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularew.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularew.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabularew.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabulary.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabulary.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabulary.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagging.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagging.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tagging.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagpair.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagpair.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tagpair.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagpdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagpdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tagpdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-talk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-talk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-talk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tamefloats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tamefloats.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tamefloats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tasks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tasks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tasks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tcldoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tcldoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tcldoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tcolorbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tcolorbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tcolorbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tdclock.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tdclock.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tdclock.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-technics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-technics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-technics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ted.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ted.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ted.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templatetools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templatetools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-templatetools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termcal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termlist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testhyphens.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testhyphens.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-testhyphens.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testidx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testidx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-testidx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-label.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-label.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-label.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-locale.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-locale.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-locale.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texmate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texmate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texmate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texments.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texments.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texments.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texpower.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texpower.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texpower.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texshade.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texshade.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texshade.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texvc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texvc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texvc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textfit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textfit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textfit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textmerg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textmerg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textmerg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textpos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textpos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textpos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textualicomma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textualicomma.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textualicomma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-theoremref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-theoremref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-theoremref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thinsp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thinsp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thinsp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmtools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmtools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thmtools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threadcol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threadcol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-threadcol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeparttable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeparttable.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-threeparttable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeparttablex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeparttablex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-threeparttablex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thumb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumbs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumbs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thumbs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumby.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumby.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thumby.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ticket.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ticket.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ticket.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlecaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlecaps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titlecaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlepic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlepic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titlepic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titleref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titleref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titleref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titlesec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titlesec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titlesec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titling.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocbibind.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocbibind.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocbibind.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocdata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocdata.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocdata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocloft.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocloft.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocloft.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocvsec2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocvsec2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocvsec2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-todo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todonotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todonotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-todonotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tokcycle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tokcycle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tokcycle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tokenizer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tokenizer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tokenizer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toolbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toolbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-toolbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-topfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topiclongtable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topiclongtable.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-topiclongtable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totalcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totalcount.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-totalcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totcount.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-totcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totpages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totpages.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-totpages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translations.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translations.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translations.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-transparent.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-transparent.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-transparent.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trfsigns.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trfsigns.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trfsigns.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trimspaces.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trimspaces.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trimspaces.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trivfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trivfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trivfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trsym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trsym.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trsym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-truncate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-truncate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-truncate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tucv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tucv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tucv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turnthepage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turnthepage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turnthepage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twoinone.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twoinone.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-twoinone.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twoup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twoup.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-twoup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txgreeks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txgreeks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-txgreeks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-type1cm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-type1cm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-type1cm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typed-checklist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typed-checklist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typed-checklist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeface.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typeface.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typeface.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typoaid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typoaid.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typoaid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typogrid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typogrid.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typogrid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uassign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uassign.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uassign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uebungsblatt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uebungsblatt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uebungsblatt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umoline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umoline.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umoline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underlin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underlin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-underlin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underoverlap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underoverlap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-underoverlap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-undolabl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-undolabl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-undolabl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitipa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitipa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unitipa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitconv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitconv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unitconv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-units.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-units.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-units.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unravel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unravel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unravel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upmethodology.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upmethodology.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-upmethodology.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upquote.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upquote.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-upquote.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uri.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uri.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uri.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ushort.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ushort.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ushort.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uspace.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utf8add.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utf8add.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-utf8add.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uwmslide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uwmslide.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uwmslide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-variablelm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-variablelm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-variablelm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-varindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varsfromjobname.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varsfromjobname.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-varsfromjobname.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varwidth.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varwidth.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-varwidth.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vcell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vcell.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vcell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vdmlisting.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vdmlisting.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vdmlisting.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbasef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbasef.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verbasef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbatimbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbatimbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verbatimbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbatimcopy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbatimcopy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verbatimcopy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbdef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbdef.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verbdef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verbments.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verbments.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verbments.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifiche.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifiche.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verifiche.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-version.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-version.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-version.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-versions.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-versions.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-versions.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-versonotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-versonotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-versonotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vertbars.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vertbars.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vertbars.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vgrid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vgrid.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vgrid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vhistory.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vhistory.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vhistory.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vmargin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vmargin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vmargin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-volumes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-volumes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-volumes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vpe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vpe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vpe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vruler.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vruler.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vruler.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vtable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vtable.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vtable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vwcol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vwcol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vwcol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wallcalendar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wallcalendar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wallcalendar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wallpaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wallpaper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wallpaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-warning.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-warning.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-warning.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-warpcol.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-warpcol.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-warpcol.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-was.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-was.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-was.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-webquiz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-webquiz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-webquiz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widetable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widetable.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-widetable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widows-and-orphans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widows-and-orphans.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-widows-and-orphans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-williams.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-williams.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-williams.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-willowtreebook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-willowtreebook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-willowtreebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-withargs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-withargs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-withargs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wordcount.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wordcount.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wordcount.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wordlike.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wordlike.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wordlike.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-worksheet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-worksheet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-worksheet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wrapfig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wrapfig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wrapfig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wtref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wtref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wtref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xargs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xargs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xargs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xassoccnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xassoccnt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xassoccnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xbmks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xbmks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xbmks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcntperchap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcntperchap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcntperchap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-material.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-material.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcolor-material.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-solarized.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-solarized.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcolor-solarized.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcomment.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcomment.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcomment.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcookybooky.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcookybooky.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcookybooky.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcpdftips.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcpdftips.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcpdftips.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xdoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xellipsis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xellipsis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xellipsis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xfakebold.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xfakebold.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xfakebold.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xfor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xfor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xfor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xhfill.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xhfill.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xhfill.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xifthen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xifthen.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xifthen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xint.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xkcdcolors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xkcdcolors.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xkcdcolors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xltabular.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xltabular.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xltabular.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmpincl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmpincl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xmpincl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xnewcommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xnewcommand.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xnewcommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xoptarg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xoptarg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xoptarg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpatch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpatch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpatch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpeek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpeek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpeek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xprintlen.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xprintlen.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xprintlen.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpunctuate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpunctuate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpunctuate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xsavebox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xsavebox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xsavebox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xsim.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xsim.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xsim.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xstring.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xstring.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xstring.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xtab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xtab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xtab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xurl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xurl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xurl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xwatermark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xwatermark.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xwatermark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xytree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xytree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xytree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yafoot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yafoot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yafoot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yaletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yaletter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yaletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yagusylo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yagusylo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yagusylo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ycbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ycbook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ycbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ydoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ydoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ydoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yplan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yplan.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yplan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zebra-goodies.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zebra-goodies.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zebra-goodies.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zed-csp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zed-csp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zed-csp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ziffer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ziffer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ziffer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zwgetfdate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zwgetfdate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zwgetfdate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zwpagelayout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zwpagelayout.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zwpagelayout.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ESIEEcv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ESIEEcv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ESIEEcv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-GS1.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-GS1.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-GS1.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-HA-prosper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-HA-prosper.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-HA-prosper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-Tabbing.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-Tabbing.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-Tabbing.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abstract.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abstract.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abstract.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accessibility.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accessibility.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accessibility.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accsupp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accsupp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accsupp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-achemso.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-achemso.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-achemso.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acronym.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acronym.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acronym.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acroterm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acroterm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acroterm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialangle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialangle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-actuarialangle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-actuarialsymbol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-actuarialsymbol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-actuarialsymbol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addlines.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addlines.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-addlines.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjmulticol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjmulticol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adjmulticol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adjustbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adjustbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adjustbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adrconv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adrconv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adrconv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alertmessage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alertmessage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alertmessage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alnumsec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alnumsec.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alnumsec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alphalph.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alphalph.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alphalph.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-altfont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-altfont.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-altfont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amsaddr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amsaddr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amsaddr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-animate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-animate.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-animate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-answers.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-answers.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-answers.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-appendix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-appendix.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-appendix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apptools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apptools.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apptools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arcs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arcs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arcs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraycols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraycols.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arraycols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arraysort.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arraysort.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arraysort.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arydshln.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arydshln.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arydshln.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asciilist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asciilist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asciilist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-askinclude.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-askinclude.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-askinclude.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-atenddvi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-atenddvi.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-atenddvi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-attachfile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autonum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autonum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autonum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autopdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autopdf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autopdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-avremu.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-avremu.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-avremu.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axessibility.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axessibility.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-axessibility.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-background.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-background.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-background.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-basicarith.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-basicarith.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-basicarith.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerappendixnote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerappendixnote.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerappendixnote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamercolorthemeowl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamercolorthemeowl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamercolorthemeowl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamersubframe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamersubframe.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamersubframe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-cuerna.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-cuerna.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-cuerna.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-metropolis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-metropolis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-metropolis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamertheme-saintpetersburg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamertheme-saintpetersburg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamertheme-saintpetersburg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bearwear.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bearwear.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bearwear.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beton.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beton.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beton.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bewerbung.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bewerbung.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bewerbung.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bez123.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bez123.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bez123.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bhcexam.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bhcexam.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bhcexam.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bigfoot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bigfoot.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bigfoot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bithesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bithesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bithesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bizcard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bizcard.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bizcard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blindtext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blindtext.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blindtext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blowup.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blowup.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blowup.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bnumexpr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bnumexpr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bnumexpr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boites.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boites.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boites.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookcover.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookcover.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookcover.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booklet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booklet.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-booklet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bookshelf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bookshelf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bookshelf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boolexpr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boolexpr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boolexpr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bophook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bophook.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bophook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxedminipage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxedminipage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boxedminipage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boxhandler.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boxhandler.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boxhandler.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breakurl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breakurl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-breakurl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bubblesort.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bubblesort.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bubblesort.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bullcntr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bullcntr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bullcntr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calcage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calcage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calcage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculator.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculator.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calculator.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cals.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cals.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cals.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-canoniclayout.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-canoniclayout.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-canoniclayout.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-capt-of.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-capt-of.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-capt-of.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-captcont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-captcont.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-captcont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfile.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catchfile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catchfilebetweentags.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catchfilebetweentags.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catchfilebetweentags.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catechis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catechis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catechis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccaption.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccaption.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccaption.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cclicenses.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cclicenses.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cclicenses.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cd-cover.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cd-cover.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cd-cover.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cdpbundl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cdpbundl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cdpbundl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cellprops.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cellprops.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cellprops.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-centerlastline.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-centerlastline.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-centerlastline.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changebar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changebar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changebar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changepage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changepage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changepage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-changes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-changes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-changes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chappg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chappg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chappg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chapterfolder.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chapterfolder.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chapterfolder.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cheatsheet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cheatsheet.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cheatsheet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chextras.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chextras.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chextras.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-childdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-childdoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-childdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chletter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chletter.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chletter.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circ.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circ.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-circ.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classpack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classpack.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-classpack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clefval.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clefval.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clefval.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cleveref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cleveref.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cleveref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrdblpg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrdblpg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clrdblpg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrstrip.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrstrip.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clrstrip.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmdtrack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmdtrack.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmdtrack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codepage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codepage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codepage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codesection.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codesection.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codesection.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collcell.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collcell.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collcell.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collectbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collectbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collectbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colophon.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colophon.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colophon.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-color-edits.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-color-edits.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-color-edits.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colordoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colordoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colordoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorwav.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorwav.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorwav.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorweb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorweb.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorweb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combine.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combine.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combine.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commado.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commado.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-commado.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commedit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commedit.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-commedit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-competences.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-competences.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-competences.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-constants.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-constants.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-constants.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-continue.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-continue.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-continue.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contour.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contour.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-contour.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-contracard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-contracard.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-contracard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conv-xkv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conv-xkv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-conv-xkv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cooking.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooking-units.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooking-units.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cooking-units.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cool.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cool.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cool.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coollist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coollist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coollist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolstr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolstr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coolstr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coolthms.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coolthms.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coolthms.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cooltooltips.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cooltooltips.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cooltooltips.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coordsys.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coordsys.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coordsys.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-copyedit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-copyedit.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-copyedit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-counttexruns.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-counttexruns.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-counttexruns.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-coverpage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-coverpage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-coverpage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cprotect.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cprotect.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cprotect.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crossreference.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crossreference.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crossreference.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-csvmerge.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-csvmerge.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-csvmerge.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cuisine.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cuisine.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cuisine.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currency.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currency.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-currency.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currfile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currfile.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-currfile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-currvita.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-currvita.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-currvita.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cutwin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cutwin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cutwin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cyber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cyber.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cyber.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cybercic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cybercic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cybercic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dashbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashrule.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashrule.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dashrule.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dashundergaps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dashundergaps.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dashundergaps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datax.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datax.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datax.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datatool.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datatool.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datatool.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dateiliste.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dateiliste.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dateiliste.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datenumber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datenumber.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datenumber.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bahasai.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bahasai.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-bahasai.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-basque.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-basque.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-basque.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-breton.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-breton.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-breton.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-bulgarian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-bulgarian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-bulgarian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-catalan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-catalan.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-catalan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-croatian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-croatian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-croatian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-czech.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-czech.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-czech.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-danish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-danish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-danish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-dutch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-dutch.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-dutch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-en-fulltext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-en-fulltext.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-en-fulltext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-english.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-english.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-english.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-esperanto.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-esperanto.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-esperanto.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-estonian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-estonian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-estonian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-finnish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-finnish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-finnish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-french.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-french.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-french.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-galician.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-galician.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-galician.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-german.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-german.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-german.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-greek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-greek.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-greek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-hebrew.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-hebrew.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-hebrew.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-icelandic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-icelandic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-icelandic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-irish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-irish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-irish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-italian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-italian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-italian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-it-fulltext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-it-fulltext.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-it-fulltext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-latin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-latin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-latin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-lsorbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-lsorbian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-lsorbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-magyar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-magyar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-magyar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-norsk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-norsk.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-norsk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-polish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-polish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-polish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-portuges.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-portuges.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-portuges.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-romanian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-romanian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-romanian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-russian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-russian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-russian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-samin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-samin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-samin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-scottish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-scottish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-scottish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-serbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-serbian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-serbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovak.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovak.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-slovak.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-slovene.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-slovene.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-slovene.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-spanish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-spanish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-spanish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-swedish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-swedish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-swedish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-turkish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-turkish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-turkish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-ukrainian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-ukrainian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-ukrainian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-usorbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-usorbian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-usorbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-datetime2-welsh.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-datetime2-welsh.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-datetime2-welsh.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decimal.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decimal.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-decimal.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decorule.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decorule.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-decorule.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimtxt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimtxt.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-delimtxt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-denisbdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-denisbdoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-denisbdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diagbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dialogl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dialogl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dialogl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dinbrief.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dinbrief.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dinbrief.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtytalk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtytalk.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dirtytalk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dnaseq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dnaseq.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dnaseq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doclicense.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doclicense.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doclicense.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmfp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmfp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docmfp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docmute.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docmute.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docmute.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doctools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doctools.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doctools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-documentation.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-documentation.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-documentation.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotarrow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotarrow.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dotarrow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dotseqn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dotseqn.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dotseqn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-download.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-download.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-download.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dprogress.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dprogress.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dprogress.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drac.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftcopy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftcopy.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-draftcopy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-draftwatermark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-draftwatermark.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-draftwatermark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dtxdescribe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dtxdescribe.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dtxdescribe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duckuments.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duckuments.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-duckuments.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ducksay.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ducksay.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ducksay.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynamicnumber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynamicnumber.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dynamicnumber.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easybook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easybook.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easybook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfig.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfig.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easyfig.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyfloats.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyfloats.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easyfloats.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-easyreview.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-easyreview.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-easyreview.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebezier.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebezier.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebezier.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecclesiastic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecclesiastic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecclesiastic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econlipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econlipsum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-econlipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ed.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ed.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ed.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-edmargin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-edmargin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-edmargin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eemeir.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eemeir.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eemeir.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-efbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-efbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-efbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-egplot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-egplot.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-egplot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipsis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipsis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ellipsis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elmath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elocalloc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elocalloc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elocalloc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elzcards.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elzcards.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elzcards.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emarks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emarks.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emarks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedall.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedall.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-embedall.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-embedfile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-embedfile.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-embedfile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emptypage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emptypage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emptypage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endfloat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endheads.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endheads.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endheads.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endnotes-hy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endnotes-hy.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endnotes-hy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engpron.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engpron.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-engpron.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engrec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engrec.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-engrec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enumitem-zref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enumitem-zref.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enumitem-zref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-environ.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-environ.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-environ.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-envlab.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-envlab.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-envlab.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigraph.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigraph.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epigraph.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epiolmec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epiolmec.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epiolmec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eq-pin2corr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eq-pin2corr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eq-pin2corr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqlist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqlist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqlist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnalign.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnalign.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqnalign.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqparbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqparbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqparbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-errata.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-errata.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-errata.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erw-l3.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erw-l3.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-erw-l3.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esdiff.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esdiff.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esdiff.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esint.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etaremune.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etaremune.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etaremune.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etextools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etextools.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etextools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eukdate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eukdate.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eukdate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyhook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyhook.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everyhook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everypage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everypage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everypage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exam-n.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exam-n.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exam-n.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-examdesign.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-examdesign.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-examdesign.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exframe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exframe.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exframe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercise.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercise.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exercise.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exercises.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exercises.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exercises.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exesheet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exesheet.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exesheet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exp-testopt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exp-testopt.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exp-testopt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expdlist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expdlist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expdlist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-export.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-export.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-export.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exsol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exsol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exsol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extract.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extract.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-extract.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facsimile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facsimile.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-facsimile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-factura.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-factura.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-factura.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancylabel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancylabel.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancylabel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancynum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancynum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancynum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancypar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancypar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancypar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytabs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytabs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancytabs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancytooltips.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancytooltips.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancytooltips.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcolumn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcolumn.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fcolumn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fetchcls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fetchcls.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fetchcls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fewerfloatpages.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fewerfloatpages.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fewerfloatpages.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fgruler.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fgruler.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fgruler.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fibeamer.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fibeamer.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fibeamer.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fifo-stack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fifo-stack.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fifo-stack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontents.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontents.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filecontents.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filecontentsdef.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filecontentsdef.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filecontentsdef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filedate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filedate.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filedate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fileinfo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fileinfo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fileinfo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fink.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fink.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fink.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-finstrut.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-finstrut.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-finstrut.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fithesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fithesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fithesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixcmex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixcmex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixcmex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixme.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixme.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixme.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixmetodonotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixmetodonotes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixmetodonotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flabels.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flabels.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flabels.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flagderiv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flagderiv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flagderiv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flashcards.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flashcards.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flashcards.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flippdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flippdf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flippdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatflt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatflt.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-floatflt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-floatrow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-floatrow.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-floatrow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowfram.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowfram.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flowfram.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fmp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fmtcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fmtcount.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fmtcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnbreak.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnbreak.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnbreak.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnumprint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnumprint.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnumprint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foilhtml.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foilhtml.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-foilhtml.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontaxes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontaxes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontaxes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontsize.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontsize.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontsize.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fonttable.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fonttable.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fonttable.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footmisc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footmisx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footmisx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footmisx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnoterange.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnoterange.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footnoterange.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnpag.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnpag.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footnpag.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forarray.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forarray.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forarray.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-foreign.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-foreign.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-foreign.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forloop.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forloop.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forloop.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forms16be.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forms16be.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forms16be.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-formular.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-formular.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-formular.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-frankenstein.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-frankenstein.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-frankenstein.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-froufrou.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-froufrou.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-froufrou.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftnxtra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftnxtra.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ftnxtra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullblck.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullblck.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fullblck.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fullminipage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fullminipage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fullminipage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-calligra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-calligra.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fundus-calligra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fundus-sueterlin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fundus-sueterlin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fundus-sueterlin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fvextra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fvextra.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fvextra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-g-brief.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-g-brief.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-g-brief.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gatherenum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gatherenum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gatherenum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gcite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gcite.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gcite.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gender.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gender.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gender.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genmpage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genmpage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-genmpage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getitems.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getitems.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-getitems.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ginpenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ginpenc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ginpenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gitfile-info.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gitfile-info.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gitfile-info.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-danish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-danish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-danish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-dutch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-dutch.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-dutch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-english.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-english.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-english.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-estonian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-estonian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-estonian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-extra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-extra.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-extra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-finnish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-finnish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-finnish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-french.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-french.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-french.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-german.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-german.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-german.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-irish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-irish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-irish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-italian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-italian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-italian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-magyar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-magyar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-magyar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-nynorsk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-nynorsk.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-nynorsk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-polish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-polish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-polish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-portuges.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-portuges.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-portuges.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-serbian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-serbian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-serbian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-slovene.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-slovene.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-slovene.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glossaries-spanish.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glossaries-spanish.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glossaries-spanish.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmdoc-enhance.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmdoc-enhance.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmdoc-enhance.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grabbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grabbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grabbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicx-psmin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicx-psmin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphicx-psmin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicxbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicxbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphicxbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphpaper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphpaper.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphpaper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grayhints.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grayhints.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grayhints.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grid.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grid.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grid.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridpapers.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridpapers.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gridpapers.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gridset.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gridset.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gridset.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitlogo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitlogo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guitlogo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-halloweenmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-halloweenmath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-halloweenmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hanging.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hanging.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hanging.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hardwrap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hardwrap.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hardwrap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hhtensor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hhtensor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hhtensor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-histogr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-histogr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-histogr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitreport.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitreport.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hitreport.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hpsdiss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hpsdiss.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hpsdiss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hrefhide.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hrefhide.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hrefhide.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyper.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperbar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperbar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyperbar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyperxmp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyperxmp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyperxmp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyphenat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyphenat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyphenat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-idxlayout.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-idxlayout.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-idxlayout.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iffont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iffont.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iffont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifmtarg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifmtarg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifmtarg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifnextok.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifnextok.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifnextok.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ifoddpage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ifoddpage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ifoddpage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iitem.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iitem.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iitem.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imakeidx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imakeidx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imakeidx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-indextools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-indextools.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-indextools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inlinedef.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inlinedef.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inlinedef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputenx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputenx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inputenx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inputtrc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inputtrc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inputtrc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interfaces.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interfaces.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interfaces.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-intopdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-intopdf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-intopdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inversepath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inversepath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inversepath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-invoice2.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-invoice2.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-invoice2.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iso.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iso10303.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iso10303.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iso10303.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodate.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isodate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isodoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isodoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isodoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isorot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isorot.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isorot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isotope.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isotope.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isotope.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-issuulinks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-issuulinks.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-issuulinks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jvlisting.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jvlisting.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jvlisting.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kalendarium.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kalendarium.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kalendarium.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kantlipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kantlipsum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kantlipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kerntest.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kerntest.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kerntest.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keycommand.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keycommand.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keycommand.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyfloat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyindex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-keyvaltable.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-keyvaltable.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-keyvaltable.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knowledge.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knowledge.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-knowledge.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-komacv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-komacv-rg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-komacv-rg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-komacv-rg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ktv-texdata.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ktv-texdata.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ktv-texdata.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3build.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3build.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3build.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labbook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labbook.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labbook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labels.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labels.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labels.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-labelschanged.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-labelschanged.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-labelschanged.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpackage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpackage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lastpackage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lastpage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lastpage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lastpage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-amsmath-dev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-amsmath-dev.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-amsmath-dev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-base-dev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-base-dev.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-base-dev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-firstaid-dev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-firstaid-dev.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-firstaid-dev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-graphics-dev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-graphics-dev.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-graphics-dev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-tools-dev.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-tools-dev.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-tools-dev.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexcolors.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexcolors.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexcolors.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexdemo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexdemo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexdemo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexgit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexgit.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexgit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-layouts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-layouts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-layouts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lccaps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lccaps.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lccaps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcd.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lcd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lcg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lcg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lcg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leading.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leading.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leading.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leaflet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leaflet.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leaflet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leftidx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leftidx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leftidx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leipzig.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leipzig.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leipzig.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lengthconvert.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lengthconvert.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lengthconvert.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lettrine.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lettrine.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lettrine.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lhelp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lhelp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lhelp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-libgreek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-libgreek.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-libgreek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limap.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-limap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-linegoal.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-linegoal.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-linegoal.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lipsum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lipsum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lipsum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listingsutf8.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listingsutf8.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listingsutf8.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listlbls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listlbls.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listlbls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listliketab.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listliketab.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listliketab.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listofsymbols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listofsymbols.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listofsymbols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lmake.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lmake.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lmake.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-locality.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-locality.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-locality.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logpap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logpap.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logpap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longfigure.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longfigure.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-longfigure.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longnamefilelist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longnamefilelist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-longnamefilelist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstaddons.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstaddons.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lstaddons.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ltxnew.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ltxnew.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ltxnew.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatodonotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatodonotes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatodonotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-macroswap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-macroswap.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-macroswap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-magicnum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-magicnum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-magicnum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailing.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailing.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mailing.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mailmerge.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mailmerge.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mailmerge.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebase.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makebase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makebox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makebox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makebox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecell.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecell.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makecell.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makecmds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makecmds.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makecmds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makedtx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makedtx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makedtx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mandi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mandi.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mandi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manfnt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manfnt.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-manfnt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-manuscript.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-manuscript.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-manuscript.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfit.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marginfit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginfix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginfix.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marginfix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-marginnote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-marginnote.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-marginnote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-markdown.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-markdown.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-markdown.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathastext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathastext.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathastext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathexam.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathexam.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathexam.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfont.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathfont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcaption.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcaption.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcaption.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcite.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcite.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcite.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdframed.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdframed.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mdframed.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-media9.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-media9.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-media9.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-meetingmins.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-meetingmins.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-meetingmins.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memory.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memory.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memory.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menu.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menu.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-menu.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menucard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menucard.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-menucard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-menukeys.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-menukeys.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-menukeys.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metalogox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metastr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metastr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metastr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-method.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-method.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-method.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metre.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metre.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metre.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfirstuc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfirstuc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfirstuc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mftinc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mftinc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mftinc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mi-solns.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mi-solns.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mi-solns.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mindflow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mindflow.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mindflow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minibox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minibox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minibox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minidocument.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minidocument.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minidocument.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minifp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minifp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minifp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minipage-marginpar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minipage-marginpar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minipage-marginpar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minted.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minted.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minted.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-minutes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-minutes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-minutes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mleftright.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mleftright.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mleftright.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mlist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnotes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mnotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moderntimeline.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moderntimeline.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moderntimeline.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modref.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modroman.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modroman.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modroman.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-monofill.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-monofill.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-monofill.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moodle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moodle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moodle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morefloats.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morefloats.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morefloats.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morehype.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morehype.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morehype.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moresize.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moresize.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moresize.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-moreverb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-moreverb.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-moreverb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-morewrites.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-morewrites.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-morewrites.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mparhack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mparhack.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mparhack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpostinl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpostinl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpostinl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-msg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mtgreek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mtgreek.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mtgreek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiaudience.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiaudience.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multiaudience.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multibbl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multibbl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multibbl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicap.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multicap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multicolrule.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multicolrule.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multicolrule.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multidef.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multidef.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multidef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multienv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multienv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multienv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiexpand.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiexpand.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multiexpand.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multilang.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multilang.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multilang.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multirow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multirow.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multirow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mversion.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mversion.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mversion.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mwe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mwe.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mwe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mycv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mycv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mycv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mylatexformat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mylatexformat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mylatexformat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nag.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nag.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nag.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nameauth.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nameauth.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nameauth.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namespc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namespc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-namespc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ncctools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ncctools.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ncctools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-needspace.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-needspace.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-needspace.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfile.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newfile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newlfm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newlfm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newlfm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newspaper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newspaper.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newspaper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newunicodechar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newunicodechar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newunicodechar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newvbtm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newvbtm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newvbtm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newverbs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newverbs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newverbs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicefilelist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicefilelist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nicefilelist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-niceframe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-niceframe.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-niceframe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicetext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicetext.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nicetext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nidanfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nidanfloat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nidanfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-noitcrul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-noitcrul.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-noitcrul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomencl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomencl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nomencl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nomentbl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nomentbl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nomentbl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonfloat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nonfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nonumonpart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nonumonpart.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nonumonpart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-normalcolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-normalcolor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-normalcolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-notespages.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-notespages.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-notespages.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nowidow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nowidow.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nowidow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntheorem.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntheorem.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ntheorem.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numprint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numprint.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numprint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ocgx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ocgx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ocgx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-octavo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-octavo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-octavo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oldstyle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oldstyle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oldstyle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onlyamsmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onlyamsmath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-onlyamsmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opcit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opcit.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-opcit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-orcidlink.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-orcidlink.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-orcidlink.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outlining.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outlining.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-outlining.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-overpic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-overpic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-overpic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-padcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-padcount.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-padcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecolor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagecolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagecont.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagecont.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagecont.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pagenote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pagenote.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pagenote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pageslts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pageslts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pageslts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paper.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papercdcase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papercdcase.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-papercdcase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papermas.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papermas.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-papermas.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-papertex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-papertex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-papertex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paracol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paracol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paracol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paralist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paralist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paralist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-paresse.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-paresse.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-paresse.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parselines.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parselines.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parselines.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patch.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-patch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-patchcmd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-patchcmd.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-patchcmd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pauldoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pauldoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pauldoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pawpict.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pawpict.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pawpict.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbalance.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbalance.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pbalance.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pbsheet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pbsheet.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pbsheet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdf14.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdf14.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdf14.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfcprot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfcprot.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfcprot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfoverlay.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfoverlay.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfoverlay.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpc-movie.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpc-movie.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfpc-movie.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfprivacy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfprivacy.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfprivacy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perltex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perltex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-perltex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-permute.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-permute.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-permute.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phffullpagefigure.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phffullpagefigure.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phffullpagefigure.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfnote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfnote.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfnote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfparen.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfparen.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfparen.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfqit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfqit.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfqit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfquotetext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfquotetext.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfquotetext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfsvnwatermark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfsvnwatermark.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfsvnwatermark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-phfthm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-phfthm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-phfthm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-photo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-photo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-photo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-picture.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-picture.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-picture.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plweb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plweb.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plweb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmboxdraw.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmboxdraw.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pmboxdraw.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynom.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynom.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polynom.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polynomial.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polynomial.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polynomial.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polytable.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polytable.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polytable.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-powerdot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ppr-prv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ppr-prv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ppr-prv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prelim2e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prelim2e.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prelim2e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preprint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preprint.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-preprint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pressrelease.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pressrelease.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pressrelease.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prettyref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prettyref.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prettyref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-preview.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-preview.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-preview.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-probsoln.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-probsoln.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-probsoln.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proofread.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proofread.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proofread.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-protocol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-protocol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-protocol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfragx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfragx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psfragx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxgreeks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxgreeks.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxgreeks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qcm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qcm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qcm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qstest.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qstest.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qstest.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsymbols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsymbols.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qsymbols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotchap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotchap.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quotchap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quoting.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quoting.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quoting.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quotmark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quotmark.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quotmark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ran_toks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ran_toks.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ran_toks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rccol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rccol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rccol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs-multi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs-multi.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rcs-multi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcsinfo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcsinfo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rcsinfo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realboxes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realboxes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realboxes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-recipecard.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-recipecard.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-recipecard.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reflectgraphics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reflectgraphics.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-reflectgraphics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refman.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refman.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refman.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-refstyle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-refstyle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-refstyle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regcount.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-regcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regexpatch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regexpatch.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-regexpatch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-register.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-register.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-register.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-regstats.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-regstats.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-regstats.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-relenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-relenc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-relenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repltext.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repltext.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-repltext.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rgltxdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rgltxdoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rgltxdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rjlparshap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rjlparshap.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rjlparshap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-robustcommand.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-robustcommand.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-robustcommand.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romanbar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romanbarpagenumber.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romanbarpagenumber.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romanbarpagenumber.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-romannum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-romannum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-romannum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rotfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rotfloat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rotfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rtkinenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rtkinenc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rtkinenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rulercompass.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rulercompass.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rulercompass.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sauerj.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sauerj.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sauerj.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savefnmark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savefnmark.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-savefnmark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-savetrees.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-savetrees.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-savetrees.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scale.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scale.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scale.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scalebar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scalebar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scalebar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schedule.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schedule.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schedule.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schooldocs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schooldocs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schooldocs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scontents.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scontents.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scontents.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrlayer-fancyhdr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrlayer-fancyhdr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scrlayer-fancyhdr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sdaps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sdaps.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sdaps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-secnum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-secnum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-secnum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sectsty.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sectsty.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sectsty.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seealso.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seealso.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seealso.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selinput.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selinput.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-selinput.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semantic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semantic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semantic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semesterplanner.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semesterplanner.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semesterplanner.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semioneside.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semioneside.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semioneside.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-semproc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-semproc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-semproc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seqsplit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seqsplit.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seqsplit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesstime.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesstime.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sesstime.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sf298.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sf298.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sf298.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sffms.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sffms.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sffms.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shdoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shorttoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shorttoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shorttoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-show2e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-show2e.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-show2e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showcharinbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showcharinbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showcharinbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showexpl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showexpl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showexpl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-showlabels.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-showlabels.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-showlabels.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidecap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidecap.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sidecap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sidenotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sidenotes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sidenotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-silence.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-silence.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-silence.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecd.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplecd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplecv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplecv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplecv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sitem.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sitem.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sitem.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skb.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skdoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skrapport.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skrapport.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skrapport.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-slantsc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-slantsc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-slantsc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-snapshot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-snapshot.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-snapshot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soulutf8.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soulutf8.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soulutf8.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spacingtricks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spacingtricks.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spacingtricks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splitindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splitindex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-splitindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spot.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spverbatim.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spverbatim.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spverbatim.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srcltx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srcltx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-srcltx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sseq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sseq.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sseq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stack.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-standalone.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-standalone.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-standalone.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdclsdv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdclsdv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stdclsdv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stealcaps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stealcaps.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stealcaps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stdpage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stdpage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stdpage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-storebox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-storebox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-storebox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stringstrings.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stringstrings.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stringstrings.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sttools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sttools.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sttools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subdepth.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subdepth.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subdepth.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqn.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subeqn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subeqnarray.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subeqnarray.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subeqnarray.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfigure.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfigure.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfigure.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfiles.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfiles.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfiles.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfloat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-supertabular.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-supertabular.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-supertabular.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-multi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-multi.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svn-multi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svn-prov.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svn-prov.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svn-prov.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-svninfo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-svninfo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-svninfo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swfigure.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swfigure.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-swfigure.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntrace.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntrace.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-syntrace.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synttree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-synttree.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-synttree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabfigures.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabfigures.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabfigures.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablefootnote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablefootnote.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablefootnote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tableof.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tableof.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tableof.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablestyles.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablestyles.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablestyles.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablists.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablists.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablists.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablvar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablvar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablvar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabu.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabu.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabu.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularborder.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularborder.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabularborder.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabularew.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabularew.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabularew.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabulary.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabulary.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabulary.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tagpdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tagpdf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tagpdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-talk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-talk.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-talk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tcldoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tcldoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tcldoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ted.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ted.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ted.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-templatetools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-templatetools.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-templatetools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termcal.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termcal.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termcal.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termlist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termlist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termlist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testhyphens.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testhyphens.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-testhyphens.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-testidx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-testidx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-testidx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-label.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-label.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-label.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-locale.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-locale.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-locale.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texmate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texmate.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texmate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texments.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texments.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texments.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texpower.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texpower.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texpower.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texshade.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texshade.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texshade.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texvc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texvc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texvc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textfit.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textfit.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textfit.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textmerg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textmerg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textmerg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textpos.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textpos.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textpos.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textualicomma.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textualicomma.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textualicomma.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmtools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmtools.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thmtools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threadcol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threadcol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-threadcol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumb.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thumb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumbs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumbs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thumbs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-titling.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-titling.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-titling.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocbibind.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocbibind.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocbibind.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocdata.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocdata.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocdata.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocloft.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocloft.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocloft.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tocvsec2.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tocvsec2.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tocvsec2.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-todo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-todonotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-todonotes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-todonotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toolbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toolbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-toolbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totalcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totalcount.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-totalcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totcount.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totcount.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-totcount.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-totpages.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-totpages.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-totpages.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-transparent.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-transparent.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-transparent.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trfsigns.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trfsigns.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trfsigns.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trimspaces.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trimspaces.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trimspaces.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trivfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trivfloat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trivfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trsym.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trsym.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trsym.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tucv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tucv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tucv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-twoup.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-twoup.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-twoup.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-txgreeks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-txgreeks.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-txgreeks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-type1cm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-type1cm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-type1cm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typed-checklist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typed-checklist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typed-checklist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typeface.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typeface.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typeface.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typogrid.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typogrid.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typogrid.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umoline.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umoline.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umoline.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underlin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underlin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-underlin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-undolabl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-undolabl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-undolabl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitipa.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitipa.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unitipa.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-units.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-units.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-units.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unravel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unravel.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unravel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upquote.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upquote.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-upquote.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uri.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uri.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uri.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ushort.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ushort.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ushort.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varindex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-varindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-verifiche.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-verifiche.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-verifiche.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-versonotes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-versonotes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-versonotes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vgrid.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vgrid.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vgrid.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vmargin.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vmargin.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vmargin.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-volumes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-volumes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-volumes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vwcol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vwcol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vwcol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-warpcol.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-warpcol.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-warpcol.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-was.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-was.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-was.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widetable.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widetable.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-widetable.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-widows-and-orphans.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-widows-and-orphans.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-widows-and-orphans.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wordlike.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wordlike.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wordlike.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xargs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xargs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xargs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xbmks.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xbmks.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xbmks.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-material.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-material.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcolor-material.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-solarized.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-solarized.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcolor-solarized.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcookybooky.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcookybooky.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcookybooky.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcpdftips.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcpdftips.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcpdftips.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xdoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xellipsis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xellipsis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xellipsis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xfor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xfor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xfor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xint.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmpincl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmpincl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xmpincl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpatch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpatch.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpatch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpeek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpeek.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpeek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpunctuate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpunctuate.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpunctuate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xsavebox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xsavebox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xsavebox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xtab.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xtab.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xtab.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yafoot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yafoot.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yafoot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yaletter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yaletter.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yaletter.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yagusylo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yagusylo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yagusylo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ydoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ydoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ydoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zebra-goodies.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zebra-goodies.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zebra-goodies.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zref.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zref.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=f5e33e2a54a694e4998be65b9ebca4ff diff --git a/metadata/md5-cache/dev-texlive/texlive-latexrecommended-2021 b/metadata/md5-cache/dev-texlive/texlive-latexrecommended-2021 index caee4b8291ba..80558e4e6cd2 100644 --- a/metadata/md5-cache/dev-texlive/texlive-latexrecommended-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-latexrecommended-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-latex-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anysize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anysize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breqn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breqn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-caption-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-caption-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eso-pic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eso-pic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euler-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euler-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoolbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoolbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everysel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everysel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyshi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyshi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extsizes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extsizes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancybox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancybox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyvrb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyvrb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filehook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filehook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-float-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-float-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontspec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontspec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnotehyper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnotehyper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grffile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grffile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hologo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hologo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-index-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-index-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-infwarerr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-infwarerr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jknapltx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jknapltx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-script-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-script-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexbug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexbug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3experimental-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3experimental-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lineno-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lineno-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listings-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lwarp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lwarp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathspec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathspec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathtools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathtools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdwtools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdwtools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memoir-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memoir-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-microtype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-microtype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ms-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ms-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntgclass-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntgclass-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parskip-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parskip-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflscape-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdflscape-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfmanagement-testphase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfmanagement-testphase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftexcmds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftexcmds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polyglossia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polyglossia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfrag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfrag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ragged2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ragged2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-section-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-section-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seminar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seminar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sepnum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sepnum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-setspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-setspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textcase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textcase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumbpdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumbpdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translator-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translator-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typehtml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typehtml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucharcat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucharcat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underscore-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underscore-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xkeyval-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xkeyval-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xltxtra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xltxtra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xunicode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xunicode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-latexrecommended-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-latexrecommended-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anysize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anysize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breqn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breqn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-caption.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-caption.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eso-pic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eso-pic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euler.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euler.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoolbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoolbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everysel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everysel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyshi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyshi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extsizes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extsizes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancybox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancybox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyvrb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyvrb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filehook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filehook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-float.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-float.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontspec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontspec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnotehyper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnotehyper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grffile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grffile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hologo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hologo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-index.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-index.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-infwarerr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-infwarerr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jknapltx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jknapltx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexbug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexbug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3experimental.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3experimental.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lineno.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lineno.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listings.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lwarp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lwarp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathspec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathspec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathtools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathtools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdwtools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdwtools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memoir.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memoir.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-microtype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-microtype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ms.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ms.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntgclass.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntgclass.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parskip.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parskip.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflscape.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdflscape.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfmanagement-testphase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfmanagement-testphase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftexcmds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftexcmds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polyglossia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polyglossia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfrag.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfrag.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ragged2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ragged2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-section.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-section.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seminar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seminar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sepnum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sepnum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-setspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-setspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textcase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textcase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumbpdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumbpdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translator.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translator.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typehtml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typehtml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucharcat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucharcat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underscore.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underscore.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xkeyval.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xkeyval.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xltxtra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xltxtra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xunicode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xunicode.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile2.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile2.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breqn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breqn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-caption.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-caption.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crop.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crop.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctable.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctable.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eso-pic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eso-pic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euler.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euler.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everysel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everysel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyshi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyshi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filehook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filehook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-float.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-float.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontspec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontspec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnotehyper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnotehyper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grffile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grffile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hologo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hologo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-index.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-index.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-infwarerr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-infwarerr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexbug.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexbug.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3experimental.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3experimental.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lineno.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lineno.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listings.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lwarp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lwarp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathtools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathtools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdwtools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdwtools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memoir.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memoir.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-microtype.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-microtype.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ms.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ms.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntgclass.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntgclass.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parskip.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parskip.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflscape.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdflscape.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfmanagement-testphase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfmanagement-testphase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpages.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpages.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftexcmds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftexcmds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polyglossia.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polyglossia.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfrag.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfrag.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ragged2e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ragged2e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfig.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfig.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textcase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textcase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typehtml.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typehtml.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucharcat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucharcat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-math.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-math.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xkeyval.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xkeyval.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xltxtra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xltxtra.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anysize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anysize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anysize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-attachfile2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-booktabs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breqn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breqn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-breqn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-caption-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-caption-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-caption-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crop-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eso-pic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eso-pic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eso-pic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euenc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euler-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euler-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euler-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoolbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoolbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etoolbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everysel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everysel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everysel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyshi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyshi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everyshi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extsizes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extsizes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-extsizes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancybox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancybox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancybox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyref-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyref-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyref-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyvrb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyvrb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyvrb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filehook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filehook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filehook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-float-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-float-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-float-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontspec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontspec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontspec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnotehyper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnotehyper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footnotehyper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grffile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grffile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grffile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hologo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hologo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hologo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-index-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-index-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-index-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-infwarerr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-infwarerr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-infwarerr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jknapltx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jknapltx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jknapltx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-koma-script-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-koma-script-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-koma-script-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexbug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexbug-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexbug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3experimental-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3experimental-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3experimental-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lineno-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lineno-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lineno-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listings-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listings-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lwarp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lwarp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lwarp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathspec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathspec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathspec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathtools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathtools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathtools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdwtools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdwtools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mdwtools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memoir-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memoir-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memoir-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metalogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-microtype-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-microtype-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-microtype-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ms-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ms-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ms-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntgclass-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntgclass-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ntgclass-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parskip-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parskip-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parskip-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflscape-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdflscape-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdflscape-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfmanagement-testphase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfmanagement-testphase-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfmanagement-testphase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpages-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfpages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftexcmds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftexcmds-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdftexcmds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polyglossia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polyglossia-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polyglossia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfrag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfrag-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psfrag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ragged2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ragged2e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ragged2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rcs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sansmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-section-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-section-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-section-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seminar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seminar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seminar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sepnum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sepnum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sepnum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-setspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-setspace-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-setspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textcase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textcase-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textcase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumbpdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumbpdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thumbpdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translator-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translator-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translator-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typehtml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typehtml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typehtml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucharcat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucharcat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucharcat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underscore-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underscore-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-underscore-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-math-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unicode-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xkeyval-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xkeyval-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xkeyval-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xltxtra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xltxtra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xltxtra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xunicode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xunicode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xunicode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-latexrecommended-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-latexrecommended-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-latexrecommended-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anysize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anysize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anysize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-attachfile2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-booktabs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breqn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breqn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-breqn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-caption.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-caption.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-caption.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crop.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctable.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eso-pic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eso-pic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eso-pic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euenc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euler.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euler.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euler.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etoolbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etoolbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etoolbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everysel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everysel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everysel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyshi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyshi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everyshi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extsizes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extsizes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-extsizes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancybox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancybox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancybox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyref.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyref.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyref.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyvrb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyvrb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyvrb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filehook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filehook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filehook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-float.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-float.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-float.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontspec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontspec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontspec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnotehyper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnotehyper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footnotehyper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grffile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grffile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grffile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hologo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hologo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hologo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-index.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-index.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-index.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-infwarerr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-infwarerr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-infwarerr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jknapltx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jknapltx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jknapltx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexbug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexbug.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexbug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3experimental.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3experimental.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3experimental.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lineno.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lineno.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lineno.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listings.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listings.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lwarp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lwarp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lwarp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathspec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathspec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathspec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathtools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathtools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathtools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdwtools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdwtools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mdwtools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memoir.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memoir.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memoir.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metalogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-microtype.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-microtype.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-microtype.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ms.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ms.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ms.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntgclass.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntgclass.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ntgclass.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parskip.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parskip.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parskip.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflscape.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdflscape.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdflscape.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfmanagement-testphase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfmanagement-testphase.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfmanagement-testphase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpages.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfpages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftexcmds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftexcmds.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdftexcmds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polyglossia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polyglossia.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polyglossia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfrag.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfrag.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psfrag.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ragged2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ragged2e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ragged2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rcs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sansmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sansmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sansmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-section.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-section.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-section.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seminar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seminar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seminar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sepnum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sepnum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sepnum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-setspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-setspace.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-setspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textcase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textcase.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textcase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thumbpdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thumbpdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thumbpdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-translator.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-translator.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-translator.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typehtml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typehtml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typehtml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucharcat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucharcat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucharcat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-underscore.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-underscore.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-underscore.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-math.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unicode-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xkeyval.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xkeyval.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xkeyval.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xltxtra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xltxtra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xltxtra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xunicode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xunicode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xunicode.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-attachfile2.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-attachfile2.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-attachfile2.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-booktabs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-booktabs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-booktabs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-breqn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-breqn.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-breqn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-caption.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-caption.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-caption.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-crop.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-crop.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-crop.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctable.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctable.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctable.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eso-pic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eso-pic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eso-pic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euenc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euler.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euler.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euler.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everysel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everysel.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everysel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-everyshi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-everyshi.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-everyshi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fancyref.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fancyref.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fancyref.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-filehook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-filehook.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-filehook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-float.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-float.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-float.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontspec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontspec.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontspec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-footnotehyper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-footnotehyper.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-footnotehyper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grffile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grffile.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grffile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hologo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hologo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hologo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-index.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-index.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-index.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-infwarerr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-infwarerr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-infwarerr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexbug.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexbug.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexbug.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-l3experimental.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-l3experimental.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-l3experimental.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lineno.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lineno.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lineno.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listings.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listings.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listings.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lwarp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lwarp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lwarp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathtools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathtools.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathtools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mdwtools.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mdwtools.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mdwtools.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memoir.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memoir.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memoir.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metalogo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metalogo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metalogo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-microtype.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-microtype.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-microtype.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ms.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ms.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ms.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newfloat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newfloat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newfloat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ntgclass.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ntgclass.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ntgclass.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-parskip.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-parskip.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-parskip.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdflscape.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdflscape.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdflscape.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfmanagement-testphase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfmanagement-testphase.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfmanagement-testphase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfpages.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfpages.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfpages.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftexcmds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftexcmds.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdftexcmds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polyglossia.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polyglossia.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polyglossia.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psfrag.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psfrag.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psfrag.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ragged2e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ragged2e.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ragged2e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rcs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rcs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rcs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subfig.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subfig.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subfig.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textcase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textcase.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textcase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typehtml.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typehtml.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typehtml.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucharcat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucharcat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucharcat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-math.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-math.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unicode-math.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xcolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xcolor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xcolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xkeyval.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xkeyval.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xkeyval.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xltxtra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xltxtra.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xltxtra.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=15c4bedb27575371543054befd015b92 diff --git a/metadata/md5-cache/dev-texlive/texlive-luatex-2021 b/metadata/md5-cache/dev-texlive/texlive-luatex-2021 index 0ac03c358f1d..51ea492d34e1 100644 --- a/metadata/md5-cache/dev-texlive/texlive-luatex-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-luatex-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x8 LICENSE=BSD FDL-1.1 GPL-2 GPL-3+ LPPL-1.3 LPPL-1.3c MIT public-domain TeX-other-free RDEPEND=!~dev-texlive/texlive-latexextra-2020 >=dev-texlive/texlive-basic-2021 dev-texlive/texlive-latexrecommended >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-luatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-luatex-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-luatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-luatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-luatex-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeat.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=dd1b6e6a64eb2ac3685f04b0b64802a4 diff --git a/metadata/md5-cache/dev-texlive/texlive-luatex-2021-r1 b/metadata/md5-cache/dev-texlive/texlive-luatex-2021-r1 index 85ef4c812103..039ea5680c85 100644 --- a/metadata/md5-cache/dev-texlive/texlive-luatex-2021-r1 +++ b/metadata/md5-cache/dev-texlive/texlive-luatex-2021-r1 @@ -10,6 +10,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~s LICENSE=BSD FDL-1.1 GPL-2 GPL-3+ LPPL-1.3 LPPL-1.3c MIT public-domain TeX-other-free RDEPEND=!~dev-texlive/texlive-latexextra-2020 >=dev-texlive/texlive-basic-2021 dev-texlive/texlive-latexrecommended dev-texlive/texlive-fontsrecommended >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-luatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-luatex-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-luatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-luatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-luatex-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeat.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=7ea6f47100e88fffd2529a486d23c030 diff --git a/metadata/md5-cache/dev-texlive/texlive-luatex-2021-r2 b/metadata/md5-cache/dev-texlive/texlive-luatex-2021-r2 index 656668f8c182..10fb1769033c 100644 --- a/metadata/md5-cache/dev-texlive/texlive-luatex-2021-r2 +++ b/metadata/md5-cache/dev-texlive/texlive-luatex-2021-r2 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=BSD FDL-1.1 GPL-2 GPL-3+ LPPL-1.3 LPPL-1.3c MIT public-domain TeX-other-free RDEPEND=!~dev-texlive/texlive-latexextra-2020 >=dev-texlive/texlive-basic-2021 dev-texlive/texlive-latexrecommended dev-texlive/texlive-fontsrecommended >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-luatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-luatex-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 prefix eab3c99d77fe00506c109c8a736186f7 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-addliga-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auto-pst-pdf-lua-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-barracuda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bezierplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-checkcites-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chickenize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chinese-jfm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cloze-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combofont-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cstypo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctablestack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekdosis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emoji-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emojicite-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enigma-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-innerscript-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interpreter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kanaparser-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-typo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uca-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uni-algos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-ul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-visual-debug-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luahyphenrules-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaimageembed-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luainputenc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaintro-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luakeys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-truncate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualibs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luamplib-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaotfload-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luapackageloader-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaprogtable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luarandom-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatex85-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexbase-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatextra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luavlna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaxml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newpax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nodetree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-odsfile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-optex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plantuml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-selnolig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spelling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stricttex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typewriter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uninormalize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-luatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-luatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-luatex-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-addliga.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auto-pst-pdf-lua.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-barracuda.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bezierplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-checkcites.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chickenize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chinese-jfm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cloze.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combofont.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cstypo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctablestack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekdosis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emoji.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emojicite.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-enigma.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-innerscript.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interpreter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kanaparser.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-typo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uca.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-uni-algos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-ul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-visual-debug.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luahyphenrules.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaimageembed.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luainputenc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaintro.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luakeys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-truncate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualibs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luamplib.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaotfload.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luapackageloader.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaprogtable.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luarandom.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatex85.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexbase.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatextra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luavlna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaxml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newpax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nodetree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-odsfile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-optex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdfarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plantuml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-selnolig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spelling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stricttex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-typewriter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uninormalize.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chickenize.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cloze.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ctablestack.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekdosis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-innerscript.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-typo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lua-ul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luacolor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaindex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luainputenc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-doc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-math.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualatex-truncate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lualibs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luamplib.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luaotfload.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatex85.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatexbase.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luatextra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newpax.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nodetree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeat.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 prefix eab3c99d77fe00506c109c8a736186f7 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=dcbe7b684d3db038e72e248ed29cb98b diff --git a/metadata/md5-cache/dev-texlive/texlive-mathscience-2021 b/metadata/md5-cache/dev-texlive/texlive-mathscience-2021 index d07dc28c5cdc..bff10ecd0a1b 100644 --- a/metadata/md5-cache/dev-texlive/texlive-mathscience-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-mathscience-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=Apache-2.0 BSD BSD-2 GPL-2 CC-BY-4.0 RDEPEND=>=dev-texlive/texlive-fontsrecommended-2021 >=dev-texlive/texlive-latex-2021 dev-texlive/texlive-pstricks >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-12many-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-12many-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIstyle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIstyle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIunits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIunits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accents-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accents-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algobox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algobox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithm2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithm2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithmicx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithmicx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithms-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithms-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algpseudocodex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algpseudocodex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algxpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algxpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aligned-overset-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aligned-overset-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscdx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscdx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amstex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amstex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apxproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apxproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autobreak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autobreak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axodraw2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axodraw2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-backnaur-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-backnaur-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-begriff-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-begriff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binomexp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binomexp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biocon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biocon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitpattern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitpattern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bohr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bohr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boldtensors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boldtensors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bosisio-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bosisio-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bpchem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bpchem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bropd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bropd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bussproofs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bussproofs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bussproofs-extra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bussproofs-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bytefield-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bytefield-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascade-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascade-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-causets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-causets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccool-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccool-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemarrow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemarrow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemcompounds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemcompounds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemcono-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemcono-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemexec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemexec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemformula-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemformula-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemmacros-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemmacros-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemnum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemnum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemplants-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemplants-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemschemex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemschemex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemsec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemsec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemstyle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemstyle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrscode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrscode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrscode3e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrscode3e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codeanatomy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codeanatomy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commutative-diagrams-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commutative-diagrams-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-complexity-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-complexity-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-computational-complexity-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-computational-complexity-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concrete-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concrete-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conteq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conteq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-correctmathalign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-correctmathalign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cryptocode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cryptocode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decision-table-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decision-table-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delim-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delim-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimseasy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimseasy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimset-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimset-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-derivative-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-derivative-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diffcoeff-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diffcoeff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-digiconfigs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-digiconfigs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dijkstra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dijkstra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drawmatrix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drawmatrix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drawstack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drawstack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dyntree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dyntree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econometrics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econometrics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endiagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endiagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engtlc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engtlc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqexpl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqexpl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnarray-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnarray-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnnumwarn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnnumwarn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euclideangeometry-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euclideangeometry-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extarrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extarrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extpfeil-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extpfeil-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-faktor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-faktor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fascicules-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fascicules-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnspe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnspe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fouridx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fouridx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-functan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-functan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-galois-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-galois-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gastex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gastex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gene-logic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gene-logic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ghsystem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ghsystem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glosmathtools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glosmathtools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gotoh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gotoh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grundgesetze-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grundgesetze-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-helmholtz-ellis-ji-notation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-helmholtz-ellis-ji-notation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hep-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hep-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepnames-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepnames-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepparticles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepparticles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepunits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepunits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-includernw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-includernw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interval-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interval-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ionumbers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ionumbers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isomath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isomath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jkmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jkmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jupynotex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jupynotex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaugh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaugh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaugh-map-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaugh-map-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaughmap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaughmap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvmap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvmap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letterswitharrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letterswitharrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lie-hasse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lie-hasse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logicproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logicproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longdivision-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longdivision-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lpform-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lpform-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lplfitch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lplfitch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstbayes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstbayes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcomp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcomp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfixs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfixs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathlig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathlig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpartir-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpartir-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpunctspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpunctspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matrix-skeleton-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matrix-skeleton-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matlab-prettifier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matlab-prettifier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mattens-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mattens-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-membranecomputing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-membranecomputing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memorygraphs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memorygraphs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mgltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mgltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mhchem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mhchem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mhequ-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mhequ-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miller-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miller-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mismath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mismath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiobjective-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiobjective-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-natded-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-natded-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicematrix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicematrix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nuc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nuc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nucleardata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nucleardata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numerica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numerica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-objectz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-objectz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oplotsymbl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oplotsymbl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ot-tableau-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ot-tableau-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oubraces-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oubraces-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perfectcut-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perfectcut-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physconst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physconst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physunits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physunits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pinoutikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pinoutikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pm-isomath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pm-isomath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polexpr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polexpr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prftree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prftree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-principia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-principia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proba-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proba-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proof-at-the-end-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proof-at-the-end-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prooftrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prooftrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pseudo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pseudo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pseudocode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pseudocode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pythonhighlight-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pythonhighlight-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsharp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsharp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rank-2-roots-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rank-2-roots-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rec-thy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rec-thy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rest-api-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rest-api-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revquantum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revquantum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ribbonproofs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ribbonproofs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rmathbr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rmathbr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sankey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sankey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sasnrdisplay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sasnrdisplay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sciposter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sciposter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sclang-prettifier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sclang-prettifier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratchx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratchx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesamanuel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesamanuel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sfg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sfg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shuffle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shuffle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplebnf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplebnf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpler-wick-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpler-wick-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplewick-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplewick-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-siunitx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-siunitx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spalign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spalign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stanli-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stanli-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statex2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statex2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistik-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistik-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-steinmetz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-steinmetz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stmaryrd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stmaryrd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-structmech-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-structmech-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-struktex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-struktex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substances-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substances-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subsupscripts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subsupscripts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subtext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subtext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-susy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-susy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syllogism-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syllogism-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sympytexpackage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sympytexpackage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-synproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t-angles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t-angles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tensind-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tensind-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tensor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tensor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ewd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ewd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textopo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textopo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turnstile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turnstile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulqda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulqda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitsdef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitsdef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-witharrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-witharrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xymtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xymtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yhmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yhmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-youngtab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-youngtab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yquant-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yquant-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ytableau-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ytableau-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-mathscience-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-mathscience-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-12many.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-12many.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIstyle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIstyle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIunits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIunits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accents.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accents.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algobox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algobox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithm2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithm2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithmicx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithmicx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithms.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithms.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algpseudocodex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algpseudocodex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algxpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algxpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aligned-overset.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aligned-overset.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscdx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscdx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amstex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amstex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apxproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apxproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autobreak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autobreak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axodraw2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axodraw2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-backnaur.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-backnaur.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-begriff.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-begriff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binomexp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binomexp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biocon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biocon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitpattern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitpattern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bohr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bohr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boldtensors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boldtensors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bosisio.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bosisio.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bpchem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bpchem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bropd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bropd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bussproofs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bussproofs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bussproofs-extra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bussproofs-extra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bytefield.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bytefield.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascade.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascade.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-causets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-causets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccool.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccool.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemarrow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemarrow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemcompounds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemcompounds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemcono.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemcono.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemexec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemexec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemformula.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemformula.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemmacros.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemmacros.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemnum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemnum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemplants.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemplants.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemschemex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemschemex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemsec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemsec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemstyle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemstyle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrscode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrscode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrscode3e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrscode3e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codeanatomy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codeanatomy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commutative-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commutative-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-complexity.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-complexity.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-computational-complexity.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-computational-complexity.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concrete.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concrete.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conteq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conteq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-correctmathalign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-correctmathalign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cryptocode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cryptocode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decision-table.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decision-table.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delim.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delim.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimseasy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimseasy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimset.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimset.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-derivative.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-derivative.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diffcoeff.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diffcoeff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-digiconfigs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-digiconfigs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dijkstra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dijkstra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drawmatrix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drawmatrix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drawstack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drawstack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dyntree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dyntree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econometrics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econometrics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endiagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endiagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engtlc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engtlc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqexpl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqexpl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnarray.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnarray.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnnumwarn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnnumwarn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euclideangeometry.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euclideangeometry.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extarrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extarrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extpfeil.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extpfeil.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-faktor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-faktor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fascicules.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fascicules.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnspe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnspe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fouridx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fouridx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-functan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-functan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-galois.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-galois.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gastex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gastex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gene-logic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gene-logic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ghsystem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ghsystem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glosmathtools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glosmathtools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gotoh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gotoh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grundgesetze.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grundgesetze.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-helmholtz-ellis-ji-notation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-helmholtz-ellis-ji-notation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hep.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hep.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepnames.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepnames.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepparticles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepparticles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepunits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepunits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-includernw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-includernw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interval.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interval.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ionumbers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ionumbers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isomath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isomath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jkmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jkmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jupynotex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jupynotex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaugh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaugh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaugh-map.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaugh-map.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaughmap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaughmap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvmap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvmap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letterswitharrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letterswitharrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lie-hasse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lie-hasse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logicproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logicproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longdivision.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longdivision.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lpform.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lpform.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lplfitch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lplfitch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstbayes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstbayes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcomp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcomp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfixs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfixs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpartir.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpartir.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpunctspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpunctspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matrix-skeleton.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matrix-skeleton.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matlab-prettifier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matlab-prettifier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mattens.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mattens.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-membranecomputing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-membranecomputing.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memorygraphs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memorygraphs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mgltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mgltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mhchem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mhchem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mhequ.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mhequ.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miller.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miller.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mismath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mismath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiobjective.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiobjective.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-natded.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-natded.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicematrix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicematrix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nuc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nuc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nucleardata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nucleardata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numerica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numerica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-objectz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-objectz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oplotsymbl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oplotsymbl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ot-tableau.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ot-tableau.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oubraces.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oubraces.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perfectcut.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perfectcut.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physconst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physconst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physunits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physunits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pinoutikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pinoutikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pm-isomath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pm-isomath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polexpr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polexpr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prftree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prftree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-principia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-principia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proba.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proba.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proof-at-the-end.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proof-at-the-end.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prooftrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prooftrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pseudo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pseudo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pseudocode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pseudocode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pythonhighlight.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pythonhighlight.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsharp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsharp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rank-2-roots.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rank-2-roots.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rec-thy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rec-thy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rest-api.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rest-api.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revquantum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revquantum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ribbonproofs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ribbonproofs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rmathbr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rmathbr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sankey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sankey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sasnrdisplay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sasnrdisplay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sciposter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sciposter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sclang-prettifier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sclang-prettifier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratchx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratchx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesamanuel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesamanuel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sfg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sfg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shuffle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shuffle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplebnf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplebnf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpler-wick.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpler-wick.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplewick.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplewick.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-siunitx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-siunitx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spalign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spalign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stanli.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stanli.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statex2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statex2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistik.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistik.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-steinmetz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-steinmetz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stmaryrd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stmaryrd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-structmech.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-structmech.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-struktex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-struktex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substances.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substances.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subsupscripts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subsupscripts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subtext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subtext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-susy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-susy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syllogism.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syllogism.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sympytexpackage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sympytexpackage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-synproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t-angles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t-angles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tensind.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tensind.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tensor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tensor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ewd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ewd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textopo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textopo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turnstile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turnstile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulqda.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulqda.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitsdef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitsdef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-witharrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-witharrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xymtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xymtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yhmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yhmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-youngtab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-youngtab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yquant.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yquant.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ytableau.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ytableau.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-12many.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-12many.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIstyle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIstyle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIunits.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIunits.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algobox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algobox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithms.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithms.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algxpar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algxpar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aligned-overset.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aligned-overset.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscdx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscdx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apxproof.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apxproof.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autobreak.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autobreak.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axodraw2.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axodraw2.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-backnaur.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-backnaur.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binomexp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binomexp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitpattern.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitpattern.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bosisio.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bosisio.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bpchem.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bpchem.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bropd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bropd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bussproofs-extra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bussproofs-extra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bytefield.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bytefield.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculation.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculation.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascade.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascade.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccfonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccool.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccool.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemarrow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemarrow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemcompounds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemcompounds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemschemex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemschemex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemsec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemsec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemstyle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemstyle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codeanatomy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codeanatomy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-computational-complexity.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-computational-complexity.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conteq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conteq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cryptocode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cryptocode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decision-table.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decision-table.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delim.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delim.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimset.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimset.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drawmatrix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drawmatrix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dyntree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dyntree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebproof.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebproof.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnarray.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnarray.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euclideangeometry.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euclideangeometry.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extpfeil.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extpfeil.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-faktor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-faktor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fascicules.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fascicules.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fouridx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fouridx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-functan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-functan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-galois.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-galois.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gotoh.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gotoh.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grundgesetze.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grundgesetze.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-helmholtz-ellis-ji-notation.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-helmholtz-ellis-ji-notation.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ionumbers.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ionumbers.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaugh-map.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaugh-map.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaughmap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaughmap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvmap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvmap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letterswitharrows.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letterswitharrows.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logicproof.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logicproof.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lplfitch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lplfitch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstbayes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstbayes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcommand.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcommand.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcomp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcomp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfixs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfixs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpartir.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpartir.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matlab-prettifier.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matlab-prettifier.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mattens.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mattens.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mgltex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mgltex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miller.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miller.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mismath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mismath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiobjective.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiobjective.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicematrix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicematrix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nucleardata.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nucleardata.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-objectz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-objectz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physconst.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physconst.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physunits.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physunits.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pm-isomath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pm-isomath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proba.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proba.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proof-at-the-end.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proof-at-the-end.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsharp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsharp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rest-api.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rest-api.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revquantum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revquantum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rmathbr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rmathbr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sankey.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sankey.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sclang-prettifier.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sclang-prettifier.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesamanuel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesamanuel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shuffle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shuffle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplewick.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplewick.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-siunitx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-siunitx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spalign.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spalign.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistik.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistik.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-steinmetz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-steinmetz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stmaryrd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stmaryrd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-struktex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-struktex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sympytexpackage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sympytexpackage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tensor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tensor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textgreek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textgreek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textopo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textopo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turnstile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turnstile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulqda.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulqda.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitsdef.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitsdef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-witharrows.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-witharrows.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xymtex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xymtex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yhmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yhmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-youngtab.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-youngtab.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ytableau.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ytableau.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-12many-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-12many-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-12many-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIstyle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIstyle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-SIstyle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIunits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIunits-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-SIunits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accents-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accents-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accents-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algobox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algobox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algobox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithm2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithm2e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algorithm2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithmicx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithmicx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algorithmicx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithms-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithms-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algorithms-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algpseudocodex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algpseudocodex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algpseudocodex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algxpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algxpar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algxpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aligned-overset-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aligned-overset-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aligned-overset-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscdx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscdx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amscdx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amstex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amstex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amstex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apxproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apxproof-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apxproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autobreak-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autobreak-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autobreak-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axodraw2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axodraw2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-axodraw2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-backnaur-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-backnaur-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-backnaur-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-begriff-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-begriff-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-begriff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binomexp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binomexp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-binomexp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biocon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biocon-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biocon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitpattern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitpattern-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bitpattern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bohr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bohr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bohr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boldtensors-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boldtensors-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boldtensors-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bosisio-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bosisio-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bosisio-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bpchem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bpchem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bpchem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bropd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bropd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bropd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bussproofs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bussproofs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bussproofs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bussproofs-extra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bussproofs-extra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bussproofs-extra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bytefield-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bytefield-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bytefield-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calculation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascade-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascade-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cascade-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-causets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-causets-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-causets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccfonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccfonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccfonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccool-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccool-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccool-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemarrow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemarrow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemarrow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemcompounds-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemcompounds-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemcompounds-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemcono-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemcono-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemcono-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemexec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemexec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemexec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemformula-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemformula-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemformula-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemgreek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemmacros-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemmacros-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemmacros-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemnum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemnum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemnum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemplants-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemplants-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemplants-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemschemex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemschemex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemschemex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemsec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemsec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemsec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemstyle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemstyle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemstyle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrscode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrscode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clrscode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrscode3e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrscode3e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clrscode3e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codeanatomy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codeanatomy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codeanatomy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-commath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commutative-diagrams-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commutative-diagrams-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-commutative-diagrams-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-complexity-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-complexity-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-complexity-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-computational-complexity-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-computational-complexity-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-computational-complexity-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-concmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concrete-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concrete-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-concrete-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conteq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conteq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-conteq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-correctmathalign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-correctmathalign-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-correctmathalign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cryptocode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cryptocode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cryptocode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decision-table-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decision-table-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-decision-table-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delim-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delim-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-delim-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimseasy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimseasy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-delimseasy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimset-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimset-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-delimset-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-derivative-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-derivative-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-derivative-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diffcoeff-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diffcoeff-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diffcoeff-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-digiconfigs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-digiconfigs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-digiconfigs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dijkstra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dijkstra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dijkstra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drawmatrix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drawmatrix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drawmatrix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drawstack-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drawstack-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drawstack-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dyntree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dyntree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dyntree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebproof-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econometrics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econometrics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-econometrics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eltex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endiagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endiagram-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endiagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engtlc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engtlc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-engtlc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqexpl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqexpl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqexpl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnarray-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnarray-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqnarray-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnnumwarn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnnumwarn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqnnumwarn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euclideangeometry-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euclideangeometry-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euclideangeometry-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extarrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extarrows-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-extarrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extpfeil-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extpfeil-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-extpfeil-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-faktor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-faktor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-faktor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fascicules-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fascicules-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fascicules-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnspe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnspe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnspe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fouridx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fouridx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fouridx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-functan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-functan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-functan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-galois-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-galois-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-galois-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gastex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gastex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gastex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gene-logic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gene-logic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gene-logic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ghsystem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ghsystem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ghsystem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glosmathtools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glosmathtools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glosmathtools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gotoh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gotoh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gotoh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grundgesetze-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grundgesetze-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grundgesetze-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gu-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-helmholtz-ellis-ji-notation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-helmholtz-ellis-ji-notation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-helmholtz-ellis-ji-notation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hep-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hep-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hep-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepnames-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepnames-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hepnames-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepparticles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepparticles-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hepparticles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hepthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepunits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepunits-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hepunits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-includernw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-includernw-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-includernw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interval-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interval-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interval-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ionumbers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ionumbers-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ionumbers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isomath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isomath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isomath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jkmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jkmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jkmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jupynotex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jupynotex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jupynotex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaugh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaugh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-karnaugh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaugh-map-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaugh-map-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-karnaugh-map-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaughmap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaughmap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-karnaughmap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvmap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvmap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvmap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letterswitharrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letterswitharrows-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-letterswitharrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lie-hasse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lie-hasse-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lie-hasse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logicproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logicproof-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logicproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longdivision-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longdivision-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-longdivision-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lpform-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lpform-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lpform-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lplfitch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lplfitch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lplfitch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstbayes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstbayes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lstbayes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcommand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcommand-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathcommand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcomp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcomp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathcomp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfixs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfixs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathfixs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathlig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathlig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathlig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpartir-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpartir-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathpartir-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpunctspace-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpunctspace-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathpunctspace-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matrix-skeleton-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matrix-skeleton-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matrix-skeleton-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matlab-prettifier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matlab-prettifier-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matlab-prettifier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mattens-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mattens-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mattens-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-membranecomputing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-membranecomputing-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-membranecomputing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memorygraphs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memorygraphs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memorygraphs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mgltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mgltex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mgltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mhchem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mhchem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mhchem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mhequ-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mhequ-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mhequ-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miller-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miller-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-miller-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mismath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mismath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mismath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiobjective-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiobjective-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multiobjective-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-natded-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-natded-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-natded-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicematrix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicematrix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nicematrix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nuc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nuc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nuc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nucleardata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nucleardata-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nucleardata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numerica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numerica-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numerica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-objectz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-objectz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-objectz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oplotsymbl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oplotsymbl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oplotsymbl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ot-tableau-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ot-tableau-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ot-tableau-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oubraces-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oubraces-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oubraces-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perfectcut-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perfectcut-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-perfectcut-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physconst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physconst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-physconst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-physics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physunits-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physunits-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-physunits-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pinoutikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pinoutikz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pinoutikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pm-isomath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pm-isomath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pm-isomath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polexpr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polexpr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polexpr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prftree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prftree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prftree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-principia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-principia-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-principia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proba-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proba-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proba-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proof-at-the-end-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proof-at-the-end-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proof-at-the-end-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prooftrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prooftrees-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prooftrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pseudo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pseudo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pseudo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pseudocode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pseudocode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pseudocode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pythonhighlight-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pythonhighlight-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pythonhighlight-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsharp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsharp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qsharp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rank-2-roots-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rank-2-roots-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rank-2-roots-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rec-thy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rec-thy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rec-thy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rest-api-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rest-api-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rest-api-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revquantum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revquantum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revquantum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ribbonproofs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ribbonproofs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ribbonproofs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rmathbr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rmathbr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rmathbr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sankey-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sankey-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sankey-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sasnrdisplay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sasnrdisplay-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sasnrdisplay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sciposter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sciposter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sciposter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sclang-prettifier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sclang-prettifier-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sclang-prettifier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratchx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratchx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scratchx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesamanuel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesamanuel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sesamanuel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sfg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sfg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sfg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shuffle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shuffle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shuffle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplebnf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplebnf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplebnf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpler-wick-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpler-wick-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simpler-wick-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplewick-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplewick-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplewick-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-siunitx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-siunitx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-siunitx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spalign-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spalign-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spalign-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stanli-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stanli-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stanli-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statex2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statex2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statex2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statistics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistik-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistik-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statistik-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-steinmetz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-steinmetz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-steinmetz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stmaryrd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stmaryrd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stmaryrd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-structmech-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-structmech-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-structmech-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-struktex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-struktex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-struktex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substances-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substances-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-substances-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subsupscripts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subsupscripts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subsupscripts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subtext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subtext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subtext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-susy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-susy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-susy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syllogism-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syllogism-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-syllogism-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sympytexpackage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sympytexpackage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sympytexpackage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-synproof-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-synproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t-angles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t-angles-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-t-angles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tensind-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tensind-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tensind-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tensor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tensor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tensor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ewd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ewd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-ewd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textgreek-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textgreek-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textgreek-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textopo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textopo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textopo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thmbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turnstile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turnstile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turnstile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulqda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulqda-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ulqda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitsdef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitsdef-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unitsdef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-venn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-witharrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-witharrows-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-witharrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xymtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xymtex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xymtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yhmath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yhmath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yhmath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-youngtab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-youngtab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-youngtab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yquant-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yquant-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yquant-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ytableau-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ytableau-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ytableau-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-mathscience-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-mathscience-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-mathscience-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-12many.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-12many.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-12many.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIstyle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIstyle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-SIstyle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIunits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIunits.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-SIunits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-accents.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-accents.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-accents.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algobox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algobox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algobox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithm2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithm2e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algorithm2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithmicx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithmicx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algorithmicx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithms.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithms.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algorithms.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algpseudocodex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algpseudocodex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algpseudocodex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algxpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algxpar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algxpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aligned-overset.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aligned-overset.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aligned-overset.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscdx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscdx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amscdx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amstex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amstex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amstex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apxproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apxproof.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apxproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autobreak.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autobreak.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autobreak.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axodraw2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axodraw2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-axodraw2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-backnaur.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-backnaur.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-backnaur.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-begriff.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-begriff.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-begriff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binomexp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binomexp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-binomexp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-biocon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-biocon.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-biocon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitpattern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitpattern.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bitpattern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bohr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bohr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bohr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-boldtensors.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-boldtensors.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-boldtensors.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bosisio.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bosisio.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bosisio.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bpchem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bpchem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bpchem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bropd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bropd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bropd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bussproofs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bussproofs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bussproofs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bussproofs-extra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bussproofs-extra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bussproofs-extra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bytefield.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bytefield.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bytefield.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calculation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascade.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascade.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cascade.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-causets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-causets.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-causets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccfonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccfonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccfonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccool.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccool.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccool.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemarrow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemarrow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemarrow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemcompounds.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemcompounds.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemcompounds.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemcono.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemcono.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemcono.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemexec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemexec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemexec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemformula.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemformula.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemformula.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemgreek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemmacros.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemmacros.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemmacros.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemnum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemnum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemnum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemplants.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemplants.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemplants.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemschemex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemschemex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemschemex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemsec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemsec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemsec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemstyle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemstyle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemstyle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrscode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrscode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clrscode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-clrscode3e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-clrscode3e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-clrscode3e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codeanatomy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codeanatomy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codeanatomy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-commath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-commutative-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-commutative-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-commutative-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-complexity.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-complexity.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-complexity.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-computational-complexity.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-computational-complexity.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-computational-complexity.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-concmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concrete.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concrete.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-concrete.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conteq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conteq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-conteq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-correctmathalign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-correctmathalign.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-correctmathalign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cryptocode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cryptocode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cryptocode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decision-table.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decision-table.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-decision-table.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delim.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delim.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-delim.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimseasy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimseasy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-delimseasy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimset.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimset.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-delimset.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-derivative.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-derivative.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-derivative.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diffcoeff.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diffcoeff.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diffcoeff.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-digiconfigs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-digiconfigs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-digiconfigs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dijkstra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dijkstra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dijkstra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drawmatrix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drawmatrix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drawmatrix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drawstack.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drawstack.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drawstack.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dyntree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dyntree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dyntree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebproof.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-econometrics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-econometrics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-econometrics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eltex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endiagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endiagram.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endiagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-engtlc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-engtlc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-engtlc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqexpl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqexpl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqexpl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnarray.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnarray.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqnarray.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnnumwarn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnnumwarn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqnnumwarn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euclideangeometry.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euclideangeometry.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euclideangeometry.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extarrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extarrows.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-extarrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extpfeil.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extpfeil.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-extpfeil.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-faktor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-faktor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-faktor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fascicules.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fascicules.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fascicules.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fnspe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fnspe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fnspe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fouridx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fouridx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fouridx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-functan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-functan.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-functan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-galois.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-galois.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-galois.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gastex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gastex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gastex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gene-logic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gene-logic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gene-logic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ghsystem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ghsystem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ghsystem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-glosmathtools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-glosmathtools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-glosmathtools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gotoh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gotoh.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gotoh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grundgesetze.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grundgesetze.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grundgesetze.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gu.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-helmholtz-ellis-ji-notation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-helmholtz-ellis-ji-notation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-helmholtz-ellis-ji-notation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hep.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hep.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hep.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepnames.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepnames.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hepnames.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepparticles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepparticles.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hepparticles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hepthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hepunits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hepunits.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hepunits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-includernw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-includernw.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-includernw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interval.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interval.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interval.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ionumbers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ionumbers.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ionumbers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-isomath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-isomath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-isomath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jkmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jkmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jkmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jupynotex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jupynotex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jupynotex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaugh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaugh.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-karnaugh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaugh-map.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaugh-map.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-karnaugh-map.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaughmap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaughmap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-karnaughmap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvmap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvmap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvmap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letterswitharrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letterswitharrows.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-letterswitharrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lie-hasse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lie-hasse.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lie-hasse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logicproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logicproof.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logicproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-longdivision.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-longdivision.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-longdivision.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lpform.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lpform.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lpform.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lplfitch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lplfitch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lplfitch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstbayes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstbayes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lstbayes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcommand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcommand.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathcommand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcomp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcomp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathcomp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfixs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfixs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathfixs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpartir.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpartir.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathpartir.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpunctspace.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpunctspace.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathpunctspace.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matrix-skeleton.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matrix-skeleton.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matrix-skeleton.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matlab-prettifier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matlab-prettifier.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matlab-prettifier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mattens.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mattens.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mattens.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-membranecomputing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-membranecomputing.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-membranecomputing.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-memorygraphs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-memorygraphs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-memorygraphs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mgltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mgltex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mgltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mhchem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mhchem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mhchem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mhequ.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mhequ.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mhequ.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miller.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miller.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-miller.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mismath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mismath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mismath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiobjective.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiobjective.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multiobjective.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-natded.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-natded.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-natded.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicematrix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicematrix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nicematrix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nuc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nuc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nuc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nucleardata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nucleardata.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nucleardata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numerica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numerica.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numerica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-objectz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-objectz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-objectz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oplotsymbl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oplotsymbl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oplotsymbl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ot-tableau.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ot-tableau.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ot-tableau.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oubraces.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oubraces.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oubraces.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-perfectcut.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-perfectcut.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-perfectcut.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physconst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physconst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-physconst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-physics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physunits.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physunits.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-physunits.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pinoutikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pinoutikz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pinoutikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pm-isomath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pm-isomath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pm-isomath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-polexpr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-polexpr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-polexpr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prftree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prftree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prftree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-principia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-principia.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-principia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proba.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proba.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proba.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proof-at-the-end.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proof-at-the-end.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proof-at-the-end.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prooftrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prooftrees.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prooftrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pseudo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pseudo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pseudo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pseudocode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pseudocode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pseudocode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pythonhighlight.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pythonhighlight.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pythonhighlight.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsharp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsharp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qsharp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rank-2-roots.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rank-2-roots.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rank-2-roots.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rec-thy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rec-thy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rec-thy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rest-api.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rest-api.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rest-api.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revquantum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revquantum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revquantum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ribbonproofs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ribbonproofs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ribbonproofs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rmathbr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rmathbr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rmathbr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sankey.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sankey.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sankey.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sasnrdisplay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sasnrdisplay.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sasnrdisplay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sciposter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sciposter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sciposter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sclang-prettifier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sclang-prettifier.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sclang-prettifier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratchx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratchx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scratchx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesamanuel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesamanuel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sesamanuel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sfg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sfg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sfg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shuffle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shuffle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shuffle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplebnf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplebnf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplebnf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpler-wick.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpler-wick.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simpler-wick.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplewick.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplewick.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplewick.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-siunitx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-siunitx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-siunitx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spalign.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spalign.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spalign.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stanli.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stanli.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stanli.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statex2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statex2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statex2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statistics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistik.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistik.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statistik.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-steinmetz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-steinmetz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-steinmetz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stmaryrd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stmaryrd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stmaryrd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-structmech.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-structmech.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-structmech.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-struktex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-struktex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-struktex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-substances.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-substances.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-substances.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subsupscripts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subsupscripts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subsupscripts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-subtext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-subtext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-subtext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-susy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-susy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-susy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syllogism.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syllogism.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-syllogism.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sympytexpackage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sympytexpackage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sympytexpackage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-synproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-synproof.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-synproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-t-angles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-t-angles.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-t-angles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tablor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tablor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tablor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tensind.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tensind.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tensind.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tensor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tensor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tensor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ewd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ewd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-ewd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textgreek.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textgreek.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textgreek.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textopo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textopo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textopo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thmbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turnstile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turnstile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turnstile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulqda.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulqda.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ulqda.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitsdef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitsdef.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unitsdef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-venn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-witharrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-witharrows.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-witharrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xymtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xymtex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xymtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yhmath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yhmath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yhmath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-youngtab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-youngtab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-youngtab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yquant.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yquant.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yquant.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ytableau.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ytableau.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ytableau.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-12many.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-12many.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-12many.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIstyle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIstyle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-SIstyle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-SIunits.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-SIunits.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-SIunits.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-alg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-alg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-alg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algobox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algobox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algobox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algorithms.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algorithms.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algorithms.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-algxpar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-algxpar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-algxpar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aligned-overset.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aligned-overset.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aligned-overset.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-amscdx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-amscdx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-amscdx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apxproof.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apxproof.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apxproof.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autobreak.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autobreak.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autobreak.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-axodraw2.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-axodraw2.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-axodraw2.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-backnaur.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-backnaur.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-backnaur.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binomexp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binomexp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-binomexp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitpattern.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitpattern.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bitpattern.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bosisio.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bosisio.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bosisio.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bpchem.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bpchem.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bpchem.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bropd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bropd.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bropd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bussproofs-extra.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bussproofs-extra.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bussproofs-extra.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bytefield.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bytefield.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bytefield.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-calculation.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-calculation.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-calculation.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascade.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascade.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cascade.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccfonts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccfonts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccfonts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ccool.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ccool.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ccool.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemarrow.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemarrow.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemarrow.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemcompounds.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemcompounds.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemcompounds.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemschemex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemschemex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemschemex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemsec.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemsec.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemsec.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemstyle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemstyle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemstyle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-codeanatomy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-codeanatomy.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-codeanatomy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-computational-complexity.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-computational-complexity.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-computational-complexity.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-concmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-concmath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-concmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-conteq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-conteq.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-conteq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cryptocode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cryptocode.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cryptocode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-decision-table.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-decision-table.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-decision-table.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delim.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delim.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-delim.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-delimset.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-delimset.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-delimset.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drawmatrix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drawmatrix.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drawmatrix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dyntree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dyntree.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dyntree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebproof.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebproof.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebproof.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eqnarray.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eqnarray.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eqnarray.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euclideangeometry.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euclideangeometry.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euclideangeometry.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-extpfeil.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-extpfeil.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-extpfeil.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-faktor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-faktor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-faktor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fascicules.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fascicules.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fascicules.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fouridx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fouridx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fouridx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-functan.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-functan.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-functan.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-galois.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-galois.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-galois.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gotoh.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gotoh.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gotoh.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grundgesetze.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grundgesetze.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grundgesetze.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-helmholtz-ellis-ji-notation.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-helmholtz-ellis-ji-notation.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-helmholtz-ellis-ji-notation.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ionumbers.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ionumbers.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ionumbers.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaugh-map.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaugh-map.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-karnaugh-map.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-karnaughmap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-karnaughmap.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-karnaughmap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kvmap.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kvmap.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kvmap.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letterswitharrows.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letterswitharrows.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-letterswitharrows.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-logicproof.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-logicproof.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-logicproof.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lplfitch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lplfitch.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lplfitch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lstbayes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lstbayes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lstbayes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcommand.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcommand.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathcommand.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathcomp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathcomp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathcomp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathfixs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathfixs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathfixs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathpartir.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathpartir.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathpartir.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matlab-prettifier.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matlab-prettifier.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matlab-prettifier.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mattens.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mattens.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mattens.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mgltex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mgltex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mgltex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miller.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miller.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-miller.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mismath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mismath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mismath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multiobjective.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multiobjective.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multiobjective.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nicematrix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nicematrix.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nicematrix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nucleardata.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nucleardata.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nucleardata.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-objectz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-objectz.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-objectz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physconst.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physconst.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-physconst.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-physunits.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-physunits.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-physunits.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pm-isomath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pm-isomath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pm-isomath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proba.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proba.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proba.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proof-at-the-end.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proof-at-the-end.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proof-at-the-end.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qsharp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qsharp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qsharp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rest-api.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rest-api.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rest-api.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revquantum.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revquantum.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revquantum.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rmathbr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rmathbr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rmathbr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sankey.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sankey.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sankey.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sclang-prettifier.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sclang-prettifier.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sclang-prettifier.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sesamanuel.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sesamanuel.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sesamanuel.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shuffle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shuffle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shuffle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplewick.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplewick.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplewick.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-siunitx.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-siunitx.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-siunitx.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-skmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-skmath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-skmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spalign.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spalign.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spalign.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistics.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statistics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statistik.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statistik.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statistik.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-statmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-statmath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-statmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-steinmetz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-steinmetz.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-steinmetz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stmaryrd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stmaryrd.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stmaryrd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-struktex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-struktex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-struktex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sympytexpackage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sympytexpackage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sympytexpackage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tensor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tensor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tensor.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textgreek.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textgreek.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textgreek.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textopo.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textopo.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textopo.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thmbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thmbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thmbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turnstile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turnstile.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turnstile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulqda.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulqda.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ulqda.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitsdef.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitsdef.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unitsdef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-witharrows.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-witharrows.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-witharrows.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xymtex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xymtex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xymtex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yhmath.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yhmath.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yhmath.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-youngtab.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-youngtab.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-youngtab.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ytableau.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ytableau.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ytableau.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=6731aeaefdfb81173c0fdc0c4d132541 diff --git a/metadata/md5-cache/dev-texlive/texlive-metapost-2021 b/metadata/md5-cache/dev-texlive/texlive-metapost-2021 index cc01dc98b4dc..9e58f72daeef 100644 --- a/metadata/md5-cache/dev-texlive/texlive-metapost-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-metapost-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=GPL-1 GPL-2 GPL-3+ LGPL-2 LPPL-1.3 MIT public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-automata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-automata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbcard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbcard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blockdraw_mp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blockdraw_mp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bpolynomial-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bpolynomial-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmarrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmarrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviincl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dviincl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsincl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsincl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expressg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expressg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exteps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exteps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-featpost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-featpost-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmp-auto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmp-auto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fiziko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fiziko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garrigues-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garrigues-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hatching-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hatching-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexmp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexmp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcf2graph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcf2graph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metago-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metago-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metaobj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metaobj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metaplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metaplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost-colorbrewer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost-colorbrewer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metauml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metauml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic4ode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic4ode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mp3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mp3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mparrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mparrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpattern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpattern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpcolornames-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpcolornames-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpgraphics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpgraphics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mptrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mptrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piechartmp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piechartmp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repere-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repere-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roundrect-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roundrect-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shapes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shapes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-slideshow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-slideshow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suanpan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suanpan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textpath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textpath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeddice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeddice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-metapost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-metapost-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-automata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-automata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbcard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbcard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blockdraw_mp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blockdraw_mp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bpolynomial.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bpolynomial.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmarrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmarrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviincl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dviincl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsincl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsincl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expressg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expressg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exteps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exteps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-featpost.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-featpost.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmp-auto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmp-auto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fiziko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fiziko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garrigues.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garrigues.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hatching.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hatching.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexmp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexmp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcf2graph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcf2graph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metago.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metago.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metaobj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metaobj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metaplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metaplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost-colorbrewer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost-colorbrewer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metauml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metauml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic4ode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic4ode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mp3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mp3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mparrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mparrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpattern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpattern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpcolornames.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpcolornames.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpgraphics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpgraphics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mptrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mptrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piechartmp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piechartmp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repere.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repere.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roundrect.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roundrect.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shapes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shapes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-slideshow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-slideshow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suanpan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suanpan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textpath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textpath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeddice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeddice.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expressg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expressg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmp-auto.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmp-auto.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic4ode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic4ode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpcolornames.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpcolornames.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpgraphics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpgraphics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roundrect.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roundrect.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shapes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shapes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splines.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splines.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-automata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-automata-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-automata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbcard-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbcard-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbcard-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blockdraw_mp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blockdraw_mp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blockdraw_mp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bpolynomial-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bpolynomial-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bpolynomial-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmarrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmarrows-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmarrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviincl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dviincl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dviincl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsincl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsincl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epsincl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expressg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expressg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expressg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exteps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exteps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exteps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-featpost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-featpost-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-featpost-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-feynmf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmp-auto-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmp-auto-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-feynmp-auto-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fiziko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fiziko-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fiziko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garrigues-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garrigues-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-garrigues-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hatching-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hatching-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hatching-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexmp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexmp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexmp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcf2graph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcf2graph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcf2graph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metago-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metago-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metago-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metaobj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metaobj-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metaobj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metaplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metaplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metaplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metapost-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost-colorbrewer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost-colorbrewer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metapost-colorbrewer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metauml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metauml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metauml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic4ode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic4ode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfpic4ode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mp3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mp3d-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mp3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mparrows-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mparrows-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mparrows-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpattern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpattern-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpattern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpcolornames-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpcolornames-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpcolornames-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpgraphics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpgraphics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpgraphics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mptrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mptrees-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mptrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piechartmp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piechartmp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-piechartmp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repere-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repere-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-repere-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-roex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roundrect-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roundrect-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-roundrect-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shapes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shapes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shapes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-slideshow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-slideshow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-slideshow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splines-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-splines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suanpan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suanpan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-suanpan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textpath-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textpath-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textpath-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeddice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeddice-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-threeddice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-metapost-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-metapost-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-metapost-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-automata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-automata.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-automata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bbcard.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bbcard.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bbcard.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blockdraw_mp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blockdraw_mp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blockdraw_mp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bpolynomial.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bpolynomial.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bpolynomial.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmarrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmarrows.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmarrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dviincl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dviincl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dviincl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsincl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsincl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epsincl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expressg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expressg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expressg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-exteps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-exteps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-exteps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-featpost.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-featpost.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-featpost.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-feynmf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmp-auto.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmp-auto.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-feynmp-auto.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fiziko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fiziko.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fiziko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-garrigues.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-garrigues.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-garrigues.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hatching.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hatching.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hatching.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latexmp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latexmp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latexmp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcf2graph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcf2graph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcf2graph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metago.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metago.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metago.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metaobj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metaobj.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metaobj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metaplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metaplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metaplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metapost.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metapost-colorbrewer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metapost-colorbrewer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metapost-colorbrewer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metauml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metauml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metauml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic4ode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic4ode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfpic4ode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mp3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mp3d.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mp3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mparrows.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mparrows.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mparrows.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpattern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpattern.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpattern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpcolornames.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpcolornames.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpcolornames.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpgraphics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpgraphics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpgraphics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mptrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mptrees.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mptrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piechartmp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piechartmp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-piechartmp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-repere.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-repere.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-repere.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roundrect.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roundrect.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-roundrect.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shapes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shapes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shapes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-slideshow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-slideshow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-slideshow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splines.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splines.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-splines.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suanpan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suanpan.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-suanpan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-textpath.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-textpath.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-textpath.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-threeddice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-threeddice.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-threeddice.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expressg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expressg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expressg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-feynmf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-feynmp-auto.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-feynmp-auto.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-feynmp-auto.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gmp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gmp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gmp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfpic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mfpic4ode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mfpic4ode.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mfpic4ode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpcolornames.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpcolornames.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpcolornames.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mpgraphics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mpgraphics.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mpgraphics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-roex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-roundrect.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-roundrect.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-roundrect.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shapes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shapes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shapes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-splines.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-splines.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-splines.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=26646882b774549b3223ae4987556925 diff --git a/metadata/md5-cache/dev-texlive/texlive-music-2021 b/metadata/md5-cache/dev-texlive/texlive-music-2021 index a00e900ba3bf..88cbf5e9a54a 100644 --- a/metadata/md5-cache/dev-texlive/texlive-music-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-music-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=FDL-1.1 GPL-1 GPL-2 GPL-2+ RDEPEND=>=dev-texlive/texlive-latex-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autosp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autosp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bagpipe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bagpipe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chordbars-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chordbars-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chordbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chordbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ddphonism-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ddphonism-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figbas-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figbas-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gchords-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gchords-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtrcrd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtrcrd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitarchordschemes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitarchordschemes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitartabs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitartabs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harmony-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harmony-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leadsheets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leadsheets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4musicians-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4musicians-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lilyglyphs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lilyglyphs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lyluatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lyluatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-m-tx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-m-tx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musical-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musical-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musicography-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musicography-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixguit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixguit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtex-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtex-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-octave-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-octave-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piano-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piano-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmxchords-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmxchords-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpiano-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpiano-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-music-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-music-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autosp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autosp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bagpipe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bagpipe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chordbars.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chordbars.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chordbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chordbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ddphonism.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ddphonism.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figbas.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figbas.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gchords.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gchords.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtrcrd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtrcrd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitarchordschemes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitarchordschemes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitartabs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitartabs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harmony.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harmony.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leadsheets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leadsheets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4musicians.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4musicians.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lilyglyphs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lilyglyphs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lyluatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lyluatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-m-tx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-m-tx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musical.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musical.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musicography.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musicography.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixguit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixguit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-octave.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-octave.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piano.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piano.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmxchords.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmxchords.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpiano.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpiano.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lilyglyphs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lilyglyphs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songbook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songbook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpiano.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpiano.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autosp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autosp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autosp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bagpipe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bagpipe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bagpipe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chordbars-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chordbars-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chordbars-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chordbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chordbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chordbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ddphonism-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ddphonism-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ddphonism-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figbas-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figbas-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-figbas-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gchords-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gchords-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gchords-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtrcrd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtrcrd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gtrcrd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guitar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitarchordschemes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitarchordschemes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guitarchordschemes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitartabs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitartabs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guitartabs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harmony-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harmony-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harmony-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leadsheets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leadsheets-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leadsheets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4musicians-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4musicians-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex4musicians-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lilyglyphs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lilyglyphs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lilyglyphs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lyluatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lyluatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lyluatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-m-tx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-m-tx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-m-tx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musical-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musical-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musical-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musicography-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musicography-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musicography-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixguit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixguit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musixguit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musixtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtex-fonts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtex-fonts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musixtex-fonts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtnt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musixtnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-octave-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-octave-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-octave-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piano-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piano-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-piano-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pmx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmxchords-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmxchords-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pmxchords-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songbook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-songbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-songs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpiano-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpiano-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpiano-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-music-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-music-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-music-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autosp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autosp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autosp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bagpipe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bagpipe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bagpipe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chordbars.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chordbars.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chordbars.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chordbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chordbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chordbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ddphonism.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ddphonism.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ddphonism.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figbas.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figbas.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-figbas.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gchords.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gchords.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gchords.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtrcrd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtrcrd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gtrcrd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guitar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitarchordschemes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitarchordschemes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guitarchordschemes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitartabs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitartabs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guitartabs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harmony.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harmony.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harmony.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-leadsheets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-leadsheets.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-leadsheets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex4musicians.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex4musicians.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex4musicians.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lilyglyphs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lilyglyphs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lilyglyphs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lyluatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lyluatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lyluatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-m-tx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-m-tx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-m-tx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musical.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musical.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musical.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musicography.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musicography.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musicography.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixguit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixguit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musixguit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musixtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musixtex-fonts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtnt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musixtnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-octave.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-octave.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-octave.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-piano.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-piano.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-piano.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pmx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmxchords.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmxchords.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pmxchords.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songbook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-songbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-songs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpiano.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpiano.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpiano.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-guitar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-guitar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-guitar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lilyglyphs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lilyglyphs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lilyglyphs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musixtex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musixtex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musixtex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songbook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songbook.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-songbook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-songs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-songs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-songs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpiano.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpiano.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpiano.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=40cd49ee036328203c44a43f3add2546 diff --git a/metadata/md5-cache/dev-texlive/texlive-pictures-2021 b/metadata/md5-cache/dev-texlive/texlive-pictures-2021 index 25f15158396b..b4382795bb38 100644 --- a/metadata/md5-cache/dev-texlive/texlive-pictures-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-pictures-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=Apache-2.0 BSD-2 GPL-2 CC0-1.0 RDEPEND=>=dev-texlive/texlive-basic-2021 >=dev-tex/pgf-3.0.1 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adigraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adigraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aobs-tikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aobs-tikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-askmaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-askmaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asyfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asyfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asypictureb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asypictureb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autoarea-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autoarea-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bardiag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bardiag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerswitch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerswitch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binarytree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binarytree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blochsphere-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blochsphere-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bloques-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bloques-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bodegraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bodegraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bondgraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bondgraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bondgraphs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bondgraphs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braids-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braids-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxeepic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxeepic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cachepic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cachepic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-callouts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-callouts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-celtic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-celtic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circuit-macros-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circuit-macros-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circuitikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circuitikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combinedgraphics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combinedgraphics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curves-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curves-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dcpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dcpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagmac2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagmac2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ditaa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ditaa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doc-pictex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doc-pictex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dot2texi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dot2texi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dottex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dottex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dpcircling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dpcircling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dratex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dratex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duotenzor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duotenzor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynkin-diagrams-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynkin-diagrams-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecgdraw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecgdraw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eepic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eepic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endofproofwd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endofproofwd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epspdfconversion-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epspdfconversion-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euflag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euflag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fast-diagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fast-diagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fig4latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fig4latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fitbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fitbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowchart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowchart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forest-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forest-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genealogytree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genealogytree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getmap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getmap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gincltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gincltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnuplottex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnuplottex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gradientframe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gradientframe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grafcet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grafcet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graph35-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graph35-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicxpsd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicxpsd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphviz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphviz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtrlib-largetrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtrlib-largetrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harveyballs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harveyballs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-here-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-here-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hf-tikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hf-tikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobby-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobby-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-istgame-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-istgame-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kblocks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kblocks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knitting-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knitting-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knittingpattern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knittingpattern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ladder-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ladder-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lapdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lapdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-make-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-make-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lroundrect-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lroundrect-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamesh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamesh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luasseq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luasseq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maker-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maker-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeshape-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeshape-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathspic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathspic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mercatormap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mercatormap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-milsymb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-milsymb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miniplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miniplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modiagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modiagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-neuralnetwork-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-neuralnetwork-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nl-interval-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nl-interval-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numericplots-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numericplots-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pb-diagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pb-diagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-penrose-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-penrose-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-petri-nets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-petri-nets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-blur-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-blur-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-cmykshadings-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-cmykshadings-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-pie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-pie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-soroban-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-soroban-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-spectra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-spectra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-umlcd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-umlcd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-umlsd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-umlsd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfgantt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfgantt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfkeyx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfkeyx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfmolbio-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfmolbio-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfmorepages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfmorepages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfopts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfopts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfornament-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfornament-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfplots-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfplots-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-picinpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-picinpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pict2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pict2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pictex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pictex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pictex2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pictex2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pinlabel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pinlabel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pixelart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pixelart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmgraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmgraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-postage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-postage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prerex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prerex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-productbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-productbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptolemaicastronomy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptolemaicastronomy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-puyotikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-puyotikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxpgfmark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxpgfmark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qcircuit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qcircuit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quantikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quantikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randbild-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randbild-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomwalk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomwalk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realhats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realhats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reotex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reotex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rviewport-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rviewport-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sa-tikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sa-tikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schemabloc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schemabloc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratch3-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratch3-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scsnowman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scsnowman-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-setdeck-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-setdeck-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-signchart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-signchart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpleoptics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpleoptics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartdiagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartdiagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spath3-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spath3-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spectralsequences-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spectralsequences-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swimgraf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swimgraf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntaxdi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntaxdi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-table-fct-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-table-fct-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdraw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texdraw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ticollege-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ticollege-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-3dplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-3dplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-among-us-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-among-us-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-bayesnet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-bayesnet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-bbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-bbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-cd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-cd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-dependency-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-dependency-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-dimline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-dimline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-feynhand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-feynhand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-feynman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-feynman-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-imagelabels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-imagelabels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-inet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-inet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-kalender-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-kalender-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-karnaugh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-karnaugh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-ladder-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-ladder-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-lake-fig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-lake-fig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-layers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-layers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-nef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-nef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-network-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-network-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-opm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-opm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-optics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-optics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-page-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-page-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-palattice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-palattice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-planets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-planets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-qtree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-qtree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-relay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-relay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-sfc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-sfc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-timing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-timing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-trackschematic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-trackschematic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-truchet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-truchet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzcodeblocks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzcodeblocks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzducks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzducks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzinclude-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzinclude-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzlings-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzlings-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzmark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzmark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzmarmots-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzmarmots-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzorbital-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzorbital-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpackets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpackets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpagenodes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpagenodes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpeople-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpeople-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpfeile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpfeile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzposter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzposter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzscale-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzscale-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikztosvg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikztosvg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tile-graphic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tile-graphic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timing-diagrams-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timing-diagrams-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipfr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipfr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-base-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-base-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-berge-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-berge-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-euclide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-euclide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-fct-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-fct-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-graph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-graph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-orm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-orm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-tab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-tab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tqft-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tqft-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tsemlines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tsemlines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tufte-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tufte-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tzplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tzplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utfsym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utfsym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venndiagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venndiagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualpstricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualpstricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpicture-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpicture-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xypic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xypic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-pictures-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-pictures-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adigraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adigraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aobs-tikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aobs-tikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-askmaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-askmaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asyfig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asyfig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asypictureb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asypictureb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autoarea.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autoarea.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bardiag.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bardiag.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerswitch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerswitch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binarytree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binarytree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blochsphere.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blochsphere.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bloques.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bloques.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bodegraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bodegraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bondgraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bondgraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bondgraphs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bondgraphs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braids.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braids.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxeepic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxeepic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cachepic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cachepic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-callouts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-callouts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-celtic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-celtic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemfig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemfig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circuit-macros.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circuit-macros.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circuitikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circuitikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combinedgraphics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combinedgraphics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curves.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curves.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dcpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dcpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagmac2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagmac2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ditaa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ditaa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doc-pictex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doc-pictex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dot2texi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dot2texi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dottex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dottex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dpcircling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dpcircling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dratex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dratex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duotenzor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duotenzor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynkin-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynkin-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecgdraw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecgdraw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eepic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eepic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endofproofwd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endofproofwd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epspdfconversion.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epspdfconversion.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euflag.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euflag.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fast-diagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fast-diagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fig4latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fig4latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fitbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fitbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowchart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowchart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forest.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forest.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genealogytree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genealogytree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getmap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getmap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gincltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gincltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnuplottex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnuplottex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gradientframe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gradientframe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grafcet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grafcet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graph35.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graph35.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicxpsd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicxpsd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphviz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphviz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtrlib-largetrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtrlib-largetrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harveyballs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harveyballs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-here.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-here.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hf-tikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hf-tikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobby.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobby.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-istgame.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-istgame.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kblocks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kblocks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knitting.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knitting.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knittingpattern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knittingpattern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ladder.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ladder.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lapdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lapdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-make.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-make.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lroundrect.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lroundrect.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamesh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamesh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luasseq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luasseq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maker.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maker.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeshape.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeshape.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathspic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathspic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mercatormap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mercatormap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-milsymb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-milsymb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miniplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miniplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modiagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modiagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-neuralnetwork.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-neuralnetwork.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nl-interval.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nl-interval.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numericplots.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numericplots.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pb-diagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pb-diagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-penrose.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-penrose.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-petri-nets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-petri-nets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-blur.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-blur.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-cmykshadings.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-cmykshadings.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-pie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-pie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-soroban.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-soroban.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-spectra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-spectra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-umlcd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-umlcd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-umlsd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-umlsd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfgantt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfgantt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfkeyx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfkeyx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfmolbio.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfmolbio.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfmorepages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfmorepages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfopts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfopts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfornament.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfornament.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfplots.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfplots.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-picinpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-picinpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pict2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pict2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pictex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pictex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pinlabel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pinlabel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pixelart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pixelart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmgraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmgraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-postage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-postage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prerex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prerex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-productbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-productbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptolemaicastronomy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptolemaicastronomy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-puyotikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-puyotikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxpgfmark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxpgfmark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qcircuit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qcircuit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quantikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quantikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randbild.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randbild.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomwalk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomwalk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realhats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realhats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reotex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reotex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rviewport.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rviewport.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sa-tikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sa-tikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schemabloc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schemabloc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratch3.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratch3.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scsnowman.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scsnowman.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-setdeck.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-setdeck.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-signchart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-signchart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpleoptics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpleoptics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartdiagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartdiagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spath3.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spath3.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spectralsequences.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spectralsequences.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swimgraf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swimgraf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntaxdi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntaxdi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-table-fct.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-table-fct.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdraw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texdraw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ticollege.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ticollege.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-3dplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-3dplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-among-us.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-among-us.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-bayesnet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-bayesnet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-bbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-bbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-cd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-cd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-dependency.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-dependency.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-dimline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-dimline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-feynhand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-feynhand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-feynman.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-feynman.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-imagelabels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-imagelabels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-inet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-inet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-kalender.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-kalender.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-karnaugh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-karnaugh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-ladder.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-ladder.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-lake-fig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-lake-fig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-layers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-layers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-nef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-nef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-network.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-network.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-opm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-opm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-optics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-optics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-page.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-page.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-palattice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-palattice.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-planets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-planets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-qtree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-qtree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-relay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-relay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-sfc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-sfc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-timing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-timing.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-trackschematic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-trackschematic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-truchet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-truchet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzcodeblocks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzcodeblocks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzducks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzducks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzinclude.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzinclude.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzlings.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzlings.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzmark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzmark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzmarmots.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzmarmots.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzorbital.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzorbital.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpackets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpackets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpagenodes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpagenodes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpeople.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpeople.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpfeile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpfeile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzposter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzposter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzscale.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzscale.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikztosvg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikztosvg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tile-graphic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tile-graphic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timing-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timing-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipfr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipfr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-base.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-base.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-berge.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-berge.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-euclide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-euclide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-fct.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-fct.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-graph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-graph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-orm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-orm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-tab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-tab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tqft.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tqft.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tufte-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tufte-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tzplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tzplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utfsym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utfsym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venndiagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venndiagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualpstricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualpstricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpicture.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpicture.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xypic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xypic.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aobs-tikz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aobs-tikz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asyfig.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asyfig.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asypictureb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asypictureb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerswitch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerswitch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binarytree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binarytree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blochsphere.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blochsphere.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bondgraphs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bondgraphs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braids.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braids.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-celtic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-celtic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combinedgraphics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combinedgraphics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve2e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve2e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curves.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curves.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dottex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dottex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecgdraw.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecgdraw.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipse.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipse.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euflag.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euflag.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fitbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fitbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowchart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowchart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forest.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forest.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gincltex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gincltex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnuplottex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnuplottex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gradientframe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gradientframe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graph35.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graph35.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphviz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphviz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtrlib-largetrees.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtrlib-largetrees.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hf-tikz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hf-tikz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobby.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobby.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-make.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-make.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lroundrect.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lroundrect.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luasseq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luasseq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeshape.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeshape.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-penrose.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-penrose.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-blur.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-blur.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-cmykshadings.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-cmykshadings.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfgantt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfgantt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfmolbio.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfmolbio.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfopts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfopts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfplots.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfplots.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pict2e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pict2e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pixelart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pixelart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-postage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-postage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-productbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-productbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptolemaicastronomy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptolemaicastronomy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxpic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxpic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrcode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrcode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randbild.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randbild.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomwalk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomwalk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realhats.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realhats.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rviewport.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rviewport.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-signchart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-signchart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartdiagram.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartdiagram.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spath3.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spath3.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-imagelabels.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-imagelabels.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-page.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-page.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-timing.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-timing.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-truchet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-truchet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzinclude.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzinclude.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzmark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzmark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpagenodes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpagenodes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpfeile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpfeile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzposter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzposter.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzscale.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzscale.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzsymbols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzsymbols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tile-graphic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tile-graphic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tqft.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tqft.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venndiagram.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venndiagram.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpicture.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpicture.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adigraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adigraph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adigraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aobs-tikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aobs-tikz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aobs-tikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-askmaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-askmaps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-askmaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asyfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asyfig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asyfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asypictureb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asypictureb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asypictureb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autoarea-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autoarea-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autoarea-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bardiag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bardiag-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bardiag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerswitch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerswitch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerswitch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binarytree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binarytree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-binarytree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blochsphere-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blochsphere-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blochsphere-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bloques-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bloques-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bloques-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bodegraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bodegraph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bodegraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bondgraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bondgraph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bondgraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bondgraphs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bondgraphs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bondgraphs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braids-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braids-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-braids-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxeepic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxeepic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxeepic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cachepic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cachepic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cachepic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-callouts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-callouts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-callouts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-celtic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-celtic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-celtic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemfig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circuit-macros-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circuit-macros-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-circuit-macros-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circuitikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circuitikz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-circuitikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combinedgraphics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combinedgraphics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combinedgraphics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-curve-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve2e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-curve2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curves-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curves-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-curves-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dcpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dcpic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dcpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagmac2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagmac2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diagmac2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ditaa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ditaa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ditaa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doc-pictex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doc-pictex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doc-pictex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dot2texi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dot2texi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dot2texi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dottex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dottex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dottex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dpcircling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dpcircling-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dpcircling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dratex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dratex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dratex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duotenzor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duotenzor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-duotenzor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynkin-diagrams-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynkin-diagrams-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dynkin-diagrams-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecgdraw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecgdraw-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecgdraw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eepic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eepic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eepic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipse-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipse-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ellipse-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endofproofwd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endofproofwd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endofproofwd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epspdfconversion-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epspdfconversion-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epspdfconversion-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euflag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euflag-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euflag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fast-diagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fast-diagram-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fast-diagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fig4latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fig4latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fig4latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fitbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fitbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fitbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowchart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowchart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flowchart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forest-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forest-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forest-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genealogytree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genealogytree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-genealogytree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getmap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getmap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-getmap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gincltex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gincltex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gincltex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnuplottex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnuplottex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gnuplottex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gradientframe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gradientframe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gradientframe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grafcet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grafcet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grafcet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graph35-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graph35-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graph35-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicxpsd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicxpsd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphicxpsd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphviz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphviz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphviz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtrlib-largetrees-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtrlib-largetrees-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gtrlib-largetrees-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harveyballs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harveyballs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harveyballs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-here-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-here-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-here-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hf-tikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hf-tikz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hf-tikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobby-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobby-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hobby-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvfloat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvfloat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hvfloat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-istgame-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-istgame-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-istgame-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kblocks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kblocks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kblocks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knitting-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knitting-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-knitting-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knittingpattern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knittingpattern-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-knittingpattern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ladder-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ladder-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ladder-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lapdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lapdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lapdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-make-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-make-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-make-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lpic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lroundrect-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lroundrect-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lroundrect-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamesh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamesh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luamesh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luasseq-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luasseq-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luasseq-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maker-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maker-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-maker-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeshape-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeshape-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makeshape-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathspic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathspic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathspic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mercatormap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mercatormap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mercatormap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-milsymb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-milsymb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-milsymb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miniplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miniplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-miniplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkpic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mkpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modiagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modiagram-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modiagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-neuralnetwork-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-neuralnetwork-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-neuralnetwork-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nl-interval-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nl-interval-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nl-interval-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numericplots-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numericplots-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numericplots-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pb-diagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pb-diagram-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pb-diagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-penrose-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-penrose-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-penrose-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-petri-nets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-petri-nets-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-petri-nets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-blur-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-blur-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-blur-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-cmykshadings-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-cmykshadings-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-cmykshadings-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-pie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-pie-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-pie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-soroban-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-soroban-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-soroban-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-spectra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-spectra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-spectra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-umlcd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-umlcd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-umlcd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-umlsd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-umlsd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-umlsd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfgantt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfgantt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfgantt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfkeyx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfkeyx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfkeyx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfmolbio-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfmolbio-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfmolbio-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfmorepages-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfmorepages-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfmorepages-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfopts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfopts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfopts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfornament-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfornament-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfornament-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfplots-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfplots-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfplots-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-picinpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-picinpar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-picinpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pict2e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pict2e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pict2e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pictex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pictex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pictex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pictex2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pictex2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pictex2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pinlabel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pinlabel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pinlabel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pixelart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pixelart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pixelart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmgraph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmgraph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pmgraph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-postage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-postage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-postage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prerex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prerex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prerex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-productbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-productbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-productbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptolemaicastronomy-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptolemaicastronomy-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptolemaicastronomy-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-puyotikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-puyotikz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-puyotikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxpgfmark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxpgfmark-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxpgfmark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxpic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxpic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxpic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qcircuit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qcircuit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qcircuit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrcode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qrcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quantikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quantikz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quantikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randbild-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randbild-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-randbild-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomwalk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomwalk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-randomwalk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realhats-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realhats-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realhats-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reotex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reotex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-reotex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rviewport-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rviewport-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rviewport-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sa-tikz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sa-tikz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sa-tikz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schemabloc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schemabloc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schemabloc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scratch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratch3-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratch3-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scratch3-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scsnowman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scsnowman-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scsnowman-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-setdeck-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-setdeck-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-setdeck-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-signchart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-signchart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-signchart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpleoptics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpleoptics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simpleoptics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartdiagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartdiagram-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-smartdiagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spath3-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spath3-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spath3-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spectralsequences-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spectralsequences-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spectralsequences-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swimgraf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swimgraf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-swimgraf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntaxdi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntaxdi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-syntaxdi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-table-fct-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-table-fct-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-table-fct-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdraw-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texdraw-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texdraw-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ticollege-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ticollege-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ticollege-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-3dplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-3dplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-3dplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-among-us-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-among-us-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-among-us-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-bayesnet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-bayesnet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-bayesnet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-bbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-bbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-bbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-cd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-cd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-cd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-dependency-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-dependency-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-dependency-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-dimline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-dimline-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-dimline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-feynhand-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-feynhand-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-feynhand-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-feynman-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-feynman-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-feynman-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-imagelabels-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-imagelabels-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-imagelabels-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-inet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-inet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-inet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-kalender-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-kalender-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-kalender-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-karnaugh-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-karnaugh-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-karnaugh-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-ladder-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-ladder-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-ladder-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-lake-fig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-lake-fig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-lake-fig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-layers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-layers-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-layers-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-nef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-nef-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-nef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-network-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-network-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-network-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-opm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-opm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-opm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-optics-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-optics-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-optics-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-page-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-page-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-page-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-palattice-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-palattice-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-palattice-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-planets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-planets-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-planets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-qtree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-qtree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-qtree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-relay-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-relay-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-relay-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-sfc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-sfc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-sfc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-timing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-timing-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-timing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-trackschematic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-trackschematic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-trackschematic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-truchet-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-truchet-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-truchet-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzcodeblocks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzcodeblocks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzcodeblocks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzducks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzducks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzducks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzinclude-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzinclude-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzinclude-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzlings-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzlings-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzlings-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzmark-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzmark-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzmark-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzmarmots-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzmarmots-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzmarmots-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzorbital-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzorbital-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzorbital-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpackets-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpackets-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzpackets-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpagenodes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpagenodes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzpagenodes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpeople-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpeople-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzpeople-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpfeile-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpfeile-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzpfeile-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzposter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzposter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzposter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzscale-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzscale-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzscale-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzsymbols-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzsymbols-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzsymbols-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikztosvg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikztosvg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikztosvg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tile-graphic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tile-graphic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tile-graphic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timing-diagrams-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timing-diagrams-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-timing-diagrams-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipfr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipfr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tipfr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-base-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-base-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-base-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-berge-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-berge-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-berge-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-euclide-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-euclide-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-euclide-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-fct-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-fct-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-fct-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-graph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-graph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-graph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-orm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-orm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-orm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-tab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-tab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-tab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tqft-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tqft-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tqft-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tsemlines-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tsemlines-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tsemlines-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tufte-latex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tufte-latex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tufte-latex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tzplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tzplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tzplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utfsym-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utfsym-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-utfsym-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venndiagram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venndiagram-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-venndiagram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualpstricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualpstricks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-visualpstricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpicture-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpicture-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpicture-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xypic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xypic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xypic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-pictures-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-pictures-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-pictures-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adigraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adigraph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adigraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aobs-tikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aobs-tikz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aobs-tikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-askmaps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-askmaps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-askmaps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asyfig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asyfig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asyfig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asypictureb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asypictureb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asypictureb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autoarea.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autoarea.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autoarea.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bardiag.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bardiag.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bardiag.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerswitch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerswitch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerswitch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binarytree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binarytree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-binarytree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blochsphere.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blochsphere.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blochsphere.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bloques.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bloques.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bloques.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bodegraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bodegraph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bodegraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bondgraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bondgraph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bondgraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bondgraphs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bondgraphs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bondgraphs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braids.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braids.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-braids.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bxeepic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bxeepic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bxeepic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cachepic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cachepic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cachepic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-callouts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-callouts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-callouts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-celtic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-celtic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-celtic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chemfig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chemfig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chemfig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circuit-macros.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circuit-macros.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-circuit-macros.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-circuitikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-circuitikz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-circuitikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combinedgraphics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combinedgraphics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combinedgraphics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-curve.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve2e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-curve2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curves.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curves.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-curves.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dcpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dcpic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dcpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-diagmac2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-diagmac2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-diagmac2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ditaa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ditaa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ditaa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-doc-pictex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-doc-pictex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-doc-pictex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dot2texi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dot2texi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dot2texi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dottex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dottex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dottex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dpcircling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dpcircling.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dpcircling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dratex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dratex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dratex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-drs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-drs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-drs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-duotenzor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-duotenzor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-duotenzor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dynkin-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dynkin-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dynkin-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecgdraw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecgdraw.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecgdraw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eepic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eepic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eepic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipse.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipse.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ellipse.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-endofproofwd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-endofproofwd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-endofproofwd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epspdfconversion.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epspdfconversion.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epspdfconversion.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euflag.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euflag.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euflag.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fast-diagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fast-diagram.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fast-diagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fig4latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fig4latex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fig4latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fitbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fitbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fitbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowchart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowchart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flowchart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forest.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forest.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forest.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-genealogytree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-genealogytree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-genealogytree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getmap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getmap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-getmap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gincltex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gincltex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gincltex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnuplottex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnuplottex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gnuplottex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gradientframe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gradientframe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gradientframe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grafcet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grafcet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grafcet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graph35.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graph35.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graph35.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphicxpsd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphicxpsd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphicxpsd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphviz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphviz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphviz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtrlib-largetrees.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtrlib-largetrees.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gtrlib-largetrees.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-harveyballs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-harveyballs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-harveyballs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-here.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-here.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-here.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hf-tikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hf-tikz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hf-tikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobby.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobby.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hobby.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hvfloat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hvfloat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hvfloat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-istgame.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-istgame.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-istgame.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kblocks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kblocks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kblocks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knitting.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knitting.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-knitting.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-knittingpattern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-knittingpattern.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-knittingpattern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ladder.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ladder.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ladder.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lapdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lapdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lapdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-make.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-make.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-make.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lpic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lroundrect.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lroundrect.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lroundrect.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luamesh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luamesh.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luamesh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luasseq.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luasseq.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luasseq.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-maker.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-maker.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-maker.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeshape.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeshape.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makeshape.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathspic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathspic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathspic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mercatormap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mercatormap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mercatormap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-milsymb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-milsymb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-milsymb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-miniplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-miniplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-miniplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkpic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mkpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modiagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modiagram.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modiagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-neuralnetwork.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-neuralnetwork.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-neuralnetwork.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nl-interval.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nl-interval.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nl-interval.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-numericplots.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-numericplots.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-numericplots.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pb-diagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pb-diagram.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pb-diagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-penrose.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-penrose.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-penrose.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-petri-nets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-petri-nets.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-petri-nets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-blur.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-blur.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-blur.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-cmykshadings.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-cmykshadings.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-cmykshadings.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-pie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-pie.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-pie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-soroban.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-soroban.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-soroban.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-spectra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-spectra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-spectra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-umlcd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-umlcd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-umlcd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-umlsd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-umlsd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-umlsd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfgantt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfgantt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfgantt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfkeyx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfkeyx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfkeyx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfmolbio.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfmolbio.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfmolbio.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfmorepages.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfmorepages.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfmorepages.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfopts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfopts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfopts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfornament.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfornament.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfornament.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfplots.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfplots.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfplots.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-picinpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-picinpar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-picinpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pict2e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pict2e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pict2e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pictex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pictex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pictex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pinlabel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pinlabel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pinlabel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pixelart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pixelart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pixelart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pmgraph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pmgraph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pmgraph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-postage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-postage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-postage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prerex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prerex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prerex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-productbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-productbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-productbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptolemaicastronomy.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptolemaicastronomy.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptolemaicastronomy.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-puyotikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-puyotikz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-puyotikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxpgfmark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxpgfmark.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxpgfmark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxpic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxpic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxpic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qcircuit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qcircuit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qcircuit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrcode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qrcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quantikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quantikz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quantikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randbild.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randbild.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-randbild.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomwalk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomwalk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-randomwalk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realhats.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realhats.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realhats.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-reotex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-reotex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-reotex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rviewport.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rviewport.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rviewport.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sa-tikz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sa-tikz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sa-tikz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schemabloc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schemabloc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schemabloc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scratch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scratch3.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scratch3.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scratch3.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scsnowman.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scsnowman.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scsnowman.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-setdeck.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-setdeck.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-setdeck.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-signchart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-signchart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-signchart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simpleoptics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simpleoptics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simpleoptics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartdiagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartdiagram.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-smartdiagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spath3.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spath3.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spath3.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spectralsequences.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spectralsequences.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spectralsequences.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swimgraf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swimgraf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-swimgraf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-syntaxdi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-syntaxdi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-syntaxdi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-table-fct.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-table-fct.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-table-fct.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdraw.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texdraw.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texdraw.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ticollege.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ticollege.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ticollege.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-3dplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-3dplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-3dplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-among-us.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-among-us.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-among-us.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-bayesnet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-bayesnet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-bayesnet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-bbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-bbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-bbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-cd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-cd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-cd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-dependency.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-dependency.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-dependency.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-dimline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-dimline.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-dimline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-feynhand.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-feynhand.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-feynhand.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-feynman.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-feynman.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-feynman.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-imagelabels.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-imagelabels.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-imagelabels.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-inet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-inet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-inet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-kalender.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-kalender.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-kalender.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-karnaugh.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-karnaugh.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-karnaugh.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-ladder.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-ladder.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-ladder.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-lake-fig.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-lake-fig.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-lake-fig.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-layers.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-layers.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-layers.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-nef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-nef.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-nef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-network.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-network.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-network.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-opm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-opm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-opm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-optics.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-optics.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-optics.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-page.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-page.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-page.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-palattice.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-palattice.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-palattice.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-planets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-planets.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-planets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-qtree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-qtree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-qtree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-relay.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-relay.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-relay.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-sfc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-sfc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-sfc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-timing.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-timing.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-timing.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-trackschematic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-trackschematic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-trackschematic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-truchet.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-truchet.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-truchet.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzcodeblocks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzcodeblocks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzcodeblocks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzducks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzducks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzducks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzinclude.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzinclude.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzinclude.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzlings.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzlings.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzlings.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzmark.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzmark.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzmark.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzmarmots.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzmarmots.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzmarmots.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzorbital.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzorbital.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzorbital.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpackets.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpackets.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzpackets.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpagenodes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpagenodes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzpagenodes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpeople.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpeople.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzpeople.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpfeile.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpfeile.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzpfeile.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzposter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzposter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzposter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzscale.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzscale.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzscale.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzsymbols.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzsymbols.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzsymbols.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikztosvg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikztosvg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikztosvg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tile-graphic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tile-graphic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tile-graphic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timing-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timing-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-timing-diagrams.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tipfr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tipfr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tipfr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-base.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-base.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-base.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-berge.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-berge.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-berge.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-doc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-doc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-doc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-euclide.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-euclide.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-euclide.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-fct.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-fct.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-fct.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-graph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-graph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-graph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-orm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-orm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-orm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tkz-tab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tkz-tab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tkz-tab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tqft.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tqft.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tqft.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tufte-latex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tufte-latex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tufte-latex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tzplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tzplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tzplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utfsym.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utfsym.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-utfsym.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venndiagram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venndiagram.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-venndiagram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-visualpstricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-visualpstricks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-visualpstricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpicture.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpicture.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpicture.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xypic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xypic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xypic.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aobs-tikz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aobs-tikz.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aobs-tikz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asyfig.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asyfig.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asyfig.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asypictureb.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asypictureb.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asypictureb.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamerswitch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamerswitch.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamerswitch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-binarytree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-binarytree.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-binarytree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blochsphere.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blochsphere.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blochsphere.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-blox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-blox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-blox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bondgraphs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bondgraphs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bondgraphs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-braids.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-braids.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-braids.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-celtic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-celtic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-celtic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-combinedgraphics.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-combinedgraphics.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-combinedgraphics.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-curve.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curve2e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curve2e.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-curve2e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-curves.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-curves.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-curves.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dottex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dottex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dottex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecgdraw.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecgdraw.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecgdraw.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ellipse.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ellipse.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ellipse.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-esk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-esk.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-esk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-euflag.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-euflag.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-euflag.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fitbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fitbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fitbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-flowchart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-flowchart.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-flowchart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-forest.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-forest.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-forest.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gincltex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gincltex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gincltex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gnuplottex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gnuplottex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gnuplottex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gradientframe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gradientframe.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gradientframe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graph35.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graph35.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graph35.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphviz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphviz.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphviz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtrlib-largetrees.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtrlib-largetrees.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gtrlib-largetrees.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hf-tikz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hf-tikz.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hf-tikz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobby.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobby.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hobby.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-latex-make.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-latex-make.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-latex-make.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lroundrect.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lroundrect.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lroundrect.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-luasseq.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-luasseq.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-luasseq.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeshape.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeshape.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makeshape.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-penrose.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-penrose.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-penrose.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-blur.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-blur.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-blur.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgf-cmykshadings.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgf-cmykshadings.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgf-cmykshadings.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfgantt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfgantt.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfgantt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfmolbio.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfmolbio.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfmolbio.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfopts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfopts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfopts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pgfplots.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pgfplots.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pgfplots.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pict2e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pict2e.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pict2e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pixelart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pixelart.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pixelart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-postage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-postage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-postage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-productbox.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-productbox.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-productbox.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptolemaicastronomy.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptolemaicastronomy.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptolemaicastronomy.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pxpic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pxpic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pxpic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrcode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrcode.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qrcode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randbild.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randbild.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-randbild.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomwalk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomwalk.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-randomwalk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realhats.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realhats.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realhats.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rviewport.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rviewport.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rviewport.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-signchart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-signchart.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-signchart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-smartdiagram.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-smartdiagram.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-smartdiagram.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spath3.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spath3.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spath3.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-imagelabels.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-imagelabels.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-imagelabels.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-page.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-page.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-page.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-timing.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-timing.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-timing.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikz-truchet.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikz-truchet.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikz-truchet.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzinclude.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzinclude.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzinclude.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzmark.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzmark.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzmark.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpagenodes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpagenodes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzpagenodes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzpfeile.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzpfeile.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzpfeile.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzposter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzposter.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzposter.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzscale.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzscale.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzscale.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tikzsymbols.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tikzsymbols.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tikzsymbols.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tile-graphic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tile-graphic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tile-graphic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tqft.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tqft.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tqft.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-venndiagram.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-venndiagram.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-venndiagram.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xpicture.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xpicture.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xpicture.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=8d82835e9e729a54e94c447b26e2a9b8 diff --git a/metadata/md5-cache/dev-texlive/texlive-plaingeneric-2021 b/metadata/md5-cache/dev-texlive/texlive-plaingeneric-2021 index cc8ae8b36500..84d31135f721 100644 --- a/metadata/md5-cache/dev-texlive/texlive-plaingeneric-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-plaingeneric-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=GPL-1 GPL-2 GPL-3 LPPL-1.3 LPPL-1.3c MIT public-domain TeX TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=dev-texlive/texlive-basic-2019 !dev-texlive/texlive-genericextra !dev-texlive/texlive-genericrecommended !dev-texlive/texlive-plainextra >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abbr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abbr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abstyles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abstyles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apnum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apnum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autoaligne-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autoaligne-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitelist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitelist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-borceux-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-borceux-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-c-pascal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-c-pascal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catcodes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catcodes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chronosys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chronosys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorsep-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorsep-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-compare-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-compare-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb-old-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cweb-old-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dinat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dinat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docbytex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docbytex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dowith-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dowith-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eijkhout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eijkhout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-encxvlna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-encxvlna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsf-dvipdfmx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsf-dvipdfmx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-cs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-cs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-def-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-def-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-opt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-opt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fenixpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fenixpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figflow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figflow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixpdfmag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixpdfmag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fltpoint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fltpoint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fntproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fntproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-font-change-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-font-change-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontname-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontname-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gates-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gates-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getoptk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getoptk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfnotation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfnotation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gobble-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gobble-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-pln-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-pln-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyplain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyplain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-insbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-insbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-js-misc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-js-misc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kastrup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kastrup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lambda-lists-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lambda-lists-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lecturer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lecturer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letterspacing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letterspacing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listofitems-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listofitems-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-localloc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-localloc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathdots-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathdots-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-midnight-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-midnight-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkpattern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkpattern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modulus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modulus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multido-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multido-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namedef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namedef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-navigator-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-navigator-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newsletr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newsletr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ofs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ofs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-olsak-misc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-olsak-misc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outerhbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outerhbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-path-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-path-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdf-trans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdf-trans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pitex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pitex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeins-plain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeins-plain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plainpkg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plainpkg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plnfss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plnfss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plstmary-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plstmary-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poormanlog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poormanlog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-present-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-present-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pwebmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pwebmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-random-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-random-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resumemac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resumemac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ruler-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ruler-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schemata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schemata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shade-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shade-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplekv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplekv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swrule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swrule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-systeme-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-systeme-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabto-generic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabto-generic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termmenu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termmenu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex4ht-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex4ht-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texapi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texapi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texdate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timetable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timetable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tracklang-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tracklang-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-treetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-treetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trigonometry-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trigonometry-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upca-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upca-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varisize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varisize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xii-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xii-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xii-lat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xii-lat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xlop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xlop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zztex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zztex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-plaingeneric-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-plaingeneric-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abbr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abbr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abstyles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abstyles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apnum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apnum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autoaligne.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autoaligne.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitelist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitelist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-borceux.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-borceux.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-c-pascal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-c-pascal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catcodes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catcodes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chronosys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chronosys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dinat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dinat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docbytex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docbytex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dowith.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dowith.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-encxvlna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-encxvlna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsf-dvipdfmx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsf-dvipdfmx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-cs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-cs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-def.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-def.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-opt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-opt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fenixpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fenixpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figflow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figflow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fltpoint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fltpoint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fntproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fntproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-font-change.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-font-change.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontname.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontname.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gates.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gates.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getoptk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getoptk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfnotation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfnotation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gobble.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gobble.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-pln.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-pln.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyplain.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyplain.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-insbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-insbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-js-misc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-js-misc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kastrup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kastrup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lambda-lists.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lambda-lists.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lecturer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lecturer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listofitems.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listofitems.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-localloc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-localloc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathdots.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathdots.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-midnight.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-midnight.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkpattern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkpattern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modulus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modulus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multido.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multido.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namedef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namedef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-navigator.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-navigator.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newsletr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newsletr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ofs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ofs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-olsak-misc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-olsak-misc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-path.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-path.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdf-trans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdf-trans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pitex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pitex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plainpkg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plainpkg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plnfss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plnfss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plstmary.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plstmary.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poormanlog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poormanlog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-present.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-present.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pwebmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pwebmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-random.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-random.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resumemac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resumemac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schemata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schemata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shade.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shade.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplekv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplekv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-systeme.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-systeme.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termmenu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termmenu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex4ht.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex4ht.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texapi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texapi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texdate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tracklang.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tracklang.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-treetex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-treetex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trigonometry.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trigonometry.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upca.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upca.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varisize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varisize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xii.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xii.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xii-lat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xii-lat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xlop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xlop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zztex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zztex.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitelist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitelist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catcodes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catcodes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dowith.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dowith.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-cs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-cs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-def.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-def.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-opt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-opt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fltpoint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fltpoint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gobble.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gobble.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kastrup.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kastrup.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langcode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langcode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-localloc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-localloc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathdots.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathdots.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modulus.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modulus.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multido.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multido.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namedef.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namedef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plainpkg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plainpkg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomlist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomlist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schemata.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schemata.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termmenu.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termmenu.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texdate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tracklang.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tracklang.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abbr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abbr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abbr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abstyles-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abstyles-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abstyles-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apnum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apnum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apnum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autoaligne-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autoaligne-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autoaligne-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-barr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitelist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitelist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bitelist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-borceux-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-borceux-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-borceux-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-c-pascal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-c-pascal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-c-pascal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catcodes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catcodes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catcodes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chronosys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chronosys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chronosys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-colorsep-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-colorsep-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-colorsep-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-compare-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-compare-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-compare-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cweb-old-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cweb-old-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cweb-old-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dinat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dinat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dinat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dirtree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docbytex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docbytex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docbytex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dowith-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dowith-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dowith-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-eijkhout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-eijkhout-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-eijkhout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-encxvlna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-encxvlna-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-encxvlna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epigram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epigram-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epigram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epsf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsf-dvipdfmx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsf-dvipdfmx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epsf-dvipdfmx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-cs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-cs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv-cs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-def-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-def-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv-def-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-opt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-opt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv-opt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fenixpar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fenixpar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fenixpar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figflow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figflow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-figflow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixpdfmag-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixpdfmag-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixpdfmag-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fltpoint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fltpoint-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fltpoint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fntproof-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fntproof-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fntproof-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-font-change-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-font-change-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-font-change-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontname-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontname-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontname-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gates-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gates-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gates-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getoptk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getoptk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-getoptk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfnotation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfnotation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfnotation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gobble-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gobble-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gobble-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-pln-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-pln-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphics-pln-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gtl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hlist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyplain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyplain-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyplain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-insbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-insbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-insbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-js-misc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-js-misc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-js-misc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kastrup-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kastrup-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kastrup-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lambda-lists-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lambda-lists-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lambda-lists-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langcode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-langcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lecturer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lecturer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lecturer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-letterspacing-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-letterspacing-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-letterspacing-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librarian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librarian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-librarian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listofitems-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listofitems-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listofitems-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-localloc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-localloc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-localloc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathdots-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathdots-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathdots-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metatex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metatex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metatex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-midnight-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-midnight-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-midnight-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkpattern-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkpattern-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mkpattern-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modulus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modulus-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modulus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multido-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multido-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multido-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namedef-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namedef-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-namedef-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-navigator-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-navigator-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-navigator-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newsletr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newsletr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newsletr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nth-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nth-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nth-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ofs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ofs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ofs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-olsak-misc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-olsak-misc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-olsak-misc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-outerhbox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-outerhbox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-outerhbox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-path-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-path-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-path-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdf-trans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdf-trans-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdf-trans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pitex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pitex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pitex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-placeins-plain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-placeins-plain-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-placeins-plain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plainpkg-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plainpkg-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plainpkg-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plipsum-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plipsum-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plipsum-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plnfss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plnfss-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plnfss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plstmary-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plstmary-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plstmary-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poormanlog-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poormanlog-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poormanlog-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-present-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-present-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-present-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pwebmac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pwebmac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pwebmac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-random-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-random-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-random-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomlist-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomlist-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-randomlist-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resumemac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resumemac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-resumemac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ruler-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ruler-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ruler-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schemata-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schemata-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schemata-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shade-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shade-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shade-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplekv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplekv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplekv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soul-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soul-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soul-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-swrule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-swrule-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-swrule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-systeme-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-systeme-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-systeme-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabto-generic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabto-generic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabto-generic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termmenu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termmenu-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termmenu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-ps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex4ht-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex4ht-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex4ht-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texapi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texapi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texapi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texdate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texdate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texinfo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timetable-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timetable-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-timetable-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tracklang-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tracklang-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tracklang-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-treetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-treetex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-treetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trigonometry-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trigonometry-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trigonometry-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ulem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upca-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upca-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-upca-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varisize-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varisize-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-varisize-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xii-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xii-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xii-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xii-lat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xii-lat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xii-lat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xlop-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xlop-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xlop-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yax-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yax-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yax-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zztex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zztex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zztex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-plaingeneric-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-plaingeneric-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-plaingeneric-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abbr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abbr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abbr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abstyles.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abstyles.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abstyles.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apnum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apnum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apnum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-autoaligne.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-autoaligne.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-autoaligne.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-barr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-barr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-barr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitelist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitelist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bitelist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-borceux.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-borceux.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-borceux.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-c-pascal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-c-pascal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-c-pascal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catcodes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catcodes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catcodes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chronosys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chronosys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chronosys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dinat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dinat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dinat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dirtree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-docbytex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-docbytex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-docbytex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dowith.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dowith.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dowith.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-encxvlna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-encxvlna.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-encxvlna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epsf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-epsf-dvipdfmx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-epsf-dvipdfmx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-epsf-dvipdfmx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-cs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-cs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv-cs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-def.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-def.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv-def.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-opt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-opt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv-opt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fenixpar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fenixpar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fenixpar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-figflow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-figflow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-figflow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fltpoint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fltpoint.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fltpoint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fntproof.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fntproof.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fntproof.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-font-change.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-font-change.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-font-change.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontname.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontname.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontname.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gates.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gates.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gates.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-getoptk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-getoptk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-getoptk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gfnotation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gfnotation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gfnotation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gobble.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gobble.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gobble.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-graphics-pln.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-graphics-pln.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-graphics-pln.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gtl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hlist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hyplain.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hyplain.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hyplain.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-insbox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-insbox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-insbox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-js-misc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-js-misc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-js-misc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kastrup.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kastrup.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kastrup.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lambda-lists.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lambda-lists.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lambda-lists.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langcode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-langcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lecturer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lecturer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lecturer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-librarian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-librarian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-librarian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-listofitems.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-listofitems.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-listofitems.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-localloc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-localloc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-localloc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathdots.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathdots.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathdots.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-metatex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-metatex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-metatex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-midnight.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-midnight.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-midnight.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mkpattern.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mkpattern.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mkpattern.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modulus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modulus.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modulus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multido.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multido.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multido.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namedef.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namedef.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-namedef.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-navigator.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-navigator.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-navigator.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-newsletr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-newsletr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-newsletr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ofs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ofs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ofs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-olsak-misc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-olsak-misc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-olsak-misc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-path.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-path.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-path.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdf-trans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdf-trans.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdf-trans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pitex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pitex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pitex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plainpkg.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plainpkg.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plainpkg.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plipsum.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plipsum.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plipsum.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plnfss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plnfss.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plnfss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plstmary.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plstmary.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plstmary.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-poormanlog.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-poormanlog.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-poormanlog.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-present.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-present.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-present.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pwebmac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pwebmac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pwebmac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-random.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-random.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-random.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomlist.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomlist.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-randomlist.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resumemac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resumemac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-resumemac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schemata.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schemata.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schemata.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shade.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shade.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shade.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simplekv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simplekv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simplekv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soul.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soul.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soul.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-systeme.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-systeme.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-systeme.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termmenu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termmenu.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termmenu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex-ps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex-ps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex-ps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tex4ht.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tex4ht.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tex4ht.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texapi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texapi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texapi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texdate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texdate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tracklang.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tracklang.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tracklang.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-treetex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-treetex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-treetex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-trigonometry.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-trigonometry.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-trigonometry.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ulem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-upca.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-upca.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-upca.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-varisize.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-varisize.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-varisize.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xii.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xii.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xii.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xii-lat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xii-lat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xii-lat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xlop.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xlop.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xlop.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yax.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yax.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yax.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zztex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zztex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zztex.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bitelist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bitelist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bitelist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-catcodes.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-catcodes.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-catcodes.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dirtree.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dirtree.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dirtree.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dowith.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dowith.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dowith.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-cs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-cs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv-cs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-def.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-def.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv-def.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-expkv-opt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-expkv-opt.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-expkv-opt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fltpoint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fltpoint.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fltpoint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gobble.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gobble.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gobble.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gtl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gtl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gtl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kastrup.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kastrup.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kastrup.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langcode.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langcode.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-langcode.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-localloc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-localloc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-localloc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mathdots.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mathdots.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mathdots.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modulus.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modulus.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modulus.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-multido.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-multido.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-multido.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-namedef.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-namedef.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-namedef.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-plainpkg.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-plainpkg.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-plainpkg.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-randomlist.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-randomlist.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-randomlist.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schemata.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schemata.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schemata.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soul.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soul.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soul.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-termmenu.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-termmenu.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-termmenu.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texdate.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texdate.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texdate.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tracklang.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tracklang.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tracklang.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=f9460ec66a7a2f69dece0021be3a9a1d diff --git a/metadata/md5-cache/dev-texlive/texlive-pstricks-2021 b/metadata/md5-cache/dev-texlive/texlive-pstricks-2021 index 9a53fba83f3b..f300ea4c081c 100644 --- a/metadata/md5-cache/dev-texlive/texlive-pstricks-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-pstricks-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=GPL-1 GPL-2 LGPL-2 LGPL-3 LPPL-1.2 LPPL-1.3 LPPL-1.3c RDEPEND=>=dev-texlive/texlive-basic-2021 >=dev-texlive/texlive-plaingeneric-2021 dev-tex/pgf >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bclogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bclogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dsptricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dsptricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftricks2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftricks2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pedigree-perl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pedigree-perl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psbao-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psbao-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-2dplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-2dplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-3dplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-3dplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-abspos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-abspos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-arrow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-arrow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-am-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-am-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-antiprism-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-antiprism-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-asr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-asr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-barcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-barcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bezier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bezier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-blur-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-blur-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bspline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bspline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-calculate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-calculate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-calendar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-calendar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-cie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-cie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-circ-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-circ-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-coil-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-coil-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-contourplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-contourplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-cox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-cox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-dart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-dart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-dbicons-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-dbicons-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-diffraction-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-diffraction-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-electricfield-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-electricfield-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eucl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eucl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-exa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-exa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-feyn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-feyn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fill-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fill-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fr3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fr3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fractal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fractal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fun-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fun-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-func-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-func-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-gantt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-gantt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-geo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-geo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-geometrictools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-geometrictools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ghsb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ghsb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-gr3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-gr3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-grad-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-grad-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-graphicx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-graphicx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-infixplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-infixplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-intersect-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-intersect-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-jtree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-jtree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-knot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-knot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-labo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-labo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-layout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-layout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-lens-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-lens-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-light3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-light3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-lsystem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-lsystem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-magneticfield-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-magneticfield-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-marble-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-marble-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-mirror-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-mirror-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-moire-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-moire-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-node-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-node-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ob3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ob3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-optexp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-optexp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-optic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-optic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-osci-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-osci-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ovl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ovl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pad-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pad-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdgr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdgr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-perspective-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-perspective-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-platon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-platon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-plot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-plot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-poker-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-poker-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-poly-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-poly-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pulley-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pulley-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-qtree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-qtree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-rputover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-rputover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-rubans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-rubans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-shell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-shell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-sigsys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-sigsys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-slpe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-slpe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-solarsystem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-solarsystem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-solides3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-solides3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-soroban-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-soroban-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-spectra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-spectra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-spinner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-spinner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-stru-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-stru-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-support-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-support-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-text-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-text-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-thick-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-thick-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-turtle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-turtle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tvz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tvz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-uml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-uml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vectorian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vectorian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vehicle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vehicle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-venn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-venn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vowel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vowel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst2pdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst2pdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks-add-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks-add-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks_calcnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks_calcnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vaucanson-g-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vaucanson-g-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vocaltract-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vocaltract-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-pstricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-pstricks-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bclogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bclogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dsptricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dsptricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftricks2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftricks2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pedigree-perl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pedigree-perl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psbao.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psbao.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-2dplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-2dplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-3dplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-3dplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-abspos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-abspos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-arrow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-arrow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-am.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-am.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-antiprism.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-antiprism.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-asr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-asr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-barcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-barcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bezier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bezier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-blur.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-blur.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bspline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bspline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-calculate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-calculate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-calendar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-calendar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-cie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-cie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-circ.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-circ.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-coil.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-coil.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-contourplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-contourplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-cox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-cox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-dart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-dart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-dbicons.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-dbicons.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-diffraction.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-diffraction.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-electricfield.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-electricfield.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eucl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eucl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-exa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-exa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-feyn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-feyn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fill.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fill.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fr3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fr3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fractal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fractal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fun.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fun.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-func.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-func.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-gantt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-gantt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-geo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-geo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-geometrictools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-geometrictools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ghsb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ghsb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-gr3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-gr3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-grad.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-grad.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-graphicx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-graphicx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-infixplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-infixplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-intersect.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-intersect.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-jtree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-jtree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-knot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-knot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-labo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-labo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-layout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-layout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-lens.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-lens.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-light3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-light3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-lsystem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-lsystem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-magneticfield.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-magneticfield.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-marble.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-marble.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-mirror.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-mirror.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-moire.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-moire.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-node.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-node.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ob3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ob3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-optexp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-optexp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-optic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-optic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-osci.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-osci.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ovl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ovl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pad.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pad.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdgr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdgr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-perspective.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-perspective.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-platon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-platon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-plot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-plot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-poker.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-poker.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-poly.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-poly.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pulley.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pulley.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-qtree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-qtree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-rputover.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-rputover.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-rubans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-rubans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-shell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-shell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-sigsys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-sigsys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-slpe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-slpe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-solarsystem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-solarsystem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-solides3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-solides3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-soroban.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-soroban.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-spectra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-spectra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-spinner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-spinner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-stru.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-stru.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-support.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-support.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-text.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-text.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-thick.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-thick.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-turtle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-turtle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tvz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tvz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-uml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-uml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vectorian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vectorian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vehicle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vehicle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-venn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-venn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vowel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vowel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst2pdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst2pdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks-add.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks-add.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks_calcnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks_calcnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vaucanson-g.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vaucanson-g.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vocaltract.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vocaltract.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeplot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeplot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-3d.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-3d.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-abspos.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-abspos.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-am.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-am.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-blur.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-blur.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-dbicons.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-dbicons.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-diffraction.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-diffraction.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-electricfield.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-electricfield.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fill.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fill.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fr3d.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fr3d.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fun.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fun.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-gr3d.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-gr3d.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-intersect.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-intersect.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-lens.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-lens.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-light3d.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-light3d.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ob3d.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ob3d.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-optexp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-optexp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pad.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pad.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdgr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdgr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-platon.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-platon.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-rubans.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-rubans.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-shell.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-shell.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-slpe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-slpe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-soroban.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-soroban.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-thick.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-thick.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tvz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tvz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-uml.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-uml.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uml.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uml.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auto-pst-pdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bclogo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bclogo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bclogo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dsptricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dsptricks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dsptricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makeplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftricks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdftricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftricks2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftricks2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdftricks2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pedigree-perl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pedigree-perl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pedigree-perl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psbao-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psbao-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psbao-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-2dplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-2dplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-2dplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-3d-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-3dplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-3dplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-3dplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-abspos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-abspos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-abspos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-arrow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-arrow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-arrow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-am-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-am-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-am-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-antiprism-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-antiprism-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-antiprism-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-asr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-asr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-asr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-bar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-barcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-barcode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-barcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bezier-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bezier-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-bezier-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-blur-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-blur-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-blur-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bspline-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bspline-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-bspline-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-calculate-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-calculate-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-calculate-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-calendar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-calendar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-calendar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-cie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-cie-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-cie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-circ-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-circ-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-circ-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-coil-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-coil-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-coil-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-contourplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-contourplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-contourplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-cox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-cox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-cox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-dart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-dart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-dart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-dbicons-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-dbicons-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-dbicons-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-diffraction-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-diffraction-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-diffraction-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-electricfield-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-electricfield-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-electricfield-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-eps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eucl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eucl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-eucl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-exa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-exa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-exa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-feyn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-feyn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-feyn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fill-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fill-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fill-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fit-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fit-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fit-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fr3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fr3d-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fr3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fractal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fractal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fractal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fun-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fun-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fun-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-func-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-func-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-func-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-gantt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-gantt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-gantt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-geo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-geo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-geo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-geometrictools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-geometrictools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-geometrictools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ghsb-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ghsb-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-ghsb-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-gr3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-gr3d-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-gr3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-grad-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-grad-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-grad-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-graphicx-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-graphicx-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-graphicx-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-infixplot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-infixplot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-infixplot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-intersect-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-intersect-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-intersect-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-jtree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-jtree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-jtree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-knot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-knot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-knot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-labo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-labo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-labo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-layout-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-layout-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-layout-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-lens-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-lens-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-lens-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-light3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-light3d-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-light3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-lsystem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-lsystem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-lsystem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-magneticfield-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-magneticfield-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-magneticfield-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-marble-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-marble-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-marble-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-math-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-math-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-math-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-mirror-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-mirror-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-mirror-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-moire-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-moire-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-moire-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-node-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-node-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-node-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ob3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ob3d-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-ob3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-ode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-optexp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-optexp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-optexp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-optic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-optic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-optic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-osci-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-osci-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-osci-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ovl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ovl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-ovl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pad-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pad-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-pad-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdgr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdgr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-pdgr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-pdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-perspective-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-perspective-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-perspective-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-platon-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-platon-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-platon-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-plot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-plot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-plot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-poker-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-poker-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-poker-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-poly-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-poly-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-poly-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pulley-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pulley-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-pulley-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-qtree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-qtree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-qtree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-rputover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-rputover-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-rputover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-rubans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-rubans-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-rubans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-shell-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-shell-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-shell-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-sigsys-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-sigsys-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-sigsys-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-slpe-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-slpe-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-slpe-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-solarsystem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-solarsystem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-solarsystem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-solides3d-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-solides3d-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-solides3d-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-soroban-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-soroban-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-soroban-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-spectra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-spectra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-spectra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-spinner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-spinner-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-spinner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-stru-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-stru-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-stru-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-support-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-support-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-support-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-text-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-text-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-text-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-thick-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-thick-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-thick-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tools-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tools-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-tools-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tree-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tree-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-tree-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-turtle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-turtle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-turtle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tvz-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tvz-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-tvz-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-uml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-uml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-uml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vectorian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vectorian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-vectorian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vehicle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vehicle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-vehicle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-venn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-venn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-venn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vowel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vowel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-vowel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst2pdf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst2pdf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst2pdf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pstricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks-add-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks-add-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pstricks-add-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks_calcnotes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks_calcnotes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pstricks_calcnotes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uml-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uml-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uml-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vaucanson-g-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vaucanson-g-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vaucanson-g-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vocaltract-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vocaltract-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vocaltract-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-pstricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-pstricks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-pstricks-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auto-pst-pdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bclogo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bclogo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bclogo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dsptricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dsptricks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dsptricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makeplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftricks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdftricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pdftricks2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pdftricks2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pdftricks2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pedigree-perl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pedigree-perl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pedigree-perl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-psbao.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-psbao.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-psbao.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-2dplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-2dplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-2dplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-3d.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-3dplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-3dplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-3dplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-abspos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-abspos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-abspos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-arrow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-arrow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-arrow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-am.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-am.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-am.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-antiprism.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-antiprism.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-antiprism.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-asr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-asr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-asr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-bar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-barcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-barcode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-barcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bezier.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bezier.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-bezier.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-blur.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-blur.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-blur.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bspline.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bspline.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-bspline.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-calculate.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-calculate.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-calculate.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-calendar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-calendar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-calendar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-cie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-cie.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-cie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-circ.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-circ.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-circ.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-coil.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-coil.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-coil.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-contourplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-contourplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-contourplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-cox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-cox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-cox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-dart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-dart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-dart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-dbicons.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-dbicons.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-dbicons.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-diffraction.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-diffraction.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-diffraction.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-electricfield.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-electricfield.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-electricfield.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-eps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eucl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eucl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-eucl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-exa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-exa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-exa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-feyn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-feyn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-feyn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fill.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fill.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fill.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fit.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fit.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fit.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fr3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fr3d.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fr3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fractal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fractal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fractal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fun.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fun.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fun.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-func.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-func.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-func.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-gantt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-gantt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-gantt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-geo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-geo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-geo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-geometrictools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-geometrictools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-geometrictools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ghsb.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ghsb.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-ghsb.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-gr3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-gr3d.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-gr3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-grad.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-grad.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-grad.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-graphicx.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-graphicx.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-graphicx.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-infixplot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-infixplot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-infixplot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-intersect.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-intersect.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-intersect.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-jtree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-jtree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-jtree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-knot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-knot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-knot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-labo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-labo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-labo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-layout.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-layout.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-layout.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-lens.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-lens.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-lens.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-light3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-light3d.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-light3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-lsystem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-lsystem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-lsystem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-magneticfield.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-magneticfield.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-magneticfield.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-marble.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-marble.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-marble.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-math.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-math.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-math.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-mirror.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-mirror.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-mirror.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-moire.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-moire.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-moire.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-node.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-node.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-node.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ob3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ob3d.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-ob3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-ode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-optexp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-optexp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-optexp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-optic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-optic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-optic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-osci.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-osci.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-osci.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ovl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ovl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-ovl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pad.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pad.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-pad.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdgr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdgr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-pdgr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-pdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-perspective.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-perspective.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-perspective.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-platon.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-platon.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-platon.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-plot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-plot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-plot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-poker.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-poker.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-poker.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-poly.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-poly.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-poly.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pulley.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pulley.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-pulley.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-qtree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-qtree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-qtree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-rputover.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-rputover.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-rputover.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-rubans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-rubans.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-rubans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-shell.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-shell.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-shell.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-sigsys.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-sigsys.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-sigsys.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-slpe.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-slpe.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-slpe.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-solarsystem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-solarsystem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-solarsystem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-solides3d.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-solides3d.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-solides3d.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-soroban.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-soroban.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-soroban.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-spectra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-spectra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-spectra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-spinner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-spinner.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-spinner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-stru.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-stru.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-stru.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-support.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-support.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-support.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-text.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-text.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-text.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-thick.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-thick.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-thick.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tools.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tools.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-tools.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tree.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tree.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-tree.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-turtle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-turtle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-turtle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tvz.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tvz.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-tvz.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-uml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-uml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-uml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vectorian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vectorian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-vectorian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vehicle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vehicle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-vehicle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-venn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-venn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-venn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-vowel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-vowel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-vowel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst2pdf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst2pdf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst2pdf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pstricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks-add.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks-add.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pstricks-add.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pstricks_calcnotes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pstricks_calcnotes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pstricks_calcnotes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uml.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uml.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uml.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vaucanson-g.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vaucanson-g.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vaucanson-g.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vocaltract.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vocaltract.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vocaltract.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-auto-pst-pdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-auto-pst-pdf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-auto-pst-pdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-makeplot.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-makeplot.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-makeplot.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-3d.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-3d.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-3d.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-abspos.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-abspos.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-abspos.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-am.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-am.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-am.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-bar.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-bar.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-bar.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-blur.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-blur.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-blur.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-dbicons.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-dbicons.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-dbicons.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-diffraction.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-diffraction.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-diffraction.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-electricfield.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-electricfield.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-electricfield.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-eps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-eps.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-eps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fill.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fill.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fill.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fr3d.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fr3d.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fr3d.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-fun.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-fun.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-fun.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-gr3d.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-gr3d.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-gr3d.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-intersect.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-intersect.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-intersect.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-lens.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-lens.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-lens.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-light3d.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-light3d.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-light3d.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-ob3d.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-ob3d.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-ob3d.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-optexp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-optexp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-optexp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pad.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pad.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-pad.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdgr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdgr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-pdgr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-pdf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-pdf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-pdf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-platon.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-platon.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-platon.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-rubans.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-rubans.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-rubans.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-shell.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-shell.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-shell.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-slpe.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-slpe.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-slpe.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-soroban.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-soroban.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-soroban.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-thick.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-thick.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-thick.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-tvz.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-tvz.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-tvz.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pst-uml.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pst-uml.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pst-uml.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uml.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uml.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uml.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=8c01e45adfa8ba27ac26f5afc576437a diff --git a/metadata/md5-cache/dev-texlive/texlive-publishers-2021 b/metadata/md5-cache/dev-texlive/texlive-publishers-2021 index ae65a16bb9a5..ad4c7aafeaac 100644 --- a/metadata/md5-cache/dev-texlive/texlive-publishers-2021 +++ b/metadata/md5-cache/dev-texlive/texlive-publishers-2021 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 LICENSE=Apache-2.0 BSD GPL-2 CC0-1.0 RDEPEND=>=dev-texlive/texlive-latex-2021 >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-IEEEconf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-IEEEconf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-IEEEtran-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-IEEEtran-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aastex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aastex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abntex2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abntex2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmconf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmconf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-active-conf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-active-conf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adfathesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adfathesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afparticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afparticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aguplus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aguplus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aiaa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aiaa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ametsoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ametsoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonymous-acm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonymous-acm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anufinalexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anufinalexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aomart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aomart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa7-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa7-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arsclassica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arsclassica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-articleingud-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-articleingud-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asaetr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asaetr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascelike-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascelike-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asmeconf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asmeconf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asmejour-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asmejour-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aucklandthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aucklandthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorcsthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorcsthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bath-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bath-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-FUBerlin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-FUBerlin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-verona-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-verona-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beilstein-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beilstein-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bgteubner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bgteubner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-br-lex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-br-lex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-dissertation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-dissertation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-problemset-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-problemset-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascadilla-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascadilla-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cesenaexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cesenaexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chem-journal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chem-journal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chifoot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chifoot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chs-physics-report-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chs-physics-report-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cje-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cje-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classicthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classicthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cleanthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cleanthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmpj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmpj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-confproc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-confproc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cquthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cquthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dccpaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dccpaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dithesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dithesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebsthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebsthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecothesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecothesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ejpecp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ejpecp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekaia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekaia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elbioimp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elbioimp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-els-cas-templates-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-els-cas-templates-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elsarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elsarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elteikthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elteikthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emisa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emisa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erdc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erdc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-estcpmm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-estcpmm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etsvthor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etsvthor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facture-belge-simple-sans-tva-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facture-belge-simple-sans-tva-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbithesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbithesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcavtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcavtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcltxdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcltxdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fei-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fei-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftc-notebook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftc-notebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gaceta-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gaceta-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gammas-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gammas-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gatech-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gatech-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gradstudentresume-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gradstudentresume-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grant-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grant-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsemthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gsemthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gzt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gzt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-h2020proposal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-h2020proposal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hagenberg-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hagenberg-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-har2nat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-har2nat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hecthese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hecthese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hep-paper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hep-paper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hithesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hithesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszbeamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszbeamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobete-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobete-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hu-berlin-bundle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hu-berlin-bundle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hustthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hustthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icsv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icsv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ieeepes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ieeepes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijmart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijmart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijsra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijsra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imtekda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imtekda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inkpaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inkpaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iodhbwm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iodhbwm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iscram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iscram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jacow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jacow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jmlr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jmlr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jnuexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jnuexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jpsj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jpsj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kdgdocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kdgdocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kluwer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kluwer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ksp-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ksp-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ku-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ku-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langsci-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langsci-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langsci-avm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langsci-avm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limecv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limecv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lion-msc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lion-msc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-llncsconf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-llncsconf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lni-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lni-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3mem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3mem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcmthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcmthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mentis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mentis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlacls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlacls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mluexercise-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mluexercise-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnras-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnras-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modeles-factures-belges-assocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modeles-factures-belges-assocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msu-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msu-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mucproc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mucproc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mugsthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mugsthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-muling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-muling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musuos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musuos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-muthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-muthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mynsfc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mynsfc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nature-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nature-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-navydocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-navydocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nddiss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nddiss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ndsu-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ndsu-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-novel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-novel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nwejm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nwejm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nih-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nih-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nihbiosketch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nihbiosketch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nostarch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nostarch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nrc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nrc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onrannual-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onrannual-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opteng-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opteng-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oup-authoring-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oup-authoring-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philosophersimprint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philosophersimprint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pittetd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pittetd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkuthss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pkuthss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot-fuberlin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot-fuberlin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot-tuliplab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot-tuliplab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pracjourn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pracjourn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-procIAGssymp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-procIAGssymp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proposal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proposal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prtec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prtec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrbill-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrbill-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quantumarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quantumarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resphilosophica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resphilosophica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resumecls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resumecls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4-1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4-1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rutitlepage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rutitlepage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ryersonsgsthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ryersonsgsthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ryethesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ryethesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sageep-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sageep-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sapthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sapthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrjrnl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrjrnl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scientific-thesis-cover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scientific-thesis-cover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sduthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sduthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shortmathj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shortmathj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shtthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shtthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soton-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soton-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sphdthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sphdthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sr-vorl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sr-vorl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srdp-mathematik-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srdp-mathematik-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stellenbosch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stellenbosch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suftesi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suftesi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sugconf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sugconf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabriz-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabriz-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-technion-thesis-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-technion-thesis-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texilikechaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texilikechaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texilikecover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texilikecover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-ekf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-ekf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-gwu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-gwu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-qom-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-qom-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-titlepage-fhac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-titlepage-fhac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thuaslogos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thuaslogos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thucoursework-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thucoursework-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thuthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thuthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timbreicmc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timbreicmc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlc-article-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlc-article-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toptesi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toptesi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tuda-ci-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tuda-ci-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tudscr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tudscr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tugboat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tugboat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tugboat-plain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tugboat-plain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turabian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turabian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tui-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tui-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uaclasses-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uaclasses-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uafthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uafthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uantwerpendocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uantwerpendocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucalgmthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucalgmthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucbthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucbthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucdavisthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucdavisthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucsmonograph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucsmonograph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uestcthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uestcthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhhassignment-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhhassignment-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucredborder-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucredborder-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulthese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulthese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umbclegislation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umbclegislation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umich-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umich-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unam-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unam-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unamth-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unamth-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unamthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unamthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unifith-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unifith-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitn-bimrep-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitn-bimrep-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-univie-ling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-univie-ling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unizgklasa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unizgklasa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unswcover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unswcover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uothesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uothesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urcls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urcls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uowthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uowthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uowthesistitlepage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uowthesistitlepage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uspatent-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uspatent-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ut-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ut-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utexasthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utexasthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uwthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uwthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vancouver-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vancouver-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xduthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xduthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmuthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmuthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wsemclassic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wsemclassic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yathesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yathesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yazd-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yazd-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-york-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-york-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-publishers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-publishers-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-IEEEconf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-IEEEconf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-IEEEtran.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-IEEEtran.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aastex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aastex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abntex2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abntex2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmconf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmconf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-active-conf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-active-conf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adfathesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adfathesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afparticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afparticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aguplus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aguplus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aiaa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aiaa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ametsoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ametsoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonymous-acm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonymous-acm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anufinalexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anufinalexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aomart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aomart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa7.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa7.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arsclassica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arsclassica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-articleingud.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-articleingud.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asaetr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asaetr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascelike.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascelike.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asmeconf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asmeconf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asmejour.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asmejour.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aucklandthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aucklandthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorcsthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorcsthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bath-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bath-bst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-FUBerlin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-FUBerlin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-verona.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-verona.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beilstein.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beilstein.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bgteubner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bgteubner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-br-lex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-br-lex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-dissertation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-dissertation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-problemset.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-problemset.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascadilla.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascadilla.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cesenaexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cesenaexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chifoot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chifoot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chs-physics-report.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chs-physics-report.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cje.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cje.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classicthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classicthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cleanthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cleanthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmpj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmpj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-confproc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-confproc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cquthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cquthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dccpaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dccpaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dithesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dithesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebsthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebsthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecothesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecothesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ejpecp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ejpecp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekaia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekaia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elbioimp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elbioimp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-els-cas-templates.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-els-cas-templates.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elsarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elsarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elteikthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elteikthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emisa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emisa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erdc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erdc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-estcpmm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-estcpmm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etsvthor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etsvthor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facture-belge-simple-sans-tva.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facture-belge-simple-sans-tva.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbithesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbithesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcavtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcavtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcltxdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcltxdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fei.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fei.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftc-notebook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftc-notebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gaceta.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gaceta.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gammas.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gammas.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gatech-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gatech-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gradstudentresume.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gradstudentresume.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grant.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grant.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsemthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gsemthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gzt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gzt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-h2020proposal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-h2020proposal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hagenberg-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hagenberg-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-har2nat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-har2nat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hecthese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hecthese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hep-paper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hep-paper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hithesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hithesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszbeamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszbeamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobete.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobete.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hu-berlin-bundle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hu-berlin-bundle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hustthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hustthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icsv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icsv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ieeepes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ieeepes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijmart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijmart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijsra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijsra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imtekda.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imtekda.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inkpaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inkpaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iodhbwm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iodhbwm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iscram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iscram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jacow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jacow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jmlr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jmlr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jnuexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jnuexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jpsj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jpsj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kdgdocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kdgdocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kluwer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kluwer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ksp-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ksp-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ku-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ku-template.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langsci.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langsci.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langsci-avm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langsci-avm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limecv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limecv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lion-msc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lion-msc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-llncsconf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-llncsconf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lni.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lni.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3mem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3mem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcmthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcmthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mentis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mentis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlacls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlacls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mluexercise.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mluexercise.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnras.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnras.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modeles-factures-belges-assocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modeles-factures-belges-assocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msu-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msu-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mucproc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mucproc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mugsthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mugsthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-muling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-muling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musuos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musuos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-muthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-muthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mynsfc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mynsfc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nature.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nature.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-navydocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-navydocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nddiss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nddiss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ndsu-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ndsu-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-novel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-novel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nwejm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nwejm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nih.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nih.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nihbiosketch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nihbiosketch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nostarch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nostarch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nrc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nrc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onrannual.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onrannual.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opteng.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opteng.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oup-authoring-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oup-authoring-template.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philosophersimprint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philosophersimprint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pittetd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pittetd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkuthss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pkuthss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot-fuberlin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot-fuberlin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot-tuliplab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot-tuliplab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pracjourn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pracjourn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-procIAGssymp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-procIAGssymp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proposal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proposal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prtec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prtec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrbill.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrbill.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quantumarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quantumarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resphilosophica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resphilosophica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resumecls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resumecls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4-1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4-1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rutitlepage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rutitlepage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ryersonsgsthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ryersonsgsthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ryethesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ryethesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sageep.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sageep.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sapthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sapthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrjrnl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrjrnl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scientific-thesis-cover.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scientific-thesis-cover.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sduthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sduthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shortmathj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shortmathj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shtthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shtthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soton.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soton.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sphdthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sphdthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sr-vorl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sr-vorl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srdp-mathematik.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srdp-mathematik.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stellenbosch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stellenbosch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suftesi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suftesi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sugconf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sugconf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabriz-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabriz-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-technion-thesis-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-technion-thesis-template.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-ekf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-ekf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-gwu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-gwu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-qom.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-qom.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-titlepage-fhac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-titlepage-fhac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thuaslogos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thuaslogos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thucoursework.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thucoursework.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thuthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thuthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timbreicmc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timbreicmc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlc-article.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlc-article.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toptesi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toptesi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tuda-ci.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tuda-ci.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tudscr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tudscr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tugboat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tugboat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tugboat-plain.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tugboat-plain.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turabian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turabian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tui.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tui.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uaclasses.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uaclasses.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uafthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uafthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uantwerpendocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uantwerpendocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucalgmthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucalgmthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucbthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucbthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucdavisthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucdavisthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucsmonograph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucsmonograph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uestcthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uestcthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhhassignment.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhhassignment.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucredborder.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucredborder.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulthese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulthese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umbclegislation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umbclegislation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umich-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umich-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unam-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unam-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unamth-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unamth-template.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unamthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unamthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unifith.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unifith.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitn-bimrep.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitn-bimrep.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-univie-ling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-univie-ling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unizgklasa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unizgklasa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unswcover.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unswcover.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uothesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uothesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urcls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urcls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uowthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uowthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uowthesistitlepage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uowthesistitlepage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uspatent.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uspatent.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ut-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ut-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utexasthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utexasthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uwthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uwthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vancouver.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vancouver.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xduthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xduthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmuthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmuthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wsemclassic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wsemclassic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yathesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yathesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yazd-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yazd-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-york-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-york-thesis.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-IEEEconf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-IEEEconf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmconf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmconf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-active-conf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-active-conf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adfathesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adfathesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afparticle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afparticle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aiaa.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aiaa.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aomart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aomart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa7.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa7.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-articleingud.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-articleingud.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorcsthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorcsthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorexam.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorexam.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bath-bst.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bath-bst.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beilstein.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beilstein.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bgteubner.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bgteubner.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-dissertation.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-dissertation.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-thesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-thesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cesenaexam.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cesenaexam.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-confproc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-confproc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cquthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cquthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dccpaper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dccpaper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebsthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebsthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ejpecp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ejpecp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekaia.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekaia.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elbioimp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elbioimp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elsarticle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elsarticle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emisa.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emisa.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erdc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erdc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-estcpmm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-estcpmm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbithesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbithesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcltxdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcltxdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fei.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fei.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grant.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grant.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsemthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gsemthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gzt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gzt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hecthese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hecthese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hep-paper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hep-paper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hithesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hithesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszbeamer.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszbeamer.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hu-berlin-bundle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hu-berlin-bundle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hustthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hustthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icsv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icsv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijmart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijmart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imtekda.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imtekda.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jmlr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jmlr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kdgdocs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kdgdocs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kluwer.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kluwer.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langsci-avm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langsci-avm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limecv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limecv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lni.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lni.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3mem.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3mem.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcmthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcmthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mentis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mentis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlacls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlacls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mluexercise.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mluexercise.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mucproc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mucproc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mugsthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mugsthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-muling.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-muling.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musuos.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musuos.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mynsfc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mynsfc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-navydocs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-navydocs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nddiss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nddiss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nwejm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nwejm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nostarch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nostarch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nrc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nrc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philosophersimprint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philosophersimprint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pittetd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pittetd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pracjourn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pracjourn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proposal.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proposal.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrbill.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrbill.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resphilosophica.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resphilosophica.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resumecls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resumecls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4-1.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4-1.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rutitlepage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rutitlepage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ryethesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ryethesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sageep.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sageep.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrjrnl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrjrnl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scientific-thesis-cover.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scientific-thesis-cover.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sduthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sduthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sr-vorl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sr-vorl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stellenbosch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stellenbosch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suftesi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suftesi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-ekf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-ekf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-titlepage-fhac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-titlepage-fhac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thucoursework.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thucoursework.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thuthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thuthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timbreicmc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timbreicmc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topletter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topletter.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toptesi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toptesi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tudscr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tudscr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tugboat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tugboat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uaclasses.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uaclasses.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uantwerpendocs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uantwerpendocs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucdavisthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucdavisthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucsmonograph.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucsmonograph.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhhassignment.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhhassignment.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucredborder.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucredborder.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulthese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulthese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uothesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uothesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ut-thesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ut-thesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xduthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xduthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmuthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmuthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wsemclassic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wsemclassic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yathesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yathesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-york-thesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-york-thesis.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-IEEEconf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-IEEEconf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-IEEEconf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-IEEEtran-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-IEEEtran-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-IEEEtran-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aastex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aastex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aastex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abnt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abnt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abnt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abntex2-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abntex2-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abntex2-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acmart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmconf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmconf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acmconf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-active-conf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-active-conf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-active-conf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adfathesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adfathesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adfathesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afparticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afparticle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-afparticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-afthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aguplus-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aguplus-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aguplus-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aiaa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aiaa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aiaa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ametsoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ametsoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ametsoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonymous-acm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonymous-acm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anonymous-acm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anufinalexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anufinalexam-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anufinalexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aomart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aomart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aomart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apa6-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6e-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6e-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apa6e-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa7-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa7-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apa7-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arsclassica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arsclassica-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arsclassica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-articleingud-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-articleingud-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-articleingud-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asaetr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asaetr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asaetr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascelike-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascelike-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ascelike-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asmeconf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asmeconf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asmeconf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asmejour-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asmejour-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asmejour-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aucklandthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aucklandthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aucklandthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorcsthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorcsthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bangorcsthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorexam-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bangorexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bath-bst-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bath-bst-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bath-bst-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-FUBerlin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-FUBerlin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamer-FUBerlin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-verona-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-verona-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamer-verona-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beilstein-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beilstein-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beilstein-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bgteubner-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bgteubner-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bgteubner-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-br-lex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-br-lex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-br-lex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-dissertation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-dissertation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-brandeis-dissertation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-problemset-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-problemset-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-brandeis-problemset-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-brandeis-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascadilla-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascadilla-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cascadilla-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cesenaexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cesenaexam-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cesenaexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chem-journal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chem-journal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chem-journal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chifoot-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chifoot-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chifoot-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chs-physics-report-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chs-physics-report-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chs-physics-report-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cje-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cje-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cje-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classicthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classicthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-classicthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cleanthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cleanthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cleanthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmpj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmpj-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmpj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-confproc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-confproc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-confproc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cquthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cquthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cquthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dccpaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dccpaper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dccpaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dithesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dithesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dithesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebsthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebsthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebsthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecothesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecothesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecothesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ejpecp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ejpecp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ejpecp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekaia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekaia-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekaia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elbioimp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elbioimp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elbioimp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-els-cas-templates-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-els-cas-templates-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-els-cas-templates-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elsarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elsarticle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elsarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elteikthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elteikthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elteikthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emisa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emisa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emisa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erdc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erdc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-erdc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-estcpmm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-estcpmm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-estcpmm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etsvthor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etsvthor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etsvthor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facture-belge-simple-sans-tva-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facture-belge-simple-sans-tva-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-facture-belge-simple-sans-tva-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbithesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbithesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fbithesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcavtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcavtex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fcavtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcltxdoc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcltxdoc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fcltxdoc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fei-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fei-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fei-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftc-notebook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftc-notebook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ftc-notebook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gaceta-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gaceta-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gaceta-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gammas-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gammas-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gammas-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gatech-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gatech-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gatech-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gradstudentresume-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gradstudentresume-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gradstudentresume-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grant-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grant-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grant-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsemthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gsemthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gsemthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gzt-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gzt-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gzt-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-h2020proposal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-h2020proposal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-h2020proposal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hagenberg-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hagenberg-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hagenberg-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-har2nat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-har2nat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-har2nat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hecthese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hecthese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hecthese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hep-paper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hep-paper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hep-paper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hithesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hithesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hithesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hitszthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszbeamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszbeamer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hitszbeamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobete-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobete-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hobete-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hu-berlin-bundle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hu-berlin-bundle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hu-berlin-bundle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hustthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hustthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hustthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icsv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icsv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-icsv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ieeepes-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ieeepes-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ieeepes-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijmart-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijmart-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ijmart-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijsra-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijsra-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ijsra-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imtekda-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imtekda-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imtekda-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inkpaper-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inkpaper-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inkpaper-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iodhbwm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iodhbwm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iodhbwm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iscram-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iscram-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iscram-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jacow-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jacow-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jacow-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jmlr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jmlr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jmlr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jnuexam-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jnuexam-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jnuexam-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jpsj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jpsj-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jpsj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kdgdocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kdgdocs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kdgdocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kluwer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kluwer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kluwer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ksp-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ksp-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ksp-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ku-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ku-template-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ku-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langsci-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langsci-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-langsci-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langsci-avm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langsci-avm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-langsci-avm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limecv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limecv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-limecv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lion-msc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lion-msc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lion-msc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-llncsconf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-llncsconf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-llncsconf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lni-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lni-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lni-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matc3-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3mem-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3mem-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matc3mem-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcmthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcmthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcmthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mentis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mentis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mentis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlacls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlacls-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mlacls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mluexercise-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mluexercise-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mluexercise-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnras-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnras-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mnras-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modeles-factures-belges-assocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modeles-factures-belges-assocs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modeles-factures-belges-assocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msu-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msu-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-msu-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mucproc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mucproc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mucproc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mugsthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mugsthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mugsthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-muling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-muling-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-muling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musuos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musuos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musuos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-muthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-muthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-muthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mynsfc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mynsfc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mynsfc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nature-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nature-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nature-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-navydocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-navydocs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-navydocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nddiss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nddiss-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nddiss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ndsu-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ndsu-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ndsu-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-novel-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-novel-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-novel-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nwejm-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nwejm-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nwejm-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nih-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nih-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nih-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nihbiosketch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nihbiosketch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nihbiosketch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nostarch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nostarch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nostarch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nrc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nrc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nrc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onrannual-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onrannual-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-onrannual-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opteng-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opteng-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-opteng-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oup-authoring-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oup-authoring-template-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oup-authoring-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philosophersimprint-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philosophersimprint-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-philosophersimprint-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pittetd-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pittetd-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pittetd-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkuthss-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pkuthss-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pkuthss-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot-fuberlin-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot-fuberlin-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-powerdot-fuberlin-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot-tuliplab-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot-tuliplab-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-powerdot-tuliplab-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pracjourn-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pracjourn-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pracjourn-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-procIAGssymp-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-procIAGssymp-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-procIAGssymp-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proposal-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proposal-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proposal-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prtec-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prtec-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prtec-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptptex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptptex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptptex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrbill-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrbill-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qrbill-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quantumarticle-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quantumarticle-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quantumarticle-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resphilosophica-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resphilosophica-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-resphilosophica-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resumecls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resumecls-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-resumecls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revtex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revtex4-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4-1-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4-1-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revtex4-1-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rutitlepage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rutitlepage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rutitlepage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ryersonsgsthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ryersonsgsthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ryersonsgsthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ryethesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ryethesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ryethesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sageep-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sageep-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sageep-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sapthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sapthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sapthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schule-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schule-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schule-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrjrnl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrjrnl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scrjrnl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scientific-thesis-cover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scientific-thesis-cover-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scientific-thesis-cover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sduthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sduthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sduthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seuthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesix-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesix-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seuthesix-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shortmathj-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shortmathj-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shortmathj-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shtthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shtthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shtthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soton-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soton-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soton-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sphdthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sphdthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sphdthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spie-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spie-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spie-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sr-vorl-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sr-vorl-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sr-vorl-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srdp-mathematik-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srdp-mathematik-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-srdp-mathematik-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stellenbosch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stellenbosch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stellenbosch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suftesi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suftesi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-suftesi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sugconf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sugconf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sugconf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabriz-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabriz-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabriz-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-technion-thesis-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-technion-thesis-template-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-technion-thesis-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texilikechaps-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texilikechaps-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texilikechaps-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-texilikecover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-texilikecover-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-texilikecover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-ekf-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-ekf-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thesis-ekf-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-gwu-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-gwu-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thesis-gwu-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-qom-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-qom-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thesis-qom-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-titlepage-fhac-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-titlepage-fhac-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thesis-titlepage-fhac-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thuaslogos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thuaslogos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thuaslogos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thucoursework-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thucoursework-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thucoursework-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thuthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thuthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thuthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timbreicmc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timbreicmc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-timbreicmc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlc-article-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlc-article-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tlc-article-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topletter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topletter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-topletter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toptesi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toptesi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-toptesi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tuda-ci-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tuda-ci-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tuda-ci-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tudscr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tudscr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tudscr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tugboat-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tugboat-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tugboat-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tugboat-plain-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tugboat-plain-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tugboat-plain-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turabian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turabian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turabian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tui-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tui-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tui-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uaclasses-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uaclasses-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uaclasses-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uafthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uafthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uafthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uantwerpendocs-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uantwerpendocs-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uantwerpendocs-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucalgmthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucalgmthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucalgmthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucbthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucbthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucbthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucdavisthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucdavisthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucdavisthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucsmonograph-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucsmonograph-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucsmonograph-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uestcthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uestcthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uestcthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhhassignment-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhhassignment-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uhhassignment-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucredborder-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucredborder-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uiucredborder-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uiucthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulthese-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulthese-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ulthese-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umbclegislation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umbclegislation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umbclegislation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umich-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umich-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umich-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unam-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unam-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unam-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unamth-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unamth-template-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unamth-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unamthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unamthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unamthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unifith-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unifith-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unifith-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitn-bimrep-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitn-bimrep-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unitn-bimrep-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-univie-ling-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-univie-ling-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-univie-ling-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unizgklasa-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unizgklasa-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unizgklasa-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unswcover-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unswcover-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unswcover-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uothesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uothesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uothesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urcls-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urcls-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-urcls-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uowthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uowthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uowthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uowthesistitlepage-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uowthesistitlepage-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uowthesistitlepage-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uspatent-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uspatent-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uspatent-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ut-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ut-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ut-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utexasthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utexasthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-utexasthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uwthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uwthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uwthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vancouver-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vancouver-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vancouver-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xduthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xduthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xduthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmuthesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmuthesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xmuthesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wsemclassic-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wsemclassic-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wsemclassic-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yathesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yathesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yathesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yazd-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yazd-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yazd-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-york-thesis-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-york-thesis-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-york-thesis-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-publishers-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-publishers-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-publishers-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-IEEEconf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-IEEEconf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-IEEEconf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-IEEEtran.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-IEEEtran.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-IEEEtran.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aastex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aastex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aastex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abnt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abnt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abnt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-abntex2.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-abntex2.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-abntex2.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acmart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmconf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmconf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acmconf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-active-conf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-active-conf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-active-conf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adfathesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adfathesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adfathesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afparticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afparticle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-afparticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-afthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aguplus.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aguplus.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aguplus.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aiaa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aiaa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aiaa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ametsoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ametsoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ametsoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anonymous-acm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anonymous-acm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anonymous-acm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-anufinalexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-anufinalexam.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-anufinalexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aomart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aomart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aomart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apa6.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6e.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6e.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apa6e.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa7.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa7.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apa7.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arsclassica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arsclassica.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arsclassica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-articleingud.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-articleingud.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-articleingud.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asaetr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asaetr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asaetr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ascelike.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ascelike.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ascelike.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asmeconf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asmeconf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asmeconf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-asmejour.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-asmejour.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-asmejour.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aucklandthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aucklandthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aucklandthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorcsthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorcsthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bangorcsthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorexam.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bangorexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bath-bst.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bath-bst.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bath-bst.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-FUBerlin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-FUBerlin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamer-FUBerlin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beamer-verona.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beamer-verona.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beamer-verona.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beilstein.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beilstein.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beilstein.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bgteubner.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bgteubner.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bgteubner.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-br-lex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-br-lex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-br-lex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-dissertation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-dissertation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-brandeis-dissertation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-problemset.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-problemset.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-brandeis-problemset.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-brandeis-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cascadilla.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cascadilla.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cascadilla.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cesenaexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cesenaexam.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cesenaexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chifoot.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chifoot.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chifoot.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-chs-physics-report.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-chs-physics-report.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-chs-physics-report.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cje.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cje.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cje.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-classicthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-classicthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-classicthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cleanthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cleanthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cleanthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cmpj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cmpj.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cmpj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-confproc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-confproc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-confproc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cquthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cquthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cquthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dccpaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dccpaper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dccpaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dithesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dithesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dithesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebsthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebsthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebsthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ecothesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ecothesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ecothesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ejpecp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ejpecp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ejpecp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekaia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekaia.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekaia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elbioimp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elbioimp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elbioimp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-els-cas-templates.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-els-cas-templates.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-els-cas-templates.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elsarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elsarticle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elsarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elteikthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elteikthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elteikthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emisa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emisa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emisa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erdc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erdc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-erdc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-estcpmm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-estcpmm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-estcpmm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-etsvthor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-etsvthor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-etsvthor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-facture-belge-simple-sans-tva.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-facture-belge-simple-sans-tva.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-facture-belge-simple-sans-tva.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbithesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbithesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fbithesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcavtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcavtex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fcavtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcltxdoc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcltxdoc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fcltxdoc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fei.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fei.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fei.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ftc-notebook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ftc-notebook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ftc-notebook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gaceta.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gaceta.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gaceta.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gammas.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gammas.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gammas.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gatech-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gatech-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gatech-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gradstudentresume.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gradstudentresume.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gradstudentresume.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grant.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grant.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grant.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsemthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gsemthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gsemthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gzt.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gzt.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gzt.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-h2020proposal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-h2020proposal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-h2020proposal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hagenberg-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hagenberg-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hagenberg-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-har2nat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-har2nat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-har2nat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hecthese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hecthese.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hecthese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hep-paper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hep-paper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hep-paper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hithesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hithesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hithesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hitszthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszbeamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszbeamer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hitszbeamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hobete.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hobete.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hobete.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hu-berlin-bundle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hu-berlin-bundle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hu-berlin-bundle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hustthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hustthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hustthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icsv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icsv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-icsv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ieeepes.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ieeepes.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ieeepes.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijmart.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijmart.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ijmart.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijsra.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijsra.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ijsra.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imtekda.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imtekda.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imtekda.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-inkpaper.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-inkpaper.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-inkpaper.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iodhbwm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iodhbwm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iodhbwm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-iscram.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-iscram.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-iscram.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jacow.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jacow.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jacow.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jmlr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jmlr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jmlr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jnuexam.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jnuexam.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jnuexam.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jpsj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jpsj.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jpsj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kdgdocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kdgdocs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kdgdocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kluwer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kluwer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kluwer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ksp-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ksp-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ksp-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ku-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ku-template.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ku-template.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langsci.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langsci.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-langsci.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langsci-avm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langsci-avm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-langsci-avm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limecv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limecv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-limecv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lion-msc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lion-msc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lion-msc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-llncsconf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-llncsconf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-llncsconf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lni.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lni.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lni.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lps.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lps.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lps.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matc3.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3mem.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3mem.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matc3mem.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcmthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcmthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcmthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mentis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mentis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mentis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlacls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlacls.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mlacls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mluexercise.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mluexercise.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mluexercise.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mnras.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mnras.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mnras.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-modeles-factures-belges-assocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-modeles-factures-belges-assocs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-modeles-factures-belges-assocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-msu-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-msu-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-msu-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mucproc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mucproc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mucproc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mugsthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mugsthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mugsthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-muling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-muling.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-muling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musuos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musuos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musuos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-muthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-muthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-muthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mynsfc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mynsfc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mynsfc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nature.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nature.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nature.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-navydocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-navydocs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-navydocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nddiss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nddiss.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nddiss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ndsu-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ndsu-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ndsu-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-novel.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-novel.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-novel.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nwejm.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nwejm.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nwejm.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nih.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nih.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nih.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nihbiosketch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nihbiosketch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nihbiosketch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nostarch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nostarch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nostarch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nrc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nrc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nrc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-onrannual.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-onrannual.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-onrannual.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-opteng.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-opteng.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-opteng.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-oup-authoring-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-oup-authoring-template.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-oup-authoring-template.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philosophersimprint.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philosophersimprint.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-philosophersimprint.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pittetd.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pittetd.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pittetd.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pkuthss.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pkuthss.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pkuthss.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot-fuberlin.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot-fuberlin.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-powerdot-fuberlin.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-powerdot-tuliplab.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-powerdot-tuliplab.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-powerdot-tuliplab.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pracjourn.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pracjourn.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pracjourn.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-procIAGssymp.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-procIAGssymp.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-procIAGssymp.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proposal.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proposal.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proposal.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-prtec.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-prtec.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-prtec.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptptex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptptex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptptex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrbill.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrbill.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qrbill.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-quantumarticle.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-quantumarticle.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-quantumarticle.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resphilosophica.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resphilosophica.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-resphilosophica.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resumecls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resumecls.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-resumecls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revtex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revtex4.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4-1.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4-1.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revtex4-1.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rutitlepage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rutitlepage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rutitlepage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ryersonsgsthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ryersonsgsthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ryersonsgsthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ryethesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ryethesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ryethesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sageep.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sageep.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sageep.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sapthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sapthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sapthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-schule.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-schule.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-schule.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrjrnl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrjrnl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scrjrnl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scientific-thesis-cover.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scientific-thesis-cover.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scientific-thesis-cover.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sduthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sduthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sduthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seuthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesix.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesix.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seuthesix.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shortmathj.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shortmathj.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shortmathj.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-shtthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-shtthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-shtthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-soton.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-soton.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-soton.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sphdthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sphdthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sphdthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-spie.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-spie.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-spie.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sr-vorl.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sr-vorl.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sr-vorl.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-srdp-mathematik.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-srdp-mathematik.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-srdp-mathematik.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stellenbosch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stellenbosch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stellenbosch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suftesi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suftesi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-suftesi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sugconf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sugconf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sugconf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tabriz-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tabriz-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tabriz-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-technion-thesis-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-technion-thesis-template.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-technion-thesis-template.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-ekf.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-ekf.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thesis-ekf.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-gwu.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-gwu.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thesis-gwu.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-qom.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-qom.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thesis-qom.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-titlepage-fhac.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-titlepage-fhac.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thesis-titlepage-fhac.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thuaslogos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thuaslogos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thuaslogos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thucoursework.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thucoursework.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thucoursework.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thuthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thuthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thuthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timbreicmc.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timbreicmc.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-timbreicmc.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tlc-article.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tlc-article.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tlc-article.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topletter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topletter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-topletter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toptesi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toptesi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-toptesi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tuda-ci.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tuda-ci.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tuda-ci.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tudscr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tudscr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tudscr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tugboat.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tugboat.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tugboat.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tugboat-plain.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tugboat-plain.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tugboat-plain.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-turabian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-turabian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-turabian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tui.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tui.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tui.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uaclasses.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uaclasses.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uaclasses.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uafthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uafthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uafthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uantwerpendocs.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uantwerpendocs.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uantwerpendocs.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucalgmthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucalgmthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucalgmthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucbthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucbthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucbthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucdavisthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucdavisthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucdavisthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucsmonograph.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucsmonograph.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucsmonograph.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uestcthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uestcthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uestcthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhhassignment.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhhassignment.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uhhassignment.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucredborder.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucredborder.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uiucredborder.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uiucthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulthese.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulthese.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ulthese.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umbclegislation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umbclegislation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umbclegislation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-umich-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-umich-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-umich-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unam-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unam-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unam-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unamth-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unamth-template.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unamth-template.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unamthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unamthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unamthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unifith.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unifith.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unifith.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unitn-bimrep.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unitn-bimrep.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unitn-bimrep.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-univie-ling.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-univie-ling.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-univie-ling.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unizgklasa.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unizgklasa.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unizgklasa.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unswcover.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unswcover.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unswcover.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uothesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uothesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uothesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-urcls.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-urcls.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-urcls.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uowthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uowthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uowthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uowthesistitlepage.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uowthesistitlepage.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uowthesistitlepage.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uspatent.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uspatent.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uspatent.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ut-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ut-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ut-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-utexasthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-utexasthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-utexasthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uwthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uwthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uwthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-vancouver.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-vancouver.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-vancouver.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xduthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xduthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xduthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmuthesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmuthesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xmuthesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wsemclassic.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wsemclassic.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wsemclassic.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yathesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yathesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yathesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yazd-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yazd-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yazd-thesis.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-york-thesis.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-york-thesis.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-york-thesis.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-IEEEconf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-IEEEconf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-IEEEconf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmart.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acmart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-acmconf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-acmconf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-acmconf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-active-conf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-active-conf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-active-conf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-adfathesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-adfathesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-adfathesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-afparticle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-afparticle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-afparticle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aiaa.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aiaa.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aiaa.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-aomart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-aomart.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-aomart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apa6.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa6e.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa6e.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apa6e.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-apa7.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-apa7.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-apa7.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-articleingud.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-articleingud.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-articleingud.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorcsthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorcsthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bangorcsthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bangorexam.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bangorexam.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bangorexam.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bath-bst.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bath-bst.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bath-bst.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-beilstein.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-beilstein.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-beilstein.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bgteubner.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bgteubner.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bgteubner.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-dissertation.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-dissertation.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-brandeis-dissertation.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-brandeis-thesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-brandeis-thesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-brandeis-thesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cesenaexam.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cesenaexam.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cesenaexam.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-confproc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-confproc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-confproc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cquthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cquthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cquthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-dccpaper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-dccpaper.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-dccpaper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ebsthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ebsthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ebsthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ejpecp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ejpecp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ejpecp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ekaia.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ekaia.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ekaia.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elbioimp.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elbioimp.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elbioimp.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-elsarticle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-elsarticle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-elsarticle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-emisa.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-emisa.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-emisa.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-erdc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-erdc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-erdc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-estcpmm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-estcpmm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-estcpmm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fbithesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fbithesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fbithesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fcltxdoc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fcltxdoc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fcltxdoc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fei.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fei.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fei.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-grant.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-grant.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-grant.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gsemthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gsemthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gsemthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-gzt.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-gzt.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-gzt.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hecthese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hecthese.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hecthese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hep-paper.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hep-paper.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hep-paper.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hithesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hithesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hithesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hitszthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hitszbeamer.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hitszbeamer.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hitszbeamer.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hu-berlin-bundle.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hu-berlin-bundle.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hu-berlin-bundle.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-hustthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-hustthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-hustthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-icsv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-icsv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-icsv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ijmart.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ijmart.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ijmart.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-imtekda.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-imtekda.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-imtekda.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-jmlr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-jmlr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-jmlr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kdgdocs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kdgdocs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kdgdocs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-kluwer.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-kluwer.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-kluwer.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-langsci-avm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-langsci-avm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-langsci-avm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-limecv.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-limecv.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-limecv.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lni.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lni.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lni.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-lps.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-lps.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-lps.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matc3.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-matc3mem.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-matc3mem.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-matc3mem.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mcmthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mcmthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mcmthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mentis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mentis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mentis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mlacls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mlacls.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mlacls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mluexercise.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mluexercise.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mluexercise.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mucproc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mucproc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mucproc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mugsthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mugsthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mugsthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-muling.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-muling.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-muling.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-musuos.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-musuos.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-musuos.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-mynsfc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-mynsfc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-mynsfc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-navydocs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-navydocs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-navydocs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nddiss.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nddiss.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nddiss.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nwejm.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nwejm.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nwejm.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nostarch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nostarch.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nostarch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-nrc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-nrc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-nrc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philosophersimprint.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philosophersimprint.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-philosophersimprint.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pittetd.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pittetd.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pittetd.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-pracjourn.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-pracjourn.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-pracjourn.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-proposal.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-proposal.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-proposal.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-qrbill.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-qrbill.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-qrbill.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resphilosophica.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resphilosophica.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-resphilosophica.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-resumecls.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-resumecls.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-resumecls.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revtex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revtex4.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-revtex4-1.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-revtex4-1.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-revtex4-1.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-rutitlepage.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-rutitlepage.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-rutitlepage.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ryethesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ryethesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ryethesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sageep.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sageep.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sageep.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scrjrnl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scrjrnl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scrjrnl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-scientific-thesis-cover.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-scientific-thesis-cover.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-scientific-thesis-cover.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sduthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sduthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sduthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seuthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-seuthesix.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-seuthesix.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-seuthesix.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-sr-vorl.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-sr-vorl.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-sr-vorl.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-stellenbosch.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-stellenbosch.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-stellenbosch.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-suftesi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-suftesi.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-suftesi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-ekf.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-ekf.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thesis-ekf.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thesis-titlepage-fhac.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thesis-titlepage-fhac.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thesis-titlepage-fhac.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thucoursework.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thucoursework.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thucoursework.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-thuthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-thuthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-thuthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-timbreicmc.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-timbreicmc.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-timbreicmc.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-topletter.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-topletter.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-topletter.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-toptesi.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-toptesi.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-toptesi.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tudscr.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tudscr.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tudscr.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tugboat.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tugboat.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tugboat.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uaclasses.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uaclasses.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uaclasses.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uantwerpendocs.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uantwerpendocs.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uantwerpendocs.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucdavisthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucdavisthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucdavisthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucsmonograph.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucsmonograph.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucsmonograph.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uhhassignment.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uhhassignment.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uhhassignment.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucredborder.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucredborder.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uiucredborder.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uiucthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uiucthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uiucthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ulthese.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ulthese.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ulthese.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-uothesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-uothesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-uothesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ut-thesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ut-thesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ut-thesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xduthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xduthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xduthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xmuthesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xmuthesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xmuthesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-wsemclassic.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-wsemclassic.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-wsemclassic.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-yathesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-yathesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-yathesis.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-york-thesis.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-york-thesis.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-york-thesis.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=af668972b77da4f182fcfba264ca1e28 diff --git a/metadata/md5-cache/dev-texlive/texlive-xetex-2021-r1 b/metadata/md5-cache/dev-texlive/texlive-xetex-2021-r1 index 52a414debb03..e39c63238b1c 100644 --- a/metadata/md5-cache/dev-texlive/texlive-xetex-2021-r1 +++ b/metadata/md5-cache/dev-texlive/texlive-xetex-2021-r1 @@ -10,6 +10,6 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 s LICENSE=Apache-2.0 GPL-1 GPL-2 GPL-3 LGPL-2 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2021 >=dev-texlive/texlive-basic-2019 >=dev-texlive/texlive-latexextra-2010 >=app-text/texlive-core-2010[xetex] dev-texlive/texlive-mathscience dev-texlive/texlive-luatex >=app-text/texlive-core-2021 SLOT=0 -SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabxetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabxetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-awesomebox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-awesomebox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidi-atbegshi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidi-atbegshi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidicontour-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidicontour-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidipagegrid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidipagegrid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidishadowtext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidishadowtext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidipresentation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidipresentation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-businesscard-qrcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-businesscard-qrcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cqubeamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cqubeamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixlatvian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixlatvian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-font-change-xetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-font-change-xetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontwrap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontwrap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interchar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interchar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-na-position-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-na-position-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philokalia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philokalia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realscripts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realscripts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simple-resume-cv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simple-resume-cv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simple-thesis-dissertation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simple-thesis-dissertation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tetragonos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tetragonos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucharclasses-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucharclasses-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-bidi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-bidi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unisugar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unisugar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xebaposter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xebaposter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xechangebar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xechangebar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecjk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecjk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xeindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xeindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xelatex-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xelatex-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xesearch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xesearch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xespotcolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xespotcolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-itrans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-itrans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-pstricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-pstricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-tibetan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-tibetan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexconfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexconfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexfontinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexfontinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xevlna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xevlna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zbmath-review-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zbmath-review-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-xetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-xetex-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabxetex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabxetex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-awesomebox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-awesomebox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidi-atbegshi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidi-atbegshi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidicontour.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidicontour.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidipagegrid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidipagegrid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidishadowtext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidishadowtext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidipresentation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidipresentation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-businesscard-qrcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-businesscard-qrcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cqubeamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cqubeamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixlatvian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixlatvian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-font-change-xetex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-font-change-xetex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontwrap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontwrap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interchar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interchar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-na-position.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-na-position.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philokalia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philokalia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realscripts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realscripts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simple-resume-cv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simple-resume-cv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simple-thesis-dissertation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simple-thesis-dissertation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tetragonos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tetragonos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucharclasses.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucharclasses.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-bidi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-bidi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unisugar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unisugar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xebaposter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xebaposter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xechangebar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xechangebar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecjk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecjk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecyr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecyr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xeindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xeindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xesearch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xesearch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xespotcolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xespotcolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-itrans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-itrans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-pstricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-pstricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-tibetan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-tibetan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexfontinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexfontinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xevlna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xevlna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zbmath-review-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zbmath-review-template.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabxetex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabxetex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixlatvian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixlatvian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontbook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontbook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philokalia.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philokalia.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realscripts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realscripts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecjk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecjk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xespotcolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xespotcolor.source-2021.tar.xz ) -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 font aa113a3df9cd0a9693a1c1ee7c34a6eb texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module fff97f717147b6caad6bb36bd6c66aa2 +SRC_URI=https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabxetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabxetex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabxetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-awesomebox-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-awesomebox-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-awesomebox-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidi-atbegshi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidi-atbegshi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidi-atbegshi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidicontour-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidicontour-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidicontour-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidipagegrid-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidipagegrid-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidipagegrid-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidishadowtext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidishadowtext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidishadowtext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidipresentation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidipresentation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidipresentation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-businesscard-qrcode-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-businesscard-qrcode-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-businesscard-qrcode-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cqubeamer-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cqubeamer-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cqubeamer-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixlatvian-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixlatvian-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixlatvian-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-font-change-xetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-font-change-xetex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-font-change-xetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontbook-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontbook-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontbook-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontwrap-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontwrap-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontwrap-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interchar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interchar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interchar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-na-position-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-na-position-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-na-position-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philokalia-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philokalia-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-philokalia-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptext-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptext-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptext-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realscripts-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realscripts-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realscripts-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simple-resume-cv-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simple-resume-cv-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simple-resume-cv-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simple-thesis-dissertation-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simple-thesis-dissertation-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simple-thesis-dissertation-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tetragonos-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tetragonos-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tetragonos-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucharclasses-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucharclasses-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucharclasses-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-bidi-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-bidi-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unicode-bidi-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unisugar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unisugar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unisugar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xebaposter-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xebaposter-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xebaposter-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xechangebar-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xechangebar-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xechangebar-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecjk-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecjk-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xecjk-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecolor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xecolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecyr-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecyr-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xecyr-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xeindex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xeindex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xeindex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xelatex-dev-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xelatex-dev-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xelatex-dev-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xesearch-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xesearch-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xesearch-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xespotcolor-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xespotcolor-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xespotcolor-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetex-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-itrans-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-itrans-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetex-itrans-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-pstricks-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-pstricks-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetex-pstricks-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-tibetan-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-tibetan-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetex-tibetan-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexconfig-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexconfig-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetexconfig-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexfontinfo-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexfontinfo-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetexfontinfo-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexko-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexko-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetexko-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xevlna-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xevlna-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xevlna-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zbmath-review-template-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zbmath-review-template-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zbmath-review-template-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-collection-xetex-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-collection-xetex-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-collection-xetex-2021.tar.xz doc? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabxetex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabxetex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabxetex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-awesomebox.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-awesomebox.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-awesomebox.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidi-atbegshi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidi-atbegshi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidi-atbegshi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidicontour.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidicontour.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidicontour.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidipagegrid.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidipagegrid.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidipagegrid.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidishadowtext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidishadowtext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidishadowtext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-bidipresentation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-bidipresentation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-bidipresentation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-businesscard-qrcode.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-businesscard-qrcode.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-businesscard-qrcode.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-cqubeamer.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-cqubeamer.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-cqubeamer.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixlatvian.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixlatvian.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixlatvian.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-font-change-xetex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-font-change-xetex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-font-change-xetex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontbook.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontbook.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontbook.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontwrap.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontwrap.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontwrap.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-interchar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-interchar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-interchar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-na-position.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-na-position.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-na-position.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philokalia.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philokalia.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-philokalia.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ptext.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ptext.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ptext.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realscripts.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realscripts.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realscripts.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simple-resume-cv.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simple-resume-cv.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simple-resume-cv.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-simple-thesis-dissertation.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-simple-thesis-dissertation.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-simple-thesis-dissertation.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-tetragonos.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-tetragonos.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-tetragonos.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-ucharclasses.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-ucharclasses.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-ucharclasses.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unicode-bidi.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unicode-bidi.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unicode-bidi.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-unisugar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-unisugar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-unisugar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xebaposter.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xebaposter.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xebaposter.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xechangebar.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xechangebar.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xechangebar.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecjk.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecjk.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xecjk.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecolor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xecolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecyr.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecyr.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xecyr.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xeindex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xeindex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xeindex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xesearch.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xesearch.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xesearch.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xespotcolor.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xespotcolor.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xespotcolor.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetex.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-itrans.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-itrans.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetex-itrans.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-pstricks.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-pstricks.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetex-pstricks.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetex-tibetan.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetex-tibetan.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetex-tibetan.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexfontinfo.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexfontinfo.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetexfontinfo.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xetexko.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xetexko.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xetexko.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xevlna.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xevlna.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xevlna.doc-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-zbmath-review-template.doc-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-zbmath-review-template.doc-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-zbmath-review-template.doc-2021.tar.xz ) source? ( https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-arabxetex.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-arabxetex.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-arabxetex.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fixlatvian.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fixlatvian.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fixlatvian.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-fontbook.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-fontbook.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-fontbook.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-philokalia.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-philokalia.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-philokalia.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-realscripts.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-realscripts.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-realscripts.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xecjk.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xecjk.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xecjk.source-2021.tar.xz https://dev.gentoo.org/~zlogene/distfiles/texlive/tl-xespotcolor.source-2021.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/texlive/tl-xespotcolor.source-2021.tar.xz https://dev.gentoo.org/~sam/distfiles/texlive/tl-xespotcolor.source-2021.tar.xz ) +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 font aa113a3df9cd0a9693a1c1ee7c34a6eb texlive-common 5ccd2afc3dc070301c25ba2752fb9c01 texlive-module 8ca97f95832b8ee2980a4a866268aebf _md5_=c5a5f27e2e3dd423a8533a4833bca2b4 diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz index f1f5aaf9fa16..5e00e155db58 100644 Binary files a/metadata/md5-cache/dev-util/Manifest.gz and b/metadata/md5-cache/dev-util/Manifest.gz differ diff --git a/metadata/md5-cache/dev-util/ROPgadget-7.1 b/metadata/md5-cache/dev-util/ROPgadget-7.3 similarity index 92% rename from metadata/md5-cache/dev-util/ROPgadget-7.1 rename to metadata/md5-cache/dev-util/ROPgadget-7.3 index d192c65f1975..2d992ea58e52 100644 --- a/metadata/md5-cache/dev-util/ROPgadget-7.1 +++ b/metadata/md5-cache/dev-util/ROPgadget-7.3 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://shell-storm.org/project/ROPgadget/ INHERIT=distutils-r1 IUSE=python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~arm64 x86 +KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv ~x86 LICENSE=GPL-2 RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) >=dev-libs/capstone-5[python,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) SLOT=0 -SRC_URI=https://github.com/JonathanSalwan/ROPgadget/archive/v7.1.tar.gz -> ROPgadget-7.1.gh.tar.gz +SRC_URI=https://github.com/JonathanSalwan/ROPgadget/archive/v7.3.tar.gz -> ROPgadget-7.3.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=2e3649202b9a8b8a27e76226fe16d8d4 +_md5_=e827dca81d5a28fe070fa9488d9315b9 diff --git a/metadata/md5-cache/dev-util/Tensile-5.4.2-r1 b/metadata/md5-cache/dev-util/Tensile-5.4.2-r1 index 84fbb005e378..9f9746d726bb 100644 --- a/metadata/md5-cache/dev-util/Tensile-5.4.2-r1 +++ b/metadata/md5-cache/dev-util/Tensile-5.4.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=client? ( || ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_t RESTRICT=test SLOT=0/5.4 SRC_URI=https://github.com/ROCmSoftwarePlatform/Tensile/archive/rocm-5.4.2.tar.gz -> rocm-Tensile-5.4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8205fdc4414c772b63913f74c5336368 diff --git a/metadata/md5-cache/dev-util/android-tools-33.0.3-r1 b/metadata/md5-cache/dev-util/android-tools-33.0.3-r1 index f1f68e6a4834..2c5c34b5cdf9 100644 --- a/metadata/md5-cache/dev-util/android-tools-33.0.3-r1 +++ b/metadata/md5-cache/dev-util/android-tools-33.0.3-r1 @@ -12,5 +12,5 @@ RDEPEND=app-arch/brotli:= app-arch/lz4:= app-arch/zstd:= dev-libs/libpcre2:= >=d REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) SLOT=0 SRC_URI=https://github.com/nmeum/android-tools/releases/download/33.0.3/android-tools-33.0.3.tar.xz https://dev.gentoo.org/~zmedico/dist/android-tools-31.0.3-no-gtest.patch -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3f9d0557b8f71a0a6e4b9c6a849d7b32 diff --git a/metadata/md5-cache/dev-util/android-tools-34.0.0 b/metadata/md5-cache/dev-util/android-tools-34.0.0 index 41082e23440a..433e95c0e900 100644 --- a/metadata/md5-cache/dev-util/android-tools-34.0.0 +++ b/metadata/md5-cache/dev-util/android-tools-34.0.0 @@ -12,5 +12,5 @@ RDEPEND=app-arch/brotli:= app-arch/lz4:= app-arch/zstd:= dev-libs/libpcre2:= >=d REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) SLOT=0 SRC_URI=https://github.com/nmeum/android-tools/releases/download/34.0.0/android-tools-34.0.0.tar.xz https://dev.gentoo.org/~zmedico/dist/android-tools-31.0.3-no-gtest.patch -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f30ed2c5bbc8b5e9815619ad89486030 diff --git a/metadata/md5-cache/dev-util/apitrace-9.0-r3 b/metadata/md5-cache/dev-util/apitrace-9.0-r3 index 9698e2251b5f..6d258470cf53 100644 --- a/metadata/md5-cache/dev-util/apitrace-9.0-r3 +++ b/metadata/md5-cache/dev-util/apitrace-9.0-r3 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://github.com/apitrace/apitrace/archive/9.0.tar.gz -> apitrace-9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aec390a46e7933d8bf3af12243eb9c93 diff --git a/metadata/md5-cache/dev-util/bcc-0.25.0 b/metadata/md5-cache/dev-util/bcc-0.25.0 index d97c3a1ffdb1..32f9222a54c9 100644 --- a/metadata/md5-cache/dev-util/bcc-0.25.0 +++ b/metadata/md5-cache/dev-util/bcc-0.25.0 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=test SLOT=0 SRC_URI=https://github.com/iovisor/bcc/archive/v0.25.0.tar.gz -> bcc-0.25.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2e089951d44185872062e8592ff54afd diff --git a/metadata/md5-cache/dev-util/bcc-0.26.0-r1 b/metadata/md5-cache/dev-util/bcc-0.26.0-r2 similarity index 85% rename from metadata/md5-cache/dev-util/bcc-0.26.0-r1 rename to metadata/md5-cache/dev-util/bcc-0.26.0-r2 index 1cca3ad57d5e..60009d6bbaec 100644 --- a/metadata/md5-cache/dev-util/bcc-0.26.0-r1 +++ b/metadata/md5-cache/dev-util/bcc-0.26.0-r2 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install prepare pretend setup test -DEPEND=>=dev-libs/elfutils-0.166:= >=dev-libs/libbpf-0.7.0:=[static-libs(-)] sys-kernel/linux-headers =dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) ) test? ( || ( net-misc/iputils[arping] net-analyzer/arping ) net-analyzer/netperf net-misc/iperf:* ) !!sys-devel/llvm:0 +DEPEND=>=dev-libs/elfutils-0.166:= >=dev-libs/libbpf-0.7.0:=[static-libs(-)] sys-kernel/linux-headers =dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) ) test? ( || ( net-misc/iputils[arping] net-analyzer/arping ) net-analyzer/netperf net-misc/iperf:* ) !!sys-devel/llvm:0 DESCRIPTION=Tools for BPF-based Linux IO analysis, networking, monitoring, and more EAPI=8 HOMEPAGE=https://iovisor.github.io/bcc/ @@ -8,10 +8,10 @@ INHERIT=cmake linux-info llvm lua-single python-r1 toolchain-funcs IUSE=+lua test +lua_single_target_luajit python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 KEYWORDS=~amd64 ~arm64 ~riscv ~x86 LICENSE=Apache-2.0 -RDEPEND=>=dev-libs/elfutils-0.166:= >=dev-libs/libbpf-0.7.0:=[static-libs(-)] sys-kernel/linux-headers =dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) ) +RDEPEND=>=dev-libs/elfutils-0.166:= >=dev-libs/libbpf-0.7.0:=[static-libs(-)] sys-kernel/linux-headers =dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) lua? ( ^^ ( lua_single_target_luajit ) ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/iovisor/bcc/archive/v0.26.0.tar.gz -> bcc-0.26.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=534c5de92fa0ab8e0129b88f2e51fed6 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=f458fff657ab80441162b55d2376ecb4 diff --git a/metadata/md5-cache/dev-util/bear-3.0.20-r1 b/metadata/md5-cache/dev-util/bear-3.0.20-r1 index 651ce842d1bf..1340c43547f6 100644 --- a/metadata/md5-cache/dev-util/bear-3.0.20-r1 +++ b/metadata/md5-cache/dev-util/bear-3.0.20-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-cpp/nlohmann_json-3.7.3:= >=dev-db/sqlite-3.14:= dev-libs/libfmt:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rizsotto/Bear/archive/3.0.20.tar.gz -> bear-3.0.20.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9d6f29a10548ab3e1bf5faa8843eebc7 diff --git a/metadata/md5-cache/dev-util/bear-3.0.21 b/metadata/md5-cache/dev-util/bear-3.0.21 index bb472521ba65..93557053dd01 100644 --- a/metadata/md5-cache/dev-util/bear-3.0.21 +++ b/metadata/md5-cache/dev-util/bear-3.0.21 @@ -12,5 +12,5 @@ RDEPEND=>=dev-cpp/nlohmann_json-3.11.2:= >=dev-db/sqlite-3.14:= >=dev-libs/libfm RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rizsotto/Bear/archive/3.0.21.tar.gz -> bear-3.0.21.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=540ba0fded6fd731ca95c79c77885267 diff --git a/metadata/md5-cache/dev-util/bitcoin-tx-0.21.0-r1 b/metadata/md5-cache/dev-util/bitcoin-tx-0.21.0-r2 similarity index 75% rename from metadata/md5-cache/dev-util/bitcoin-tx-0.21.0-r1 rename to metadata/md5-cache/dev-util/bitcoin-tx-0.21.0-r2 index 5ef7fe604a03..741eeb2f5b15 100644 --- a/metadata/md5-cache/dev-util/bitcoin-tx-0.21.0-r1 +++ b/metadata/md5-cache/dev-util/bitcoin-tx-0.21.0-r2 @@ -1,6 +1,6 @@ BDEPEND=>=sys-devel/autoconf-2.69 >=sys-devel/automake-1.13 sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=configure install prepare pretend -DEPEND=dev-libs/boost:= ~dev-libs/libsecp256k1-0.1_pre20201028:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= +DEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= DESCRIPTION=Command-line Bitcoin transaction tool EAPI=7 HOMEPAGE=https://bitcoincore.org/ https://bitcoinknots.org/ @@ -8,8 +8,8 @@ INHERIT=autotools bash-completion-r1 IUSE=knots KEYWORDS=amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux LICENSE=MIT -RDEPEND=dev-libs/boost:= ~dev-libs/libsecp256k1-0.1_pre20201028:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= +RDEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= SLOT=0 SRC_URI=https://github.com/bitcoin/bitcoin/archive/95ea54ba089610019a74c1176a2c7c0dba144b1c.tar.gz -> bitcoin-v0.21.0.tar.gz https://bitcoinknots.org/files/0.21.x/0.21.0.knots20210130/bitcoin-0.21.0.knots20210130.patches.txz -> bitcoin-0.21.0.knots20210130.patches.tar.xz _eclasses_=autotools b5529dc611971a61a30153916014f616 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=776b8f5d50481f344d5a3b204ae19d83 +_md5_=3f98ef13f0b967a1adff11323c7fe05c diff --git a/metadata/md5-cache/dev-util/bitcoin-tx-22.0-r1 b/metadata/md5-cache/dev-util/bitcoin-tx-22.0-r2 similarity index 79% rename from metadata/md5-cache/dev-util/bitcoin-tx-22.0-r1 rename to metadata/md5-cache/dev-util/bitcoin-tx-22.0-r2 index 8f021999c8a1..621d9be991c9 100644 --- a/metadata/md5-cache/dev-util/bitcoin-tx-22.0-r1 +++ b/metadata/md5-cache/dev-util/bitcoin-tx-22.0-r2 @@ -1,6 +1,6 @@ BDEPEND=>=sys-devel/automake-1.13 || ( >=sys-devel/gcc-7[cxx] >=sys-devel/clang-5 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=configure install prepare pretend -DEPEND=dev-libs/boost:= ~dev-libs/libsecp256k1-0.1_pre20201028:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= +DEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= DESCRIPTION=Command-line Bitcoin transaction tool EAPI=7 HOMEPAGE=https://bitcoincore.org/ https://bitcoinknots.org/ @@ -8,8 +8,8 @@ INHERIT=autotools bash-completion-r1 flag-o-matic IUSE=knots KEYWORDS=amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux LICENSE=MIT -RDEPEND=dev-libs/boost:= ~dev-libs/libsecp256k1-0.1_pre20201028:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= +RDEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= SLOT=0 SRC_URI=https://github.com/bitcoin/bitcoin/archive/a0988140b71485ad12c3c3a4a9573f7c21b1eff8.tar.gz -> bitcoin-v22.0.tar.gz https://bitcoinknots.org/files/22.x/22.0.knots20211108/bitcoin-22.0.knots20211108.patches.txz -> bitcoin-22.0.knots20211108.patches.tar.xz _eclasses_=autotools b5529dc611971a61a30153916014f616 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=bcd5ccd0b67afb25e65193c648636bab +_md5_=8cb405ff831e2296e1d3c717f5bbb18d diff --git a/metadata/md5-cache/dev-util/bloaty-1.1 b/metadata/md5-cache/dev-util/bloaty-1.1 index 24108a20acb8..1d8398ea2147 100644 --- a/metadata/md5-cache/dev-util/bloaty-1.1 +++ b/metadata/md5-cache/dev-util/bloaty-1.1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-libs/capstone:= dev-libs/protobuf:= dev-libs/re2:= SLOT=0 SRC_URI=https://github.com/google/bloaty/releases/download/v1.1/bloaty-1.1.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9254b9540ef278862f45489e7519fa74 diff --git a/metadata/md5-cache/dev-util/bloaty-9999 b/metadata/md5-cache/dev-util/bloaty-9999 index 705aa233a5b9..c4697c94f4ce 100644 --- a/metadata/md5-cache/dev-util/bloaty-9999 +++ b/metadata/md5-cache/dev-util/bloaty-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/capstone:= dev-libs/protobuf:= dev-libs/re2:= RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d3002619a4b43ce42001760f10c089cd diff --git a/metadata/md5-cache/dev-util/bpftrace-0.16.0-r1 b/metadata/md5-cache/dev-util/bpftrace-0.16.0-r1 index 2ee6ea6298c3..be5afdd6226b 100644 --- a/metadata/md5-cache/dev-util/bpftrace-0.16.0-r1 +++ b/metadata/md5-cache/dev-util/bpftrace-0.16.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libbpf-1.0:= >=dev-util/bcc-0.25.0:= bpftrace-0.16.0.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=69d648dcff10a19de746f10fa94426f1 diff --git a/metadata/md5-cache/dev-util/bpftrace-0.16.0-r2 b/metadata/md5-cache/dev-util/bpftrace-0.16.0-r2 index eb23b1ff6372..38ca34724bb1 100644 --- a/metadata/md5-cache/dev-util/bpftrace-0.16.0-r2 +++ b/metadata/md5-cache/dev-util/bpftrace-0.16.0-r2 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libbpf-1.0:= >=dev-util/bcc-0.25.0:= bpftrace-0.16.0.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=51b4f4b8c7bb1a0bdca3c5df2dc37009 diff --git a/metadata/md5-cache/dev-util/bpftrace-0.17.0-r2 b/metadata/md5-cache/dev-util/bpftrace-0.17.0-r3 similarity index 91% rename from metadata/md5-cache/dev-util/bpftrace-0.17.0-r2 rename to metadata/md5-cache/dev-util/bpftrace-0.17.0-r3 index 4edf6c975e88..fa5ac184a9da 100644 --- a/metadata/md5-cache/dev-util/bpftrace-0.17.0-r2 +++ b/metadata/md5-cache/dev-util/bpftrace-0.17.0-r3 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libbpf-1.1:= >=dev-util/bcc-0.25.0:= >=sys-devel/llvm-10:=[ll RESTRICT=test SLOT=0 SRC_URI=https://github.com/iovisor/bpftrace/archive/v0.17.0.tar.gz -> bpftrace-0.17.0.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=fa4670422a9be7c34db4880d2ace9717 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=1c3dc4a76c67cc9a9d0b6d4b7f9ce695 diff --git a/metadata/md5-cache/dev-util/cargo-nextest-0.9.50 b/metadata/md5-cache/dev-util/cargo-nextest-0.9.50 new file mode 100644 index 000000000000..d61ace5c0584 --- /dev/null +++ b/metadata/md5-cache/dev-util/cargo-nextest-0.9.50 @@ -0,0 +1,13 @@ +BDEPEND=>=virtual/rust-1.53 +DEFINED_PHASES=compile configure install test unpack +DESCRIPTION=A next-generation test runner for Rust +EAPI=8 +HOMEPAGE=https://nexte.st/ +INHERIT=cargo +IUSE=debug +KEYWORDS=~amd64 +LICENSE=|| ( Apache-2.0 MIT ) Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT MPL-2.0 Unicode-DFS-2016 || ( CC0-1.0 MIT-0 ) +SLOT=0 +SRC_URI=https://github.com/nextest-rs/nextest/archive/refs/tags/cargo-nextest-0.9.50.tar.gz https://crates.io/api/v1/crates/addr2line/0.19.0/download -> addr2line-0.19.0.crate https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.crate https://crates.io/api/v1/crates/ahash/0.7.6/download -> ahash-0.7.6.crate 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.69/download -> anyhow-1.0.69.crate https://crates.io/api/v1/crates/arrayvec/0.5.2/download -> arrayvec-0.5.2.crate https://crates.io/api/v1/crates/async-scoped/0.7.1/download -> async-scoped-0.7.1.crate https://crates.io/api/v1/crates/async-stream/0.3.4/download -> async-stream-0.3.4.crate https://crates.io/api/v1/crates/async-stream-impl/0.3.4/download -> async-stream-impl-0.3.4.crate https://crates.io/api/v1/crates/async-trait/0.1.64/download -> async-trait-0.1.64.crate https://crates.io/api/v1/crates/atomicwrites/0.4.0/download -> atomicwrites-0.4.0.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/axum/0.6.9/download -> axum-0.6.9.crate https://crates.io/api/v1/crates/axum-core/0.3.2/download -> axum-core-0.3.2.crate https://crates.io/api/v1/crates/backtrace/0.3.67/download -> backtrace-0.3.67.crate https://crates.io/api/v1/crates/base64/0.13.1/download -> base64-0.13.1.crate https://crates.io/api/v1/crates/base64/0.21.0/download -> base64-0.21.0.crate https://crates.io/api/v1/crates/bit-set/0.5.3/download -> bit-set-0.5.3.crate https://crates.io/api/v1/crates/bit-vec/0.6.3/download -> bit-vec-0.6.3.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bstr/0.2.17/download -> bstr-0.2.17.crate https://crates.io/api/v1/crates/bumpalo/3.12.0/download -> bumpalo-3.12.0.crate https://crates.io/api/v1/crates/bytecount/0.3.2/download -> bytecount-0.3.2.crate https://crates.io/api/v1/crates/bytecount/0.6.3/download -> bytecount-0.6.3.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes/1.4.0/download -> bytes-1.4.0.crate https://crates.io/api/v1/crates/camino/1.1.3/download -> camino-1.1.3.crate https://crates.io/api/v1/crates/cargo-platform/0.1.2/download -> cargo-platform-0.1.2.crate https://crates.io/api/v1/crates/cargo_metadata/0.15.3/download -> cargo_metadata-0.15.3.crate https://crates.io/api/v1/crates/cc/1.0.79/download -> cc-1.0.79.crate https://crates.io/api/v1/crates/cfg-expr/0.13.0/download -> cfg-expr-0.13.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/clap/4.1.8/download -> clap-4.1.8.crate https://crates.io/api/v1/crates/clap_derive/4.1.8/download -> clap_derive-4.1.8.crate https://crates.io/api/v1/crates/clap_lex/0.3.2/download -> clap_lex-0.3.2.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/color-eyre/0.6.2/download -> color-eyre-0.6.2.crate https://crates.io/api/v1/crates/config/0.13.3/download -> config-0.13.3.crate https://crates.io/api/v1/crates/console/0.15.5/download -> console-0.15.5.crate https://crates.io/api/v1/crates/console-api/0.4.0/download -> console-api-0.4.0.crate https://crates.io/api/v1/crates/console-subscriber/0.1.8/download -> console-subscriber-0.1.8.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-foundation-sys/0.8.3/download -> core-foundation-sys-0.8.3.crate https://crates.io/api/v1/crates/crc32fast/1.3.2/download -> crc32fast-1.3.2.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.6/download -> crossbeam-channel-0.5.6.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.14/download -> crossbeam-utils-0.8.14.crate https://crates.io/api/v1/crates/ctor/0.1.26/download -> ctor-0.1.26.crate https://crates.io/api/v1/crates/cxx/1.0.91/download -> cxx-1.0.91.crate https://crates.io/api/v1/crates/cxx-build/1.0.91/download -> cxx-build-1.0.91.crate https://crates.io/api/v1/crates/cxxbridge-flags/1.0.91/download -> cxxbridge-flags-1.0.91.crate https://crates.io/api/v1/crates/cxxbridge-macro/1.0.91/download -> cxxbridge-macro-1.0.91.crate https://crates.io/api/v1/crates/debug-ignore/1.0.5/download -> debug-ignore-1.0.5.crate https://crates.io/api/v1/crates/dialoguer/0.10.3/download -> dialoguer-0.10.3.crate https://crates.io/api/v1/crates/diff/0.1.13/download -> diff-0.1.13.crate https://crates.io/api/v1/crates/duct/0.13.6/download -> duct-0.13.6.crate https://crates.io/api/v1/crates/dunce/1.0.3/download -> dunce-1.0.3.crate https://crates.io/api/v1/crates/either/1.8.1/download -> either-1.8.1.crate https://crates.io/api/v1/crates/enable-ansi-support/0.2.1/download -> enable-ansi-support-0.2.1.crate https://crates.io/api/v1/crates/encode_unicode/0.3.6/download -> encode_unicode-0.3.6.crate https://crates.io/api/v1/crates/encoding_rs/0.8.32/download -> encoding_rs-0.8.32.crate https://crates.io/api/v1/crates/env_logger/0.10.0/download -> env_logger-0.10.0.crate https://crates.io/api/v1/crates/errno/0.2.8/download -> errno-0.2.8.crate https://crates.io/api/v1/crates/errno-dragonfly/0.1.2/download -> errno-dragonfly-0.1.2.crate https://crates.io/api/v1/crates/eyre/0.6.8/download -> eyre-0.6.8.crate https://crates.io/api/v1/crates/fastrand/1.9.0/download -> fastrand-1.9.0.crate https://crates.io/api/v1/crates/filetime/0.2.20/download -> filetime-0.2.20.crate https://crates.io/api/v1/crates/fixedbitset/0.4.2/download -> fixedbitset-0.4.2.crate https://crates.io/api/v1/crates/flate2/1.0.25/download -> flate2-1.0.25.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.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/foreign-types-shared/0.1.1/download -> foreign-types-shared-0.1.1.crate https://crates.io/api/v1/crates/form_urlencoded/1.1.0/download -> form_urlencoded-1.1.0.crate https://crates.io/api/v1/crates/future-queue/0.2.2/download -> future-queue-0.2.2.crate https://crates.io/api/v1/crates/futures/0.3.26/download -> futures-0.3.26.crate https://crates.io/api/v1/crates/futures-channel/0.3.26/download -> futures-channel-0.3.26.crate https://crates.io/api/v1/crates/futures-core/0.3.26/download -> futures-core-0.3.26.crate https://crates.io/api/v1/crates/futures-executor/0.3.26/download -> futures-executor-0.3.26.crate https://crates.io/api/v1/crates/futures-io/0.3.26/download -> futures-io-0.3.26.crate https://crates.io/api/v1/crates/futures-macro/0.3.26/download -> futures-macro-0.3.26.crate https://crates.io/api/v1/crates/futures-sink/0.3.26/download -> futures-sink-0.3.26.crate https://crates.io/api/v1/crates/futures-task/0.3.26/download -> futures-task-0.3.26.crate https://crates.io/api/v1/crates/futures-util/0.3.26/download -> futures-util-0.3.26.crate https://crates.io/api/v1/crates/getrandom/0.2.8/download -> getrandom-0.2.8.crate https://crates.io/api/v1/crates/gimli/0.27.2/download -> gimli-0.27.2.crate https://crates.io/api/v1/crates/goldenfile/1.4.5/download -> goldenfile-1.4.5.crate https://crates.io/api/v1/crates/guppy/0.15.2/download -> guppy-0.15.2.crate https://crates.io/api/v1/crates/guppy-workspace-hack/0.1.0/download -> guppy-workspace-hack-0.1.0.crate https://crates.io/api/v1/crates/h2/0.3.16/download -> h2-0.3.16.crate https://crates.io/api/v1/crates/hashbrown/0.12.3/download -> hashbrown-0.12.3.crate https://crates.io/api/v1/crates/hdrhistogram/7.5.2/download -> hdrhistogram-7.5.2.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.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/hermit-abi/0.2.6/download -> hermit-abi-0.2.6.crate https://crates.io/api/v1/crates/hermit-abi/0.3.1/download -> hermit-abi-0.3.1.crate https://crates.io/api/v1/crates/home/0.5.4/download -> home-0.5.4.crate https://crates.io/api/v1/crates/http/0.2.9/download -> http-0.2.9.crate https://crates.io/api/v1/crates/http-body/0.4.5/download -> http-body-0.4.5.crate https://crates.io/api/v1/crates/http-range-header/0.3.0/download -> http-range-header-0.3.0.crate https://crates.io/api/v1/crates/httparse/1.8.0/download -> httparse-1.8.0.crate https://crates.io/api/v1/crates/httpdate/1.0.2/download -> httpdate-1.0.2.crate https://crates.io/api/v1/crates/humantime/2.1.0/download -> humantime-2.1.0.crate https://crates.io/api/v1/crates/humantime-serde/1.1.1/download -> humantime-serde-1.1.1.crate https://crates.io/api/v1/crates/hyper/0.14.24/download -> hyper-0.14.24.crate https://crates.io/api/v1/crates/hyper-rustls/0.23.2/download -> hyper-rustls-0.23.2.crate https://crates.io/api/v1/crates/hyper-timeout/0.4.1/download -> hyper-timeout-0.4.1.crate https://crates.io/api/v1/crates/hyper-tls/0.5.0/download -> hyper-tls-0.5.0.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/iana-time-zone-haiku/0.1.1/download -> iana-time-zone-haiku-0.1.1.crate https://crates.io/api/v1/crates/idna/0.3.0/download -> idna-0.3.0.crate https://crates.io/api/v1/crates/indent_write/2.2.0/download -> indent_write-2.2.0.crate https://crates.io/api/v1/crates/indenter/0.3.3/download -> indenter-0.3.3.crate https://crates.io/api/v1/crates/indexmap/1.9.2/download -> indexmap-1.9.2.crate https://crates.io/api/v1/crates/indicatif/0.17.3/download -> indicatif-0.17.3.crate https://crates.io/api/v1/crates/indoc/2.0.0/download -> indoc-2.0.0.crate https://crates.io/api/v1/crates/insta/1.28.0/download -> insta-1.28.0.crate https://crates.io/api/v1/crates/instant/0.1.12/download -> instant-0.1.12.crate https://crates.io/api/v1/crates/io-lifetimes/1.0.5/download -> io-lifetimes-1.0.5.crate https://crates.io/api/v1/crates/ipnet/2.7.1/download -> ipnet-2.7.1.crate https://crates.io/api/v1/crates/is-terminal/0.4.4/download -> is-terminal-0.4.4.crate https://crates.io/api/v1/crates/is_ci/1.1.1/download -> is_ci-1.1.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.5/download -> itoa-1.0.5.crate https://crates.io/api/v1/crates/jobserver/0.1.26/download -> jobserver-0.1.26.crate https://crates.io/api/v1/crates/js-sys/0.3.61/download -> js-sys-0.3.61.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/lexical-core/0.7.6/download -> lexical-core-0.7.6.crate https://crates.io/api/v1/crates/libc/0.2.139/download -> libc-0.2.139.crate https://crates.io/api/v1/crates/libm/0.2.6/download -> libm-0.2.6.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/linux-raw-sys/0.1.4/download -> linux-raw-sys-0.1.4.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.crate https://crates.io/api/v1/crates/maplit/1.0.2/download -> maplit-1.0.2.crate https://crates.io/api/v1/crates/matchers/0.1.0/download -> matchers-0.1.0.crate https://crates.io/api/v1/crates/matchit/0.7.0/download -> matchit-0.7.0.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/miette/5.5.0/download -> miette-5.5.0.crate https://crates.io/api/v1/crates/miette-derive/5.5.0/download -> miette-derive-5.5.0.crate https://crates.io/api/v1/crates/mime/0.3.16/download -> mime-0.3.16.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.6.2/download -> miniz_oxide-0.6.2.crate https://crates.io/api/v1/crates/mio/0.8.6/download -> mio-0.8.6.crate https://crates.io/api/v1/crates/mukti-metadata/0.1.0/download -> mukti-metadata-0.1.0.crate https://crates.io/api/v1/crates/native-tls/0.2.11/download -> native-tls-0.2.11.crate https://crates.io/api/v1/crates/nested/0.1.1/download -> nested-0.1.1.crate https://crates.io/api/v1/crates/nix/0.26.2/download -> nix-0.26.2.crate https://crates.io/api/v1/crates/nom/5.1.2/download -> nom-5.1.2.crate https://crates.io/api/v1/crates/nom/7.1.3/download -> nom-7.1.3.crate https://crates.io/api/v1/crates/nom-tracable/0.8.0/download -> nom-tracable-0.8.0.crate https://crates.io/api/v1/crates/nom-tracable-macros/0.8.0/download -> nom-tracable-macros-0.8.0.crate https://crates.io/api/v1/crates/nom_locate/1.0.0/download -> nom_locate-1.0.0.crate https://crates.io/api/v1/crates/nom_locate/4.1.0/download -> nom_locate-4.1.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/num_cpus/1.15.0/download -> num_cpus-1.15.0.crate https://crates.io/api/v1/crates/number_prefix/0.4.0/download -> number_prefix-0.4.0.crate https://crates.io/api/v1/crates/object/0.30.3/download -> object-0.30.3.crate https://crates.io/api/v1/crates/once_cell/1.17.1/download -> once_cell-1.17.1.crate https://crates.io/api/v1/crates/openssl/0.10.45/download -> openssl-0.10.45.crate https://crates.io/api/v1/crates/openssl-macros/0.1.0/download -> openssl-macros-0.1.0.crate https://crates.io/api/v1/crates/openssl-probe/0.1.5/download -> openssl-probe-0.1.5.crate https://crates.io/api/v1/crates/openssl-sys/0.9.80/download -> openssl-sys-0.9.80.crate https://crates.io/api/v1/crates/os_pipe/1.1.3/download -> os_pipe-1.1.3.crate https://crates.io/api/v1/crates/os_str_bytes/6.4.1/download -> os_str_bytes-6.4.1.crate https://crates.io/api/v1/crates/output_vt100/0.1.3/download -> output_vt100-0.1.3.crate https://crates.io/api/v1/crates/owo-colors/3.5.0/download -> owo-colors-3.5.0.crate https://crates.io/api/v1/crates/pathdiff/0.2.1/download -> pathdiff-0.2.1.crate https://crates.io/api/v1/crates/percent-encoding/2.2.0/download -> percent-encoding-2.2.0.crate https://crates.io/api/v1/crates/petgraph/0.6.3/download -> petgraph-0.6.3.crate https://crates.io/api/v1/crates/pin-project/1.0.12/download -> pin-project-1.0.12.crate https://crates.io/api/v1/crates/pin-project-internal/1.0.12/download -> pin-project-internal-1.0.12.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/pin-utils/0.1.0/download -> pin-utils-0.1.0.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/portable-atomic/0.3.19/download -> portable-atomic-0.3.19.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/pretty_assertions/1.3.0/download -> pretty_assertions-1.3.0.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-macro2/0.4.30/download -> proc-macro2-0.4.30.crate https://crates.io/api/v1/crates/proc-macro2/1.0.51/download -> proc-macro2-1.0.51.crate https://crates.io/api/v1/crates/proptest/1.1.0/download -> proptest-1.1.0.crate https://crates.io/api/v1/crates/proptest-derive/0.3.0/download -> proptest-derive-0.3.0.crate https://crates.io/api/v1/crates/prost/0.11.8/download -> prost-0.11.8.crate https://crates.io/api/v1/crates/prost-derive/0.11.8/download -> prost-derive-0.11.8.crate https://crates.io/api/v1/crates/prost-types/0.11.8/download -> prost-types-0.11.8.crate https://crates.io/api/v1/crates/quick-error/1.2.3/download -> quick-error-1.2.3.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.23.1/download -> quick-xml-0.23.1.crate https://crates.io/api/v1/crates/quick-xml/0.27.1/download -> quick-xml-0.27.1.crate https://crates.io/api/v1/crates/quote/0.6.13/download -> quote-0.6.13.crate https://crates.io/api/v1/crates/quote/1.0.23/download -> quote-1.0.23.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/rand_xorshift/0.3.0/download -> rand_xorshift-0.3.0.crate https://crates.io/api/v1/crates/recursion/0.4.0/download -> recursion-0.4.0.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/regex/1.7.1/download -> regex-1.7.1.crate https://crates.io/api/v1/crates/regex-automata/0.1.10/download -> regex-automata-0.1.10.crate https://crates.io/api/v1/crates/regex-syntax/0.6.28/download -> regex-syntax-0.6.28.crate https://crates.io/api/v1/crates/reqwest/0.11.14/download -> reqwest-0.11.14.crate https://crates.io/api/v1/crates/ring/0.16.20/download -> ring-0.16.20.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.21/download -> rustc-demangle-0.1.21.crate https://crates.io/api/v1/crates/rustix/0.36.9/download -> rustix-0.36.9.crate https://crates.io/api/v1/crates/rustls/0.20.8/download -> rustls-0.20.8.crate https://crates.io/api/v1/crates/rustls-pemfile/1.0.2/download -> rustls-pemfile-1.0.2.crate https://crates.io/api/v1/crates/rustversion/1.0.11/download -> rustversion-1.0.11.crate https://crates.io/api/v1/crates/rusty-fork/0.3.0/download -> rusty-fork-0.3.0.crate https://crates.io/api/v1/crates/ryu/1.0.12/download -> ryu-1.0.12.crate https://crates.io/api/v1/crates/schannel/0.1.21/download -> schannel-0.1.21.crate https://crates.io/api/v1/crates/scratch/1.0.3/download -> scratch-1.0.3.crate https://crates.io/api/v1/crates/sct/0.7.0/download -> sct-0.7.0.crate https://crates.io/api/v1/crates/security-framework/2.8.2/download -> security-framework-2.8.2.crate https://crates.io/api/v1/crates/security-framework-sys/2.8.0/download -> security-framework-sys-2.8.0.crate https://crates.io/api/v1/crates/self_update/0.36.0/download -> self_update-0.36.0.crate https://crates.io/api/v1/crates/semver/1.0.16/download -> semver-1.0.16.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_ignored/0.1.7/download -> serde_ignored-0.1.7.crate https://crates.io/api/v1/crates/serde_json/1.0.94/download -> serde_json-1.0.94.crate https://crates.io/api/v1/crates/serde_path_to_error/0.1.10/download -> serde_path_to_error-0.1.10.crate https://crates.io/api/v1/crates/serde_spanned/0.6.1/download -> serde_spanned-0.6.1.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/sharded-slab/0.1.4/download -> sharded-slab-0.1.4.crate https://crates.io/api/v1/crates/shared_child/1.0.0/download -> shared_child-1.0.0.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/signal-hook-registry/1.4.1/download -> signal-hook-registry-1.4.1.crate https://crates.io/api/v1/crates/similar/2.2.1/download -> similar-2.2.1.crate https://crates.io/api/v1/crates/similar-asserts/1.4.2/download -> similar-asserts-1.4.2.crate https://crates.io/api/v1/crates/slab/0.4.8/download -> slab-0.4.8.crate https://crates.io/api/v1/crates/smallvec/1.10.0/download -> smallvec-1.10.0.crate https://crates.io/api/v1/crates/smawk/0.3.1/download -> smawk-0.3.1.crate https://crates.io/api/v1/crates/smol_str/0.1.24/download -> smol_str-0.1.24.crate https://crates.io/api/v1/crates/socket2/0.4.7/download -> socket2-0.4.7.crate https://crates.io/api/v1/crates/spin/0.5.2/download -> spin-0.5.2.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/strip-ansi-escapes/0.1.1/download -> strip-ansi-escapes-0.1.1.crate https://crates.io/api/v1/crates/strsim/0.10.0/download -> strsim-0.10.0.crate https://crates.io/api/v1/crates/structmeta/0.1.5/download -> structmeta-0.1.5.crate https://crates.io/api/v1/crates/structmeta-derive/0.1.5/download -> structmeta-derive-0.1.5.crate https://crates.io/api/v1/crates/supports-color/1.3.1/download -> supports-color-1.3.1.crate https://crates.io/api/v1/crates/supports-color/2.0.0/download -> supports-color-2.0.0.crate https://crates.io/api/v1/crates/supports-hyperlinks/1.2.0/download -> supports-hyperlinks-1.2.0.crate https://crates.io/api/v1/crates/supports-unicode/1.0.2/download -> supports-unicode-1.0.2.crate https://crates.io/api/v1/crates/syn/0.15.44/download -> syn-0.15.44.crate https://crates.io/api/v1/crates/syn/1.0.109/download -> syn-1.0.109.crate https://crates.io/api/v1/crates/sync_wrapper/0.1.2/download -> sync_wrapper-0.1.2.crate https://crates.io/api/v1/crates/tar/0.4.38/download -> tar-0.4.38.crate https://crates.io/api/v1/crates/target-lexicon/0.12.6/download -> target-lexicon-0.12.6.crate https://crates.io/api/v1/crates/target-spec/1.3.1/download -> target-spec-1.3.1.crate https://crates.io/api/v1/crates/target-spec-miette/0.1.0/download -> target-spec-miette-0.1.0.crate https://crates.io/api/v1/crates/tempfile/3.4.0/download -> tempfile-3.4.0.crate https://crates.io/api/v1/crates/termcolor/1.2.0/download -> termcolor-1.2.0.crate https://crates.io/api/v1/crates/terminal_size/0.1.17/download -> terminal_size-0.1.17.crate https://crates.io/api/v1/crates/test-case/3.0.0/download -> test-case-3.0.0.crate https://crates.io/api/v1/crates/test-case-core/3.0.0/download -> test-case-core-3.0.0.crate https://crates.io/api/v1/crates/test-case-macros/3.0.0/download -> test-case-macros-3.0.0.crate https://crates.io/api/v1/crates/test-strategy/0.3.0/download -> test-strategy-0.3.0.crate https://crates.io/api/v1/crates/textwrap/0.15.2/download -> textwrap-0.15.2.crate https://crates.io/api/v1/crates/thiserror/1.0.38/download -> thiserror-1.0.38.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/thread_local/1.1.7/download -> thread_local-1.1.7.crate https://crates.io/api/v1/crates/time/0.1.45/download -> time-0.1.45.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/tokio/1.26.0/download -> tokio-1.26.0.crate https://crates.io/api/v1/crates/tokio-io-timeout/1.2.0/download -> tokio-io-timeout-1.2.0.crate https://crates.io/api/v1/crates/tokio-macros/1.8.2/download -> tokio-macros-1.8.2.crate https://crates.io/api/v1/crates/tokio-native-tls/0.3.1/download -> tokio-native-tls-0.3.1.crate https://crates.io/api/v1/crates/tokio-rustls/0.23.4/download -> tokio-rustls-0.23.4.crate https://crates.io/api/v1/crates/tokio-stream/0.1.12/download -> tokio-stream-0.1.12.crate https://crates.io/api/v1/crates/tokio-util/0.7.7/download -> tokio-util-0.7.7.crate https://crates.io/api/v1/crates/toml/0.5.11/download -> toml-0.5.11.crate https://crates.io/api/v1/crates/toml/0.7.2/download -> toml-0.7.2.crate https://crates.io/api/v1/crates/toml_datetime/0.6.1/download -> toml_datetime-0.6.1.crate https://crates.io/api/v1/crates/toml_edit/0.19.4/download -> toml_edit-0.19.4.crate https://crates.io/api/v1/crates/tonic/0.8.3/download -> tonic-0.8.3.crate https://crates.io/api/v1/crates/tower/0.4.13/download -> tower-0.4.13.crate https://crates.io/api/v1/crates/tower-http/0.4.0/download -> tower-http-0.4.0.crate https://crates.io/api/v1/crates/tower-layer/0.3.2/download -> tower-layer-0.3.2.crate https://crates.io/api/v1/crates/tower-service/0.3.2/download -> tower-service-0.3.2.crate https://crates.io/api/v1/crates/tracing/0.1.37/download -> tracing-0.1.37.crate https://crates.io/api/v1/crates/tracing-attributes/0.1.23/download -> tracing-attributes-0.1.23.crate https://crates.io/api/v1/crates/tracing-core/0.1.30/download -> tracing-core-0.1.30.crate https://crates.io/api/v1/crates/tracing-futures/0.2.5/download -> tracing-futures-0.2.5.crate https://crates.io/api/v1/crates/tracing-subscriber/0.3.16/download -> tracing-subscriber-0.3.16.crate https://crates.io/api/v1/crates/try-lock/0.2.4/download -> try-lock-0.2.4.crate https://crates.io/api/v1/crates/twox-hash/1.6.3/download -> twox-hash-1.6.3.crate https://crates.io/api/v1/crates/unarray/0.1.4/download -> unarray-0.1.4.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.10/download -> unicode-bidi-0.3.10.crate https://crates.io/api/v1/crates/unicode-ident/1.0.7/download -> unicode-ident-1.0.7.crate https://crates.io/api/v1/crates/unicode-linebreak/0.1.4/download -> unicode-linebreak-0.1.4.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/unicode-segmentation/1.10.1/download -> unicode-segmentation-1.10.1.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/unicode-xid/0.1.0/download -> unicode-xid-0.1.0.crate https://crates.io/api/v1/crates/untrusted/0.7.1/download -> untrusted-0.7.1.crate https://crates.io/api/v1/crates/url/2.3.1/download -> url-2.3.1.crate https://crates.io/api/v1/crates/urlencoding/2.1.2/download -> urlencoding-2.1.2.crate https://crates.io/api/v1/crates/utf8parse/0.2.0/download -> utf8parse-0.2.0.crate https://crates.io/api/v1/crates/uuid/1.3.0/download -> uuid-1.3.0.crate https://crates.io/api/v1/crates/valuable/0.1.0/download -> valuable-0.1.0.crate https://crates.io/api/v1/crates/vcpkg/0.2.15/download -> vcpkg-0.2.15.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/vte/0.10.1/download -> vte-0.10.1.crate https://crates.io/api/v1/crates/vte_generate_state_changes/0.1.1/download -> vte_generate_state_changes-0.1.1.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/want/0.3.0/download -> want-0.3.0.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/0.2.84/download -> wasm-bindgen-0.2.84.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.84/download -> wasm-bindgen-backend-0.2.84.crate https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.34/download -> wasm-bindgen-futures-0.4.34.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.84/download -> wasm-bindgen-macro-0.2.84.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.84/download -> wasm-bindgen-macro-support-0.2.84.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.84/download -> wasm-bindgen-shared-0.2.84.crate https://crates.io/api/v1/crates/web-sys/0.3.61/download -> web-sys-0.3.61.crate https://crates.io/api/v1/crates/webpki/0.22.0/download -> webpki-0.22.0.crate https://crates.io/api/v1/crates/webpki-roots/0.22.6/download -> webpki-roots-0.22.6.crate https://crates.io/api/v1/crates/win32job/1.0.2/download -> win32job-1.0.2.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-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/windows/0.44.0/download -> windows-0.44.0.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-sys/0.45.0/download -> windows-sys-0.45.0.crate https://crates.io/api/v1/crates/windows-targets/0.42.1/download -> windows-targets-0.42.1.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/winnow/0.3.4/download -> winnow-0.3.4.crate https://crates.io/api/v1/crates/winreg/0.10.1/download -> winreg-0.10.1.crate https://crates.io/api/v1/crates/xattr/0.2.3/download -> xattr-0.2.3.crate https://crates.io/api/v1/crates/yaml-rust/0.4.5/download -> yaml-rust-0.4.5.crate https://crates.io/api/v1/crates/yansi/0.5.1/download -> yansi-0.5.1.crate https://crates.io/api/v1/crates/zeroize/1.5.7/download -> zeroize-1.5.7.crate https://crates.io/api/v1/crates/zstd/0.12.3+zstd.1.5.2/download -> zstd-0.12.3+zstd.1.5.2.crate https://crates.io/api/v1/crates/zstd-safe/6.0.4+zstd.1.5.4/download -> zstd-safe-6.0.4+zstd.1.5.4.crate https://crates.io/api/v1/crates/zstd-sys/2.0.7+zstd.1.5.4/download -> zstd-sys-2.0.7+zstd.1.5.4.crate +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=0b914a367128e84d357a12044ce79752 diff --git a/metadata/md5-cache/dev-util/ccache-4.5.1 b/metadata/md5-cache/dev-util/ccache-4.5.1 index eeb64d439f22..c3fcbbd6a3d5 100644 --- a/metadata/md5-cache/dev-util/ccache-4.5.1 +++ b/metadata/md5-cache/dev-util/ccache-4.5.1 @@ -12,5 +12,5 @@ RDEPEND=app-arch/zstd:= redis? ( dev-libs/hiredis:= ) dev-util/shadowman sys-app RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ccache/ccache/releases/download/v4.5.1/ccache-4.5.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c2fbb7510e81e847d260d52bddec90a2 diff --git a/metadata/md5-cache/dev-util/ccache-4.6.3 b/metadata/md5-cache/dev-util/ccache-4.6.3 index 2d71377e2215..055243301296 100644 --- a/metadata/md5-cache/dev-util/ccache-4.6.3 +++ b/metadata/md5-cache/dev-util/ccache-4.6.3 @@ -13,5 +13,5 @@ RDEPEND=app-arch/zstd:= redis? ( dev-libs/hiredis:= ) dev-util/shadowman sys-app RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ccache/ccache/releases/download/v4.6.3/ccache-4.6.3.tar.xz verify-sig? ( https://github.com/ccache/ccache/releases/download/v4.6.3/ccache-4.6.3.tar.xz.asc ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aa2a620d2694f7044d397907a7de7dff diff --git a/metadata/md5-cache/dev-util/ccache-4.7.4 b/metadata/md5-cache/dev-util/ccache-4.7.4 index 7159f7211f82..4337f7b45839 100644 --- a/metadata/md5-cache/dev-util/ccache-4.7.4 +++ b/metadata/md5-cache/dev-util/ccache-4.7.4 @@ -13,5 +13,5 @@ RDEPEND=app-arch/zstd:= redis? ( dev-libs/hiredis:= ) dev-util/shadowman sys-app RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ccache/ccache/releases/download/v4.7.4/ccache-4.7.4.tar.xz verify-sig? ( https://github.com/ccache/ccache/releases/download/v4.7.4/ccache-4.7.4.tar.xz.asc ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=14fb877f06e5300e4832d138b11efbcb diff --git a/metadata/md5-cache/dev-util/ccache-4.8 b/metadata/md5-cache/dev-util/ccache-4.8 index c13cd6b47c20..e710da29b627 100644 --- a/metadata/md5-cache/dev-util/ccache-4.8 +++ b/metadata/md5-cache/dev-util/ccache-4.8 @@ -13,5 +13,5 @@ RDEPEND=app-arch/zstd:= redis? ( dev-libs/hiredis:= ) dev-util/shadowman sys-app RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ccache/ccache/releases/download/v4.8/ccache-4.8.tar.xz verify-sig? ( https://github.com/ccache/ccache/releases/download/v4.8/ccache-4.8.tar.xz.asc ) !doc? ( https://dev.gentoo.org/~sam/distfiles/dev-util/ccache/ccache-4.8-docs.tar.xz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3990d74e7b3a41afd6956df0b4df11b2 diff --git a/metadata/md5-cache/dev-util/ccls-0.20220729-r1 b/metadata/md5-cache/dev-util/ccls-0.20220729-r1 index 262f431bcca6..66626936f53e 100644 --- a/metadata/md5-cache/dev-util/ccls-0.20220729-r1 +++ b/metadata/md5-cache/dev-util/ccls-0.20220729-r1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-libs/rapidjson ccls-0.20220729.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1c914bb97c9fe71c7e2fa2689590b7c4 diff --git a/metadata/md5-cache/dev-util/ccls-9999 b/metadata/md5-cache/dev-util/ccls-9999 index ae247866ad34..e0556700e3a7 100644 --- a/metadata/md5-cache/dev-util/ccls-9999 +++ b/metadata/md5-cache/dev-util/ccls-9999 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 PROPERTIES=live RDEPEND=dev-libs/rapidjson =app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.24/cmake-3.24.3.tar.gz !doc? ( https://dev.gentoo.org/~sam/distfiles/dev-util/cmake/cmake-3.24.3-docs.tar.xz ) verify-sig? ( https://github.com/Kitware/CMake/releases/download/v3.24.3/cmake-3.24.3-SHA-256.txt https://github.com/Kitware/CMake/releases/download/v3.24.3/cmake-3.24.3-SHA-256.txt.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=09bae11df18ffa13d5e1de498fea931b diff --git a/metadata/md5-cache/dev-util/cmake-3.25.2 b/metadata/md5-cache/dev-util/cmake-3.25.2 index c511786a154c..de3f78d9871c 100644 --- a/metadata/md5-cache/dev-util/cmake-3.25.2 +++ b/metadata/md5-cache/dev-util/cmake-3.25.2 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://cmake.org/ INHERIT=bash-completion-r1 cmake elisp-common flag-o-matic multiprocessing toolchain-funcs virtualx xdg-utils verify-sig IUSE=doc emacs ncurses qt5 test test verify-sig -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=CMake RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=dev-libs/jsoncpp-1.9.2-r2:0= >=dev-libs/libuv-1.10.0:= >=net-misc/curl-7.21.5[ssl] sys-libs/zlib virtual/pkgconfig emacs? ( >=app-editors/emacs-23.1:* ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.25/cmake-3.25.2.tar.gz !doc? ( https://dev.gentoo.org/~sam/distfiles/dev-util/cmake/cmake-3.25.2-docs.tar.xz ) verify-sig? ( https://github.com/Kitware/CMake/releases/download/v3.25.2/cmake-3.25.2-SHA-256.txt https://github.com/Kitware/CMake/releases/download/v3.25.2/cmake-3.25.2-SHA-256.txt.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=c4cb6ee4c402067b6b1d359b7e144d4a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=3a2e31333f0df05ca4d932952f3f7b7c diff --git a/metadata/md5-cache/dev-util/cmake-3.25.3 b/metadata/md5-cache/dev-util/cmake-3.25.3 index a0452b1b9b8b..e744e921030c 100644 --- a/metadata/md5-cache/dev-util/cmake-3.25.3 +++ b/metadata/md5-cache/dev-util/cmake-3.25.3 @@ -12,5 +12,5 @@ RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.25/cmake-3.25.3.tar.gz !doc? ( https://dev.gentoo.org/~sam/distfiles/dev-util/cmake/cmake-3.25.3-docs.tar.xz ) verify-sig? ( https://github.com/Kitware/CMake/releases/download/v3.25.3/cmake-3.25.3-SHA-256.txt https://github.com/Kitware/CMake/releases/download/v3.25.3/cmake-3.25.3-SHA-256.txt.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f8986873b8c351bc5db0f2420229bf36 diff --git a/metadata/md5-cache/dev-util/cmake-3.26.0 b/metadata/md5-cache/dev-util/cmake-3.26.0 index 5fa00ea8a692..d0cdc93ab189 100644 --- a/metadata/md5-cache/dev-util/cmake-3.26.0 +++ b/metadata/md5-cache/dev-util/cmake-3.26.0 @@ -12,5 +12,5 @@ RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.26/cmake-3.26.0.tar.gz !doc? ( https://dev.gentoo.org/~sam/distfiles/dev-util/cmake/cmake-3.26.0-docs.tar.xz ) verify-sig? ( https://github.com/Kitware/CMake/releases/download/v3.26.0/cmake-3.26.0-SHA-256.txt https://github.com/Kitware/CMake/releases/download/v3.26.0/cmake-3.26.0-SHA-256.txt.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=94bc1f059df662317c9a05600e3ec4ec diff --git a/metadata/md5-cache/dev-util/cmake-9999 b/metadata/md5-cache/dev-util/cmake-9999 index 5f53cde49fc9..d99cfae016c7 100644 --- a/metadata/md5-cache/dev-util/cmake-9999 +++ b/metadata/md5-cache/dev-util/cmake-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=dev-libs/jsoncpp-1.9.2-r2:0= >=dev-libs/libuv-1.10.0:= >=net-misc/curl-7.21.5[ssl] sys-libs/zlib virtual/pkgconfig emacs? ( >=app-editors/emacs-23.1:* ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=94bc1f059df662317c9a05600e3ec4ec diff --git a/metadata/md5-cache/dev-util/cmake-fedora-2.9.3 b/metadata/md5-cache/dev-util/cmake-fedora-2.9.3 index cfef233530b8..7ea495f866f9 100644 --- a/metadata/md5-cache/dev-util/cmake-fedora-2.9.3 +++ b/metadata/md5-cache/dev-util/cmake-fedora-2.9.3 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=test SLOT=0 SRC_URI=https://pagure.io/cmake-fedora/archive/2.9.3/cmake-fedora-2.9.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d2eeecf0c820d6d937bfbfd58a77b7d diff --git a/metadata/md5-cache/dev-util/cmocka-1.1.5 b/metadata/md5-cache/dev-util/cmocka-1.1.5 index bf325fe99a44..1a9ca3fed27c 100644 --- a/metadata/md5-cache/dev-util/cmocka-1.1.5 +++ b/metadata/md5-cache/dev-util/cmocka-1.1.5 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://cmocka.org/files/1.1/cmocka-1.1.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=858fcd8215d6f8ce2ba168dfffa1a5a0 diff --git a/metadata/md5-cache/dev-util/cppcheck-2.6.3 b/metadata/md5-cache/dev-util/cppcheck-2.6.3 index 3f541578714c..1790702a6efd 100644 --- a/metadata/md5-cache/dev-util/cppcheck-2.6.3 +++ b/metadata/md5-cache/dev-util/cppcheck-2.6.3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/danmar/cppcheck/archive/refs/tags/2.6.3.tar.gz -> cppcheck-2.6.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c0b894cb9ee2569f1ed4c4f4ddaf4357 diff --git a/metadata/md5-cache/dev-util/cppcheck-2.8.1 b/metadata/md5-cache/dev-util/cppcheck-2.8.1 index 50b8ab3d23d6..666974042bf6 100644 --- a/metadata/md5-cache/dev-util/cppcheck-2.8.1 +++ b/metadata/md5-cache/dev-util/cppcheck-2.8.1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/danmar/cppcheck/archive/refs/tags/2.8.1.tar.gz -> cppcheck-2.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=16d873d5de66a82da72e5b87a5c123a2 diff --git a/metadata/md5-cache/dev-util/cppcheck-2.8.1-r1 b/metadata/md5-cache/dev-util/cppcheck-2.8.1-r1 index c4f09272ba5b..fd30376fb249 100644 --- a/metadata/md5-cache/dev-util/cppcheck-2.8.1-r1 +++ b/metadata/md5-cache/dev-util/cppcheck-2.8.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/danmar/cppcheck/archive/refs/tags/2.8.1.tar.gz -> cppcheck-2.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fc2a2952aabbab4ad54e0d2fed5ca331 diff --git a/metadata/md5-cache/dev-util/cppcheck-2.8.2 b/metadata/md5-cache/dev-util/cppcheck-2.8.2 index 93eae8aab899..fa5f438a6c5a 100644 --- a/metadata/md5-cache/dev-util/cppcheck-2.8.2 +++ b/metadata/md5-cache/dev-util/cppcheck-2.8.2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/danmar/cppcheck/archive/refs/tags/2.8.2.tar.gz -> cppcheck-2.8.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fc2a2952aabbab4ad54e0d2fed5ca331 diff --git a/metadata/md5-cache/dev-util/cppcheck-2.9 b/metadata/md5-cache/dev-util/cppcheck-2.9 index f1aa371ef7a2..e7107ab2fa58 100644 --- a/metadata/md5-cache/dev-util/cppcheck-2.9 +++ b/metadata/md5-cache/dev-util/cppcheck-2.9 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/danmar/cppcheck/archive/refs/tags/2.9.tar.gz -> cppcheck-2.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fb7caea96b055ebdc59f4c5a715f4893 diff --git a/metadata/md5-cache/dev-util/cutter-2.1.2-r2 b/metadata/md5-cache/dev-util/cutter-2.1.2-r2 index 4c1c6b1f5104..54dbced4c54c 100644 --- a/metadata/md5-cache/dev-util/cutter-2.1.2-r2 +++ b/metadata/md5-cache/dev-util/cutter-2.1.2-r2 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://github.com/rizinorg/cutter/releases/download/v2.1.2/Cutter-v2.1.2-src.tar.gz -> cutter-2.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6cf8613df7d2a381fb28dd192f62d0d5 diff --git a/metadata/md5-cache/dev-util/cutter-2.2.0 b/metadata/md5-cache/dev-util/cutter-2.2.0 index c917a7812c37..c4a95a77a02f 100644 --- a/metadata/md5-cache/dev-util/cutter-2.2.0 +++ b/metadata/md5-cache/dev-util/cutter-2.2.0 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://github.com/rizinorg/cutter/releases/download/v2.2.0/Cutter-v2.2.0-src.tar.gz -> cutter-2.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=777f6e1c060106d7090ea4d1b4102d0f diff --git a/metadata/md5-cache/dev-util/cvise-2.6.0 b/metadata/md5-cache/dev-util/cvise-2.6.0 index 2f3ffef231f9..cac715a1d1c2 100644 --- a/metadata/md5-cache/dev-util/cvise-2.6.0 +++ b/metadata/md5-cache/dev-util/cvise-2.6.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/marxin/cvise/archive/v2.6.0.tar.gz -> cvise-2.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=60afe8aea8bd98243e069b3505c817c6 diff --git a/metadata/md5-cache/dev-util/cvise-2.7.0 b/metadata/md5-cache/dev-util/cvise-2.7.0 index 6131b2551430..aaa715c0fb73 100644 --- a/metadata/md5-cache/dev-util/cvise-2.7.0 +++ b/metadata/md5-cache/dev-util/cvise-2.7.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/marxin/cvise/archive/v2.7.0.tar.gz -> cvise-2.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dcf6d909b67ea63e0d181bca56afca6f diff --git a/metadata/md5-cache/dev-util/diffoscope-239 b/metadata/md5-cache/dev-util/diffoscope-239 new file mode 100644 index 000000000000..8f4353e8b6d1 --- /dev/null +++ b/metadata/md5-cache/dev-util/diffoscope-239 @@ -0,0 +1,16 @@ +BDEPEND=test? ( app-text/docx2txt app-text/html2text media-libs/libcaca virtual/imagemagick-tools[jpeg] ) test? ( dev-python/python-magic[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/libarchive-c[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/distro[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/tlsh[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] acl? ( sys-apps/acl ) binutils? ( sys-devel/binutils ) bzip2? ( app-arch/bzip2 ) libcaca? ( media-libs/libcaca ) colord? ( x11-misc/colord ) cpio? ( app-arch/cpio ) diff? ( sys-apps/diffutils ) docx? ( app-text/docx2txt ) dtc? ( sys-apps/dtc ) e2fsprogs? ( sys-fs/e2fsprogs ) file? ( sys-apps/file ) find? ( sys-apps/findutils ) gettext? ( sys-devel/gettext ) gif? ( media-libs/giflib ) gpg? ( app-crypt/gnupg ) haskell? ( dev-lang/ghc ) hdf5? ( sci-libs/hdf5 ) hex? ( app-editors/vim-core ) imagemagick? ( media-gfx/imagemagick ) iso? ( app-cdr/cdrtools ) java? ( virtual/jdk ) llvm? ( sys-devel/llvm ) lzma? ( app-arch/xz-utils ) mono? ( dev-lang/mono ) opendocument? ( app-text/odt2txt ) pascal? ( dev-lang/fpc ) pdf? ( app-text/pdftk app-text/poppler dev-python/pypdf[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) postscript? ( app-text/ghostscript-gpl ) R? ( dev-lang/R ) rpm? ( app-arch/rpm ) sqlite? ( dev-db/sqlite:3 ) squashfs? ( sys-fs/squashfs-tools ) ssh? ( net-misc/openssh ) tar? ( app-arch/tar ) tcpdump? ( net-analyzer/tcpdump ) zip? ( app-arch/unzip ) zlib? ( app-arch/gzip ) zstd? ( app-arch/zstd ) !dev-python/filemagic >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[ncurses] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[ncurses] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[ncurses] ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Will try to get to the bottom of what makes files or directories different +EAPI=8 +HOMEPAGE=https://diffoscope.org/ https://pypi.org/project/diffoscope/ +INHERIT=distutils-r1 pypi +IUSE=acl binutils bzip2 libcaca colord cpio +diff docx dtc e2fsprogs file find gettext gif gpg haskell hdf5 hex imagemagick iso java llvm lzma mono opendocument pascal pdf postscript R rpm sqlite squashfs ssh tar test tcpdump zip zlib zstd test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~x86 +LICENSE=GPL-3+ +RDEPEND=dev-python/python-magic[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/libarchive-c[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/distro[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/tlsh[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] acl? ( sys-apps/acl ) binutils? ( sys-devel/binutils ) bzip2? ( app-arch/bzip2 ) libcaca? ( media-libs/libcaca ) colord? ( x11-misc/colord ) cpio? ( app-arch/cpio ) diff? ( sys-apps/diffutils ) docx? ( app-text/docx2txt ) dtc? ( sys-apps/dtc ) e2fsprogs? ( sys-fs/e2fsprogs ) file? ( sys-apps/file ) find? ( sys-apps/findutils ) gettext? ( sys-devel/gettext ) gif? ( media-libs/giflib ) gpg? ( app-crypt/gnupg ) haskell? ( dev-lang/ghc ) hdf5? ( sci-libs/hdf5 ) hex? ( app-editors/vim-core ) imagemagick? ( media-gfx/imagemagick ) iso? ( app-cdr/cdrtools ) java? ( virtual/jdk ) llvm? ( sys-devel/llvm ) lzma? ( app-arch/xz-utils ) mono? ( dev-lang/mono ) opendocument? ( app-text/odt2txt ) pascal? ( dev-lang/fpc ) pdf? ( app-text/pdftk app-text/poppler dev-python/pypdf[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) postscript? ( app-text/ghostscript-gpl ) R? ( dev-lang/R ) rpm? ( app-arch/rpm ) sqlite? ( dev-db/sqlite:3 ) squashfs? ( sys-fs/squashfs-tools ) ssh? ( net-misc/openssh ) tar? ( app-arch/tar ) tcpdump? ( net-analyzer/tcpdump ) zip? ( app-arch/unzip ) zlib? ( app-arch/gzip ) zstd? ( app-arch/zstd ) !dev-python/filemagic python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[ncurses] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[ncurses] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[ncurses] ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/d/diffoscope/diffoscope-239.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 1bc874ed4adb7d785e7201acbbb8347a python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=6fea2251995f08774d58153ac2b3cdcc diff --git a/metadata/md5-cache/dev-util/edb-debugger-1.3.0-r1 b/metadata/md5-cache/dev-util/edb-debugger-1.3.0-r1 index f6cd6b055c23..d059ded3bc86 100644 --- a/metadata/md5-cache/dev-util/edb-debugger-1.3.0-r1 +++ b/metadata/md5-cache/dev-util/edb-debugger-1.3.0-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=dev-libs/capstone:= dev-libs/double-conversion:= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 dev-qt/qtxmlpatterns:5 graphviz? ( media-gfx/graphviz ) SLOT=0 SRC_URI=https://github.com/eteran/edb-debugger/releases/download/1.3.0/edb-debugger-1.3.0.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca9a1ed0a85ddcf298c5f796caef7eae diff --git a/metadata/md5-cache/dev-util/edb-debugger-9999 b/metadata/md5-cache/dev-util/edb-debugger-9999 index 4a77292dad85..ea2ef8015b85 100644 --- a/metadata/md5-cache/dev-util/edb-debugger-9999 +++ b/metadata/md5-cache/dev-util/edb-debugger-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=dev-libs/capstone:= dev-libs/double-conversion:= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 dev-qt/qtxmlpatterns:5 graphviz? ( media-gfx/graphviz ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a8451f2ae899fa23278b21cd8ea01982 diff --git a/metadata/md5-cache/dev-util/glslang-1.3.239 b/metadata/md5-cache/dev-util/glslang-1.3.239 index 577f7160c37a..4fa96add1f90 100644 --- a/metadata/md5-cache/dev-util/glslang-1.3.239 +++ b/metadata/md5-cache/dev-util/glslang-1.3.239 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=test SLOT=0/12 SRC_URI=https://github.com/KhronosGroup/glslang/archive/sdk-1.3.239.0.tar.gz -> glslang-1.3.239.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b594d8988af21231f67c40cbfd71470a diff --git a/metadata/md5-cache/dev-util/glslang-9999 b/metadata/md5-cache/dev-util/glslang-9999 index fdf106943bc9..5fccb53d7af6 100644 --- a/metadata/md5-cache/dev-util/glslang-9999 +++ b/metadata/md5-cache/dev-util/glslang-9999 @@ -9,5 +9,5 @@ LICENSE=BSD PROPERTIES=live RESTRICT=test SLOT=0/12 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e8e71740e04342c29e24215271e406f9 diff --git a/metadata/md5-cache/dev-util/gnome-builder-44.1 b/metadata/md5-cache/dev-util/gnome-builder-44.1 new file mode 100644 index 000000000000..8aa8fb691b38 --- /dev/null +++ b/metadata/md5-cache/dev-util/gnome-builder-44.1 @@ -0,0 +1,18 @@ +BDEPEND=doc? ( python_single_target_python3_9? ( dev-python/sphinx[python_targets_python3_9(-)] dev-python/sphinx-rtd-theme[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/sphinx[python_targets_python3_10(-)] dev-python/sphinx-rtd-theme[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/sphinx[python_targets_python3_11(-)] dev-python/sphinx-rtd-theme[python_targets_python3_11(-)] ) ) gtk-doc? ( dev-util/gi-docgen app-text/docbook-xml-dtd:4.3 ) test? ( dev-libs/appstream-glib sys-apps/dbus ) dev-util/desktop-file-utils dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst setup test +DEPEND=>=dev-libs/glib-2.75.0:2 >=gui-libs/gtk-4.8:4[introspection] >=gui-libs/libadwaita-1.3.0:1 >=gui-libs/libpanel-1.1.2:1 >=gui-libs/gtksourceview-5.7.2:5[introspection] >=dev-libs/json-glib-1.2.0 >=dev-libs/jsonrpc-glib-3.43.0:= >=dev-libs/libdex-0.1.1:= >=dev-libs/libpeas-1.34.0[python,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] dev-libs/libportal:=[gtk,introspection] >=dev-libs/template-glib-3.36.1:=[introspection] >=gui-libs/vte-0.70.0:2.91-gtk4[introspection] >=dev-libs/libxml2-2.9.0 webkit? ( >=net-libs/webkit-gtk-2.38.0:6=[introspection] ) >=app-text/cmark-0.29.0:0= d-spy? ( >=dev-util/d-spy-1.4.0:1 ) app-text/editorconfig-core-c flatpak? ( dev-util/ostree >=net-libs/libsoup-3:3.0 >=sys-apps/flatpak-1.10.2 ) git? ( dev-libs/libgit2:=[ssh,threads] >=dev-libs/libgit2-glib-1.1.0[ssh] ) >=dev-libs/gobject-introspection-1.54.0:= python_single_target_python3_9? ( >=dev-python/pygobject-3.22.0:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pygobject-3.22.0:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pygobject-3.22.0:3[python_targets_python3_11(-)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) clang? ( sys-devel/clang:= ) spell? ( app-text/enchant:2 dev-libs/icu:= ) sysprof? ( >=dev-util/sysprof-capture-3.46.0:4 >=dev-util/sysprof-3.46.0:0/4 ) !!sys-devel/llvm:0 +DESCRIPTION=An IDE for writing GNOME-based software +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Builder https://gitlab.gnome.org/GNOME/gnome-builder +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils llvm meson optfeature python-single-r1 readme.gentoo-r1 virtualx xdg +IUSE=clang doc +d-spy flatpak +git gtk-doc spell +sysprof test +webkit python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 test +KEYWORDS=~amd64 +LICENSE=GPL-3+ GPL-2+ LGPL-3+ LGPL-2+ MIT CC-BY-SA-3.0 CC0-1.0 +RDEPEND=>=dev-libs/glib-2.75.0:2 >=gui-libs/gtk-4.8:4[introspection] >=gui-libs/libadwaita-1.3.0:1 >=gui-libs/libpanel-1.1.2:1 >=gui-libs/gtksourceview-5.7.2:5[introspection] >=dev-libs/json-glib-1.2.0 >=dev-libs/jsonrpc-glib-3.43.0:= >=dev-libs/libdex-0.1.1:= >=dev-libs/libpeas-1.34.0[python,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] dev-libs/libportal:=[gtk,introspection] >=dev-libs/template-glib-3.36.1:=[introspection] >=gui-libs/vte-0.70.0:2.91-gtk4[introspection] >=dev-libs/libxml2-2.9.0 webkit? ( >=net-libs/webkit-gtk-2.38.0:6=[introspection] ) >=app-text/cmark-0.29.0:0= d-spy? ( >=dev-util/d-spy-1.4.0:1 ) app-text/editorconfig-core-c flatpak? ( dev-util/ostree >=net-libs/libsoup-3:3.0 >=sys-apps/flatpak-1.10.2 ) git? ( dev-libs/libgit2:=[ssh,threads] >=dev-libs/libgit2-glib-1.1.0[ssh] ) >=dev-libs/gobject-introspection-1.54.0:= python_single_target_python3_9? ( >=dev-python/pygobject-3.22.0:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pygobject-3.22.0:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pygobject-3.22.0:3[python_targets_python3_11(-)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) clang? ( sys-devel/clang:= ) spell? ( app-text/enchant:2 dev-libs/icu:= ) sysprof? ( >=dev-util/sysprof-capture-3.46.0:4 >=dev-util/sysprof-3.46.0:0/4 ) +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) flatpak? ( git ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-builder/44/gnome-builder-44.1.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 llvm 4cc6f8e29d24a8011266413e74c728bb meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=b243ddc057ff26441a86fe308b8ac361 diff --git a/metadata/md5-cache/dev-util/heaptrack-1.4.0 b/metadata/md5-cache/dev-util/heaptrack-1.4.0 index 2c309dfa3fca..f957ea1e4331 100644 --- a/metadata/md5-cache/dev-util/heaptrack-1.4.0 +++ b/metadata/md5-cache/dev-util/heaptrack-1.4.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:=[zstd?,zlib] sys-libs/libunwind:= sys-libs/zlib gui? ( d RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://kde/stable/heaptrack/1.4.0/heaptrack-1.4.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=27ce53e080845ca325a687d06b9e5cc9 diff --git a/metadata/md5-cache/dev-util/heaptrack-9999 b/metadata/md5-cache/dev-util/heaptrack-9999 index 298092e25603..2afe0841c08e 100644 --- a/metadata/md5-cache/dev-util/heaptrack-9999 +++ b/metadata/md5-cache/dev-util/heaptrack-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/boost:=[zstd?,zlib] sys-libs/libunwind:= sys-libs/zlib gui? ( dev-libs/kdiagram:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 kde-frameworks/kconfig:5 kde-frameworks/kconfigwidgets:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kio:5 kde-frameworks/kitemmodels:5 kde-frameworks/kwidgetsaddons:5 kde-frameworks/threadweaver:5 ) zstd? ( app-arch/zstd:= ) gui? ( >=kde-frameworks/kf-env-4 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=da509cc6314413afa874b9d143df1b47 diff --git a/metadata/md5-cache/dev-util/hip-5.1.3-r4 b/metadata/md5-cache/dev-util/hip-5.1.3-r4 index 3975fbbc9156..508916e00a9a 100644 --- a/metadata/md5-cache/dev-util/hip-5.1.3-r4 +++ b/metadata/md5-cache/dev-util/hip-5.1.3-r4 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=>=dev-util/rocminfo-5 sys-devel/clang:15 dev-libs/rocm-comgr:0/5.1 virtual/opengl dev-perl/URI-Encode sys-devel/clang-runtime:= >=dev-libs/roct-thunk-interface-5 SLOT=0/5.1 SRC_URI=https://github.com/ROCm-Developer-Tools/hipamd/archive/rocm-5.1.3.tar.gz -> rocm-hipamd-5.1.3.tar.gz https://github.com/ROCm-Developer-Tools/HIP/archive/rocm-5.1.3.tar.gz -> rocm-hip-5.1.3.tar.gz https://github.com/ROCm-Developer-Tools/ROCclr/archive/rocm-5.1.3.tar.gz -> rocclr-5.1.3.tar.gz https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime/archive/rocm-5.1.3.tar.gz -> rocm-opencl-runtime-5.1.3.tar.gz profile? ( https://github.com/ROCm-Developer-Tools/roctracer/archive/refs/tags/rocm-5.1.3.tar.gz -> rocm-tracer-5.1.3.tar.gz https://github.com/ROCm-Developer-Tools/hipamd/files/8991181/hip_prof_str_diff.gz -> hip-5.1.3-update-header.patch.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ed5cde5a4283685e410d6d57fb11635a diff --git a/metadata/md5-cache/dev-util/hip-5.3.3-r3 b/metadata/md5-cache/dev-util/hip-5.3.3-r3 index 5a04c9a82e04..e3160734d7e7 100644 --- a/metadata/md5-cache/dev-util/hip-5.3.3-r3 +++ b/metadata/md5-cache/dev-util/hip-5.3.3-r3 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=>=dev-util/rocminfo-5 sys-devel/clang:15 dev-libs/rocm-comgr:0/5.3 virtual/opengl dev-perl/URI-Encode sys-devel/clang-runtime:= >=dev-libs/roct-thunk-interface-5 SLOT=0/5.3 SRC_URI=https://github.com/ROCm-Developer-Tools/hipamd/archive/rocm-5.3.3.tar.gz -> rocm-hipamd-5.3.3.tar.gz https://github.com/ROCm-Developer-Tools/HIP/archive/rocm-5.3.3.tar.gz -> rocm-hip-5.3.3.tar.gz https://github.com/ROCm-Developer-Tools/ROCclr/archive/rocm-5.3.3.tar.gz -> rocclr-5.3.3.tar.gz https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime/archive/rocm-5.3.3.tar.gz -> rocm-opencl-runtime-5.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=65810c4847eefbced114a8e0256f8b1d diff --git a/metadata/md5-cache/dev-util/hip-5.4.3 b/metadata/md5-cache/dev-util/hip-5.4.3 index 270c745bcadb..dc36ae189c29 100644 --- a/metadata/md5-cache/dev-util/hip-5.4.3 +++ b/metadata/md5-cache/dev-util/hip-5.4.3 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=>=dev-util/rocminfo-5 sys-devel/clang:15 dev-libs/rocm-comgr:0/5.4 virtual/opengl dev-perl/URI-Encode sys-devel/clang-runtime:= >=dev-libs/roct-thunk-interface-5 SLOT=0/5.4 SRC_URI=https://github.com/ROCm-Developer-Tools/hipamd/archive/rocm-5.4.3.tar.gz -> rocm-hipamd-5.4.3.tar.gz https://github.com/ROCm-Developer-Tools/HIP/archive/rocm-5.4.3.tar.gz -> rocm-hip-5.4.3.tar.gz https://github.com/ROCm-Developer-Tools/ROCclr/archive/rocm-5.4.3.tar.gz -> rocclr-5.4.3.tar.gz https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime/archive/rocm-5.4.3.tar.gz -> rocm-opencl-runtime-5.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6213d6aaaea0be67b1f8337c5d02617e diff --git a/metadata/md5-cache/dev-util/icemon-3.3 b/metadata/md5-cache/dev-util/icemon-3.3 index 691de1c3eb47..57b4074d1977 100644 --- a/metadata/md5-cache/dev-util/icemon-3.3 +++ b/metadata/md5-cache/dev-util/icemon-3.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 >=sys-devel/icecream-1.3 SLOT=0 SRC_URI=https://github.com/icecc/icemon/releases/download/v3.3/icemon-3.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=27366ba890fcfa806b8f5aa0e3776767 diff --git a/metadata/md5-cache/dev-util/ignition-cmake-2.14.0 b/metadata/md5-cache/dev-util/ignition-cmake-2.14.0 index cd485702f6bd..13ba3f64fe6b 100644 --- a/metadata/md5-cache/dev-util/ignition-cmake-2.14.0 +++ b/metadata/md5-cache/dev-util/ignition-cmake-2.14.0 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=2 SRC_URI=https://osrf-distributions.s3.amazonaws.com/ign-cmake/releases/ignition-cmake2-2.14.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d784cc6df98c701d0edd5f5bd9bad3eb diff --git a/metadata/md5-cache/dev-util/include-what-you-use-0.19 b/metadata/md5-cache/dev-util/include-what-you-use-0.19 index 44679f373760..7de0e55d38b8 100644 --- a/metadata/md5-cache/dev-util/include-what-you-use-0.19 +++ b/metadata/md5-cache/dev-util/include-what-you-use-0.19 @@ -12,5 +12,5 @@ RDEPEND=sys-devel/clang:15 sys-devel/llvm:15 python_single_target_python3_9? ( > REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://github.com/include-what-you-use/include-what-you-use/archive/0.19.tar.gz -> include-what-you-use-0.19.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=80717d8c0e9f5ccf335edbdfa7dd5c74 diff --git a/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.12812.26-r2 b/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.12812.26-r2 index 1f45b63d6148..2cfd55992d70 100644 --- a/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.12812.26-r2 +++ b/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.12812.26-r2 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/opencl-clang:14= dev-util/spirv-tools sys-devel/lld:14= sys-devel/llvm:14= vc? ( >=dev-libs/intel-vc-intrinsics-0.11.0 dev-util/spirv-llvm-translator:14= ) SLOT=0 SRC_URI=https://github.com/intel/intel-graphics-compiler/archive/igc-1.0.12812.26.tar.gz -> intel-graphics-compiler-1.0.12812.26.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=124405ed0195b7cecd52ba1f5c8075e0 diff --git a/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13230.7 b/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13230.7 index dc31cc4e50ea..65d32303b038 100644 --- a/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13230.7 +++ b/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13230.7 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/opencl-clang:14= dev-util/spirv-tools sys-devel/lld:14= sys-devel/llvm:14= vc? ( >=dev-libs/intel-vc-intrinsics-0.11.0 dev-util/spirv-llvm-translator:14= ) SLOT=0 SRC_URI=https://github.com/intel/intel-graphics-compiler/archive/igc-1.0.13230.7.tar.gz -> intel-graphics-compiler-1.0.13230.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=84a29fe2f56d82c3efa1490f58d73965 diff --git a/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13230.7-r1 b/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13230.7-r1 index e206db2edb1c..efac00f86c8d 100644 --- a/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13230.7-r1 +++ b/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13230.7-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/opencl-clang:14= dev-util/spirv-tools sys-devel/lld:14= sys-devel/llvm:14= vc? ( >=dev-libs/intel-vc-intrinsics-0.11.0 dev-util/spirv-llvm-translator:14= ) SLOT=0 SRC_URI=https://github.com/intel/intel-graphics-compiler/archive/igc-1.0.13230.7.tar.gz -> intel-graphics-compiler-1.0.13230.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4ffa0bb93524a0c260566f085c85cbd diff --git a/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13463.1 b/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13463.1 index 00574d6971eb..c34a2327c671 100644 --- a/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13463.1 +++ b/metadata/md5-cache/dev-util/intel-graphics-compiler-1.0.13463.1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/opencl-clang:14= dev-util/spirv-tools sys-devel/lld:14= sys-devel/llvm:14= vc? ( >=dev-libs/intel-vc-intrinsics-0.11.0 dev-util/spirv-llvm-translator:14= ) SLOT=0 SRC_URI=https://github.com/intel/intel-graphics-compiler/archive/igc-1.0.13463.1.tar.gz -> intel-graphics-compiler-1.0.13463.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=618ec381f2544b7643e058c407955136 diff --git a/metadata/md5-cache/dev-util/intel-graphics-system-controller-0.8.7 b/metadata/md5-cache/dev-util/intel-graphics-system-controller-0.8.7 index dba5d17c1334..a2f646317d04 100644 --- a/metadata/md5-cache/dev-util/intel-graphics-system-controller-0.8.7 +++ b/metadata/md5-cache/dev-util/intel-graphics-system-controller-0.8.7 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-libs/metee:= SLOT=0/0.8.7 SRC_URI=https://github.com/intel/igsc/archive/refs/tags/V0.8.7.tar.gz -> intel-graphics-system-controller-0.8.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=25138f3ca28568e68a8b748a3a087b9d diff --git a/metadata/md5-cache/dev-util/kcov-40 b/metadata/md5-cache/dev-util/kcov-40 index d95ce197349c..a6479690f0e4 100644 --- a/metadata/md5-cache/dev-util/kcov-40 +++ b/metadata/md5-cache/dev-util/kcov-40 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/elfutils net-misc/curl sys-libs/zlib binutils? ( sys-libs/binutils-libs:= ) SLOT=0 SRC_URI=https://github.com/SimonKagstrom/kcov/archive/v40.tar.gz -> kcov-40.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2ac605567a0ca8abc0e59eeca6957d51 diff --git a/metadata/md5-cache/dev-util/kcov-9999 b/metadata/md5-cache/dev-util/kcov-9999 index 6b2598aa2e57..c1cbe8bd7088 100644 --- a/metadata/md5-cache/dev-util/kcov-9999 +++ b/metadata/md5-cache/dev-util/kcov-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=dev-libs/elfutils net-misc/curl sys-libs/zlib binutils? ( sys-libs/binutils-libs:= ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2017a452fbbeec7423d2f70f3cfb9c5e diff --git a/metadata/md5-cache/dev-util/kdbg-3.0.1-r1 b/metadata/md5-cache/dev-util/kdbg-3.0.1-r1 index f345a3e678d4..290fc93cf0e4 100644 --- a/metadata/md5-cache/dev-util/kdbg-3.0.1-r1 +++ b/metadata/md5-cache/dev-util/kdbg-3.0.1-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtwidgets-5.15.2:5 >=kde-frameworks/kconfig-5.85.0:5 >=kde-frameworks/kconfigwidgets-5.85.0:5 >=kde-frameworks/kcoreaddons-5.85.0:5 >=kde-frameworks/ki18n-5.85.0:5 >=kde-frameworks/kiconthemes-5.85.0:5 >=kde-frameworks/kwidgetsaddons-5.85.0:5 >=kde-frameworks/kwindowsystem-5.85.0:5 >=kde-frameworks/kxmlgui-5.85.0:5 sys-devel/gdb || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://sourceforge/kdbg/kdbg-3.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1febc499638697ae126d4bdaa95fa1d1 diff --git a/metadata/md5-cache/dev-util/kdevelop-22.12.0 b/metadata/md5-cache/dev-util/kdevelop-22.12.0 index d697d717283b..e06c1e8bef3a 100644 --- a/metadata/md5-cache/dev-util/kdevelop-22.12.0 +++ b/metadata/md5-cache/dev-util/kdevelop-22.12.0 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/grantlee:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/57 SRC_URI=mirror://kde/stable/release-service/22.12.0/src/kdevelop-22.12.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=64c410c04d6da3caa1a8c9d8cac54927 diff --git a/metadata/md5-cache/dev-util/kdevelop-22.12.3 b/metadata/md5-cache/dev-util/kdevelop-22.12.3 index 646330d8343d..cb14fe36b814 100644 --- a/metadata/md5-cache/dev-util/kdevelop-22.12.3 +++ b/metadata/md5-cache/dev-util/kdevelop-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/grantlee:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/57 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdevelop-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f7553813a52a8cbdc288fae13867dd5e diff --git a/metadata/md5-cache/dev-util/kdevelop-pg-qt-2.2.2 b/metadata/md5-cache/dev-util/kdevelop-pg-qt-2.2.2 index 83756696ded3..011796a0eee0 100644 --- a/metadata/md5-cache/dev-util/kdevelop-pg-qt-2.2.2 +++ b/metadata/md5-cache/dev-util/kdevelop-pg-qt-2.2.2 @@ -13,5 +13,5 @@ RDEPEND=|| ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kdevelop-pg-qt/2.2.2/src/kdevelop-pg-qt-2.2.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f6a2d637cb656444f6bda27716132300 diff --git a/metadata/md5-cache/dev-util/kdevelop-php-22.12.0 b/metadata/md5-cache/dev-util/kdevelop-php-22.12.0 index 11b4afca422a..28861e3439e7 100644 --- a/metadata/md5-cache/dev-util/kdevelop-php-22.12.0 +++ b/metadata/md5-cache/dev-util/kdevelop-php-22.12.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 dev-util/kdevelop-pg RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.0/src/kdev-php-22.12.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bfb05eb5b461bd92a9ad86114838c547 diff --git a/metadata/md5-cache/dev-util/kdevelop-php-22.12.3 b/metadata/md5-cache/dev-util/kdevelop-php-22.12.3 index 2c4b4343fa6e..0d038fd40e5d 100644 --- a/metadata/md5-cache/dev-util/kdevelop-php-22.12.3 +++ b/metadata/md5-cache/dev-util/kdevelop-php-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 dev-util/kdevelop-pg RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdev-php-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ae4d011f73e6766479ce4ec5c21a796e diff --git a/metadata/md5-cache/dev-util/kdevelop-python-22.12.0 b/metadata/md5-cache/dev-util/kdevelop-python-22.12.0 index fb0f00813324..a1c3bed6b924 100644 --- a/metadata/md5-cache/dev-util/kdevelop-python-22.12.0 +++ b/metadata/md5-cache/dev-util/kdevelop-python-22.12.0 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.0/src/kdev-python-22.12.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=816aa159098f244499e4a079fb5b7f64 diff --git a/metadata/md5-cache/dev-util/kdevelop-python-22.12.3 b/metadata/md5-cache/dev-util/kdevelop-python-22.12.3 index 3ad865334120..eeb01fd7c88f 100644 --- a/metadata/md5-cache/dev-util/kdevelop-python-22.12.3 +++ b/metadata/md5-cache/dev-util/kdevelop-python-22.12.3 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdev-python-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b5638386b17b44ecf9a1883857c81805 diff --git a/metadata/md5-cache/dev-util/kdstatemachineeditor-1.2.8 b/metadata/md5-cache/dev-util/kdstatemachineeditor-1.2.8 index 07ecfcecafb6..eca600a9990f 100644 --- a/metadata/md5-cache/dev-util/kdstatemachineeditor-1.2.8 +++ b/metadata/md5-cache/dev-util/kdstatemachineeditor-1.2.8 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtdeclarative:5[widgets] dev-qt/qtgui:5 dev-qt/qt RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/KDAB/KDStateMachineEditor/releases/download/v1.2.8/kdstatemachineeditor-1.2.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b3ce28f01a1171e5bf4562b6bbbd8ce3 diff --git a/metadata/md5-cache/dev-util/kdstatemachineeditor-9999 b/metadata/md5-cache/dev-util/kdstatemachineeditor-9999 index c7eecebc0883..f6a4b5e5167e 100644 --- a/metadata/md5-cache/dev-util/kdstatemachineeditor-9999 +++ b/metadata/md5-cache/dev-util/kdstatemachineeditor-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtdeclarative:5[widgets] dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b3ce28f01a1171e5bf4562b6bbbd8ce3 diff --git a/metadata/md5-cache/dev-util/kernelshark-2.2.0 b/metadata/md5-cache/dev-util/kernelshark-2.2.0 index 2981cfb8ba22..879e5ece35b1 100644 --- a/metadata/md5-cache/dev-util/kernelshark-2.2.0 +++ b/metadata/md5-cache/dev-util/kernelshark-2.2.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=>=dev-util/trace-cmd-3.0.2 dev-libs/json-c:= dev-qt/qtcore:5= dev-qt/qtnetwork:5= dev-qt/qtwidgets:5= >=media-libs/freeglut-3.0.0:= x11-libs/libXmu:= x11-libs/libXi:= >=dev-libs/libtracefs-1.3 >=dev-libs/libtraceevent-1.5 media-fonts/freefont SLOT=0 SRC_URI=https://git.kernel.org/pub/scm/utils/trace-cmd/kernel-shark.git/snapshot/kernel-shark-kernelshark-v2.2.0.tar.gz -> kernelshark-2.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fe17b56918c9ee59da970a050a0d3591 diff --git a/metadata/md5-cache/dev-util/kio-perldoc-22.08.3 b/metadata/md5-cache/dev-util/kio-perldoc-22.08.3 index bbd24fa17c8a..8379ad05bdd8 100644 --- a/metadata/md5-cache/dev-util/kio-perldoc-22.08.3 +++ b/metadata/md5-cache/dev-util/kio-perldoc-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ || ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdesdk-kio-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4a4d309961c355f9078807ec288d6343 diff --git a/metadata/md5-cache/dev-util/kio-perldoc-22.12.3 b/metadata/md5-cache/dev-util/kio-perldoc-22.12.3 index 53d4a884f7ac..738c34e2858b 100644 --- a/metadata/md5-cache/dev-util/kio-perldoc-22.12.3 +++ b/metadata/md5-cache/dev-util/kio-perldoc-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ || ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdesdk-kio-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ae67bf189c5b401db015b104f377048a diff --git a/metadata/md5-cache/dev-util/librnp-0.16.2 b/metadata/md5-cache/dev-util/librnp-0.16.2 index ded7ba51ffbc..a9d04e61c1fd 100644 --- a/metadata/md5-cache/dev-util/librnp-0.16.2 +++ b/metadata/md5-cache/dev-util/librnp-0.16.2 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2 dev-libs/json-c:= sys-libs/zlib botan? ( dev-libs/botan:2 RESTRICT=!test? ( test ) SLOT=0/0.16.1 SRC_URI=https://github.com/rnpgp/rnp/archive/refs/tags/v0.16.2.tar.gz -> librnp-0.16.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e2e8935b4c0542b4248229783ec772fd diff --git a/metadata/md5-cache/dev-util/lldb-14.0.6 b/metadata/md5-cache/dev-util/lldb-14.0.6 index 4b385a6b16b6..8e01b5852a52 100644 --- a/metadata/md5-cache/dev-util/lldb-14.0.6 +++ b/metadata/md5-cache/dev-util/lldb-14.0.6 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c440bf0d29c528bd4a549fe2bac1c1fa diff --git a/metadata/md5-cache/dev-util/lldb-15.0.7 b/metadata/md5-cache/dev-util/lldb-15.0.7 index 3c810600ebc9..002a139bd223 100644 --- a/metadata/md5-cache/dev-util/lldb-15.0.7 +++ b/metadata/md5-cache/dev-util/lldb-15.0.7 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test !test? ( test ) SLOT=0/15 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6f8c56176a914b9a0329aa2acd261b13 diff --git a/metadata/md5-cache/dev-util/lldb-16.0.0 b/metadata/md5-cache/dev-util/lldb-16.0.0 index 3c5665dd3ce7..7dee1732b325 100644 --- a/metadata/md5-cache/dev-util/lldb-16.0.0 +++ b/metadata/md5-cache/dev-util/lldb-16.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test !test? ( test ) SLOT=0/16 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=90254b661bcbc72db1b72b17f80eefd8 diff --git a/metadata/md5-cache/dev-util/lldb-16.0.0.9999 b/metadata/md5-cache/dev-util/lldb-16.0.0.9999 index 85546a1d1924..c3b59a6e26f6 100644 --- a/metadata/md5-cache/dev-util/lldb-16.0.0.9999 +++ b/metadata/md5-cache/dev-util/lldb-16.0.0.9999 @@ -12,5 +12,5 @@ RDEPEND=libedit? ( dev-libs/libedit:0= ) lzma? ( app-arch/xz-utils:= ) ncurses? REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=test !test? ( test ) SLOT=0/16 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8a35893597acd1da724999a7c2d9c010 diff --git a/metadata/md5-cache/dev-util/lldb-16.0.0_rc3 b/metadata/md5-cache/dev-util/lldb-16.0.0_rc3 deleted file mode 100644 index fb4c7e857fca..000000000000 --- a/metadata/md5-cache/dev-util/lldb-16.0.0_rc3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-util/cmake-3.16 python? ( >=dev-lang/swig-3.0.11 python_single_target_python3_9? ( dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/six[python_targets_python3_11(-)] ) ) test? ( python_single_target_python3_9? ( ~dev-python/lit-16.0.0_rc3[python_targets_python3_9(-)] dev-python/psutil[python_targets_python3_9(-)] ) python_single_target_python3_10? ( ~dev-python/lit-16.0.0_rc3[python_targets_python3_10(-)] dev-python/psutil[python_targets_python3_10(-)] ) python_single_target_python3_11? ( ~dev-python/lit-16.0.0_rc3[python_targets_python3_11(-)] dev-python/psutil[python_targets_python3_11(-)] ) sys-devel/lld ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=libedit? ( dev-libs/libedit:0= ) lzma? ( app-arch/xz-utils:= ) ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) xml? ( dev-libs/libxml2:= ) ~sys-devel/clang-16.0.0_rc3 ~sys-devel/llvm-16.0.0_rc3 !!sys-devel/llvm:0 -DESCRIPTION=The LLVM debugger -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm llvm.org python-single-r1 -IUSE=debug +libedit lzma ncurses +python test +xml test verify-sig python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=libedit? ( dev-libs/libedit:0= ) lzma? ( app-arch/xz-utils:= ) ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) xml? ( dev-libs/libxml2:= ) ~sys-devel/clang-16.0.0_rc3 ~sys-devel/llvm-16.0.0_rc3 python? ( python_single_target_python3_9? ( dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/six[python_targets_python3_11(-)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) -RESTRICT=test !test? ( test ) -SLOT=0/16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=2a25e20ef8aaa790f1ec2991e9b25c7f diff --git a/metadata/md5-cache/dev-util/lldb-16.0.0_rc4 b/metadata/md5-cache/dev-util/lldb-16.0.0_rc4 deleted file mode 100644 index a1b657fe57ca..000000000000 --- a/metadata/md5-cache/dev-util/lldb-16.0.0_rc4 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-util/cmake-3.16 python? ( >=dev-lang/swig-3.0.11 python_single_target_python3_9? ( dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/six[python_targets_python3_11(-)] ) ) test? ( python_single_target_python3_9? ( ~dev-python/lit-16.0.0_rc4[python_targets_python3_9(-)] dev-python/psutil[python_targets_python3_9(-)] ) python_single_target_python3_10? ( ~dev-python/lit-16.0.0_rc4[python_targets_python3_10(-)] dev-python/psutil[python_targets_python3_10(-)] ) python_single_target_python3_11? ( ~dev-python/lit-16.0.0_rc4[python_targets_python3_11(-)] dev-python/psutil[python_targets_python3_11(-)] ) sys-devel/lld ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=libedit? ( dev-libs/libedit:0= ) lzma? ( app-arch/xz-utils:= ) ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) xml? ( dev-libs/libxml2:= ) ~sys-devel/clang-16.0.0_rc4 ~sys-devel/llvm-16.0.0_rc4 !!sys-devel/llvm:0 -DESCRIPTION=The LLVM debugger -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm llvm.org python-single-r1 -IUSE=debug +libedit lzma ncurses +python test +xml test verify-sig python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=libedit? ( dev-libs/libedit:0= ) lzma? ( app-arch/xz-utils:= ) ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) xml? ( dev-libs/libxml2:= ) ~sys-devel/clang-16.0.0_rc4 ~sys-devel/llvm-16.0.0_rc4 python? ( python_single_target_python3_9? ( dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/six[python_targets_python3_11(-)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) -RESTRICT=test !test? ( test ) -SLOT=0/16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=1644c53cd968477210c1eeff463e5a74 diff --git a/metadata/md5-cache/dev-util/lldb-17.0.0.9999 b/metadata/md5-cache/dev-util/lldb-17.0.0.9999 index 063b887a751c..662a6f99b55e 100644 --- a/metadata/md5-cache/dev-util/lldb-17.0.0.9999 +++ b/metadata/md5-cache/dev-util/lldb-17.0.0.9999 @@ -12,5 +12,5 @@ RDEPEND=libedit? ( dev-libs/libedit:0= ) lzma? ( app-arch/xz-utils:= ) ncurses? REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=test !test? ( test ) SLOT=0/17.0.0.9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8a35893597acd1da724999a7c2d9c010 diff --git a/metadata/md5-cache/dev-util/lldb-17.0.0_pre20230304 b/metadata/md5-cache/dev-util/lldb-17.0.0_pre20230304 deleted file mode 100644 index a59c768cd9cc..000000000000 --- a/metadata/md5-cache/dev-util/lldb-17.0.0_pre20230304 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-util/cmake-3.16 python? ( >=dev-lang/swig-3.0.11 python_single_target_python3_9? ( dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/six[python_targets_python3_11(-)] ) ) test? ( python_single_target_python3_9? ( ~dev-python/lit-17.0.0_pre20230304[python_targets_python3_9(-)] dev-python/psutil[python_targets_python3_9(-)] ) python_single_target_python3_10? ( ~dev-python/lit-17.0.0_pre20230304[python_targets_python3_10(-)] dev-python/psutil[python_targets_python3_10(-)] ) python_single_target_python3_11? ( ~dev-python/lit-17.0.0_pre20230304[python_targets_python3_11(-)] dev-python/psutil[python_targets_python3_11(-)] ) sys-devel/lld ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=libedit? ( dev-libs/libedit:0= ) lzma? ( app-arch/xz-utils:= ) ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) xml? ( dev-libs/libxml2:= ) ~sys-devel/clang-17.0.0_pre20230304 ~sys-devel/llvm-17.0.0_pre20230304 !!sys-devel/llvm:0 -DESCRIPTION=The LLVM debugger -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm llvm.org python-single-r1 -IUSE=debug +libedit lzma ncurses +python test +xml test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=libedit? ( dev-libs/libedit:0= ) lzma? ( app-arch/xz-utils:= ) ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) xml? ( dev-libs/libxml2:= ) ~sys-devel/clang-17.0.0_pre20230304 ~sys-devel/llvm-17.0.0_pre20230304 python? ( python_single_target_python3_9? ( dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/six[python_targets_python3_11(-)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) -RESTRICT=test !test? ( test ) -SLOT=0/17.0.0_pre20230304 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=8a35893597acd1da724999a7c2d9c010 diff --git a/metadata/md5-cache/dev-util/lldb-17.0.0_pre20230314 b/metadata/md5-cache/dev-util/lldb-17.0.0_pre20230314 index 7d945e042c00..33f45a555158 100644 --- a/metadata/md5-cache/dev-util/lldb-17.0.0_pre20230314 +++ b/metadata/md5-cache/dev-util/lldb-17.0.0_pre20230314 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test !test? ( test ) SLOT=0/17.0.0_pre20230314 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8a35893597acd1da724999a7c2d9c010 diff --git a/metadata/md5-cache/dev-util/lttng-tools-2.13.8 b/metadata/md5-cache/dev-util/lttng-tools-2.13.8 index 566915f03669..5a99153a54ad 100644 --- a/metadata/md5-cache/dev-util/lttng-tools-2.13.8 +++ b/metadata/md5-cache/dev-util/lttng-tools-2.13.8 @@ -1,12 +1,13 @@ +BDEPEND=virtual/pkgconfig DEFINED_PHASES=configure install DEPEND=dev-libs/userspace-rcu:= dev-libs/popt dev-libs/libxml2 ust? ( >=dev-util/lttng-ust-2.13.0:= ) DESCRIPTION=Linux Trace Toolkit - next generation EAPI=8 HOMEPAGE=https://lttng.org IUSE=+ust -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=dev-libs/userspace-rcu:= dev-libs/popt dev-libs/libxml2 ust? ( >=dev-util/lttng-ust-2.13.0:= ) SLOT=0/2.13 SRC_URI=https://lttng.org/files/lttng-tools/lttng-tools-2.13.8.tar.bz2 -_md5_=aebc7d61e7f70aa9ef2936339cf95da3 +_md5_=c18ce6d83b01bc8dae7f1187f86c2a08 diff --git a/metadata/md5-cache/dev-util/lxqt-build-tools-0.12.0 b/metadata/md5-cache/dev-util/lxqt-build-tools-0.12.0 index d7124f3e387e..075213e82b13 100644 --- a/metadata/md5-cache/dev-util/lxqt-build-tools-0.12.0 +++ b/metadata/md5-cache/dev-util/lxqt-build-tools-0.12.0 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=>=dev-libs/glib-2.50.0 >=dev-qt/qtcore-5.15:5 SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-build-tools/releases/download/0.12.0/lxqt-build-tools-0.12.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e2fb1f964f8ce1cf7d05cd0805700aff diff --git a/metadata/md5-cache/dev-util/lxqt-build-tools-0.12.0-r1 b/metadata/md5-cache/dev-util/lxqt-build-tools-0.12.0-r1 index f73552b6f59d..f4adb494b0fa 100644 --- a/metadata/md5-cache/dev-util/lxqt-build-tools-0.12.0-r1 +++ b/metadata/md5-cache/dev-util/lxqt-build-tools-0.12.0-r1 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=>=dev-libs/glib-2.50.0 >=dev-qt/qtcore-5.15:5 SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-build-tools/releases/download/0.12.0/lxqt-build-tools-0.12.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=176ecf54a31cb1ab228efdc809a54a6d diff --git a/metadata/md5-cache/dev-util/massif-visualizer-0.7.0-r1 b/metadata/md5-cache/dev-util/massif-visualizer-0.7.0-r1 index 3c19b720cdcd..8440d3e74a3f 100644 --- a/metadata/md5-cache/dev-util/massif-visualizer-0.7.0-r1 +++ b/metadata/md5-cache/dev-util/massif-visualizer-0.7.0-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/kdiagram:5 >=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtprintsupport-5.12 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/massif-visualizer/0.7.0/src/massif-visualizer-0.7.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c63ecd0776868bebbf4b225d1018f1d4 diff --git a/metadata/md5-cache/dev-util/min-cscope-16.1.0-r2 b/metadata/md5-cache/dev-util/min-cscope-16.1.0-r2 index 98fe0de1af68..7a6e5ca031d0 100644 --- a/metadata/md5-cache/dev-util/min-cscope-16.1.0-r2 +++ b/metadata/md5-cache/dev-util/min-cscope-16.1.0-r2 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=sys-libs/ncurses:= SLOT=0 SRC_URI=mirror://sourceforge/kscope/min-cscope-16.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3634ed2f9001ea7f4a475fb9fc318744 diff --git a/metadata/md5-cache/dev-util/opencl-headers-2022.09.30 b/metadata/md5-cache/dev-util/opencl-headers-2022.09.30 index 17328eb651ea..ac46350816fa 100644 --- a/metadata/md5-cache/dev-util/opencl-headers-2022.09.30 +++ b/metadata/md5-cache/dev-util/opencl-headers-2022.09.30 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/KhronosGroup/OpenCL-Headers/archive/refs/tags/v2022.09.30.tar.gz -> opencl-headers-2022.09.30.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3b340b3ecb11abdf2ad130e461d0b6a6 diff --git a/metadata/md5-cache/dev-util/opencl-headers-2023.02.06 b/metadata/md5-cache/dev-util/opencl-headers-2023.02.06 index 21d88b64a63d..7e9cb312f9bb 100644 --- a/metadata/md5-cache/dev-util/opencl-headers-2023.02.06 +++ b/metadata/md5-cache/dev-util/opencl-headers-2023.02.06 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/KhronosGroup/OpenCL-Headers/archive/refs/tags/v2023.02.06.tar.gz -> opencl-headers-2023.02.06.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4ffddc684af4aeb8e2370925ab583eb7 diff --git a/metadata/md5-cache/dev-util/pahole-1.23 b/metadata/md5-cache/dev-util/pahole-1.23 index c08cd9ca97a5..e84227efc664 100644 --- a/metadata/md5-cache/dev-util/pahole-1.23 +++ b/metadata/md5-cache/dev-util/pahole-1.23 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=http://fedorapeople.org/~acme/dwarves/dwarves-1.23.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5604788244a15582bc6b2de171b01d9b diff --git a/metadata/md5-cache/dev-util/pahole-1.24 b/metadata/md5-cache/dev-util/pahole-1.24 index fa85f9a84057..c4c4b36341e0 100644 --- a/metadata/md5-cache/dev-util/pahole-1.24 +++ b/metadata/md5-cache/dev-util/pahole-1.24 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=http://fedorapeople.org/~acme/dwarves/dwarves-1.24.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=793fef02c0b7036bd6d7075e98a9d6da diff --git a/metadata/md5-cache/dev-util/pahole-1.24_p20221024 b/metadata/md5-cache/dev-util/pahole-1.24_p20221024 index eb5698865a68..f2206835c225 100644 --- a/metadata/md5-cache/dev-util/pahole-1.24_p20221024 +++ b/metadata/md5-cache/dev-util/pahole-1.24_p20221024 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=http://fedorapeople.org/~acme/dwarves/dwarves-1.24.tar.xz https://dev.gentoo.org/~sam/distfiles/dev-util/pahole/pahole-1.24_p20221024-patches.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e864fea02a33e9661cdd1acdbdf4e82 diff --git a/metadata/md5-cache/dev-util/pahole-9999 b/metadata/md5-cache/dev-util/pahole-9999 index cd9cb11ac9b4..9142667363b8 100644 --- a/metadata/md5-cache/dev-util/pahole-9999 +++ b/metadata/md5-cache/dev-util/pahole-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-libs/elfutils-0.178 sys-libs/zlib REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f71914197ea473987293b909da93b9d diff --git a/metadata/md5-cache/dev-util/premake-3.7-r1 b/metadata/md5-cache/dev-util/premake-3.7-r1 deleted file mode 100644 index e3b02260e960..000000000000 --- a/metadata/md5-cache/dev-util/premake-3.7-r1 +++ /dev/null @@ -1,10 +0,0 @@ -BDEPEND=app-arch/unzip -DEFINED_PHASES=install -DESCRIPTION=A makefile generation tool -EAPI=8 -HOMEPAGE=http://industriousone.com/premake -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -SLOT=3 -SRC_URI=mirror://sourceforge/premake/premake-src-3.7.zip -_md5_=b617ae298279283a56f25acd888951a4 diff --git a/metadata/md5-cache/dev-util/premake-4.4_beta5 b/metadata/md5-cache/dev-util/premake-4.4_beta5 deleted file mode 100644 index 2c596cf74342..000000000000 --- a/metadata/md5-cache/dev-util/premake-4.4_beta5 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install prepare -DEPEND=app-arch/unzip -DESCRIPTION=A makefile generation tool -EAPI=6 -HOMEPAGE=https://premake.github.io/ -INHERIT=versionator -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=BSD -SLOT=4 -SRC_URI=mirror://sourceforge/premake/premake-4.4-beta5-src.zip -_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 versionator d3fb3ba33acc3bbbdc4d7970227c100d -_md5_=c5f19e469950cc1d15ee94369df711b5 diff --git a/metadata/md5-cache/dev-util/premake-5.0.0_alpha16 b/metadata/md5-cache/dev-util/premake-5.0.0_beta2 similarity index 66% rename from metadata/md5-cache/dev-util/premake-5.0.0_alpha16 rename to metadata/md5-cache/dev-util/premake-5.0.0_beta2 index 9bb34ac229a5..e1998b7374c6 100644 --- a/metadata/md5-cache/dev-util/premake-5.0.0_alpha16 +++ b/metadata/md5-cache/dev-util/premake-5.0.0_beta2 @@ -6,6 +6,6 @@ INHERIT=toolchain-funcs KEYWORDS=~amd64 ~arm64 ~ppc ~x86 LICENSE=BSD SLOT=5 -SRC_URI=https://github.com/premake/premake-core/archive/v5.0.0-alpha16.tar.gz -> premake-5.0.0_alpha16.tar.gz +SRC_URI=https://github.com/premake/premake-core/archive/v5.0.0-beta2.tar.gz -> premake-5.0.0_beta2.tar.gz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=1527dac593e4e0f3010b29d0a62bf102 +_md5_=857d2fb7a93850985a4341d22699983d diff --git a/metadata/md5-cache/dev-util/pwndbg-20221219-r1 b/metadata/md5-cache/dev-util/pwndbg-20221219-r1 deleted file mode 100644 index 55df580f6806..000000000000 --- a/metadata/md5-cache/dev-util/pwndbg-20221219-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=install postinst prepare setup -DESCRIPTION=A GDB plug-in that makes debugging with GDB suck less -EAPI=8 -HOMEPAGE=https://github.com/pwndbg/pwndbg -INHERIT=python-single-r1 wrapper -IUSE=python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=amd64 x86 -LICENSE=MIT -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) sys-devel/gdb[python,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] python_single_target_python3_9? ( dev-libs/capstone[python,python_targets_python3_9(-)] dev-python/psutil[python_targets_python3_9(-)] dev-python/pycparser[python_targets_python3_9(-)] dev-python/pyelftools[python_targets_python3_9(-)] dev-python/python-ptrace[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-util/ROPgadget[python_targets_python3_9(-)] dev-util/unicorn[python,python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-libs/capstone[python,python_targets_python3_10(-)] dev-python/psutil[python_targets_python3_10(-)] dev-python/pycparser[python_targets_python3_10(-)] dev-python/pyelftools[python_targets_python3_10(-)] dev-python/python-ptrace[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] dev-python/pygments[python_targets_python3_10(-)] dev-util/ROPgadget[python_targets_python3_10(-)] dev-util/unicorn[python,python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-libs/capstone[python,python_targets_python3_11(-)] dev-python/psutil[python_targets_python3_11(-)] dev-python/pycparser[python_targets_python3_11(-)] dev-python/pyelftools[python_targets_python3_11(-)] dev-python/python-ptrace[python_targets_python3_11(-)] dev-python/six[python_targets_python3_11(-)] dev-python/pygments[python_targets_python3_11(-)] dev-util/ROPgadget[python_targets_python3_11(-)] dev-util/unicorn[python,python_targets_python3_11(-)] ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) -SLOT=0 -SRC_URI=https://github.com/pwndbg/pwndbg/archive/2022.12.19.tar.gz -> pwndbg-20221219.tar.gz https://github.com/martinradev/gdb-pt-dump/archive/ebdc24573a4bf075cf3ab6016add9db6baacf977.tar.gz -> gdb-pt-dump-ebdc24573a4bf075cf3ab6016add9db6baacf977.tar.gz -_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=17b912184ad349e50a99c1a311bdfeda diff --git a/metadata/md5-cache/dev-util/pwndbg-20230319 b/metadata/md5-cache/dev-util/pwndbg-20230319 new file mode 100644 index 000000000000..ac3fcca3534e --- /dev/null +++ b/metadata/md5-cache/dev-util/pwndbg-20230319 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst prepare setup +DESCRIPTION=A GDB plug-in that makes debugging with GDB suck less +EAPI=8 +HOMEPAGE=https://github.com/pwndbg/pwndbg +INHERIT=python-single-r1 wrapper +IUSE=python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) sys-devel/gdb[python,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] python_single_target_python3_9? ( >=dev-libs/capstone-4.0.2[python,python_targets_python3_9(-)] >=dev-python/psutil-5.9.4[python_targets_python3_9(-)] >=dev-python/pycparser-2.21[python_targets_python3_9(-)] >=dev-python/pyelftools-0.29[python_targets_python3_9(-)] >=dev-python/pygments-2.13.0[python_targets_python3_9(-)] >=dev-python/tabulate-0.8.10[python_targets_python3_9(-)] >=dev-python/typing-extensions-4.3.0[python_targets_python3_9(-)] >=dev-util/pwntools-4.9.0[python_targets_python3_9(-)] >=dev-util/ROPgadget-7.2[python_targets_python3_9(-)] >=dev-util/unicorn-2.0.1[python,python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-libs/capstone-4.0.2[python,python_targets_python3_10(-)] >=dev-python/psutil-5.9.4[python_targets_python3_10(-)] >=dev-python/pycparser-2.21[python_targets_python3_10(-)] >=dev-python/pyelftools-0.29[python_targets_python3_10(-)] >=dev-python/pygments-2.13.0[python_targets_python3_10(-)] >=dev-python/tabulate-0.8.10[python_targets_python3_10(-)] >=dev-python/typing-extensions-4.3.0[python_targets_python3_10(-)] >=dev-util/pwntools-4.9.0[python_targets_python3_10(-)] >=dev-util/ROPgadget-7.2[python_targets_python3_10(-)] >=dev-util/unicorn-2.0.1[python,python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-libs/capstone-4.0.2[python,python_targets_python3_11(-)] >=dev-python/psutil-5.9.4[python_targets_python3_11(-)] >=dev-python/pycparser-2.21[python_targets_python3_11(-)] >=dev-python/pyelftools-0.29[python_targets_python3_11(-)] >=dev-python/pygments-2.13.0[python_targets_python3_11(-)] >=dev-python/tabulate-0.8.10[python_targets_python3_11(-)] >=dev-python/typing-extensions-4.3.0[python_targets_python3_11(-)] >=dev-util/pwntools-4.9.0[python_targets_python3_11(-)] >=dev-util/ROPgadget-7.2[python_targets_python3_11(-)] >=dev-util/unicorn-2.0.1[python,python_targets_python3_11(-)] ) +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) +SLOT=0 +SRC_URI=https://github.com/pwndbg/pwndbg/archive/2023.03.19.tar.gz -> pwndbg-20230319.tar.gz https://github.com/martinradev/gdb-pt-dump/archive/ebdc24573a4bf075cf3ab6016add9db6baacf977.tar.gz -> gdb-pt-dump-ebdc24573a4bf075cf3ab6016add9db6baacf977.tar.gz +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=5ed6968cac17e8e6caff265b767bd8de diff --git a/metadata/md5-cache/dev-util/rocm-cmake-5.1.3 b/metadata/md5-cache/dev-util/rocm-cmake-5.1.3 index 03ca6910f9ac..4c91c4376213 100644 --- a/metadata/md5-cache/dev-util/rocm-cmake-5.1.3 +++ b/metadata/md5-cache/dev-util/rocm-cmake-5.1.3 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=test SLOT=0/5.1 SRC_URI=https://github.com/RadeonOpenCompute/rocm-cmake/archive/rocm-5.1.3.tar.gz -> rocm-cmake-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=525855bff7247b9752e1cd14af965464 diff --git a/metadata/md5-cache/dev-util/rocm-cmake-5.3.3 b/metadata/md5-cache/dev-util/rocm-cmake-5.3.3 index 2f5ea58b17e5..837a7ac56556 100644 --- a/metadata/md5-cache/dev-util/rocm-cmake-5.3.3 +++ b/metadata/md5-cache/dev-util/rocm-cmake-5.3.3 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=test SLOT=0/5.3 SRC_URI=https://github.com/RadeonOpenCompute/rocm-cmake/archive/rocm-5.3.3.tar.gz -> rocm-cmake-5.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=525855bff7247b9752e1cd14af965464 diff --git a/metadata/md5-cache/dev-util/rocm-cmake-5.4.3 b/metadata/md5-cache/dev-util/rocm-cmake-5.4.3 index 017108420e79..21e09e5c4729 100644 --- a/metadata/md5-cache/dev-util/rocm-cmake-5.4.3 +++ b/metadata/md5-cache/dev-util/rocm-cmake-5.4.3 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=test SLOT=0/5.4 SRC_URI=https://github.com/RadeonOpenCompute/rocm-cmake/archive/rocm-5.4.3.tar.gz -> rocm-cmake-5.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4eca66872ec3bb2fe9d6c3f8f260e9cd diff --git a/metadata/md5-cache/dev-util/rocm-cmake-9999 b/metadata/md5-cache/dev-util/rocm-cmake-9999 index fe1be90b4b24..7848a3929231 100644 --- a/metadata/md5-cache/dev-util/rocm-cmake-9999 +++ b/metadata/md5-cache/dev-util/rocm-cmake-9999 @@ -8,5 +8,5 @@ LICENSE=MIT PROPERTIES=live RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4afe92216ba4629086d6ee99cba7822 diff --git a/metadata/md5-cache/dev-util/rocm-smi-5.1.3-r1 b/metadata/md5-cache/dev-util/rocm-smi-5.1.3-r1 index 9b1d20633eac..31ec4acb03be 100644 --- a/metadata/md5-cache/dev-util/rocm-smi-5.1.3-r1 +++ b/metadata/md5-cache/dev-util/rocm-smi-5.1.3-r1 @@ -11,5 +11,5 @@ RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_tar REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) SLOT=0/5.1 SRC_URI=https://github.com/RadeonOpenCompute/rocm_smi_lib/archive/rocm-5.1.3.tar.gz -> rocm-smi-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=61ec61fd40afe24d09637afd8250fea7 diff --git a/metadata/md5-cache/dev-util/rocm-smi-5.4.2 b/metadata/md5-cache/dev-util/rocm-smi-5.4.2 index 56cf66827e97..367c4580dd83 100644 --- a/metadata/md5-cache/dev-util/rocm-smi-5.4.2 +++ b/metadata/md5-cache/dev-util/rocm-smi-5.4.2 @@ -11,5 +11,5 @@ RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_tar REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) SLOT=0/5.4 SRC_URI=https://github.com/RadeonOpenCompute/rocm_smi_lib/archive/rocm-5.4.2.tar.gz -> rocm-smi-5.4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=892af046a45fa5fba755e58351de3ed2 diff --git a/metadata/md5-cache/dev-util/rocm-smi-9999 b/metadata/md5-cache/dev-util/rocm-smi-9999 index 381f49f5318a..56591929dbf9 100644 --- a/metadata/md5-cache/dev-util/rocm-smi-9999 +++ b/metadata/md5-cache/dev-util/rocm-smi-9999 @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=892af046a45fa5fba755e58351de3ed2 diff --git a/metadata/md5-cache/dev-util/rocm_bandwidth_test-5.3.3 b/metadata/md5-cache/dev-util/rocm_bandwidth_test-5.3.3 index 25c5ea30e42d..b4bb3be366cf 100644 --- a/metadata/md5-cache/dev-util/rocm_bandwidth_test-5.3.3 +++ b/metadata/md5-cache/dev-util/rocm_bandwidth_test-5.3.3 @@ -10,5 +10,5 @@ LICENSE=NCSA-AMD RDEPEND=dev-libs/rocr-runtime:= SLOT=0/5.3 SRC_URI=https://github.com/RadeonOpenCompute/rocm_bandwidth_test/archive/rocm-5.3.3.tar.gz -> rocm_bandwidth_test-5.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5b821db7f0bcb983b61018429d6785a2 diff --git a/metadata/md5-cache/dev-util/rocm_bandwidth_test-5.4.3 b/metadata/md5-cache/dev-util/rocm_bandwidth_test-5.4.3 index 2b7ac78c95d8..22320956821e 100644 --- a/metadata/md5-cache/dev-util/rocm_bandwidth_test-5.4.3 +++ b/metadata/md5-cache/dev-util/rocm_bandwidth_test-5.4.3 @@ -10,5 +10,5 @@ LICENSE=NCSA-AMD RDEPEND=dev-libs/rocr-runtime:= SLOT=0/5.4 SRC_URI=https://github.com/RadeonOpenCompute/rocm_bandwidth_test/archive/rocm-5.4.3.tar.gz -> rocm_bandwidth_test-5.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1b4439e0c25e3948ac7e08eb8de13379 diff --git a/metadata/md5-cache/dev-util/rocminfo-5.1.3 b/metadata/md5-cache/dev-util/rocminfo-5.1.3 index d6a4c97d3261..048238c9bdf5 100644 --- a/metadata/md5-cache/dev-util/rocminfo-5.1.3 +++ b/metadata/md5-cache/dev-util/rocminfo-5.1.3 @@ -10,5 +10,5 @@ LICENSE=UoI-NCSA RDEPEND=>=dev-libs/rocr-runtime-5.1.3 SLOT=0/5.1 SRC_URI=https://github.com/RadeonOpenCompute/rocminfo/archive/rocm-5.1.3.tar.gz -> rocminfo-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7f1ebb77644aa7c9db86fc1d66c7b459 diff --git a/metadata/md5-cache/dev-util/rocminfo-5.3.3 b/metadata/md5-cache/dev-util/rocminfo-5.3.3 index a2e30c9fea45..25f65662524e 100644 --- a/metadata/md5-cache/dev-util/rocminfo-5.3.3 +++ b/metadata/md5-cache/dev-util/rocminfo-5.3.3 @@ -10,5 +10,5 @@ LICENSE=UoI-NCSA RDEPEND=>=dev-libs/rocr-runtime-5.3.3 SLOT=0/5.3 SRC_URI=https://github.com/RadeonOpenCompute/rocminfo/archive/rocm-5.3.3.tar.gz -> rocminfo-5.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7f1ebb77644aa7c9db86fc1d66c7b459 diff --git a/metadata/md5-cache/dev-util/rocminfo-5.4.3 b/metadata/md5-cache/dev-util/rocminfo-5.4.3 index eedd49dc771b..dcbf90feffeb 100644 --- a/metadata/md5-cache/dev-util/rocminfo-5.4.3 +++ b/metadata/md5-cache/dev-util/rocminfo-5.4.3 @@ -10,5 +10,5 @@ LICENSE=UoI-NCSA RDEPEND=>=dev-libs/rocr-runtime-5.4.3 SLOT=0/5.4 SRC_URI=https://github.com/RadeonOpenCompute/rocminfo/archive/rocm-5.4.3.tar.gz -> rocminfo-5.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9c58b9117fa8d29801058a6e6b7e97e8 diff --git a/metadata/md5-cache/dev-util/rocminfo-9999 b/metadata/md5-cache/dev-util/rocminfo-9999 index 405c29796542..9bf0cd488f89 100644 --- a/metadata/md5-cache/dev-util/rocminfo-9999 +++ b/metadata/md5-cache/dev-util/rocminfo-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=dev-libs/rocr-runtime SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=191e2f116c174dfaa47425d54127f303 diff --git a/metadata/md5-cache/dev-util/rocprofiler-5.1.3-r1 b/metadata/md5-cache/dev-util/rocprofiler-5.1.3-r1 index 8389d8c88838..554c720927ed 100644 --- a/metadata/md5-cache/dev-util/rocprofiler-5.1.3-r1 +++ b/metadata/md5-cache/dev-util/rocprofiler-5.1.3-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/rocr-runtime:0/5.1 >=dev-util/roctracer-5.1.3-r1:0/5.1 SLOT=0/5.1 SRC_URI=https://github.com/ROCm-Developer-Tools/rocprofiler/archive/rocm-5.1.3.tar.gz -> rocprofiler-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=33ecd8440e456bcdfb797686c40002cf diff --git a/metadata/md5-cache/dev-util/rocprofiler-5.3.3 b/metadata/md5-cache/dev-util/rocprofiler-5.3.3 index 165f49aed803..961fec79b8e7 100644 --- a/metadata/md5-cache/dev-util/rocprofiler-5.3.3 +++ b/metadata/md5-cache/dev-util/rocprofiler-5.3.3 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/rocr-runtime:0/5.3 dev-util/roctracer:0/5.3 SLOT=0/5.3 SRC_URI=https://github.com/ROCm-Developer-Tools/rocprofiler/archive/rocm-5.3.3.tar.gz -> rocprofiler-5.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f39e24b8fa866e052ada4d609bcb5e66 diff --git a/metadata/md5-cache/dev-util/roctracer-5.1.3-r1 b/metadata/md5-cache/dev-util/roctracer-5.1.3-r1 index 8516e6db5fb6..193202b25e04 100644 --- a/metadata/md5-cache/dev-util/roctracer-5.1.3-r1 +++ b/metadata/md5-cache/dev-util/roctracer-5.1.3-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/rocr-runtime:0/5.1 dev-util/hip:0/5.1 SLOT=0/5.1 SRC_URI=https://github.com/ROCm-Developer-Tools/roctracer/archive/rocm-5.1.3.tar.gz -> rocm-tracer-5.1.3.tar.gz https://github.com/ROCm-Developer-Tools/rocprofiler/archive/rocm-5.1.3.tar.gz -> rocprofiler-5.1.3.tar.gz https://github.com/ROCmSoftwarePlatform/hsa-class/archive/f8b387043b9f510afdf2e72e38a011900360d6ab.tar.gz -> hsa-class-f8b3870.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e2a6f9930ed689d154860953e2663623 diff --git a/metadata/md5-cache/dev-util/roctracer-5.3.3 b/metadata/md5-cache/dev-util/roctracer-5.3.3 index 56be25d8b859..d3c736c3b052 100644 --- a/metadata/md5-cache/dev-util/roctracer-5.3.3 +++ b/metadata/md5-cache/dev-util/roctracer-5.3.3 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/rocr-runtime:0/5.3 dev-util/hip:0/5.3 RESTRICT=!test? ( test ) SLOT=0/5.3 SRC_URI=https://github.com/ROCm-Developer-Tools/roctracer/archive/rocm-5.3.3.tar.gz -> rocm-tracer-5.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2eb51ffe046fbad1d34813cb865ff1c diff --git a/metadata/md5-cache/dev-util/rr-5.6.0-r2 b/metadata/md5-cache/dev-util/rr-5.6.0-r2 index d6474450a985..c7e22bc8100f 100644 --- a/metadata/md5-cache/dev-util/rr-5.6.0-r2 +++ b/metadata/md5-cache/dev-util/rr-5.6.0-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=https://github.com/rr-debugger/rr/archive/5.6.0.tar.gz -> mozilla-rr-5.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d58fed3774e3f2f53c87eec70dcb7320 diff --git a/metadata/md5-cache/dev-util/scap-driver-0.29.3 b/metadata/md5-cache/dev-util/scap-driver-0.29.3 index cb585ac55cbd..fbeed61fcdcc 100644 --- a/metadata/md5-cache/dev-util/scap-driver-0.29.3 +++ b/metadata/md5-cache/dev-util/scap-driver-0.29.3 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=! falcosecurity-libs-e5c53d648f3c4694385bbe488e7d47eaa36c229a.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fede8daf5ac95b69bcfb4d65599e01b6 diff --git a/metadata/md5-cache/dev-util/scap-driver-0.29.3-r1 b/metadata/md5-cache/dev-util/scap-driver-0.29.3-r1 index 6e825c1d05cc..6529ef7f64b7 100644 --- a/metadata/md5-cache/dev-util/scap-driver-0.29.3-r1 +++ b/metadata/md5-cache/dev-util/scap-driver-0.29.3-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=! falcosecurity-libs-e5c53d648f3c4694385bbe488e7d47eaa36c229a.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fb5b40761ba3c4e0596f16d376096230 diff --git a/metadata/md5-cache/dev-util/schroot-1.6.13_p2-r1 b/metadata/md5-cache/dev-util/schroot-1.6.13_p2-r1 index 53bfa2d12ebf..98ca864bfaa4 100644 --- a/metadata/md5-cache/dev-util/schroot-1.6.13_p2-r1 +++ b/metadata/md5-cache/dev-util/schroot-1.6.13_p2-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= >=sys-apps/util-linux-2.16 btrfs? ( >=sys-fs/btrfs-prog RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://codeberg.org/shelter/reschroot/archive/release/reschroot-1.6.13.tar.gz -> schroot-1.6.13.tar.gz mirror://debian/pool/main/s/schroot/schroot_1.6.13-2.debian.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=940a143e721ba792e4b0c3127b53fd74 diff --git a/metadata/md5-cache/dev-util/scons-4.5.1 b/metadata/md5-cache/dev-util/scons-4.5.1-r1 similarity index 86% rename from metadata/md5-cache/dev-util/scons-4.5.1 rename to metadata/md5-cache/dev-util/scons-4.5.1-r1 index 23b3fbd8c8b6..f89b117ecb38 100644 --- a/metadata/md5-cache/dev-util/scons-4.5.1 +++ b/metadata/md5-cache/dev-util/scons-4.5.1-r1 @@ -11,6 +11,6 @@ RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://downloads.sourceforge.net/project/scons/scons/4.5.1/SCons-4.5.1.tar.gz doc? ( https://www.scons.org/doc/4.5.1/PDF/scons-user.pdf -> scons-4.5.1-user.pdf https://www.scons.org/doc/4.5.1/HTML/scons-user.html -> scons-4.5.1-user.html ) test? ( https://github.com/SCons/scons/archive/4.5.1.tar.gz -> scons-4.5.1.gh.tar.gz ) +SRC_URI=https://downloads.sourceforge.net/project/scons/scons/4.5.1/SCons-4.5.1.tar.gz https://github.com/SCons/scons/pull/4322.patch -> scons-4.5.1-mergeflags.patch https://github.com/SCons/scons/archive/4.5.1.tar.gz -> scons-4.5.1.gh.tar.gz doc? ( https://www.scons.org/doc/4.5.1/PDF/scons-user.pdf -> scons-4.5.1-user.pdf https://www.scons.org/doc/4.5.1/HTML/scons-user.html -> scons-4.5.1-user.html ) _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=c4939b0e203e02aa134d07cde55fc256 +_md5_=ac0bb251750cd416a41dd65adc4a4044 diff --git a/metadata/md5-cache/dev-util/seer-1.14 b/metadata/md5-cache/dev-util/seer-1.14 index 04bea5bd9aa2..17069228f50d 100644 --- a/metadata/md5-cache/dev-util/seer-1.14 +++ b/metadata/md5-cache/dev-util/seer-1.14 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ CC-BY-3.0 CC-BY-4.0 RDEPEND=dev-qt/qtcharts:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 sys-devel/gdb SLOT=0 SRC_URI=https://github.com/epasveer/seer/archive/refs/tags/v1.14.tar.gz -> seer-1.14.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=67c3fd40cab6687fbe51c34d0fb40098 diff --git a/metadata/md5-cache/dev-util/seer-1.15 b/metadata/md5-cache/dev-util/seer-1.15 index 7fb9ecd9075d..c8a4d4bbc394 100644 --- a/metadata/md5-cache/dev-util/seer-1.15 +++ b/metadata/md5-cache/dev-util/seer-1.15 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ CC-BY-3.0 CC-BY-4.0 RDEPEND=dev-qt/qtcharts:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 sys-devel/gdb SLOT=0 SRC_URI=https://github.com/epasveer/seer/archive/refs/tags/v1.15.tar.gz -> seer-1.15.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=67c3fd40cab6687fbe51c34d0fb40098 diff --git a/metadata/md5-cache/dev-util/seer-9999 b/metadata/md5-cache/dev-util/seer-9999 index 0015c9e78c05..de4cf75a96e5 100644 --- a/metadata/md5-cache/dev-util/seer-9999 +++ b/metadata/md5-cache/dev-util/seer-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ CC-BY-3.0 CC-BY-4.0 PROPERTIES=live RDEPEND=dev-qt/qtcharts:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 sys-devel/gdb SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=86adb8d3c9d398bbac22232ff95c8a65 diff --git a/metadata/md5-cache/dev-util/serialtalk-1.2-r1 b/metadata/md5-cache/dev-util/serialtalk-1.2-r1 index 76d132a0df52..75a0597626f1 100644 --- a/metadata/md5-cache/dev-util/serialtalk-1.2-r1 +++ b/metadata/md5-cache/dev-util/serialtalk-1.2-r1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 x86 LICENSE=GPL-3+ SLOT=0 SRC_URI=https://github.com/BGO-OD/serialtalk/archive/v1.2.tar.gz -> serialtalk-1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af59a8c3e8a17ae3835a10d4f877a5cb diff --git a/metadata/md5-cache/dev-util/serialtalk-9999 b/metadata/md5-cache/dev-util/serialtalk-9999 index c75a7fec1e63..5cc07421f795 100644 --- a/metadata/md5-cache/dev-util/serialtalk-9999 +++ b/metadata/md5-cache/dev-util/serialtalk-9999 @@ -7,5 +7,5 @@ INHERIT=cmake git-r3 LICENSE=GPL-3+ PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b8e7da6c2a9658ba37000d873192fcd0 diff --git a/metadata/md5-cache/dev-util/spirv-headers-1.3.239 b/metadata/md5-cache/dev-util/spirv-headers-1.3.239 index d24b5ce5cd19..12179042590a 100644 --- a/metadata/md5-cache/dev-util/spirv-headers-1.3.239 +++ b/metadata/md5-cache/dev-util/spirv-headers-1.3.239 @@ -8,5 +8,5 @@ KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/KhronosGroup/SPIRV-Headers/archive/sdk-1.3.239.tar.gz -> spirv-headers-1.3.239.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1b5bc11ef2805a0b31657d47f7ab7706 diff --git a/metadata/md5-cache/dev-util/spirv-headers-99999999 b/metadata/md5-cache/dev-util/spirv-headers-99999999 index 2dc3283fcc71..c9c7d3450990 100644 --- a/metadata/md5-cache/dev-util/spirv-headers-99999999 +++ b/metadata/md5-cache/dev-util/spirv-headers-99999999 @@ -7,5 +7,5 @@ INHERIT=cmake git-r3 LICENSE=MIT PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f58280b6f6cba79f8f70de3f61dd7283 diff --git a/metadata/md5-cache/dev-util/spirv-llvm-translator-14.0.0-r1 b/metadata/md5-cache/dev-util/spirv-llvm-translator-14.0.0-r1 index 47e94ab432f9..86977497fec9 100644 --- a/metadata/md5-cache/dev-util/spirv-llvm-translator-14.0.0-r1 +++ b/metadata/md5-cache/dev-util/spirv-llvm-translator-14.0.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( tools ) RESTRICT=!test? ( test ) SLOT=14 SRC_URI=https://github.com/KhronosGroup/SPIRV-LLVM-Translator/archive/v14.0.0.tar.gz -> spirv-llvm-translator-14.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f25b815c9f3d45adc4146745cceb3ec5 diff --git a/metadata/md5-cache/dev-util/spirv-llvm-translator-15.0.0 b/metadata/md5-cache/dev-util/spirv-llvm-translator-15.0.0 index 86424c49a1a1..879cc31ed512 100644 --- a/metadata/md5-cache/dev-util/spirv-llvm-translator-15.0.0 +++ b/metadata/md5-cache/dev-util/spirv-llvm-translator-15.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( tools ) RESTRICT=!test? ( test ) SLOT=15 SRC_URI=https://github.com/KhronosGroup/SPIRV-LLVM-Translator/archive/v15.0.0.tar.gz -> spirv-llvm-translator-15.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c39337508b811cc341f49519b9819d1e diff --git a/metadata/md5-cache/dev-util/spirv-tools-1.3.239 b/metadata/md5-cache/dev-util/spirv-tools-1.3.239 index d54f7aa672e9..a1b2fe3a0d9f 100644 --- a/metadata/md5-cache/dev-util/spirv-tools-1.3.239 +++ b/metadata/md5-cache/dev-util/spirv-tools-1.3.239 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RESTRICT=test SLOT=0 SRC_URI=https://github.com/KhronosGroup/SPIRV-Tools/archive/sdk-1.3.239.0.tar.gz -> spirv-tools-1.3.239.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=44adc29792fd8be825662e790027dde8 diff --git a/metadata/md5-cache/dev-util/spirv-tools-99999999 b/metadata/md5-cache/dev-util/spirv-tools-99999999 index 9254ca10f104..88dc9e16fd01 100644 --- a/metadata/md5-cache/dev-util/spirv-tools-99999999 +++ b/metadata/md5-cache/dev-util/spirv-tools-99999999 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 PROPERTIES=live RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d5d1fc56d58490be19bb87ded06ba053 diff --git a/metadata/md5-cache/dev-util/sysdig-0.29.3 b/metadata/md5-cache/dev-util/sysdig-0.29.3 index c95243efeb9a..eb00437cc050 100644 --- a/metadata/md5-cache/dev-util/sysdig-0.29.3 +++ b/metadata/md5-cache/dev-util/sysdig-0.29.3 @@ -13,5 +13,5 @@ RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) app-misc/jq dev-cpp/tbb: REQUIRED_USE=^^ ( lua_single_target_luajit ) SLOT=0 SRC_URI=https://github.com/draios/sysdig/archive/0.29.3.tar.gz -> sysdig-0.29.3.tar.gz https://github.com/falcosecurity/libs/archive/e5c53d648f3c4694385bbe488e7d47eaa36c229a.tar.gz -> falcosecurity-libs-e5c53d648f3c4694385bbe488e7d47eaa36c229a.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6b057a5dde04f6a88a86552c11f2b73e diff --git a/metadata/md5-cache/dev-util/sysdig-kmod-0.27.1 b/metadata/md5-cache/dev-util/sysdig-kmod-0.27.1 index 811049a27e0d..a1d333b8513d 100644 --- a/metadata/md5-cache/dev-util/sysdig-kmod-0.27.1 +++ b/metadata/md5-cache/dev-util/sysdig-kmod-0.27.1 @@ -11,5 +11,5 @@ LICENSE=|| ( MIT GPL-2 ) RDEPEND=!<=dev-util/sysdig-0.26.4[modules] kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) SLOT=0 SRC_URI=https://github.com/draios/sysdig/archive/0.27.1.tar.gz -> sysdig-0.27.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=800fffc374f26390889cfd16c003d5e6 diff --git a/metadata/md5-cache/dev-util/umockdev-0.17.16 b/metadata/md5-cache/dev-util/umockdev-0.17.16 index 8731614fd49a..7c718c0415bb 100644 --- a/metadata/md5-cache/dev-util/umockdev-0.17.16 +++ b/metadata/md5-cache/dev-util/umockdev-0.17.16 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://github.com/martinpitt/umockdev/ INHERIT=meson-multilib python-any-r1 vala IUSE=test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=LGPL-2.1+ RDEPEND=net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/glib-2.32: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(-)?] >=dev-libs/gobject-introspection-1.32:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/martinpitt/umockdev/releases/download/0.17.16/umockdev-0.17.16.tar.xz _eclasses_=meson cd2865332c8d99e1da0655523ff4a28f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 -_md5_=e23a913ef626e1c5f455572a490f5e3f +_md5_=29a7fa79b60ca453335e3b99373c88f5 diff --git a/metadata/md5-cache/dev-util/uncrustify-0.75.1 b/metadata/md5-cache/dev-util/uncrustify-0.75.1 index a4ff988037b1..3cac3fc97325 100644 --- a/metadata/md5-cache/dev-util/uncrustify-0.75.1 +++ b/metadata/md5-cache/dev-util/uncrustify-0.75.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/uncrustify/uncrustify/archive/uncrustify-0.75.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5dcf8f72bacb7cdcf6c8e23aeb81e4c6 diff --git a/metadata/md5-cache/dev-util/uncrustify-0.76.0 b/metadata/md5-cache/dev-util/uncrustify-0.76.0 index 896b03bb66ab..e23dd185550f 100644 --- a/metadata/md5-cache/dev-util/uncrustify-0.76.0 +++ b/metadata/md5-cache/dev-util/uncrustify-0.76.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/uncrustify/uncrustify/archive/uncrustify-0.76.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=93634709260f0b898f3c839148e4cacb diff --git a/metadata/md5-cache/dev-util/uncrustify-9999 b/metadata/md5-cache/dev-util/uncrustify-9999 index fcfca7d45bbf..ba66dee2b740 100644 --- a/metadata/md5-cache/dev-util/uncrustify-9999 +++ b/metadata/md5-cache/dev-util/uncrustify-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=36d71449290cce40db983f7c99503aac diff --git a/metadata/md5-cache/dev-util/unicorn-2.0.1 b/metadata/md5-cache/dev-util/unicorn-2.0.1 index d960470468cb..e26808ed7470 100644 --- a/metadata/md5-cache/dev-util/unicorn-2.0.1 +++ b/metadata/md5-cache/dev-util/unicorn-2.0.1 @@ -12,5 +12,5 @@ RDEPEND=python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) SLOT=0/2 SRC_URI=https://github.com/unicorn-engine/unicorn/archive/2.0.1.tar.gz -> unicorn-2.0.1.gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=32561a28b54921f8dc153e83fe12a035 diff --git a/metadata/md5-cache/dev-util/unicorn-9999 b/metadata/md5-cache/dev-util/unicorn-9999 index 0e18ff1edbcd..cf9190e7af53 100644 --- a/metadata/md5-cache/dev-util/unicorn-9999 +++ b/metadata/md5-cache/dev-util/unicorn-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) SLOT=0/2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=594f223cb1a9d7697253ff501e3c6da8 diff --git a/metadata/md5-cache/dev-util/vulkan-headers-1.3.239 b/metadata/md5-cache/dev-util/vulkan-headers-1.3.239 index f04e0288b378..cffa4ce157fd 100644 --- a/metadata/md5-cache/dev-util/vulkan-headers-1.3.239 +++ b/metadata/md5-cache/dev-util/vulkan-headers-1.3.239 @@ -8,5 +8,5 @@ KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-Headers/archive/sdk-1.3.239.0.tar.gz -> vulkan-headers-1.3.239.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=39b41852bd47235d2176a4fc2c6e6ffc diff --git a/metadata/md5-cache/dev-util/vulkan-headers-9999 b/metadata/md5-cache/dev-util/vulkan-headers-9999 index 3d3e3b5f5288..b8337676b069 100644 --- a/metadata/md5-cache/dev-util/vulkan-headers-9999 +++ b/metadata/md5-cache/dev-util/vulkan-headers-9999 @@ -7,5 +7,5 @@ INHERIT=cmake git-r3 LICENSE=Apache-2.0 PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b4d5a7f9c055e06dd1535a2199a71e1f diff --git a/metadata/md5-cache/dev-util/vulkan-tools-1.3.239 b/metadata/md5-cache/dev-util/vulkan-tools-1.3.239 index 8d3cf7557f89..8c2e898ec15a 100644 --- a/metadata/md5-cache/dev-util/vulkan-tools-1.3.239 +++ b/metadata/md5-cache/dev-util/vulkan-tools-1.3.239 @@ -12,5 +12,5 @@ RDEPEND=~media-libs/vulkan-loader-1.3.239:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x8 REQUIRED_USE=cube? ( ^^ ( X wayland ) ) SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-Tools/archive/sdk-1.3.239.0.tar.gz -> vulkan-tools-1.3.239.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8ff20d7f5368d61c0a95ae3320951c3d diff --git a/metadata/md5-cache/dev-util/vulkan-tools-9999 b/metadata/md5-cache/dev-util/vulkan-tools-9999 index e0b4773e931a..4c06cc15b045 100644 --- a/metadata/md5-cache/dev-util/vulkan-tools-9999 +++ b/metadata/md5-cache/dev-util/vulkan-tools-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=~media-libs/vulkan-loader-9999:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,wayland?,X?] wayland? ( dev-libs/wayland:=[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:=[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/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(-)?] ) REQUIRED_USE=cube? ( ^^ ( X wayland ) ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=64c9dd100fbcc2615b179e8863b8525e diff --git a/metadata/md5-cache/dev-util/watchman-2022.08.29.00 b/metadata/md5-cache/dev-util/watchman-2022.08.29.00 index 80383c0f2b76..5c33b36f67f3 100644 --- a/metadata/md5-cache/dev-util/watchman-2022.08.29.00 +++ b/metadata/md5-cache/dev-util/watchman-2022.08.29.00 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/facebook/watchman/archive/refs/tags/v2022.08.29.00.tar.gz -> watchman-2022.08.29.00.tar.gz https://crates.io/api/v1/crates/ahash/0.3.8/download -> ahash-0.3.8.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/anyhow/1.0.55/download -> anyhow-1.0.55.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/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes/1.1.0/download -> bytes-1.1.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/clap/2.34.0/download -> clap-2.34.0.crate https://crates.io/api/v1/crates/const-random/0.1.13/download -> const-random-0.1.13.crate https://crates.io/api/v1/crates/const-random-macro/0.1.13/download -> const-random-macro-0.1.13.crate https://crates.io/api/v1/crates/crossbeam/0.8.1/download -> crossbeam-0.8.1.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.2/download -> crossbeam-channel-0.5.2.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.1/download -> crossbeam-deque-0.8.1.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.7/download -> crossbeam-epoch-0.9.7.crate https://crates.io/api/v1/crates/crossbeam-queue/0.3.4/download -> crossbeam-queue-0.3.4.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.7/download -> crossbeam-utils-0.8.7.crate https://crates.io/api/v1/crates/crunchy/0.2.2/download -> crunchy-0.2.2.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/futures/0.1.31/download -> futures-0.1.31.crate https://crates.io/api/v1/crates/futures/0.3.21/download -> futures-0.3.21.crate https://crates.io/api/v1/crates/futures-channel/0.3.21/download -> futures-channel-0.3.21.crate https://crates.io/api/v1/crates/futures-core/0.3.21/download -> futures-core-0.3.21.crate https://crates.io/api/v1/crates/futures-executor/0.3.21/download -> futures-executor-0.3.21.crate https://crates.io/api/v1/crates/futures-io/0.3.21/download -> futures-io-0.3.21.crate https://crates.io/api/v1/crates/futures-macro/0.3.21/download -> futures-macro-0.3.21.crate https://crates.io/api/v1/crates/futures-sink/0.3.21/download -> futures-sink-0.3.21.crate https://crates.io/api/v1/crates/futures-task/0.3.21/download -> futures-task-0.3.21.crate https://crates.io/api/v1/crates/futures-util/0.3.21/download -> futures-util-0.3.21.crate https://crates.io/api/v1/crates/getrandom/0.2.5/download -> getrandom-0.2.5.crate https://crates.io/api/v1/crates/heck/0.3.3/download -> heck-0.3.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/jwalk/0.6.0/download -> jwalk-0.6.0.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.119/download -> libc-0.2.119.crate https://crates.io/api/v1/crates/lock_api/0.4.6/download -> lock_api-0.4.6.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/maplit/1.0.2/download -> maplit-1.0.2.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/memoffset/0.6.5/download -> memoffset-0.6.5.crate https://crates.io/api/v1/crates/mio/0.8.0/download -> mio-0.8.0.crate https://crates.io/api/v1/crates/miow/0.3.7/download -> miow-0.3.7.crate https://crates.io/api/v1/crates/ntapi/0.3.7/download -> ntapi-0.3.7.crate https://crates.io/api/v1/crates/num_cpus/1.13.1/download -> num_cpus-1.13.1.crate https://crates.io/api/v1/crates/once_cell/1.9.0/download -> once_cell-1.9.0.crate https://crates.io/api/v1/crates/parking_lot/0.12.0/download -> parking_lot-0.12.0.crate https://crates.io/api/v1/crates/parking_lot_core/0.9.1/download -> parking_lot_core-0.9.1.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.8/download -> pin-project-lite-0.2.8.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/proc-macro2/1.0.36/download -> proc-macro2-1.0.36.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.19/download -> proc-macro-hack-0.5.19.crate https://crates.io/api/v1/crates/quote/1.0.15/download -> quote-1.0.15.crate https://crates.io/api/v1/crates/rayon/1.5.1/download -> rayon-1.5.1.crate https://crates.io/api/v1/crates/rayon-core/1.9.1/download -> rayon-core-1.9.1.crate https://crates.io/api/v1/crates/redox_syscall/0.2.10/download -> redox_syscall-0.2.10.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/serde/1.0.136/download -> serde-1.0.136.crate https://crates.io/api/v1/crates/serde_derive/1.0.136/download -> serde_derive-1.0.136.crate https://crates.io/api/v1/crates/signal-hook-registry/1.4.0/download -> signal-hook-registry-1.4.0.crate https://crates.io/api/v1/crates/slab/0.4.5/download -> slab-0.4.5.crate https://crates.io/api/v1/crates/smallvec/1.8.0/download -> smallvec-1.8.0.crate https://crates.io/api/v1/crates/socket2/0.4.4/download -> socket2-0.4.4.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/structopt/0.3.26/download -> structopt-0.3.26.crate https://crates.io/api/v1/crates/structopt-derive/0.4.18/download -> structopt-derive-0.4.18.crate https://crates.io/api/v1/crates/syn/1.0.86/download -> syn-1.0.86.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thiserror/1.0.30/download -> thiserror-1.0.30.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.30/download -> thiserror-impl-1.0.30.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/tokio/1.17.0/download -> tokio-1.17.0.crate https://crates.io/api/v1/crates/tokio-macros/1.7.0/download -> tokio-macros-1.7.0.crate https://crates.io/api/v1/crates/tokio-util/0.6.9/download -> tokio-util-0.6.9.crate https://crates.io/api/v1/crates/unicode-segmentation/1.9.0/download -> unicode-segmentation-1.9.0.crate https://crates.io/api/v1/crates/unicode-width/0.1.9/download -> unicode-width-0.1.9.crate https://crates.io/api/v1/crates/unicode-xid/0.2.2/download -> unicode-xid-0.2.2.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_check/0.9.4/download -> version_check-0.9.4.crate https://crates.io/api/v1/crates/wasi/0.10.2+wasi-snapshot-preview1/download -> wasi-0.10.2+wasi-snapshot-preview1.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_aarch64_msvc/0.32.0/download -> windows_aarch64_msvc-0.32.0.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.32.0/download -> windows_i686_gnu-0.32.0.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.32.0/download -> windows_i686_msvc-0.32.0.crate https://crates.io/api/v1/crates/windows-sys/0.32.0/download -> windows-sys-0.32.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.32.0/download -> windows_x86_64_gnu-0.32.0.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.32.0/download -> windows_x86_64_msvc-0.32.0.crate -_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f15617a49561dc601919d57f62f99e7 diff --git a/metadata/md5-cache/dev-util/watchman-2023.02.06.00 b/metadata/md5-cache/dev-util/watchman-2023.02.06.00 index 8e53a21d8a9d..3791851be144 100644 --- a/metadata/md5-cache/dev-util/watchman-2023.02.06.00 +++ b/metadata/md5-cache/dev-util/watchman-2023.02.06.00 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 p RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/facebook/watchman/archive/refs/tags/v2023.02.06.00.tar.gz -> watchman-2023.02.06.00.tar.gz https://crates.io/api/v1/crates/ahash/0.3.8/download -> ahash-0.3.8.crate 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/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/anyhow/1.0.68/download -> anyhow-1.0.68.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/base64/0.10.1/download -> base64-0.10.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.12.0/download -> bumpalo-3.12.0.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes/1.3.0/download -> bytes-1.3.0.crate https://crates.io/api/v1/crates/cc/1.0.78/download -> cc-1.0.78.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/clap/2.34.0/download -> clap-2.34.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/const-random/0.1.15/download -> const-random-0.1.15.crate https://crates.io/api/v1/crates/const-random-macro/0.1.15/download -> const-random-macro-0.1.15.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/crossbeam/0.8.2/download -> crossbeam-0.8.2.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.6/download -> crossbeam-channel-0.5.6.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.2/download -> crossbeam-deque-0.8.2.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.13/download -> crossbeam-epoch-0.9.13.crate https://crates.io/api/v1/crates/crossbeam-queue/0.3.8/download -> crossbeam-queue-0.3.8.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.14/download -> crossbeam-utils-0.8.14.crate https://crates.io/api/v1/crates/crunchy/0.2.2/download -> crunchy-0.2.2.crate https://crates.io/api/v1/crates/cxx/1.0.87/download -> cxx-1.0.87.crate https://crates.io/api/v1/crates/cxxbridge-flags/1.0.87/download -> cxxbridge-flags-1.0.87.crate https://crates.io/api/v1/crates/cxxbridge-macro/1.0.87/download -> cxxbridge-macro-1.0.87.crate https://crates.io/api/v1/crates/cxx-build/1.0.87/download -> cxx-build-1.0.87.crate https://crates.io/api/v1/crates/deelevate/0.1.1/download -> deelevate-0.1.1.crate https://crates.io/api/v1/crates/dirs/4.0.0/download -> dirs-4.0.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/duct/0.13.6/download -> duct-0.13.6.crate https://crates.io/api/v1/crates/either/1.8.0/download -> either-1.8.0.crate https://crates.io/api/v1/crates/embed-resource/1.8.0/download -> embed-resource-1.8.0.crate https://crates.io/api/v1/crates/filedescriptor/0.7.3/download -> filedescriptor-0.7.3.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.crate https://crates.io/api/v1/crates/futures/0.1.31/download -> futures-0.1.31.crate https://crates.io/api/v1/crates/futures/0.3.25/download -> futures-0.3.25.crate https://crates.io/api/v1/crates/futures-channel/0.3.25/download -> futures-channel-0.3.25.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/futures-executor/0.3.25/download -> futures-executor-0.3.25.crate https://crates.io/api/v1/crates/futures-io/0.3.25/download -> futures-io-0.3.25.crate https://crates.io/api/v1/crates/futures-macro/0.3.25/download -> futures-macro-0.3.25.crate https://crates.io/api/v1/crates/futures-sink/0.3.25/download -> futures-sink-0.3.25.crate https://crates.io/api/v1/crates/futures-task/0.3.25/download -> futures-task-0.3.25.crate https://crates.io/api/v1/crates/futures-util/0.3.25/download -> futures-util-0.3.25.crate https://crates.io/api/v1/crates/getrandom/0.1.16/download -> getrandom-0.1.16.crate https://crates.io/api/v1/crates/getrandom/0.2.8/download -> getrandom-0.2.8.crate https://crates.io/api/v1/crates/heck/0.3.3/download -> heck-0.3.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/hermit-abi/0.2.6/download -> hermit-abi-0.2.6.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/iana-time-zone-haiku/0.1.1/download -> iana-time-zone-haiku-0.1.1.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/jwalk/0.6.2/download -> jwalk-0.6.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.139/download -> libc-0.2.139.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/lock_api/0.4.9/download -> lock_api-0.4.9.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.crate https://crates.io/api/v1/crates/maplit/1.0.2/download -> maplit-1.0.2.crate https://crates.io/api/v1/crates/maybe-uninit/2.0.0/download -> maybe-uninit-2.0.0.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/memmem/0.1.1/download -> memmem-0.1.1.crate https://crates.io/api/v1/crates/memoffset/0.6.5/download -> memoffset-0.6.5.crate https://crates.io/api/v1/crates/memoffset/0.7.1/download -> memoffset-0.7.1.crate https://crates.io/api/v1/crates/mio/0.8.5/download -> mio-0.8.5.crate https://crates.io/api/v1/crates/nix/0.23.2/download -> nix-0.23.2.crate https://crates.io/api/v1/crates/nom/5.1.2/download -> nom-5.1.2.crate https://crates.io/api/v1/crates/ntapi/0.4.0/download -> ntapi-0.4.0.crate https://crates.io/api/v1/crates/num/0.2.1/download -> num-0.2.1.crate https://crates.io/api/v1/crates/num-bigint/0.2.6/download -> num-bigint-0.2.6.crate https://crates.io/api/v1/crates/num-complex/0.2.4/download -> num-complex-0.2.4.crate https://crates.io/api/v1/crates/num_cpus/1.15.0/download -> num_cpus-1.15.0.crate https://crates.io/api/v1/crates/num-derive/0.2.5/download -> num-derive-0.2.5.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-iter/0.1.43/download -> num-iter-0.1.43.crate https://crates.io/api/v1/crates/num-rational/0.2.4/download -> num-rational-0.2.4.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/once_cell/1.17.0/download -> once_cell-1.17.0.crate https://crates.io/api/v1/crates/ordered-float/1.1.1/download -> ordered-float-1.1.1.crate https://crates.io/api/v1/crates/os_pipe/1.1.2/download -> os_pipe-1.1.2.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.6/download -> parking_lot_core-0.9.6.crate https://crates.io/api/v1/crates/pathsearch/0.2.0/download -> pathsearch-0.2.0.crate https://crates.io/api/v1/crates/phf/0.11.1/download -> phf-0.11.1.crate https://crates.io/api/v1/crates/phf_codegen/0.11.1/download -> phf_codegen-0.11.1.crate https://crates.io/api/v1/crates/phf_generator/0.11.1/download -> phf_generator-0.11.1.crate https://crates.io/api/v1/crates/phf_shared/0.11.1/download -> phf_shared-0.11.1.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/pin-utils/0.1.0/download -> pin-utils-0.1.0.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/proc-macro2/0.4.30/download -> proc-macro2-0.4.30.crate https://crates.io/api/v1/crates/proc-macro2/1.0.50/download -> proc-macro2-1.0.50.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/quote/0.6.13/download -> quote-0.6.13.crate https://crates.io/api/v1/crates/quote/1.0.23/download -> quote-1.0.23.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.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.2.2/download -> rand_chacha-0.2.2.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.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/rand_hc/0.2.0/download -> rand_hc-0.2.0.crate https://crates.io/api/v1/crates/rayon/1.6.1/download -> rayon-1.6.1.crate https://crates.io/api/v1/crates/rayon-core/1.10.1/download -> rayon-core-1.10.1.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/1.7.1/download -> regex-1.7.1.crate https://crates.io/api/v1/crates/regex-syntax/0.6.28/download -> regex-syntax-0.6.28.crate https://crates.io/api/v1/crates/rustc_version/0.4.0/download -> rustc_version-0.4.0.crate https://crates.io/api/v1/crates/ryu/1.0.12/download -> ryu-1.0.12.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/scratch/1.0.3/download -> scratch-1.0.3.crate https://crates.io/api/v1/crates/semver/0.9.0/download -> semver-0.9.0.crate https://crates.io/api/v1/crates/semver/1.0.16/download -> semver-1.0.16.crate https://crates.io/api/v1/crates/semver-parser/0.7.0/download -> semver-parser-0.7.0.crate https://crates.io/api/v1/crates/serde/1.0.152/download -> serde-1.0.152.crate https://crates.io/api/v1/crates/serde_bytes/0.11.8/download -> serde_bytes-0.11.8.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_json/1.0.91/download -> serde_json-1.0.91.crate https://crates.io/api/v1/crates/shared_child/1.0.0/download -> shared_child-1.0.0.crate https://crates.io/api/v1/crates/shared_library/0.1.9/download -> shared_library-0.1.9.crate https://crates.io/api/v1/crates/signal-hook/0.1.17/download -> signal-hook-0.1.17.crate https://crates.io/api/v1/crates/signal-hook-registry/1.4.0/download -> signal-hook-registry-1.4.0.crate https://crates.io/api/v1/crates/siphasher/0.3.10/download -> siphasher-0.3.10.crate https://crates.io/api/v1/crates/slab/0.4.7/download -> slab-0.4.7.crate https://crates.io/api/v1/crates/smallvec/0.6.14/download -> smallvec-0.6.14.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/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/structopt/0.3.26/download -> structopt-0.3.26.crate https://crates.io/api/v1/crates/structopt-derive/0.4.18/download -> structopt-derive-0.4.18.crate https://crates.io/api/v1/crates/syn/0.15.44/download -> syn-0.15.44.crate https://crates.io/api/v1/crates/syn/1.0.107/download -> syn-1.0.107.crate https://crates.io/api/v1/crates/sysinfo/0.26.9/download -> sysinfo-0.26.9.crate https://crates.io/api/v1/crates/tabular/0.2.0/download -> tabular-0.2.0.crate https://crates.io/api/v1/crates/termcolor/1.2.0/download -> termcolor-1.2.0.crate https://crates.io/api/v1/crates/terminfo/0.7.5/download -> terminfo-0.7.5.crate https://crates.io/api/v1/crates/termios/0.3.3/download -> termios-0.3.3.crate https://crates.io/api/v1/crates/termwiz/0.8.0/download -> termwiz-0.8.0.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thiserror/1.0.38/download -> thiserror-1.0.38.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/time/0.1.45/download -> time-0.1.45.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/tokio/1.24.2/download -> tokio-1.24.2.crate https://crates.io/api/v1/crates/tokio-macros/1.8.2/download -> tokio-macros-1.8.2.crate https://crates.io/api/v1/crates/tokio-util/0.6.10/download -> tokio-util-0.6.10.crate https://crates.io/api/v1/crates/toml/0.5.11/download -> toml-0.5.11.crate https://crates.io/api/v1/crates/unicode-ident/1.0.6/download -> unicode-ident-1.0.6.crate https://crates.io/api/v1/crates/unicode-segmentation/1.10.0/download -> unicode-segmentation-1.10.0.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/unicode-xid/0.1.0/download -> unicode-xid-0.1.0.crate https://crates.io/api/v1/crates/utf8parse/0.1.1/download -> utf8parse-0.1.1.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/vergen/3.2.0/download -> vergen-3.2.0.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/vswhom/0.1.0/download -> vswhom-0.1.0.crate https://crates.io/api/v1/crates/vswhom-sys/0.1.2/download -> vswhom-sys-0.1.2.crate https://crates.io/api/v1/crates/vtparse/0.2.2/download -> vtparse-0.2.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/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.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/wasm-bindgen-backend/0.2.83/download -> wasm-bindgen-backend-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-macro-support/0.2.83/download -> wasm-bindgen-macro-support-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/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-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/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-sys/0.42.0/download -> windows-sys-0.42.0.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/winreg/0.10.1/download -> winreg-0.10.1.crate https://crates.io/api/v1/crates/xi-unicode/0.2.1/download -> xi-unicode-0.2.1.crate -_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f310a4ef85179560fa310fd25126f4ae diff --git a/metadata/md5-cache/dev-vcs/Manifest.gz b/metadata/md5-cache/dev-vcs/Manifest.gz index c6582518c5de..af7427b608c7 100644 Binary files a/metadata/md5-cache/dev-vcs/Manifest.gz and b/metadata/md5-cache/dev-vcs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-vcs/fossil-2.21 b/metadata/md5-cache/dev-vcs/fossil-2.21 new file mode 100644 index 000000000000..f4dc7da73736 --- /dev/null +++ b/metadata/md5-cache/dev-vcs/fossil-2.21 @@ -0,0 +1,15 @@ +DEFINED_PHASES=configure install +DEPEND=sys-libs/zlib || ( sys-libs/readline:0 dev-libs/libedit ) system-sqlite? ( >=dev-db/sqlite-3.38.0:3 ) ssl? ( dev-libs/openssl:0= ) tcl? ( dev-lang/tcl:0= ) !tcl? ( || ( dev-lang/tcl:* dev-lang/jimtcl:* ) ) +DESCRIPTION=Simple, high-reliability, source control management, and more +EAPI=8 +HOMEPAGE=https://www.fossil-scm.org/home +INHERIT=toolchain-funcs +IUSE=debug fusefs json system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~riscv ~x86 +LICENSE=BSD-2 +RDEPEND=sys-libs/zlib || ( sys-libs/readline:0 dev-libs/libedit ) system-sqlite? ( >=dev-db/sqlite-3.38.0:3 ) ssl? ( dev-libs/openssl:0= ) tcl? ( dev-lang/tcl:0= ) +RESTRICT=test +SLOT=0 +SRC_URI=https://fossil-scm.org/home/tarball/f9aa474081f0618c76f4c2f4d6f0277a3fd480aa185d7da0b8b61b00fad1aa78/fossil-src-2.21.tar.gz +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=317dea6e1fe4060fed85a405f4e1bd62 diff --git a/metadata/md5-cache/dev-vcs/git-absorb-0.6.9 b/metadata/md5-cache/dev-vcs/git-absorb-0.6.9 new file mode 100644 index 000000000000..4ea498e73952 --- /dev/null +++ b/metadata/md5-cache/dev-vcs/git-absorb-0.6.9 @@ -0,0 +1,13 @@ +BDEPEND=>=virtual/rust-1.53 +DEFINED_PHASES=compile configure install test unpack +DESCRIPTION=Automatically absorb staged changes into git current branch +EAPI=8 +HOMEPAGE=https://github.com/tummychow/git-absorb +INHERIT=cargo +IUSE=debug +KEYWORDS=~amd64 +LICENSE=Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD BSD-2 CC0-1.0 MIT MPL-2.0 Unlicense ZLIB +SLOT=0 +SRC_URI=https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/anyhow/1.0.33/download -> anyhow-1.0.33.crate https://crates.io/api/v1/crates/arrayref/0.3.6/download -> arrayref-0.3.6.crate https://crates.io/api/v1/crates/arrayvec/0.5.1/download -> arrayvec-0.5.1.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.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/base64/0.12.3/download -> base64-0.12.3.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/blake2b_simd/0.5.10/download -> blake2b_simd-0.5.10.crate https://crates.io/api/v1/crates/cc/1.0.60/download -> cc-1.0.60.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/constant_time_eq/0.1.5/download -> constant_time_eq-0.1.5.crate https://crates.io/api/v1/crates/crossbeam-channel/0.4.4/download -> crossbeam-channel-0.4.4.crate https://crates.io/api/v1/crates/crossbeam-utils/0.7.2/download -> crossbeam-utils-0.7.2.crate https://crates.io/api/v1/crates/dirs/2.0.2/download -> dirs-2.0.2.crate https://crates.io/api/v1/crates/dirs-sys/0.3.5/download -> dirs-sys-0.3.5.crate https://crates.io/api/v1/crates/getrandom/0.1.15/download -> getrandom-0.1.15.crate https://crates.io/api/v1/crates/git2/0.13.25/download -> git2-0.13.25.crate https://crates.io/api/v1/crates/hermit-abi/0.1.17/download -> hermit-abi-0.1.17.crate https://crates.io/api/v1/crates/idna/0.2.0/download -> idna-0.2.0.crate https://crates.io/api/v1/crates/jobserver/0.1.21/download -> jobserver-0.1.21.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.79/download -> libc-0.2.79.crate https://crates.io/api/v1/crates/libgit2-sys/0.12.26+1.3.0/download -> libgit2-sys-0.12.26+1.3.0.crate https://crates.io/api/v1/crates/libz-sys/1.1.2/download -> libz-sys-1.1.2.crate https://crates.io/api/v1/crates/log/0.4.11/download -> log-0.4.11.crate https://crates.io/api/v1/crates/matches/0.1.8/download -> matches-0.1.8.crate https://crates.io/api/v1/crates/maybe-uninit/2.0.0/download -> maybe-uninit-2.0.0.crate https://crates.io/api/v1/crates/memchr/2.3.3/download -> memchr-2.3.3.crate https://crates.io/api/v1/crates/num-integer/0.1.43/download -> num-integer-0.1.43.crate https://crates.io/api/v1/crates/num-traits/0.2.12/download -> num-traits-0.2.12.crate https://crates.io/api/v1/crates/once_cell/1.12.0/download -> once_cell-1.12.0.crate https://crates.io/api/v1/crates/percent-encoding/2.1.0/download -> percent-encoding-2.1.0.crate https://crates.io/api/v1/crates/pkg-config/0.3.18/download -> pkg-config-0.3.18.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.9/download -> ppv-lite86-0.2.9.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.2.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_hc/0.2.0/download -> rand_hc-0.2.0.crate https://crates.io/api/v1/crates/redox_syscall/0.1.57/download -> redox_syscall-0.1.57.crate https://crates.io/api/v1/crates/redox_users/0.3.5/download -> redox_users-0.3.5.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/rust-argon2/0.8.2/download -> rust-argon2-0.8.2.crate https://crates.io/api/v1/crates/slog/2.5.2/download -> slog-2.5.2.crate https://crates.io/api/v1/crates/slog-async/2.5.0/download -> slog-async-2.5.0.crate https://crates.io/api/v1/crates/slog-term/2.6.0/download -> slog-term-2.6.0.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/take_mut/0.2.2/download -> take_mut-0.2.2.crate https://crates.io/api/v1/crates/tempfile/3.1.0/download -> tempfile-3.1.0.crate https://crates.io/api/v1/crates/term/0.6.1/download -> term-0.6.1.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thread_local/1.1.4/download -> thread_local-1.1.4.crate https://crates.io/api/v1/crates/time/0.1.44/download -> time-0.1.44.crate https://crates.io/api/v1/crates/tinyvec/0.3.4/download -> tinyvec-0.3.4.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.4/download -> unicode-bidi-0.3.4.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.13/download -> unicode-normalization-0.1.13.crate https://crates.io/api/v1/crates/unicode-width/0.1.8/download -> unicode-width-0.1.8.crate https://crates.io/api/v1/crates/url/2.1.1/download -> url-2.1.1.crate https://crates.io/api/v1/crates/vcpkg/0.2.10/download -> vcpkg-0.2.10.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/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.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/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://github.com/tummychow/git-absorb/archive/refs/tags/0.6.9.tar.gz -> git-absorb-0.6.9.tar.gz +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=cea5325db2b45683fa436a0e9507d0a4 diff --git a/metadata/md5-cache/dev-vcs/git-annex-10.20220624 b/metadata/md5-cache/dev-vcs/git-annex-10.20220624 index 8620f47d1bdc..d3dc2c6ab946 100644 --- a/metadata/md5-cache/dev-vcs/git-annex-10.20220624 +++ b/metadata/md5-cache/dev-vcs/git-annex-10.20220624 @@ -13,4 +13,4 @@ REQUIRED_USE=webapp? ( assistant ) SLOT=0 SRC_URI=https://hackage.haskell.org/package/git-annex-10.20220624/git-annex-10.20220624.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff desktop 021728fdc1b03b36357dbc89489e0f0d ghc-package dbe1a8d17cacb390a3df7bbba6617679 haskell-cabal ac56c62fdcc7d2fedefe4e04ed40e1a7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=486949a3a215443f7a50908af2d26059 +_md5_=6a44c48adcf9ac0527364627f1506c61 diff --git a/metadata/md5-cache/dev-vcs/kdesvn-2.1.0-r1 b/metadata/md5-cache/dev-vcs/kdesvn-2.1.0-r1 index d07c38d14f98..56e293964e53 100644 --- a/metadata/md5-cache/dev-vcs/kdesvn-2.1.0-r1 +++ b/metadata/md5-cache/dev-vcs/kdesvn-2.1.0-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/apr:1 dev-libs/apr-util:1 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtsql-5.15.2:5[sqlite] >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtxml-5.15.2:5 dev-vcs/subversion >=kde-frameworks/kbookmarks-5.82.0:5 >=kde-frameworks/kcodecs-5.82.0:5 >=kde-frameworks/kcompletion-5.82.0:5 >=kde-frameworks/kconfig-5.82.0:5 >=kde-frameworks/kconfigwidgets-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/kdbusaddons-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kiconthemes-5.82.0:5 >=kde-frameworks/kio-5.82.0:5 >=kde-frameworks/kitemviews-5.82.0:5 >=kde-frameworks/kjobwidgets-5.82.0:5 >=kde-frameworks/knotifications-5.82.0:5 >=kde-frameworks/kparts-5.82.0:5 >=kde-frameworks/kservice-5.82.0:5 >=kde-frameworks/ktextwidgets-5.82.0:5 >=kde-frameworks/kwallet-5.82.0:5 >=kde-frameworks/kwidgetsaddons-5.82.0:5 >=kde-frameworks/kxmlgui-5.82.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/kdesvn/2.1.0/kdesvn-2.1.0.tar.xz https://dev.gentoo.org/~asturm/distfiles/kdesvn-2.1.0-patchset-1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4c19b9109d8f0f9a2d1b768e350b323 diff --git a/metadata/md5-cache/dev-vcs/qgit-2.10 b/metadata/md5-cache/dev-vcs/qgit-2.10 index 450e1fdf7647..12553707060a 100644 --- a/metadata/md5-cache/dev-vcs/qgit-2.10 +++ b/metadata/md5-cache/dev-vcs/qgit-2.10 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-vcs/git SLOT=0 SRC_URI=https://github.com/tibirna/qgit/archive/qgit-2.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a18133155ea28413e435fd98441079e2 diff --git a/metadata/md5-cache/dev-vcs/stgit-2.1.0 b/metadata/md5-cache/dev-vcs/stgit-2.1.0 index fa72fe016591..352a9560c7c9 100644 --- a/metadata/md5-cache/dev-vcs/stgit-2.1.0 +++ b/metadata/md5-cache/dev-vcs/stgit-2.1.0 @@ -12,4 +12,4 @@ RESTRICT=mirror SLOT=0/2 SRC_URI=https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.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.66/download -> anyhow-1.0.66.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/bstr/1.0.1/download -> bstr-1.0.1.crate https://crates.io/api/v1/crates/bumpalo/3.11.1/download -> bumpalo-3.11.1.crate https://crates.io/api/v1/crates/bzip2/0.4.3/download -> bzip2-0.4.3.crate https://crates.io/api/v1/crates/bzip2-sys/0.1.11+1.0.8/download -> bzip2-sys-0.1.11+1.0.8.crate https://crates.io/api/v1/crates/cc/1.0.77/download -> cc-1.0.77.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/clap/4.0.29/download -> clap-4.0.29.crate https://crates.io/api/v1/crates/clap_lex/0.3.0/download -> clap_lex-0.3.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.8.3/download -> core-foundation-sys-0.8.3.crate https://crates.io/api/v1/crates/crc32fast/1.3.2/download -> crc32fast-1.3.2.crate https://crates.io/api/v1/crates/ctrlc/3.2.4/download -> ctrlc-3.2.4.crate https://crates.io/api/v1/crates/curl/0.4.44/download -> curl-0.4.44.crate https://crates.io/api/v1/crates/curl-sys/0.4.59+curl-7.86.0/download -> curl-sys-0.4.59+curl-7.86.0.crate https://crates.io/api/v1/crates/cxx/1.0.83/download -> cxx-1.0.83.crate https://crates.io/api/v1/crates/cxx-build/1.0.83/download -> cxx-build-1.0.83.crate https://crates.io/api/v1/crates/cxxbridge-flags/1.0.83/download -> cxxbridge-flags-1.0.83.crate https://crates.io/api/v1/crates/cxxbridge-macro/1.0.83/download -> cxxbridge-macro-1.0.83.crate https://crates.io/api/v1/crates/encoding_rs/0.8.31/download -> encoding_rs-0.8.31.crate https://crates.io/api/v1/crates/errno/0.2.8/download -> errno-0.2.8.crate https://crates.io/api/v1/crates/errno-dragonfly/0.1.2/download -> errno-dragonfly-0.1.2.crate https://crates.io/api/v1/crates/fastrand/1.8.0/download -> fastrand-1.8.0.crate https://crates.io/api/v1/crates/filetime/0.2.19/download -> filetime-0.2.19.crate https://crates.io/api/v1/crates/flate2/1.0.25/download -> flate2-1.0.25.crate https://crates.io/api/v1/crates/form_urlencoded/1.1.0/download -> form_urlencoded-1.1.0.crate https://crates.io/api/v1/crates/git2/0.15.0/download -> git2-0.15.0.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.2.6/download -> hermit-abi-0.2.6.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/iana-time-zone-haiku/0.1.1/download -> iana-time-zone-haiku-0.1.1.crate https://crates.io/api/v1/crates/idna/0.3.0/download -> idna-0.3.0.crate https://crates.io/api/v1/crates/indexmap/1.9.2/download -> indexmap-1.9.2.crate https://crates.io/api/v1/crates/instant/0.1.12/download -> instant-0.1.12.crate https://crates.io/api/v1/crates/io-lifetimes/1.0.3/download -> io-lifetimes-1.0.3.crate https://crates.io/api/v1/crates/is-terminal/0.4.1/download -> is-terminal-0.4.1.crate https://crates.io/api/v1/crates/itoa/1.0.4/download -> itoa-1.0.4.crate https://crates.io/api/v1/crates/jobserver/0.1.25/download -> jobserver-0.1.25.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/libc/0.2.138/download -> libc-0.2.138.crate https://crates.io/api/v1/crates/libgit2-sys/0.14.0+1.5.0/download -> libgit2-sys-0.14.0+1.5.0.crate https://crates.io/api/v1/crates/libz-sys/1.1.8/download -> libz-sys-1.1.8.crate https://crates.io/api/v1/crates/link-cplusplus/1.0.7/download -> link-cplusplus-1.0.7.crate https://crates.io/api/v1/crates/linux-raw-sys/0.1.3/download -> linux-raw-sys-0.1.3.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/miniz_oxide/0.6.2/download -> miniz_oxide-0.6.2.crate https://crates.io/api/v1/crates/nix/0.26.1/download -> nix-0.26.1.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/once_cell/1.16.0/download -> once_cell-1.16.0.crate https://crates.io/api/v1/crates/openssl-probe/0.1.5/download -> openssl-probe-0.1.5.crate https://crates.io/api/v1/crates/openssl-sys/0.9.79/download -> openssl-sys-0.9.79.crate https://crates.io/api/v1/crates/os_str_bytes/6.4.1/download -> os_str_bytes-6.4.1.crate https://crates.io/api/v1/crates/percent-encoding/2.2.0/download -> percent-encoding-2.2.0.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/proc-macro2/1.0.47/download -> proc-macro2-1.0.47.crate https://crates.io/api/v1/crates/quote/1.0.21/download -> quote-1.0.21.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/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/rustix/0.36.5/download -> rustix-0.36.5.crate https://crates.io/api/v1/crates/ryu/1.0.11/download -> ryu-1.0.11.crate https://crates.io/api/v1/crates/schannel/0.1.20/download -> schannel-0.1.20.crate https://crates.io/api/v1/crates/scratch/1.0.2/download -> scratch-1.0.2.crate https://crates.io/api/v1/crates/serde/1.0.150/download -> serde-1.0.150.crate https://crates.io/api/v1/crates/serde_derive/1.0.150/download -> serde_derive-1.0.150.crate https://crates.io/api/v1/crates/serde_json/1.0.89/download -> serde_json-1.0.89.crate https://crates.io/api/v1/crates/socket2/0.4.7/download -> socket2-0.4.7.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/strsim/0.10.0/download -> strsim-0.10.0.crate https://crates.io/api/v1/crates/syn/1.0.105/download -> syn-1.0.105.crate https://crates.io/api/v1/crates/tar/0.4.38/download -> tar-0.4.38.crate https://crates.io/api/v1/crates/tempfile/3.3.0/download -> tempfile-3.3.0.crate https://crates.io/api/v1/crates/termcolor/1.1.3/download -> termcolor-1.1.3.crate https://crates.io/api/v1/crates/terminal_size/0.2.3/download -> terminal_size-0.2.3.crate https://crates.io/api/v1/crates/thiserror/1.0.37/download -> thiserror-1.0.37.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.37/download -> thiserror-impl-1.0.37.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.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.8/download -> unicode-bidi-0.3.8.crate https://crates.io/api/v1/crates/unicode-ident/1.0.5/download -> unicode-ident-1.0.5.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/unicode-width/0.1.10/download -> unicode-width-0.1.10.crate https://crates.io/api/v1/crates/url/2.3.1/download -> url-2.3.1.crate https://crates.io/api/v1/crates/vcpkg/0.2.15/download -> vcpkg-0.2.15.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/wasm-bindgen-backend/0.2.83/download -> wasm-bindgen-backend-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-macro-support/0.2.83/download -> wasm-bindgen-macro-support-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/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-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/windows-sys/0.36.1/download -> windows-sys-0.36.1.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.0/download -> windows_aarch64_gnullvm-0.42.0.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.36.1/download -> windows_aarch64_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.42.0/download -> windows_aarch64_msvc-0.42.0.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.36.1/download -> windows_i686_gnu-0.36.1.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.42.0/download -> windows_i686_gnu-0.42.0.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.36.1/download -> windows_i686_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.42.0/download -> windows_i686_msvc-0.42.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.36.1/download -> windows_x86_64_gnu-0.36.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.42.0/download -> windows_x86_64_gnu-0.42.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.42.0/download -> windows_x86_64_gnullvm-0.42.0.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.36.1/download -> windows_x86_64_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.42.0/download -> windows_x86_64_msvc-0.42.0.crate https://crates.io/api/v1/crates/xattr/0.2.3/download -> xattr-0.2.3.crate https://github.com/stacked-git/stgit/archive/v2.1.0.tar.gz -> stgit-2.1.0.tar.gz _eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=e6a592229387e5d1eac4ae13c6eb7248 +_md5_=9d42f53494a2784029be8ac7d0761354 diff --git a/metadata/md5-cache/dev-vcs/stgit-2.2.0 b/metadata/md5-cache/dev-vcs/stgit-2.2.0 index 66564a86badc..4791935fdfb2 100644 --- a/metadata/md5-cache/dev-vcs/stgit-2.2.0 +++ b/metadata/md5-cache/dev-vcs/stgit-2.2.0 @@ -12,4 +12,4 @@ RESTRICT=mirror SLOT=0/2 SRC_URI=https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.crate https://crates.io/api/v1/crates/ahash/0.8.3/download -> ahash-0.8.3.crate https://crates.io/api/v1/crates/anyhow/1.0.69/download -> anyhow-1.0.69.crate https://crates.io/api/v1/crates/arc-swap/1.6.0/download -> arc-swap-1.6.0.crate https://crates.io/api/v1/crates/atoi/2.0.0/download -> atoi-2.0.0.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/bstr/1.3.0/download -> bstr-1.3.0.crate https://crates.io/api/v1/crates/btoi/0.4.3/download -> btoi-0.4.3.crate https://crates.io/api/v1/crates/bytesize/1.2.0/download -> bytesize-1.2.0.crate https://crates.io/api/v1/crates/bzip2/0.4.4/download -> bzip2-0.4.4.crate https://crates.io/api/v1/crates/bzip2-sys/0.1.11+1.0.8/download -> bzip2-sys-0.1.11+1.0.8.crate https://crates.io/api/v1/crates/castaway/0.2.2/download -> castaway-0.2.2.crate https://crates.io/api/v1/crates/cc/1.0.79/download -> cc-1.0.79.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/clap/4.1.6/download -> clap-4.1.6.crate https://crates.io/api/v1/crates/clap_lex/0.3.2/download -> clap_lex-0.3.2.crate https://crates.io/api/v1/crates/clru/0.6.1/download -> clru-0.6.1.crate https://crates.io/api/v1/crates/compact_str/0.6.1/download -> compact_str-0.6.1.crate https://crates.io/api/v1/crates/crc32fast/1.3.2/download -> crc32fast-1.3.2.crate https://crates.io/api/v1/crates/ctrlc/3.2.5/download -> ctrlc-3.2.5.crate https://crates.io/api/v1/crates/curl/0.4.44/download -> curl-0.4.44.crate https://crates.io/api/v1/crates/curl-sys/0.4.60+curl-7.88.1/download -> curl-sys-0.4.60+curl-7.88.1.crate https://crates.io/api/v1/crates/dashmap/5.4.0/download -> dashmap-5.4.0.crate https://crates.io/api/v1/crates/dirs/4.0.0/download -> dirs-4.0.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/dunce/1.0.3/download -> dunce-1.0.3.crate https://crates.io/api/v1/crates/encoding_rs/0.8.32/download -> encoding_rs-0.8.32.crate https://crates.io/api/v1/crates/errno/0.2.8/download -> errno-0.2.8.crate https://crates.io/api/v1/crates/errno-dragonfly/0.1.2/download -> errno-dragonfly-0.1.2.crate https://crates.io/api/v1/crates/fastrand/1.9.0/download -> fastrand-1.9.0.crate https://crates.io/api/v1/crates/filetime/0.2.20/download -> filetime-0.2.20.crate https://crates.io/api/v1/crates/flate2/1.0.25/download -> flate2-1.0.25.crate https://crates.io/api/v1/crates/form_urlencoded/1.1.0/download -> form_urlencoded-1.1.0.crate https://crates.io/api/v1/crates/getrandom/0.2.8/download -> getrandom-0.2.8.crate https://crates.io/api/v1/crates/gix/0.37.2/download -> gix-0.37.2.crate https://crates.io/api/v1/crates/gix-actor/0.17.2/download -> gix-actor-0.17.2.crate https://crates.io/api/v1/crates/gix-attributes/0.8.3/download -> gix-attributes-0.8.3.crate https://crates.io/api/v1/crates/gix-bitmap/0.2.1/download -> gix-bitmap-0.2.1.crate https://crates.io/api/v1/crates/gix-chunk/0.4.1/download -> gix-chunk-0.4.1.crate https://crates.io/api/v1/crates/gix-command/0.2.4/download -> gix-command-0.2.4.crate https://crates.io/api/v1/crates/gix-config/0.16.3/download -> gix-config-0.16.3.crate https://crates.io/api/v1/crates/gix-config-value/0.10.1/download -> gix-config-value-0.10.1.crate https://crates.io/api/v1/crates/gix-credentials/0.9.2/download -> gix-credentials-0.9.2.crate https://crates.io/api/v1/crates/gix-date/0.4.3/download -> gix-date-0.4.3.crate https://crates.io/api/v1/crates/gix-diff/0.26.3/download -> gix-diff-0.26.3.crate https://crates.io/api/v1/crates/gix-discover/0.13.1/download -> gix-discover-0.13.1.crate https://crates.io/api/v1/crates/gix-features/0.26.5/download -> gix-features-0.26.5.crate https://crates.io/api/v1/crates/gix-glob/0.5.5/download -> gix-glob-0.5.5.crate https://crates.io/api/v1/crates/gix-hash/0.10.3/download -> gix-hash-0.10.3.crate https://crates.io/api/v1/crates/gix-hashtable/0.1.1/download -> gix-hashtable-0.1.1.crate https://crates.io/api/v1/crates/gix-index/0.12.4/download -> gix-index-0.12.4.crate https://crates.io/api/v1/crates/gix-lock/3.0.2/download -> gix-lock-3.0.2.crate https://crates.io/api/v1/crates/gix-mailmap/0.9.3/download -> gix-mailmap-0.9.3.crate https://crates.io/api/v1/crates/gix-object/0.26.4/download -> gix-object-0.26.4.crate https://crates.io/api/v1/crates/gix-odb/0.40.2/download -> gix-odb-0.40.2.crate https://crates.io/api/v1/crates/gix-pack/0.30.3/download -> gix-pack-0.30.3.crate https://crates.io/api/v1/crates/gix-path/0.7.2/download -> gix-path-0.7.2.crate https://crates.io/api/v1/crates/gix-prompt/0.3.2/download -> gix-prompt-0.3.2.crate https://crates.io/api/v1/crates/gix-quote/0.4.2/download -> gix-quote-0.4.2.crate https://crates.io/api/v1/crates/gix-ref/0.24.1/download -> gix-ref-0.24.1.crate https://crates.io/api/v1/crates/gix-refspec/0.7.3/download -> gix-refspec-0.7.3.crate https://crates.io/api/v1/crates/gix-revision/0.10.4/download -> gix-revision-0.10.4.crate https://crates.io/api/v1/crates/gix-sec/0.6.2/download -> gix-sec-0.6.2.crate https://crates.io/api/v1/crates/gix-tempfile/3.0.2/download -> gix-tempfile-3.0.2.crate https://crates.io/api/v1/crates/gix-traverse/0.22.2/download -> gix-traverse-0.22.2.crate https://crates.io/api/v1/crates/gix-url/0.13.3/download -> gix-url-0.13.3.crate https://crates.io/api/v1/crates/gix-validate/0.7.3/download -> gix-validate-0.7.3.crate https://crates.io/api/v1/crates/gix-worktree/0.12.3/download -> gix-worktree-0.12.3.crate https://crates.io/api/v1/crates/hashbrown/0.12.3/download -> hashbrown-0.12.3.crate https://crates.io/api/v1/crates/hashbrown/0.13.2/download -> hashbrown-0.13.2.crate https://crates.io/api/v1/crates/hermit-abi/0.3.1/download -> hermit-abi-0.3.1.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/home/0.5.4/download -> home-0.5.4.crate https://crates.io/api/v1/crates/human_format/1.0.3/download -> human_format-1.0.3.crate https://crates.io/api/v1/crates/idna/0.3.0/download -> idna-0.3.0.crate https://crates.io/api/v1/crates/imara-diff/0.1.5/download -> imara-diff-0.1.5.crate https://crates.io/api/v1/crates/indexmap/1.9.2/download -> indexmap-1.9.2.crate https://crates.io/api/v1/crates/instant/0.1.12/download -> instant-0.1.12.crate https://crates.io/api/v1/crates/io-close/0.3.7/download -> io-close-0.3.7.crate https://crates.io/api/v1/crates/io-lifetimes/1.0.5/download -> io-lifetimes-1.0.5.crate https://crates.io/api/v1/crates/is-terminal/0.4.4/download -> is-terminal-0.4.4.crate https://crates.io/api/v1/crates/itoa/1.0.5/download -> itoa-1.0.5.crate https://crates.io/api/v1/crates/libc/0.2.139/download -> libc-0.2.139.crate https://crates.io/api/v1/crates/libz-sys/1.1.8/download -> libz-sys-1.1.8.crate https://crates.io/api/v1/crates/linux-raw-sys/0.1.4/download -> linux-raw-sys-0.1.4.crate https://crates.io/api/v1/crates/lock_api/0.4.9/download -> lock_api-0.4.9.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/memmap2/0.5.10/download -> memmap2-0.5.10.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.6.2/download -> miniz_oxide-0.6.2.crate https://crates.io/api/v1/crates/nix/0.26.2/download -> nix-0.26.2.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.15/download -> num-traits-0.2.15.crate https://crates.io/api/v1/crates/num_threads/0.1.6/download -> num_threads-0.1.6.crate https://crates.io/api/v1/crates/once_cell/1.17.1/download -> once_cell-1.17.1.crate https://crates.io/api/v1/crates/openssl-probe/0.1.5/download -> openssl-probe-0.1.5.crate https://crates.io/api/v1/crates/openssl-sys/0.9.80/download -> openssl-sys-0.9.80.crate https://crates.io/api/v1/crates/os_str_bytes/6.4.1/download -> os_str_bytes-6.4.1.crate https://crates.io/api/v1/crates/parking_lot/0.11.2/download -> parking_lot-0.11.2.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.8.6/download -> parking_lot_core-0.8.6.crate https://crates.io/api/v1/crates/parking_lot_core/0.9.7/download -> parking_lot_core-0.9.7.crate https://crates.io/api/v1/crates/percent-encoding/2.2.0/download -> percent-encoding-2.2.0.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/proc-macro2/1.0.51/download -> proc-macro2-1.0.51.crate https://crates.io/api/v1/crates/prodash/23.0.0/download -> prodash-23.0.0.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.23/download -> quote-1.0.23.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-automata/0.1.10/download -> regex-automata-0.1.10.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/rustix/0.36.8/download -> rustix-0.36.8.crate https://crates.io/api/v1/crates/rustversion/1.0.11/download -> rustversion-1.0.11.crate https://crates.io/api/v1/crates/ryu/1.0.12/download -> ryu-1.0.12.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/schannel/0.1.21/download -> schannel-0.1.21.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.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_json/1.0.93/download -> serde_json-1.0.93.crate https://crates.io/api/v1/crates/sha1_smol/1.0.0/download -> sha1_smol-1.0.0.crate https://crates.io/api/v1/crates/signal-hook/0.3.15/download -> signal-hook-0.3.15.crate https://crates.io/api/v1/crates/signal-hook-registry/1.4.1/download -> signal-hook-registry-1.4.1.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/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/strsim/0.10.0/download -> strsim-0.10.0.crate https://crates.io/api/v1/crates/syn/1.0.109/download -> syn-1.0.109.crate https://crates.io/api/v1/crates/tar/0.4.38/download -> tar-0.4.38.crate https://crates.io/api/v1/crates/tempfile/3.3.0/download -> tempfile-3.3.0.crate https://crates.io/api/v1/crates/termcolor/1.2.0/download -> termcolor-1.2.0.crate https://crates.io/api/v1/crates/terminal_size/0.2.5/download -> terminal_size-0.2.5.crate https://crates.io/api/v1/crates/thiserror/1.0.38/download -> thiserror-1.0.38.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/time/0.3.19/download -> time-0.3.19.crate https://crates.io/api/v1/crates/time-core/0.1.0/download -> time-core-0.1.0.crate https://crates.io/api/v1/crates/time-macros/0.2.7/download -> time-macros-0.2.7.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/unicode-bidi/0.3.10/download -> unicode-bidi-0.3.10.crate https://crates.io/api/v1/crates/unicode-bom/1.1.4/download -> unicode-bom-1.1.4.crate https://crates.io/api/v1/crates/unicode-ident/1.0.6/download -> unicode-ident-1.0.6.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.3.1/download -> url-2.3.1.crate https://crates.io/api/v1/crates/vcpkg/0.2.15/download -> vcpkg-0.2.15.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/walkdir/2.3.2/download -> walkdir-2.3.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/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-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/windows/0.43.0/download -> windows-0.43.0.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-sys/0.45.0/download -> windows-sys-0.45.0.crate https://crates.io/api/v1/crates/windows-targets/0.42.1/download -> windows-targets-0.42.1.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/xattr/0.2.3/download -> xattr-0.2.3.crate https://github.com/stacked-git/stgit/archive/v2.2.0.tar.gz -> stgit-2.2.0.tar.gz _eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=462f6ac44b5488933106f9172f87b161 +_md5_=363946e58914e9bfe09cba7d9eab9e61 diff --git a/metadata/md5-cache/games-action/Manifest.gz b/metadata/md5-cache/games-action/Manifest.gz index e27313b81af7..a8f3b27e20ac 100644 Binary files a/metadata/md5-cache/games-action/Manifest.gz and b/metadata/md5-cache/games-action/Manifest.gz differ diff --git a/metadata/md5-cache/games-action/abuse-0.9.1 b/metadata/md5-cache/games-action/abuse-0.9.1 index bcadf968960f..1c33606ea237 100644 --- a/metadata/md5-cache/games-action/abuse-0.9.1 +++ b/metadata/md5-cache/games-action/abuse-0.9.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 public-domain WTFPL-2 RDEPEND=>=media-libs/libsdl2-2.0.3[sound,video] media-libs/sdl2-mixer[midi,wav] SLOT=0 SRC_URI=https://github.com/Xenoveritas/abuse/archive/refs/tags/v0.9.1.tar.gz -> abuse-0.9.1.tar.gz http://abuse.zoy.org/raw-attachment/wiki/download/abuse-0.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=019e9dd7ca50b44be1642c428e3ab3aa diff --git a/metadata/md5-cache/games-action/astromenace-1.4.1-r1 b/metadata/md5-cache/games-action/astromenace-1.4.1-r1 index 8fa9a274ce97..666eeac93b20 100644 --- a/metadata/md5-cache/games-action/astromenace-1.4.1-r1 +++ b/metadata/md5-cache/games-action/astromenace-1.4.1-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 GPL-3+ CC-BY-SA-4.0 OFL-1.1 RDEPEND=media-libs/freealut media-libs/freetype:2 media-libs/libogg media-libs/libsdl2[joystick,video] media-libs/libvorbis media-libs/openal virtual/glu virtual/opengl x11-libs/libXinerama SLOT=0 SRC_URI=https://github.com/viewizard/astromenace/archive/v1.4.1.tar.gz -> astromenace-1.4.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=51f4004b15aaf0d0ae3b256acd9b95f1 diff --git a/metadata/md5-cache/games-action/lugaru-1.2 b/metadata/md5-cache/games-action/lugaru-1.2 index 7fb7558d6755..8457ceb18dcd 100644 --- a/metadata/md5-cache/games-action/lugaru-1.2 +++ b/metadata/md5-cache/games-action/lugaru-1.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ CC-BY-SA-3.0 CC-BY-SA-4.0 RDEPEND=dev-libs/jsoncpp:= media-libs/libpng:0= media-libs/libsdl2:=[opengl,video] media-libs/libvorbis:= media-libs/openal:= sys-libs/zlib:= virtual/glu virtual/jpeg:0 virtual/opengl SLOT=0 SRC_URI=https://gitlab.com/osslugaru/lugaru/-/archive/1.2/lugaru-1.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f14db2abd1c8fa0bb0148a0bcd038111 diff --git a/metadata/md5-cache/games-action/minetest-5.6.1 b/metadata/md5-cache/games-action/minetest-5.6.1 index 1ea7533cffb7..3e9090112e98 100644 --- a/metadata/md5-cache/games-action/minetest-5.6.1 +++ b/metadata/md5-cache/games-action/minetest-5.6.1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) || ( clien RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/minetest/minetest/archive/5.6.1.tar.gz -> minetest-5.6.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6304eeb146950af8ea86411935c9ba71 diff --git a/metadata/md5-cache/games-action/nighthawk-4.0 b/metadata/md5-cache/games-action/nighthawk-4.0 index 7a3e30944e8d..087d205ea4de 100644 --- a/metadata/md5-cache/games-action/nighthawk-4.0 +++ b/metadata/md5-cache/games-action/nighthawk-4.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=acct-group/gamestat media-libs/freeglut media-libs/libglvnd media-libs/libpng:= media-libs/libvorbis media-libs/openal virtual/glu SLOT=0 SRC_URI=mirror://sourceforge/night-hawk/nighthawk-4.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1569555999d5b06e8f83c0619cd0fb07 diff --git a/metadata/md5-cache/games-action/prismlauncher-6.1 b/metadata/md5-cache/games-action/prismlauncher-6.1 index 9224db4bac30..455f594f0e64 100644 --- a/metadata/md5-cache/games-action/prismlauncher-6.1 +++ b/metadata/md5-cache/games-action/prismlauncher-6.1 @@ -14,5 +14,5 @@ REQUIRED_USE=lto? ( !debug ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/PrismLauncher/PrismLauncher/releases/download/6.1/PrismLauncher-6.1.tar.gz -> prismlauncher-6.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=29fd4480426d5cd52ee4bf825c713f0a diff --git a/metadata/md5-cache/games-action/prismlauncher-6.3 b/metadata/md5-cache/games-action/prismlauncher-6.3 index 1207bbdece5a..943e48eb466d 100644 --- a/metadata/md5-cache/games-action/prismlauncher-6.3 +++ b/metadata/md5-cache/games-action/prismlauncher-6.3 @@ -14,5 +14,5 @@ REQUIRED_USE=lto? ( !debug ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/PrismLauncher/PrismLauncher/releases/download/6.3/PrismLauncher-6.3.tar.gz -> prismlauncher-6.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=366487edd7063d9aa3156ce7f0e82797 diff --git a/metadata/md5-cache/games-action/prismlauncher-9999 b/metadata/md5-cache/games-action/prismlauncher-9999 index d4e0f60bbcb9..42e66b3bd4bd 100644 --- a/metadata/md5-cache/games-action/prismlauncher-9999 +++ b/metadata/md5-cache/games-action/prismlauncher-9999 @@ -13,5 +13,5 @@ RDEPEND=!qt6? ( >=dev-qt/qtconcurrent-5.12.0:5 >=dev-qt/qtcore-5.12.0:5 >=dev-qt REQUIRED_USE=lto? ( !debug ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=29fd4480426d5cd52ee4bf825c713f0a diff --git a/metadata/md5-cache/games-action/supermariowar-2.0_beta1-r2 b/metadata/md5-cache/games-action/supermariowar-2.0_beta1-r2 index c6b1f6660ae2..be652c9cdf59 100644 --- a/metadata/md5-cache/games-action/supermariowar-2.0_beta1-r2 +++ b/metadata/md5-cache/games-action/supermariowar-2.0_beta1-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-cpp/yaml-cpp media-libs/libsdl[joystick] media-libs/sdl-mixer[vorbis] media-libs/sdl-image[png,jpeg] net-libs/enet:1.3= sys-libs/zlib:= SLOT=0 SRC_URI=https://github.com/mmatyas/supermariowar/archive/v2.0-beta.1.tar.gz -> supermariowar-2.0_beta1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b3df23b2058541d02dcda0670b62e687 diff --git a/metadata/md5-cache/games-action/supertuxkart-1.3 b/metadata/md5-cache/games-action/supertuxkart-1.3 index 809a954ffbf2..4c2e5a9e19fd 100644 --- a/metadata/md5-cache/games-action/supertuxkart-1.3 +++ b/metadata/md5-cache/games-action/supertuxkart-1.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 GPL-3 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 public-domain ZLIB RDEPEND=dev-cpp/libmcpp sqlite? ( dev-db/sqlite:3 ) dev-libs/angelscript:= media-libs/freetype:2 media-libs/glew:0= media-libs/harfbuzz:= media-libs/libpng:0= media-libs/libsdl2[opengl,video] media-libs/libvorbis media-libs/openal net-libs/enet:1.3= net-misc/curl sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/libintl virtual/opengl x11-libs/libX11 x11-libs/libXxf86vm nettle? ( dev-libs/nettle:= ) !nettle? ( >=dev-libs/openssl-1.0.1d:0= ) recorder? ( media-libs/libopenglrecorder ) wiimote? ( net-wireless/bluez ) SLOT=0 SRC_URI=https://github.com/supertuxkart/stk-code/releases/download/1.3/SuperTuxKart-1.3-src.tar.xz mirror://gentoo/supertuxkart.png -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=28a11ad7e7fbb6852f50c30498fa1e85 diff --git a/metadata/md5-cache/games-action/supertuxkart-1.4-r1 b/metadata/md5-cache/games-action/supertuxkart-1.4-r1 index c0a2cfc0e44e..364b2312bc83 100644 --- a/metadata/md5-cache/games-action/supertuxkart-1.4-r1 +++ b/metadata/md5-cache/games-action/supertuxkart-1.4-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 GPL-3 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 public-domain ZLIB RDEPEND=dev-cpp/libmcpp dev-libs/angelscript:= media-libs/freetype:2 media-libs/harfbuzz:= media-libs/libjpeg-turbo:= media-libs/libpng:= media-libs/libsdl2[opengl,video] media-libs/libvorbis media-libs/openal media-libs/shaderc net-libs/enet:1.3= net-misc/curl sys-libs/zlib virtual/libintl nettle? ( dev-libs/nettle:= ) !nettle? ( >=dev-libs/openssl-1.0.1d:= ) recorder? ( media-libs/libopenglrecorder ) sqlite? ( dev-db/sqlite:3 ) wiimote? ( net-wireless/bluez ) SLOT=0 SRC_URI=https://github.com/supertuxkart/stk-code/releases/download/1.4/SuperTuxKart-1.4-src.tar.xz mirror://gentoo/supertuxkart.png -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=45c35bae06e398426bdbb3cc1e3c9474 diff --git a/metadata/md5-cache/games-action/teeworlds-0.7.5-r2 b/metadata/md5-cache/games-action/teeworlds-0.7.5-r2 index f79ddc0a5b1a..36e17fa10831 100644 --- a/metadata/md5-cache/games-action/teeworlds-0.7.5-r2 +++ b/metadata/md5-cache/games-action/teeworlds-0.7.5-r2 @@ -11,5 +11,5 @@ LICENSE=ZLIB RDEPEND=!dedicated? ( media-libs/freetype media-libs/libglvnd[X] media-libs/libsdl2[sound,opengl,video] media-libs/pnglite media-sound/wavpack ) dev-libs/openssl:= sys-libs/zlib:= SLOT=0 SRC_URI=https://github.com/teeworlds/teeworlds/releases/download/0.7.5/teeworlds-0.7.5-src.tar.gz https://dev.gentoo.org/~ionen/distfiles/teeworlds.png -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b6fa20ed9e6e9104b867df030af9762f diff --git a/metadata/md5-cache/games-action/violetland-0.5 b/metadata/md5-cache/games-action/violetland-0.5 index bc8165be95a4..a6289e29c165 100644 --- a/metadata/md5-cache/games-action/violetland-0.5 +++ b/metadata/md5-cache/games-action/violetland-0.5 @@ -10,5 +10,5 @@ LICENSE=GPL-3 CC-BY-SA-3.0 RDEPEND=dev-libs/boost:= media-libs/libsdl[opengl,sound,video] media-libs/sdl-image[png] media-libs/sdl-mixer[vorbis] media-libs/sdl-ttf virtual/opengl SLOT=0 SRC_URI=https://github.com/ooxi/violetland/releases/download/0.5/violetland-0.5-source-with-dependencies.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=adc6e309ae1b32f8d6001db6f2efc050 diff --git a/metadata/md5-cache/games-arcade/Manifest.gz b/metadata/md5-cache/games-arcade/Manifest.gz index 9a3323fed968..e774dc337175 100644 Binary files a/metadata/md5-cache/games-arcade/Manifest.gz and b/metadata/md5-cache/games-arcade/Manifest.gz differ diff --git a/metadata/md5-cache/games-arcade/asteroid-1.2.1 b/metadata/md5-cache/games-arcade/asteroid-1.2.1 index dfdbc51469c8..398c0651c08b 100644 --- a/metadata/md5-cache/games-arcade/asteroid-1.2.1 +++ b/metadata/md5-cache/games-arcade/asteroid-1.2.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=media-libs/freeglut media-libs/libsdl media-libs/sdl-mixer virtual/glu virtual/opengl x11-libs/gtk+:2 SLOT=0 SRC_URI=https://github.com/chazomaticus/asteroid/archive/1.2.1.tar.gz -> asteroid-1.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fb31a99a2b319bfa2c29f711ceac14b9 diff --git a/metadata/md5-cache/games-arcade/blobby-1.0-r1 b/metadata/md5-cache/games-arcade/blobby-1.0-r1 index e1a50d94bae6..e7d47fd1611c 100644 --- a/metadata/md5-cache/games-arcade/blobby-1.0-r1 +++ b/metadata/md5-cache/games-arcade/blobby-1.0-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-games/physfs-2[zip] media-libs/libsdl2[sound,joystick,opengl,video] virtual/opengl SLOT=0 SRC_URI=mirror://sourceforge/blobby/blobby2-linux-1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=419739c4a6330081d34fc481c038c6a0 diff --git a/metadata/md5-cache/games-arcade/cdogs-sdl-1.4.1 b/metadata/md5-cache/games-arcade/cdogs-sdl-1.4.1 index b4ddc2ea93b6..f3d449df5942 100644 --- a/metadata/md5-cache/games-arcade/cdogs-sdl-1.4.1 +++ b/metadata/md5-cache/games-arcade/cdogs-sdl-1.4.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ BSD-2 CC-BY-3.0 CC-BY-4.0 CC-BY-SA-3.0 CC0-1.0 WTFPL-2 XMAME RDEPEND=media-libs/libsdl2[haptic,opengl] media-libs/sdl2-image[png] media-libs/sdl2-mixer[mp3,vorbis,wav] net-libs/enet:1.3= SLOT=0 SRC_URI=https://github.com/cxong/cdogs-sdl/archive/1.4.1.tar.gz -> cdogs-sdl-1.4.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=509258213e5e5126121693f4ff9b160e diff --git a/metadata/md5-cache/games-arcade/commandergenius-2.4.0-r1 b/metadata/md5-cache/games-arcade/commandergenius-2.4.0-r1 index 78184d5c670b..5e7752bdefb7 100644 --- a/metadata/md5-cache/games-arcade/commandergenius-2.4.0-r1 +++ b/metadata/md5-cache/games-arcade/commandergenius-2.4.0-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=mirror SLOT=0 SRC_URI=https://gitlab.com/Dringgstein/Commander-Genius/-/archive/v2.4.0/Commander-Genius-v2.4.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e2366d8742cc7abe7840cad5da82228a diff --git a/metadata/md5-cache/games-arcade/digger-20140423-r2 b/metadata/md5-cache/games-arcade/digger-20140423-r2 index 7117bfe2b4f1..d1ec6e04ad86 100644 --- a/metadata/md5-cache/games-arcade/digger-20140423-r2 +++ b/metadata/md5-cache/games-arcade/digger-20140423-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=media-libs/libsdl[X,sound,video] sys-libs/zlib:= x11-libs/libX11 SLOT=0 SRC_URI=mirror://gentoo/digger-20140423.tar.gz https://dev.gentoo.org/~ionen/distfiles/digger.png -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=abd135ed012b80e6e47622b102069ddc diff --git a/metadata/md5-cache/games-arcade/jvgs-0.5-r100 b/metadata/md5-cache/games-arcade/jvgs-0.5-r100 index 1f724242ba5b..a8e18fabb67d 100644 --- a/metadata/md5-cache/games-arcade/jvgs-0.5-r100 +++ b/metadata/md5-cache/games-arcade/jvgs-0.5-r100 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) dev-libs/tinyxml[stl] med REQUIRED_USE=^^ ( lua_single_target_lua5-1 ) SLOT=0 SRC_URI=mirror://sourceforge/jvgs/jvgs-0.5-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=08015bb028a0de7b6882582ceeb581fb diff --git a/metadata/md5-cache/games-arcade/ninvaders-0.1.2 b/metadata/md5-cache/games-arcade/ninvaders-0.1.2 index ca5e56b80468..209431653a2b 100644 --- a/metadata/md5-cache/games-arcade/ninvaders-0.1.2 +++ b/metadata/md5-cache/games-arcade/ninvaders-0.1.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=sys-libs/ncurses:0= SLOT=0 SRC_URI=https://github.com/sf-refugees/ninvaders/archive/v0.1.2.tar.gz -> ninvaders-0.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c51779042ff308e92a19ad33a13eee62 diff --git a/metadata/md5-cache/games-arcade/opensonic-0.1.4-r4 b/metadata/md5-cache/games-arcade/opensonic-0.1.4-r4 index bdfc30db9002..de9cb5801faf 100644 --- a/metadata/md5-cache/games-arcade/opensonic-0.1.4-r4 +++ b/metadata/md5-cache/games-arcade/opensonic-0.1.4-r4 @@ -11,5 +11,5 @@ RDEPEND=media-libs/allegro:0[X,jpeg,png,vorbis] media-libs/libvorbis RESTRICT=mirror SLOT=0 SRC_URI=mirror://sourceforge/project/opensnc/Open%20Sonic/0.1.4/opensnc-src-0.1.4.tar.gz mirror+https://dev.gentoo.org/~ionen/distfiles/loggcompat-4.4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e3abf116d3425a5248edbd3e6c25193b diff --git a/metadata/md5-cache/games-arcade/oshu-2.0.2 b/metadata/md5-cache/games-arcade/oshu-2.0.2 index 23fc0f8a38e5..6db2b49a692c 100644 --- a/metadata/md5-cache/games-arcade/oshu-2.0.2 +++ b/metadata/md5-cache/games-arcade/oshu-2.0.2 @@ -12,5 +12,5 @@ LICENSE=GPL-3 CC-BY-NC-4.0 RDEPEND=media-libs/libsdl2 media-libs/sdl2-image x11-libs/cairo x11-libs/pango media-video/ffmpeg:= SLOT=0 SRC_URI=https://github.com/fmang/oshu/archive/2.0.2.tar.gz -> oshu-2.0.2.tar.gz osu-skin? ( https://www.mg0.fr/oshu/skins/osu-v1.tar.gz -> oshu-skin-v1.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ba32953ae4da6f0549f662b45379dcbf diff --git a/metadata/md5-cache/games-arcade/oshu-9999 b/metadata/md5-cache/games-arcade/oshu-9999 index 18a8d1af1973..8fa529400ba1 100644 --- a/metadata/md5-cache/games-arcade/oshu-9999 +++ b/metadata/md5-cache/games-arcade/oshu-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=media-libs/libsdl2 media-libs/sdl2-image x11-libs/cairo x11-libs/pango >media-video/ffmpeg-5:= SLOT=0 SRC_URI=osu-skin? ( https://www.mg0.fr/oshu/skins/osu-v1.tar.gz -> oshu-skin-v1.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b76a98967a99a8f1dbc09a3af4206984 diff --git a/metadata/md5-cache/games-arcade/performous-1.2.0 b/metadata/md5-cache/games-arcade/performous-1.2.0 index 1006a2326e6e..f8a6e88f8e52 100644 --- a/metadata/md5-cache/games-arcade/performous-1.2.0 +++ b/metadata/md5-cache/games-arcade/performous-1.2.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 Apache-2.0 OFL-1.1 songs? ( CC-BY-NC-SA-2.5 CC-BY-NC-ND-2.5 ) RDEPEND=dev-cpp/libxmlpp:5.0 dev-libs/boost:=[nls] dev-libs/glib:2 dev-libs/icu:= gnome-base/librsvg:2 media-libs/aubio:=[fftw] media-libs/fontconfig:1.0 media-libs/glm media-libs/libepoxy media-libs/libjpeg-turbo:= media-libs/libpng:= media-libs/libsdl2[joystick,opengl,video] media-libs/portaudio media-video/ffmpeg:= virtual/libintl x11-libs/cairo x11-libs/pango midi? ( media-libs/portmidi ) webcam? ( media-libs/opencv:= ) SLOT=0 SRC_URI=https://github.com/performous/performous/archive/refs/tags/1.2.0.tar.gz -> performous-1.2.0.tar.gz https://github.com/performous/compact_enc_det/archive/9ca1351fe0b1e85992a407b0fc54a63e9b3adc6e.tar.gz -> performous-ced-9ca1351fe0b1e85992a407b0fc54a63e9b3adc6e.tar.gz songs? ( mirror://sourceforge/performous/ultrastar-songs-jc-1.zip mirror://sourceforge/performous/ultrastar-songs-libre-3.zip mirror://sourceforge/performous/ultrastar-songs-restricted-3.zip mirror://sourceforge/performous/ultrastar-songs-shearer-1.zip ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1cd55716efe72b15ec5eccd4f510b804 diff --git a/metadata/md5-cache/games-arcade/savagewheels-1.6.1-r2 b/metadata/md5-cache/games-arcade/savagewheels-1.6.1-r2 index 02fa422a1a8c..bb294bd50157 100644 --- a/metadata/md5-cache/games-arcade/savagewheels-1.6.1-r2 +++ b/metadata/md5-cache/games-arcade/savagewheels-1.6.1-r2 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=media-libs/libsdl[joystick] sound? ( media-libs/sdl-mixer[mod,modplug] ) SLOT=0 SRC_URI=https://github.com/kenamick/savagewheels/archive/1.6.1.tar.gz -> savagewheels-1.6.1.tar.gz https://github.com/kenamick/savagewheels/releases/download/v1.4/savagewheels-gamedata.tar.gz -> savagewheels-gamedata-1.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bb13718f7cd93b206fa0ed8440a96016 diff --git a/metadata/md5-cache/games-arcade/slimevolley-2.4.2-r1 b/metadata/md5-cache/games-arcade/slimevolley-2.4.2-r1 index 9bfce76068c9..6cd3591f42e2 100644 --- a/metadata/md5-cache/games-arcade/slimevolley-2.4.2-r1 +++ b/metadata/md5-cache/games-arcade/slimevolley-2.4.2-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=media-libs/libsdl[X,sound,video] media-libs/sdl-image[png] media-libs/sdl-net media-libs/sdl-ttf virtual/libintl SLOT=0 SRC_URI=http://downloads.tuxfamily.org/slime/v242/slimevolley_2.4.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7f03b50625c9b524cc7b920c84231fee diff --git a/metadata/md5-cache/games-arcade/supertux-0.6.3-r2 b/metadata/md5-cache/games-arcade/supertux-0.6.3-r2 index 020a14e8374d..5cf8429b479f 100644 --- a/metadata/md5-cache/games-arcade/supertux-0.6.3-r2 +++ b/metadata/md5-cache/games-arcade/supertux-0.6.3-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ GPL-3+ ZLIB MIT CC-BY-SA-2.0 CC-BY-SA-3.0 RDEPEND=!=media-libs/libsdl2-2.0.14-r0 >=dev-games/physfs-3.0 dev-libs/boost:=[nls] media-libs/freetype media-libs/glew:= media-libs/libpng:0= >=media-libs/libsdl2-2.0.1[joystick,video] media-libs/libvorbis media-libs/openal >=media-libs/sdl2-image-2.0.0[png,jpeg] >=net-misc/curl-7.21.7 virtual/opengl SLOT=0 SRC_URI=https://github.com/SuperTux/supertux/releases/download/v0.6.3/SuperTux-v0.6.3-Source.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f9891de0c3ae6e3515ade28fa6e85a82 diff --git a/metadata/md5-cache/games-arcade/tuxanci-20110429-r2 b/metadata/md5-cache/games-arcade/tuxanci-20110429-r2 index 37b05eb060e9..259a00d5612e 100644 --- a/metadata/md5-cache/games-arcade/tuxanci-20110429-r2 +++ b/metadata/md5-cache/games-arcade/tuxanci-20110429-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=!dedicated? ( media-libs/fontconfig media-libs/libsdl[opengl?,sound,video] media-libs/sdl-image[png] media-libs/sdl-mixer[vorbis] media-libs/sdl-ttf opengl? ( virtual/opengl ) ) physfs? ( dev-games/physfs[zip] ) !physfs? ( dev-libs/libzip:= ) SLOT=0 SRC_URI=mirror://gentoo/tuxanci-20110429.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b73bdff370e39db78767fc3ae69a12b diff --git a/metadata/md5-cache/games-board/Manifest.gz b/metadata/md5-cache/games-board/Manifest.gz index 7469142a13c1..045bb00ab587 100644 Binary files a/metadata/md5-cache/games-board/Manifest.gz and b/metadata/md5-cache/games-board/Manifest.gz differ diff --git a/metadata/md5-cache/games-board/cockatrice-20210126 b/metadata/md5-cache/games-board/cockatrice-20210126 index 09b0a1f08725..65a273d2aaad 100644 --- a/metadata/md5-cache/games-board/cockatrice-20210126 +++ b/metadata/md5-cache/games-board/cockatrice-20210126 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Cockatrice/Cockatrice/archive/2021-01-26-Release-2.8.0.tar.gz -> cockatrice-20210126.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=88eaa246c4d6645fa127991b2d27dff1 diff --git a/metadata/md5-cache/games-board/gambit-1.0.4-r1 b/metadata/md5-cache/games-board/gambit-1.0.4-r1 index 7ac691f73cd4..07186366610f 100644 --- a/metadata/md5-cache/games-board/gambit-1.0.4-r1 +++ b/metadata/md5-cache/games-board/gambit-1.0.4-r1 @@ -10,5 +10,5 @@ LICENSE=CC0-1.0 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 media-libs/mesa[X(+)] x11-libs/libX11 SLOT=0 SRC_URI=mirror://sourceforge/project/gambitchess/Gambit-1.0.4/Gambit-1.0.4-src.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b5b53ec8e3b0f73e585ce9a7100b0ec3 diff --git a/metadata/md5-cache/games-board/scid-4.7.0-r1 b/metadata/md5-cache/games-board/scid-4.7.0-r1 index c280df3d4217..aa9092175c25 100644 --- a/metadata/md5-cache/games-board/scid-4.7.0-r1 +++ b/metadata/md5-cache/games-board/scid-4.7.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=scripts? ( ^^ ( python_single_target_python3_9 python_single_target RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/scid/scid-code-4.7.0.zip mirror://sourceforge/scid/scid-4.7.0_x64_linux.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bff8428fc9e380cf83f95a0ad6862508 diff --git a/metadata/md5-cache/games-emulation/Manifest.gz b/metadata/md5-cache/games-emulation/Manifest.gz index d89aee58cd0b..2da26efc8793 100644 Binary files a/metadata/md5-cache/games-emulation/Manifest.gz and b/metadata/md5-cache/games-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/games-emulation/dolphin-5.0_p20220520-r1 b/metadata/md5-cache/games-emulation/dolphin-5.0_p20220520-r1 index 40d0844cf690..58e7fd18989c 100644 --- a/metadata/md5-cache/games-emulation/dolphin-5.0_p20220520-r1 +++ b/metadata/md5-cache/games-emulation/dolphin-5.0_p20220520-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ BSD BSD-2 LGPL-2.1+ MIT ZLIB RDEPEND=app-arch/bzip2:= app-arch/xz-utils:= app-arch/zstd:= dev-libs/hidapi:= >=dev-libs/libfmt-8:= dev-libs/lzo:= dev-libs/pugixml:= media-libs/cubeb:= media-libs/libpng:= media-libs/libsfml media-libs/mesa[egl(+)] net-libs/enet:1.3 net-libs/mbedtls:= net-misc/curl:= sys-libs/readline:= sys-libs/zlib:=[minizip] x11-libs/libXext x11-libs/libXi x11-libs/libXrandr virtual/libusb:1 virtual/opengl alsa? ( media-libs/alsa-lib ) bluetooth? ( net-wireless/bluez ) evdev? ( dev-libs/libevdev virtual/udev ) ffmpeg? ( media-video/ffmpeg:= ) gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) profile? ( dev-util/oprofile ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:0= ) upnp? ( net-libs/miniupnpc ) vulkan? ( media-libs/vulkan-loader ) SLOT=0 SRC_URI=https://github.com/dolphin-emu/dolphin/archive/0f2540a0d1133950467845f20b1e003181147781.tar.gz -> dolphin-5.0_p20220520.tar.gz mgba? ( https://github.com/mgba-emu/mgba/archive/40d4c430fc36caeb7ea32fd39624947ed487d2f2.tar.gz -> mgba-40d4c430fc36caeb7ea32fd39624947ed487d2f2.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=760a0bade86dbaefeb1ed8d3a7abd900 diff --git a/metadata/md5-cache/games-emulation/dolphin-9999 b/metadata/md5-cache/games-emulation/dolphin-9999 index 16399ee72bfd..402b7e889791 100644 --- a/metadata/md5-cache/games-emulation/dolphin-9999 +++ b/metadata/md5-cache/games-emulation/dolphin-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ BSD BSD-2 LGPL-2.1+ MIT ZLIB PROPERTIES=live RDEPEND=app-arch/bzip2:= app-arch/xz-utils:= app-arch/zstd:= dev-libs/hidapi:= >=dev-libs/libfmt-8:= dev-libs/lzo:= dev-libs/pugixml:= media-libs/cubeb:= media-libs/libpng:= media-libs/libsfml media-libs/mesa[egl(+)] net-libs/enet:1.3 net-libs/mbedtls:= net-misc/curl:= sys-libs/readline:= sys-libs/zlib:=[minizip] x11-libs/libXext x11-libs/libXi x11-libs/libXrandr virtual/libusb:1 virtual/opengl alsa? ( media-libs/alsa-lib ) bluetooth? ( net-wireless/bluez ) evdev? ( dev-libs/libevdev virtual/udev ) ffmpeg? ( media-video/ffmpeg:= ) gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) profile? ( dev-util/oprofile ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:0= ) upnp? ( net-libs/miniupnpc ) vulkan? ( media-libs/vulkan-loader ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bf8b2e94c91f1785fc32ff22338238bb diff --git a/metadata/md5-cache/games-emulation/fceux-2.6.5 b/metadata/md5-cache/games-emulation/fceux-2.6.5 index e934d8f508c3..4f64a79da2bf 100644 --- a/metadata/md5-cache/games-emulation/fceux-2.6.5 +++ b/metadata/md5-cache/games-emulation/fceux-2.6.5 @@ -13,5 +13,5 @@ RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) qt6? ( dev-qt/qtbase:6[gu REQUIRED_USE=^^ ( lua_single_target_lua5-1 ) SLOT=0 SRC_URI=https://github.com/TASEmulators/fceux/archive/refs/tags/v2.6.5.tar.gz -> fceux-2.6.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=243f12c2587fbacb1ea49b28522b6192 diff --git a/metadata/md5-cache/games-emulation/hatari-2.4.1 b/metadata/md5-cache/games-emulation/hatari-2.4.1 index 48c8c45adf5d..4ce3b31cea86 100644 --- a/metadata/md5-cache/games-emulation/hatari-2.4.1 +++ b/metadata/md5-cache/games-emulation/hatari-2.4.1 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) png? ( zlib ) SLOT=0 SRC_URI=https://download.tuxfamily.org/hatari/2.4.1/hatari-2.4.1.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d22002ca2c807e48cd9c86dbfcbda916 diff --git a/metadata/md5-cache/games-emulation/melonds-0.9.3-r2 b/metadata/md5-cache/games-emulation/melonds-0.9.3-r2 index c5c64c17a623..da02aec301cd 100644 --- a/metadata/md5-cache/games-emulation/melonds-0.9.3-r2 +++ b/metadata/md5-cache/games-emulation/melonds-0.9.3-r2 @@ -12,5 +12,5 @@ LICENSE=BSD-2 GPL-2 GPL-3 Unlicense RDEPEND=app-arch/libarchive dev-libs/teakra dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-libs/libsdl2[sound,video] net-libs/libpcap net-libs/libslirp opengl? ( media-libs/libepoxy ) SLOT=0 SRC_URI=https://github.com/Arisotura/melonDS/archive/0.9.3.tar.gz -> melonDS-0.9.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c14debb973a6bdd89bea9918699f95ce diff --git a/metadata/md5-cache/games-emulation/melonds-0.9.4_p1-r1 b/metadata/md5-cache/games-emulation/melonds-0.9.4_p1-r1 index 9fdce59fc564..206cac4ccacb 100644 --- a/metadata/md5-cache/games-emulation/melonds-0.9.4_p1-r1 +++ b/metadata/md5-cache/games-emulation/melonds-0.9.4_p1-r1 @@ -12,5 +12,5 @@ LICENSE=BSD-2 GPL-2 GPL-3 Unlicense RDEPEND=app-arch/libarchive dev-libs/teakra dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-libs/libsdl2[sound,video] net-libs/libpcap net-libs/libslirp opengl? ( media-libs/libepoxy ) SLOT=0 SRC_URI=https://github.com/Arisotura/melonDS/archive/0.9.4.tar.gz -> melonDS-0.9.4_p1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ddde9daa47c67b3e19bb286e199396a1 diff --git a/metadata/md5-cache/games-emulation/melonds-0.9.5-r3 b/metadata/md5-cache/games-emulation/melonds-0.9.5-r3 index 01dd52b5c52f..638a94898b18 100644 --- a/metadata/md5-cache/games-emulation/melonds-0.9.5-r3 +++ b/metadata/md5-cache/games-emulation/melonds-0.9.5-r3 @@ -12,5 +12,5 @@ LICENSE=BSD-2 GPL-2 GPL-3 Unlicense RDEPEND=app-arch/libarchive dev-libs/wayland dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-libs/libsdl2[sound,video] net-libs/libpcap net-libs/libslirp opengl? ( media-libs/libepoxy ) SLOT=0 SRC_URI=https://github.com/Arisotura/melonDS/archive/0.9.5.tar.gz -> melonDS-0.9.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=410792634e220ee20fab81bc66a6659f diff --git a/metadata/md5-cache/games-emulation/melonds-9999 b/metadata/md5-cache/games-emulation/melonds-9999 index cf048f5a9179..1ce9f2c967b3 100644 --- a/metadata/md5-cache/games-emulation/melonds-9999 +++ b/metadata/md5-cache/games-emulation/melonds-9999 @@ -11,5 +11,5 @@ LICENSE=BSD-2 GPL-2 GPL-3 Unlicense PROPERTIES=live RDEPEND=app-arch/libarchive dev-libs/wayland dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-libs/libsdl2[sound,video] net-libs/libpcap net-libs/libslirp opengl? ( media-libs/libepoxy ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7b7ea6c2afe37924f5d589112e23d45c diff --git a/metadata/md5-cache/games-emulation/mgba-0.10.1 b/metadata/md5-cache/games-emulation/mgba-0.10.1 index 554267b29a94..dc21ab05397a 100644 --- a/metadata/md5-cache/games-emulation/mgba-0.10.1 +++ b/metadata/md5-cache/games-emulation/mgba-0.10.1 @@ -14,5 +14,5 @@ REQUIRED_USE=gui? ( || ( gles2 gles3 opengl ) sqlite ) lua? ( ^^ ( lua_single_ta RESTRICT=!test? ( test ) SLOT=0/0.10 SRC_URI=https://github.com/mgba-emu/mgba/archive/0.10.1.tar.gz -> mgba-0.10.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5e07b73e80e3f51f8254d521861a193b diff --git a/metadata/md5-cache/games-emulation/mgba-9999 b/metadata/md5-cache/games-emulation/mgba-9999 index 98e93ad33574..35be461f90d2 100644 --- a/metadata/md5-cache/games-emulation/mgba-9999 +++ b/metadata/md5-cache/games-emulation/mgba-9999 @@ -13,5 +13,5 @@ RDEPEND=media-libs/libpng:= sys-libs/zlib:=[minizip] debug? ( dev-libs/libedit ) REQUIRED_USE=gui? ( || ( gles2 gles3 opengl ) sqlite ) lua? ( ^^ ( lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef7da104a0e5305f5af8d79d9f049db3 diff --git a/metadata/md5-cache/games-emulation/pcsx2-1.6.0-r3 b/metadata/md5-cache/games-emulation/pcsx2-1.6.0-r3 index 22ef87cca40a..fb31bfd444ea 100644 --- a/metadata/md5-cache/games-emulation/pcsx2-1.6.0-r3 +++ b/metadata/md5-cache/games-emulation/pcsx2-1.6.0-r3 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=app-arch/bzip2[abi_x86_32(-)] app-arch/xz-utils[abi_x86_32(-)] dev-libs/libaio[abi_x86_32(-)] dev-libs/libxml2:2[abi_x86_32(-)] media-libs/alsa-lib[abi_x86_32(-)] media-libs/libpng:=[abi_x86_32(-)] media-libs/libsdl2[abi_x86_32(-),haptic,joystick,sound] media-libs/libsoundtouch[abi_x86_32(-)] media-libs/portaudio[abi_x86_32(-)] net-libs/libpcap[abi_x86_32(-)] sys-libs/zlib[abi_x86_32(-)] virtual/libudev[abi_x86_32(-)] virtual/opengl[abi_x86_32(-)] x11-libs/gtk+:3[abi_x86_32(-)] x11-libs/libICE[abi_x86_32(-)] x11-libs/libX11[abi_x86_32(-)] x11-libs/libXext[abi_x86_32(-)] x11-libs/wxGTK:3.0-gtk3[abi_x86_32(-),X] filecaps? ( sys-libs/libcap ) SLOT=0 SRC_URI=https://github.com/PCSX2/pcsx2/archive/v1.6.0.tar.gz -> pcsx2-1.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=54165b748b7e3546bc6e6f5449e2bfea diff --git a/metadata/md5-cache/games-emulation/pcsx2-1.7.3738 b/metadata/md5-cache/games-emulation/pcsx2-1.7.3738 index 33ee90b26da0..25895593b912 100644 --- a/metadata/md5-cache/games-emulation/pcsx2-1.7.3738 +++ b/metadata/md5-cache/games-emulation/pcsx2-1.7.3738 @@ -14,5 +14,5 @@ REQUIRED_USE=cpu_flags_x86_sse4_1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/PCSX2/pcsx2/archive/refs/tags/v1.7.3738.tar.gz -> pcsx2-1.7.3738.tar.gz https://github.com/fastfloat/fast_float/archive/32d21dcecb404514f94fb58660b8029a4673c2c1.tar.gz -> pcsx2-fast_float-32d21dcecb.tar.gz https://github.com/RetroAchievements/rcheevos/archive/31f8788fe0e694e99db7ce138d45a655c556fa96.tar.gz -> pcsx2-rcheevos-31f8788fe0.tar.gz vulkan? ( https://github.com/KhronosGroup/glslang/archive/c9706bdda0ac22b9856f1aa8261e5b9e15cd20c5.tar.gz -> pcsx2-glslang-c9706bdda0.tar.gz https://github.com/KhronosGroup/Vulkan-Headers/archive/9f4c61a31435a7a90a314fc68aeb386c92a09c0f.tar.gz -> pcsx2-vulkan-headers-9f4c61a314.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=37d0b4499ea6ff35b802a611e16991bb diff --git a/metadata/md5-cache/games-emulation/pcsx2-1.7.4042 b/metadata/md5-cache/games-emulation/pcsx2-1.7.4042 index e1a4a4d9aecf..24bc447c6acd 100644 --- a/metadata/md5-cache/games-emulation/pcsx2-1.7.4042 +++ b/metadata/md5-cache/games-emulation/pcsx2-1.7.4042 @@ -14,5 +14,5 @@ REQUIRED_USE=cpu_flags_x86_sse4_1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/PCSX2/pcsx2/archive/refs/tags/v1.7.4042.tar.gz -> pcsx2-1.7.4042.tar.gz https://github.com/fastfloat/fast_float/archive/32d21dcecb404514f94fb58660b8029a4673c2c1.tar.gz -> pcsx2-fast_float-32d21dcecb.tar.gz https://github.com/RetroAchievements/rcheevos/archive/31f8788fe0e694e99db7ce138d45a655c556fa96.tar.gz -> pcsx2-rcheevos-31f8788fe0.tar.gz vulkan? ( https://github.com/KhronosGroup/glslang/archive/c9706bdda0ac22b9856f1aa8261e5b9e15cd20c5.tar.gz -> pcsx2-glslang-c9706bdda0.tar.gz https://github.com/KhronosGroup/Vulkan-Headers/archive/9f4c61a31435a7a90a314fc68aeb386c92a09c0f.tar.gz -> pcsx2-vulkan-headers-9f4c61a314.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6135c36ac373f7e4c8da4e24993c7072 diff --git a/metadata/md5-cache/games-emulation/pcsx2-1.7.4217 b/metadata/md5-cache/games-emulation/pcsx2-1.7.4217 index e20d89f113df..cbbffe292421 100644 --- a/metadata/md5-cache/games-emulation/pcsx2-1.7.4217 +++ b/metadata/md5-cache/games-emulation/pcsx2-1.7.4217 @@ -14,5 +14,5 @@ REQUIRED_USE=cpu_flags_x86_sse4_1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/PCSX2/pcsx2/archive/refs/tags/v1.7.4217.tar.gz -> pcsx2-1.7.4217.tar.gz https://github.com/fastfloat/fast_float/archive/32d21dcecb404514f94fb58660b8029a4673c2c1.tar.gz -> pcsx2-fast_float-32d21dcecb.tar.gz https://github.com/RetroAchievements/rcheevos/archive/31f8788fe0e694e99db7ce138d45a655c556fa96.tar.gz -> pcsx2-rcheevos-31f8788fe0.tar.gz vulkan? ( https://github.com/KhronosGroup/glslang/archive/c9706bdda0ac22b9856f1aa8261e5b9e15cd20c5.tar.gz -> pcsx2-glslang-c9706bdda0.tar.gz https://github.com/KhronosGroup/Vulkan-Headers/archive/9f4c61a31435a7a90a314fc68aeb386c92a09c0f.tar.gz -> pcsx2-vulkan-headers-9f4c61a314.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6135c36ac373f7e4c8da4e24993c7072 diff --git a/metadata/md5-cache/games-emulation/pcsx2-9999 b/metadata/md5-cache/games-emulation/pcsx2-9999 index e2a20e162164..aa84586f7608 100644 --- a/metadata/md5-cache/games-emulation/pcsx2-9999 +++ b/metadata/md5-cache/games-emulation/pcsx2-9999 @@ -13,5 +13,5 @@ RDEPEND=app-arch/xz-utils app-arch/zstd:= >=dev-cpp/rapidyaml-0.5:= dev-libs/lib REQUIRED_USE=cpu_flags_x86_sse4_1 RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=0df24e430d9c2da7f400331c1282c7cd +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=2c57d5fb69536b27de3a04903f7de29d diff --git a/metadata/md5-cache/games-emulation/pcsxr-1.9.94_p20190306 b/metadata/md5-cache/games-emulation/pcsxr-1.9.94_p20190306 index 5e8a1d877d09..1701c919f136 100644 --- a/metadata/md5-cache/games-emulation/pcsxr-1.9.94_p20190306 +++ b/metadata/md5-cache/games-emulation/pcsxr-1.9.94_p20190306 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 media-libs/libsdl2[joystick] sys-libs/zlib:= x11-libs/gt REQUIRED_USE=?? ( alsa openal oss pulseaudio sdl ) SLOT=0 SRC_URI=https://github.com/iCatButler/pcsxr/archive/62467b86871aee3d70c7445f3cb79f0858ec566e.tar.gz -> pcsxr-62467b86871aee3d70c7445f3cb79f0858ec566e.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7b99f8d7a0effaf3fe0c2fba1a490b77 diff --git a/metadata/md5-cache/games-emulation/pcsxr-9999 b/metadata/md5-cache/games-emulation/pcsxr-9999 index 954cba3d055d..a3252361dc90 100644 --- a/metadata/md5-cache/games-emulation/pcsxr-9999 +++ b/metadata/md5-cache/games-emulation/pcsxr-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/glib:2 media-libs/libsdl2[joystick] sys-libs/zlib:= x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXtst x11-libs/libXv x11-libs/libXxf86vm virtual/libintl virtual/opengl archive? ( app-arch/libarchive:= ) alsa? ( media-libs/alsa-lib:= ) cdio? ( dev-libs/libcdio:= ) ccdda? ( >=media-video/ffmpeg-3:= ) openal? ( media-libs/openal:= ) pulseaudio? ( media-sound/pulseaudio:= ) sdl? ( media-libs/libsdl2:=[sound] ) REQUIRED_USE=?? ( alsa openal oss pulseaudio sdl ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b843beecebd61e1728099da87755878d diff --git a/metadata/md5-cache/games-emulation/ppsspp-1.14.1-r3 b/metadata/md5-cache/games-emulation/ppsspp-1.14.1-r3 index f124504be99b..65d04faf2dae 100644 --- a/metadata/md5-cache/games-emulation/ppsspp-1.14.1-r3 +++ b/metadata/md5-cache/games-emulation/ppsspp-1.14.1-r3 @@ -13,5 +13,5 @@ RDEPEND=app-arch/snappy:= app-arch/zstd:= dev-libs/libzip:= media-libs/glew:= me RESTRICT=test SLOT=0 SRC_URI=https://github.com/hrydgard/ppsspp/releases/download/v1.14.1/ppsspp-1.14.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ec28abe3bc1a0a8bd7a7dbbd1cf8f6cb diff --git a/metadata/md5-cache/games-emulation/ppsspp-1.14.2-r2 b/metadata/md5-cache/games-emulation/ppsspp-1.14.2-r2 index 1b9587386323..09e8b2533e07 100644 --- a/metadata/md5-cache/games-emulation/ppsspp-1.14.2-r2 +++ b/metadata/md5-cache/games-emulation/ppsspp-1.14.2-r2 @@ -13,5 +13,5 @@ RDEPEND=app-arch/snappy:= app-arch/zstd:= dev-libs/libzip:= media-libs/glew:= me RESTRICT=test SLOT=0 SRC_URI=https://github.com/hrydgard/ppsspp/releases/download/v1.14.2/ppsspp-1.14.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a72a7500b76eac0b1aa7f0ef17292443 diff --git a/metadata/md5-cache/games-emulation/ppsspp-1.14.4-r2 b/metadata/md5-cache/games-emulation/ppsspp-1.14.4-r2 index bef7bf5f63a4..0d483482c5c4 100644 --- a/metadata/md5-cache/games-emulation/ppsspp-1.14.4-r2 +++ b/metadata/md5-cache/games-emulation/ppsspp-1.14.4-r2 @@ -13,5 +13,5 @@ RDEPEND=app-arch/snappy:= app-arch/zstd:= dev-libs/libzip:= media-libs/glew:= me RESTRICT=test SLOT=0 SRC_URI=https://github.com/hrydgard/ppsspp/releases/download/v1.14.4/ppsspp-1.14.4.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ec28abe3bc1a0a8bd7a7dbbd1cf8f6cb diff --git a/metadata/md5-cache/games-emulation/vbam-2.1.5 b/metadata/md5-cache/games-emulation/vbam-2.1.5 index 20e7d5c0b114..033107ebb4a5 100644 --- a/metadata/md5-cache/games-emulation/vbam-2.1.5 +++ b/metadata/md5-cache/games-emulation/vbam-2.1.5 @@ -13,5 +13,5 @@ RDEPEND=>=media-libs/libpng-1.4:= media-libs/libsdl2[joystick] sys-libs/zlib:= v REQUIRED_USE=ffmpeg? ( wxwidgets ) openal? ( wxwidgets ) || ( sdl wxwidgets ) SLOT=0 SRC_URI=https://github.com/visualboyadvance-m/visualboyadvance-m/archive/v2.1.5.tar.gz -> vbam-2.1.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af930675714a30768b11465b31cf2268 diff --git a/metadata/md5-cache/games-emulation/vbam-9999 b/metadata/md5-cache/games-emulation/vbam-9999 index 543e1d16f04a..2b26e39bda4e 100644 --- a/metadata/md5-cache/games-emulation/vbam-9999 +++ b/metadata/md5-cache/games-emulation/vbam-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=>=media-libs/libpng-1.4:= media-libs/libsdl2[joystick] sys-libs/zlib:= virtual/glu virtual/opengl link? ( >=media-libs/libsfml-2.0:= ) lirc? ( app-misc/lirc ) nls? ( virtual/libintl ) wxwidgets? ( ffmpeg? ( media-video/ffmpeg:= ) openal? ( media-libs/openal ) x11-libs/wxGTK:3.0-gtk3[X,opengl] ) REQUIRED_USE=ffmpeg? ( wxwidgets ) openal? ( wxwidgets ) || ( sdl wxwidgets ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af930675714a30768b11465b31cf2268 diff --git a/metadata/md5-cache/games-emulation/yabause-0.9.15 b/metadata/md5-cache/games-emulation/yabause-0.9.15 index be60e4e5d7b8..37be8be2d3db 100644 --- a/metadata/md5-cache/games-emulation/yabause-0.9.15 +++ b/metadata/md5-cache/games-emulation/yabause-0.9.15 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtwidgets:5 sys-libs/zlib x11-libs/libXrandr x11-libs/libX11 openal? ( media-libs/openal ) opengl? ( dev-qt/qtopengl:5 media-libs/freeglut virtual/glu virtual/opengl ) sdl? ( media-libs/libsdl2[opengl?,video] ) SLOT=0 SRC_URI=https://download.tuxfamily.org/yabause/releases/0.9.15/yabause-0.9.15.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=28e7b1cfc5fe6a1148b9e23291618804 diff --git a/metadata/md5-cache/games-engines/Manifest.gz b/metadata/md5-cache/games-engines/Manifest.gz index ad958aa6a9ab..5b0a4c4de709 100644 Binary files a/metadata/md5-cache/games-engines/Manifest.gz and b/metadata/md5-cache/games-engines/Manifest.gz differ diff --git a/metadata/md5-cache/games-engines/box2d-2.4.1 b/metadata/md5-cache/games-engines/box2d-2.4.1 index 14892fca7d23..664fd09362c6 100644 --- a/metadata/md5-cache/games-engines/box2d-2.4.1 +++ b/metadata/md5-cache/games-engines/box2d-2.4.1 @@ -11,5 +11,5 @@ LICENSE=ZLIB RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/erincatto/Box2D/archive/v2.4.1.tar.gz -> box2d-2.4.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a1152cc0fdd07cde427b6ddb2c81f906 diff --git a/metadata/md5-cache/games-engines/devilutionx-1.4.1 b/metadata/md5-cache/games-engines/devilutionx-1.4.1 index 2ced122d96fd..03314de4f0d6 100644 --- a/metadata/md5-cache/games-engines/devilutionx-1.4.1 +++ b/metadata/md5-cache/games-engines/devilutionx-1.4.1 @@ -13,5 +13,5 @@ RDEPEND=app-arch/bzip2:= dev-libs/libfmt:= media-libs/libsdl2[haptic,joystick,op RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/diasurgical/devilutionX/releases/download/1.4.1/devilutionx-src.tar.xz -> devilutionx-1.4.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=effd750af1e21f5a2cc35345ba2b2bf4 diff --git a/metadata/md5-cache/games-engines/frobtads-2.0 b/metadata/md5-cache/games-engines/frobtads-2.0 index 6d81aca75700..48bd13901ffb 100644 --- a/metadata/md5-cache/games-engines/frobtads-2.0 +++ b/metadata/md5-cache/games-engines/frobtads-2.0 @@ -12,5 +12,5 @@ RDEPEND=net-misc/curl sys-libs/ncurses:0= RESTRICT=!tads3compiler? ( test ) SLOT=0 SRC_URI=https://github.com/realnc/frobtads/releases/download/v2.0/frobtads-2.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=139c278a6f7992ddc33d9da82f3700d1 diff --git a/metadata/md5-cache/games-engines/odamex-10.0.0 b/metadata/md5-cache/games-engines/odamex-10.0.0 index 3669ffd0baca..6a4bcc0dc2de 100644 --- a/metadata/md5-cache/games-engines/odamex-10.0.0 +++ b/metadata/md5-cache/games-engines/odamex-10.0.0 @@ -13,5 +13,5 @@ RDEPEND=client? ( media-libs/libpng:0= media-libs/libsdl2[joystick,sound,video] REQUIRED_USE=|| ( client master server ) SLOT=0 SRC_URI=https://github.com/odamex/odamex/releases/download/10.0.0/odamex-src-10.0.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3ccf7bce1558c51ececc42a7b74d944b diff --git a/metadata/md5-cache/games-engines/openmw-0.47.0-r2 b/metadata/md5-cache/games-engines/openmw-0.47.0-r2 index ff3c9db33589..e2cb35dc3c18 100644 --- a/metadata/md5-cache/games-engines/openmw-0.47.0-r2 +++ b/metadata/md5-cache/games-engines/openmw-0.47.0-r2 @@ -13,5 +13,5 @@ RDEPEND=app-arch/lz4:= dev-games/mygui dev-games/recastnavigation:= dev-libs/boo RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/OpenMW/openmw/archive/openmw-0.47.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dc77f114659e9ba8017c08d73897bb71 diff --git a/metadata/md5-cache/games-engines/openmw-9999 b/metadata/md5-cache/games-engines/openmw-9999 index 8adcdf19e243..d9b1a989cd29 100644 --- a/metadata/md5-cache/games-engines/openmw-9999 +++ b/metadata/md5-cache/games-engines/openmw-9999 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_t RESTRICT=!test? ( test ) SLOT=0 SRC_URI=test? ( https://gitlab.com/OpenMW/example-suite/-/raw/8966dab24692555eec720c854fb0f73d108070cd/data/template.omwgame -> openmw-template-8966dab24692555eec720c854fb0f73d108070cd.omwgame ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f50869cb3c7db58480a18c65d7beb5cc diff --git a/metadata/md5-cache/games-engines/openxcom-1.0.0_p20180317-r1 b/metadata/md5-cache/games-engines/openxcom-1.0.0_p20180317-r1 index bc4da66b647b..40598f5704a5 100644 --- a/metadata/md5-cache/games-engines/openxcom-1.0.0_p20180317-r1 +++ b/metadata/md5-cache/games-engines/openxcom-1.0.0_p20180317-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ CC-BY-SA-4.0 RDEPEND=>=dev-cpp/yaml-cpp-0.5.1 media-libs/libsdl[opengl,video] media-libs/sdl-gfx media-libs/sdl-image[png] media-libs/sdl-mixer[flac,mikmod,vorbis] SLOT=0 SRC_URI=https://github.com/SupSuper/OpenXcom/archive/ea9ac466221f8b4f8974d2db1c42dc4ad6126564.tar.gz -> openxcom-1.0.0_p20180317.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b8702f4936565345e699624207af45b diff --git a/metadata/md5-cache/games-engines/openxcom-9999 b/metadata/md5-cache/games-engines/openxcom-9999 index 503b7e41e360..94b03e719cd5 100644 --- a/metadata/md5-cache/games-engines/openxcom-9999 +++ b/metadata/md5-cache/games-engines/openxcom-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ CC-BY-SA-4.0 PROPERTIES=live RDEPEND=>=dev-cpp/yaml-cpp-0.5.1 media-libs/libsdl[opengl,video] media-libs/sdl-gfx media-libs/sdl-image[png] media-libs/sdl-mixer[flac,mikmod,vorbis] SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a4dc587ede2085f82875d52c36c892ee diff --git a/metadata/md5-cache/games-engines/solarus-1.6.5 b/metadata/md5-cache/games-engines/solarus-1.6.5 index b5ac9dc2318e..e6049f09cf98 100644 --- a/metadata/md5-cache/games-engines/solarus-1.6.5 +++ b/metadata/md5-cache/games-engines/solarus-1.6.5 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.com/solarus-games/solarus/-/archive/v1.6.5/solarus-v1.6.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=85d39c150495ad31fa657495efba1242 diff --git a/metadata/md5-cache/games-engines/solarus-9999 b/metadata/md5-cache/games-engines/solarus-9999 index 946aa603f3d4..da963ab8a146 100644 --- a/metadata/md5-cache/games-engines/solarus-9999 +++ b/metadata/md5-cache/games-engines/solarus-9999 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1 REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=85d39c150495ad31fa657495efba1242 diff --git a/metadata/md5-cache/games-engines/stratagus-3.3.1 b/metadata/md5-cache/games-engines/stratagus-3.3.1 index b0c32ff5dc63..847322b85cc9 100644 --- a/metadata/md5-cache/games-engines/stratagus-3.3.1 +++ b/metadata/md5-cache/games-engines/stratagus-3.3.1 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) dev-db/sqlite:3 dev-lua/t REQUIRED_USE=^^ ( lua_single_target_lua5-1 ) theora? ( vorbis ) SLOT=0/3 SRC_URI=https://github.com/Wargus/stratagus/archive/v3.3.1.tar.gz -> stratagus-3.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4f0b552db67661fb1bd14fd3f9e8ce08 diff --git a/metadata/md5-cache/games-engines/stratagus-3.3.2 b/metadata/md5-cache/games-engines/stratagus-3.3.2 index 121b8e249bc6..e5c96ca3fb7f 100644 --- a/metadata/md5-cache/games-engines/stratagus-3.3.2 +++ b/metadata/md5-cache/games-engines/stratagus-3.3.2 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) dev-db/sqlite:3 dev-lua/t REQUIRED_USE=^^ ( lua_single_target_lua5-1 ) theora? ( vorbis ) SLOT=0/3 SRC_URI=https://github.com/Wargus/stratagus/archive/v3.3.2.tar.gz -> stratagus-3.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4f0b552db67661fb1bd14fd3f9e8ce08 diff --git a/metadata/md5-cache/games-fps/Manifest.gz b/metadata/md5-cache/games-fps/Manifest.gz index d6b57239996d..2d94d8cba4bd 100644 Binary files a/metadata/md5-cache/games-fps/Manifest.gz and b/metadata/md5-cache/games-fps/Manifest.gz differ diff --git a/metadata/md5-cache/games-fps/avp-20150214-r1 b/metadata/md5-cache/games-fps/avp-20150214-r1 index 108ff7ec7599..17daa14afc72 100644 --- a/metadata/md5-cache/games-fps/avp-20150214-r1 +++ b/metadata/md5-cache/games-fps/avp-20150214-r1 @@ -11,5 +11,5 @@ RDEPEND=media-libs/libsdl[video,joystick,opengl] media-libs/openal RESTRICT=bindist mirror SLOT=0 SRC_URI=http://www.icculus.org/avp/files/avp-20150214.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a358287f9b73aaf7ab8bd520042caf3d diff --git a/metadata/md5-cache/games-fps/doomsday-2.3.1 b/metadata/md5-cache/games-fps/doomsday-2.3.1 index f5e271ed7d48..a912c8fac2a5 100644 --- a/metadata/md5-cache/games-fps/doomsday-2.3.1 +++ b/metadata/md5-cache/games-fps/doomsday-2.3.1 @@ -13,5 +13,5 @@ PDEPEND=demo? ( games-fps/doom-data ) freedoom? ( games-fps/freedoom ) RDEPEND=dev-qt/qtcore:5= dev-qt/qtgui:5=[-gles2-only] dev-qt/qtnetwork:5= dev-qt/qtopengl:5= dev-qt/qtwidgets:5= dev-qt/qtx11extras:5= media-libs/assimp:= net-misc/curl sys-libs/zlib x11-libs/libX11 display-mode? ( x11-libs/libXrandr x11-libs/libXxf86vm ) fluidsynth? ( media-sound/fluidsynth:= ) openal? ( media-libs/openal ) tools? ( sys-libs/ncurses:0= ) SLOT=0 SRC_URI=https://downloads.sourceforge.net/project/deng/Doomsday%20Engine/2.3.1/doomsday-2.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ce12d3c2f0f83bd6a5df53e74f1dcc9 diff --git a/metadata/md5-cache/games-fps/gzdoom-4.10.0 b/metadata/md5-cache/games-fps/gzdoom-4.10.0 index 3234f0127706..4729cbfbf8f9 100644 --- a/metadata/md5-cache/games-fps/gzdoom-4.10.0 +++ b/metadata/md5-cache/games-fps/gzdoom-4.10.0 @@ -12,5 +12,5 @@ LICENSE=Apache-2.0 BSD BZIP2 GPL-3 LGPL-2.1+ LGPL-3 MIT non-free? ( Activision C RDEPEND=app-arch/bzip2 media-libs/libjpeg-turbo:0= media-libs/libsdl2[gles2?,opengl,vulkan?] media-libs/libvpx:= media-libs/openal media-libs/zmusic sys-libs/zlib gtk? ( x11-libs/gtk+:3 ) SLOT=0 SRC_URI=https://github.com/coelckers/gzdoom/archive/g4.10.0.tar.gz -> gzdoom-4.10.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4ff588d41fff03ee3f6d6c2b68dab4d8 diff --git a/metadata/md5-cache/games-fps/gzdoom-4.8.2-r1 b/metadata/md5-cache/games-fps/gzdoom-4.8.2-r1 index 77ad0b7c2e2b..e4e3f44c46e7 100644 --- a/metadata/md5-cache/games-fps/gzdoom-4.8.2-r1 +++ b/metadata/md5-cache/games-fps/gzdoom-4.8.2-r1 @@ -12,5 +12,5 @@ LICENSE=Apache-2.0 BSD BZIP2 GPL-3 LGPL-2.1+ LGPL-3 MIT non-free? ( Activision C RDEPEND=app-arch/bzip2 media-libs/libjpeg-turbo:0= media-libs/libsdl2[gles2?,opengl,vulkan?] media-libs/libvpx:= media-libs/openal media-libs/zmusic sys-libs/zlib gtk? ( x11-libs/gtk+:3 ) SLOT=0 SRC_URI=https://github.com/coelckers/gzdoom/archive/g4.8.2.tar.gz -> gzdoom-4.8.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d98ab0162867c983fd1339aa2d25c7ac diff --git a/metadata/md5-cache/games-fps/prboom-plus-2.6.2 b/metadata/md5-cache/games-fps/prboom-plus-2.6.2 index 1d85aad24f8a..f66c6a0e89c1 100644 --- a/metadata/md5-cache/games-fps/prboom-plus-2.6.2 +++ b/metadata/md5-cache/games-fps/prboom-plus-2.6.2 @@ -13,5 +13,5 @@ RDEPEND=media-libs/libsdl2[opengl?,joystick,sound,video] alsa? ( media-libs/alsa REQUIRED_USE=server? ( net ) SLOT=0 SRC_URI=http://deb.debian.org/debian/pool/main/p/prboom-plus/prboom-plus_2.6.2.orig.tar.gz -> prboom-plus-2.6.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e5dee25c7340613c3ef8ed51a4b02472 diff --git a/metadata/md5-cache/games-kids/Manifest.gz b/metadata/md5-cache/games-kids/Manifest.gz index 2850141b1ed8..fa40d1759052 100644 Binary files a/metadata/md5-cache/games-kids/Manifest.gz and b/metadata/md5-cache/games-kids/Manifest.gz differ diff --git a/metadata/md5-cache/games-kids/gcompris-2.4 b/metadata/md5-cache/games-kids/gcompris-2.4 index bad8d8081e24..75835c30f0eb 100644 --- a/metadata/md5-cache/games-kids/gcompris-2.4 +++ b/metadata/md5-cache/games-kids/gcompris-2.4 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmulti RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gcompris.net/download/qt/src/gcompris-qt-2.4.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=54a016e47887270689ec8a4a34f3ef5a diff --git a/metadata/md5-cache/games-kids/memonix-1.6-r1 b/metadata/md5-cache/games-kids/memonix-1.6-r1 index b955bd8be018..2bdd8e7afb74 100644 --- a/metadata/md5-cache/games-kids/memonix-1.6-r1 +++ b/metadata/md5-cache/games-kids/memonix-1.6-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=media-libs/libsdl:0[sound,opengl,video,X] media-libs/sdl-image[jpeg] media-libs/sdl-mixer[vorbis] SLOT=0 SRC_URI=http://www.viewizard.com/download/memonix_1.6_src.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=47dfadcb327f4558721638fdc8d9e157 diff --git a/metadata/md5-cache/games-misc/Manifest.gz b/metadata/md5-cache/games-misc/Manifest.gz index 0a65f6c6e803..0a7db504ff27 100644 Binary files a/metadata/md5-cache/games-misc/Manifest.gz and b/metadata/md5-cache/games-misc/Manifest.gz differ diff --git a/metadata/md5-cache/games-misc/ballerburg-1.2.0-r1 b/metadata/md5-cache/games-misc/ballerburg-1.2.0-r1 index b863fe00722e..74b398ab86ea 100644 --- a/metadata/md5-cache/games-misc/ballerburg-1.2.0-r1 +++ b/metadata/md5-cache/games-misc/ballerburg-1.2.0-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=media-libs/libsdl SLOT=0 SRC_URI=https://download.tuxfamily.org/baller/ballerburg-1.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=74606a9c2c60361826ac78eb580778aa diff --git a/metadata/md5-cache/games-misc/fortune-mod-3.12.0 b/metadata/md5-cache/games-misc/fortune-mod-3.12.0 index fbb71ed83ed6..e621f36fcb90 100644 --- a/metadata/md5-cache/games-misc/fortune-mod-3.12.0 +++ b/metadata/md5-cache/games-misc/fortune-mod-3.12.0 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=app-text/recode:= !games-misc/fortune-mod-tao SLOT=0 SRC_URI=https://github.com/shlomif/fortune-mod/releases/download/fortune-mod-3.12.0/fortune-mod-3.12.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=adaa41df11ae4104751ffeeb7c53ed88 diff --git a/metadata/md5-cache/games-misc/fortune-mod-3.14.1-r1 b/metadata/md5-cache/games-misc/fortune-mod-3.14.1-r1 index a7681e78c0ab..1e8c85fe9715 100644 --- a/metadata/md5-cache/games-misc/fortune-mod-3.14.1-r1 +++ b/metadata/md5-cache/games-misc/fortune-mod-3.14.1-r1 @@ -12,5 +12,5 @@ RDEPEND=app-text/recode:= !games-misc/fortune-mod-tao RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.shlomifish.org/open-source/projects/fortune-mod/arcs/fortune-mod-3.14.1.tar.xz https://github.com/shlomif/fortune-mod/releases/download/fortune-mod-3.14.1/fortune-mod-3.14.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5efd1aa92088415379d127e537bbd0fe diff --git a/metadata/md5-cache/games-misc/fortune-mod-3.16.0-r1 b/metadata/md5-cache/games-misc/fortune-mod-3.16.0-r1 index e9b73cd6bb1a..4e52f311541d 100644 --- a/metadata/md5-cache/games-misc/fortune-mod-3.16.0-r1 +++ b/metadata/md5-cache/games-misc/fortune-mod-3.16.0-r1 @@ -12,5 +12,5 @@ RDEPEND=app-text/recode:= dev-libs/rinutils !games-misc/fortune-mod-tao RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.shlomifish.org/open-source/projects/fortune-mod/arcs/fortune-mod-3.16.0.tar.xz https://github.com/shlomif/fortune-mod/releases/download/fortune-mod-3.16.0/fortune-mod-3.16.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=55ae100afb2e1b183e43c5691540a00d diff --git a/metadata/md5-cache/games-misc/fortune-mod-3.18.0 b/metadata/md5-cache/games-misc/fortune-mod-3.18.0 index 96d29853a2e6..e915ca41287d 100644 --- a/metadata/md5-cache/games-misc/fortune-mod-3.18.0 +++ b/metadata/md5-cache/games-misc/fortune-mod-3.18.0 @@ -12,5 +12,5 @@ RDEPEND=app-text/recode:= dev-libs/rinutils !games-misc/fortune-mod-tao RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.shlomifish.org/open-source/projects/fortune-mod/arcs/fortune-mod-3.18.0.tar.xz https://github.com/shlomif/fortune-mod/releases/download/fortune-mod-3.18.0/fortune-mod-3.18.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=55ae100afb2e1b183e43c5691540a00d diff --git a/metadata/md5-cache/games-misc/solarus-quest-editor-1.6.5 b/metadata/md5-cache/games-misc/solarus-quest-editor-1.6.5 index 85d3b6f59c34..818afa08c82c 100644 --- a/metadata/md5-cache/games-misc/solarus-quest-editor-1.6.5 +++ b/metadata/md5-cache/games-misc/solarus-quest-editor-1.6.5 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1 REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) SLOT=0 SRC_URI=https://gitlab.com/solarus-games/solarus-quest-editor/-/archive/v1.6.5/solarus-quest-editor-v1.6.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=251530b672fe3681af232f8a52090497 diff --git a/metadata/md5-cache/games-misc/solarus-quest-editor-9999 b/metadata/md5-cache/games-misc/solarus-quest-editor-9999 index 18c428d3af78..940e521a01e7 100644 --- a/metadata/md5-cache/games-misc/solarus-quest-editor-9999 +++ b/metadata/md5-cache/games-misc/solarus-quest-editor-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) dev-games/physfs dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 media-libs/libmodplug >=media-libs/libsdl2-2.0.1[X,joystick,video] media-libs/libvorbis media-libs/openal media-libs/sdl2-image[png] >=media-libs/sdl2-ttf-2.0.12 REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=251530b672fe3681af232f8a52090497 diff --git a/metadata/md5-cache/games-puzzle/Manifest.gz b/metadata/md5-cache/games-puzzle/Manifest.gz index a88187d00307..ba18252788f3 100644 Binary files a/metadata/md5-cache/games-puzzle/Manifest.gz and b/metadata/md5-cache/games-puzzle/Manifest.gz differ diff --git a/metadata/md5-cache/games-puzzle/atomix-44.0 b/metadata/md5-cache/games-puzzle/atomix-44.0 new file mode 100644 index 000000000000..ca0c3c9d2bd2 --- /dev/null +++ b/metadata/md5-cache/games-puzzle/atomix-44.0 @@ -0,0 +1,15 @@ +BDEPEND=>=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=>=x11-libs/gtk+-3.10:3 >=x11-libs/gdk-pixbuf-2.0.5:2 >=dev-libs/glib-2.36.0:2 dev-libs/libgnome-games-support:1= +DESCRIPTION=Mind game - build molecules out of single atoms +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Atomix +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org meson xdg +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+ +RDEPEND=>=x11-libs/gtk+-3.10:3 >=x11-libs/gdk-pixbuf-2.0.5:2 >=dev-libs/glib-2.36.0:2 dev-libs/libgnome-games-support:1= +SLOT=0 +SRC_URI=mirror://gnome/sources/atomix/44/atomix-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=825170db4ce1a462b559d3792e13177a diff --git a/metadata/md5-cache/games-puzzle/ksokoban-0.5.0_pre20210905 b/metadata/md5-cache/games-puzzle/ksokoban-0.5.0_pre20210905 index e00d3bcf1181..35372b7f93f3 100644 --- a/metadata/md5-cache/games-puzzle/ksokoban-0.5.0_pre20210905 +++ b/metadata/md5-cache/games-puzzle/ksokoban-0.5.0_pre20210905 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtwidgets-5.15.2:5 >=kde-frameworks/kconfig-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kio-5.82.0:5 >=kde-frameworks/kwidgetsaddons-5.82.0:5 >=kde-frameworks/kxmlgui-5.82.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 SRC_URI=mirror://gentoo/ksokoban-0.5.0_pre20210905-39b9d1c1.tar.gz https://invent.kde.org/kde/ksokoban/-/archive/39b9d1c1702a21a6e0fae82876c29c1f6bb77fae/ksokoban-39b9d1c1702a21a6e0fae82876c29c1f6bb77fae.tar.gz -> ksokoban-0.5.0_pre20210905-39b9d1c1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1161df28793c4d9c9b75edee6f51cad2 diff --git a/metadata/md5-cache/games-puzzle/ksokoban-9999 b/metadata/md5-cache/games-puzzle/ksokoban-9999 index c12b4ee52777..0d92ad36fdad 100644 --- a/metadata/md5-cache/games-puzzle/ksokoban-9999 +++ b/metadata/md5-cache/games-puzzle/ksokoban-9999 @@ -11,5 +11,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=>=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtwidgets-5.15.2:5 >=kde-frameworks/kconfig-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kio-5.82.0:5 >=kde-frameworks/kwidgetsaddons-5.82.0:5 >=kde-frameworks/kxmlgui-5.82.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c656cec73a057ff83b3269aa996654d9 diff --git a/metadata/md5-cache/games-puzzle/meandmyshadow-0.5a b/metadata/md5-cache/games-puzzle/meandmyshadow-0.5a index 246c36839f86..0dde9125acd6 100644 --- a/metadata/md5-cache/games-puzzle/meandmyshadow-0.5a +++ b/metadata/md5-cache/games-puzzle/meandmyshadow-0.5a @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? REQUIRED_USE=^^ ( lua_single_target_lua5-3 lua_single_target_lua5-4 ) SLOT=0 SRC_URI=mirror://sourceforge/meandmyshadow/0.5a/meandmyshadow-0.5a-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8ab1dc385d9b8c11bda80737eec2d665 diff --git a/metadata/md5-cache/games-roguelike/Manifest.gz b/metadata/md5-cache/games-roguelike/Manifest.gz index 944c4b10da58..565e4798cdfe 100644 Binary files a/metadata/md5-cache/games-roguelike/Manifest.gz and b/metadata/md5-cache/games-roguelike/Manifest.gz differ diff --git a/metadata/md5-cache/games-roguelike/moria-5.7.14-r1 b/metadata/md5-cache/games-roguelike/moria-5.7.14-r1 index 541a6782f65e..191bffd2f1d5 100644 --- a/metadata/md5-cache/games-roguelike/moria-5.7.14-r1 +++ b/metadata/md5-cache/games-roguelike/moria-5.7.14-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=acct-group/gamestat >=sys-libs/ncurses-6.0:0= SLOT=0 SRC_URI=https://github.com/dungeons-of-moria/umoria/archive/v5.7.14.tar.gz -> moria-5.7.14.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cdf0ccf9809bb78087f124c72804dc9b diff --git a/metadata/md5-cache/games-rpg/Manifest.gz b/metadata/md5-cache/games-rpg/Manifest.gz index 97fe5410b6cf..ac1ecbaa00e7 100644 Binary files a/metadata/md5-cache/games-rpg/Manifest.gz and b/metadata/md5-cache/games-rpg/Manifest.gz differ diff --git a/metadata/md5-cache/games-rpg/sumwars-0.5.8-r101 b/metadata/md5-cache/games-rpg/sumwars-0.5.8-r101 index d63d3b1a1c19..b415e09c8841 100644 --- a/metadata/md5-cache/games-rpg/sumwars-0.5.8-r101 +++ b/metadata/md5-cache/games-rpg/sumwars-0.5.8-r101 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) dev-games/cegui[ogre,true REQUIRED_USE=^^ ( lua_single_target_lua5-1 ) SLOT=0 SRC_URI=mirror://sourceforge/sumwars/sumwars-0.5.8-src.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=69d8761f293455d1d3052fb002b4435f diff --git a/metadata/md5-cache/games-rpg/zsdx-1.12.3 b/metadata/md5-cache/games-rpg/zsdx-1.12.3 index e12d72957abe..2624e43bc1e3 100644 --- a/metadata/md5-cache/games-rpg/zsdx-1.12.3 +++ b/metadata/md5-cache/games-rpg/zsdx-1.12.3 @@ -11,5 +11,5 @@ RDEPEND=>=games-engines/solarus-1.6 =games-engines/solarus-1.6 =dev-java/java-config-2.2.0-r3 +DESCRIPTION=The official server for the sandbox video game +EAPI=8 +HOMEPAGE=https://www.minecraft.net/ +INHERIT=readme.gentoo-r1 java-pkg-2 systemd +KEYWORDS=~amd64 ~arm64 +LICENSE=Mojang +RDEPEND=acct-group/minecraft acct-user/minecraft app-misc/dtach || ( dev-java/openjdk:17 dev-java/openjdk-bin:17 ) >=dev-java/java-config-2.2.0-r3 +RESTRICT=bindist mirror +SLOT=0 +SRC_URI=https://launcher.mojang.com/v1/objects/8f3112a1049751cc472ec13e397eade5336ca7ae/server.jar -> minecraft-server-1.19.4.jar +_eclasses_=java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=e2eadbc965d8f12cfa81ff71a0741934 diff --git a/metadata/md5-cache/games-server/pvpgn-1.99.7.2.1-r1 b/metadata/md5-cache/games-server/pvpgn-1.99.7.2.1-r1 index f6bf9c815545..9b6d2f176975 100644 --- a/metadata/md5-cache/games-server/pvpgn-1.99.7.2.1-r1 +++ b/metadata/md5-cache/games-server/pvpgn-1.99.7.2.1-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=mysql? ( dev-db/mysql-connector-c:0= ) odbc? ( dev-db/libiodbc ) postgres? ( dev-db/postgresql:*[server] ) sqlite? ( dev-db/sqlite ) acct-user/pvpgn acct-group/pvpgn SLOT=0 SRC_URI=https://github.com/pvpgn/pvpgn-server/archive/refs/tags/1.99.7.2.1.tar.gz -> pvpgn-1.99.7.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c5ff7bfcf29954862f85a33d8ec2cc70 diff --git a/metadata/md5-cache/games-simulation/EmptyEpsilon-2022.03.16 b/metadata/md5-cache/games-simulation/EmptyEpsilon-2022.03.16 index 00accedcac82..f7ed2c8d5fe5 100644 --- a/metadata/md5-cache/games-simulation/EmptyEpsilon-2022.03.16 +++ b/metadata/md5-cache/games-simulation/EmptyEpsilon-2022.03.16 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 GPL-2 CC-BY-SA-3.0 MIT RDEPEND=dev-cpp/nlohmann_json media-libs/freetype media-libs/libsdl2 >=media-libs/glm-0.9.9.8 SLOT=0 SRC_URI=https://github.com/daid/EmptyEpsilon/archive/EE-2022.03.16.tar.gz -> EmptyEpsilon-2022.03.16.tar.gz https://github.com/daid/SeriousProton/archive/EE-2022.03.16.tar.gz -> SeriousProton-2022.03.16.tar.gz https://github.com/BinomialLLC/basis_universal/archive/refs/tags/v1_15_update2.tar.gz -> basis_universal_1_15_update2.tar.gz https://github.com/zeux/meshoptimizer/archive/refs/tags/v0.16.tar.gz -> meshoptimizer-0.16.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=eeaceee6ea159c7221f29a57ed7e7b82 diff --git a/metadata/md5-cache/games-simulation/EmptyEpsilon-2022.10.28 b/metadata/md5-cache/games-simulation/EmptyEpsilon-2022.10.28 index 84c4235249d9..c32c242df573 100644 --- a/metadata/md5-cache/games-simulation/EmptyEpsilon-2022.10.28 +++ b/metadata/md5-cache/games-simulation/EmptyEpsilon-2022.10.28 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 GPL-2 CC-BY-SA-3.0 MIT RDEPEND=dev-cpp/nlohmann_json media-libs/freetype media-libs/libsdl2 >=media-libs/glm-0.9.9.8 SLOT=0 SRC_URI=https://github.com/daid/EmptyEpsilon/archive/EE-2022.10.28.tar.gz -> EmptyEpsilon-2022.10.28.tar.gz https://github.com/daid/SeriousProton/archive/EE-2022.10.28.tar.gz -> SeriousProton-2022.10.28.tar.gz https://github.com/BinomialLLC/basis_universal/archive/refs/tags/v1_15_update2.tar.gz -> basis_universal_1_15_update2.tar.gz https://github.com/zeux/meshoptimizer/archive/refs/tags/v0.16.tar.gz -> meshoptimizer-0.16.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f0c65a68111526b587559c1ed2ab7e8f diff --git a/metadata/md5-cache/games-simulation/Manifest.gz b/metadata/md5-cache/games-simulation/Manifest.gz index cfe6dfa0c108..70c97acf73c8 100644 Binary files a/metadata/md5-cache/games-simulation/Manifest.gz and b/metadata/md5-cache/games-simulation/Manifest.gz differ diff --git a/metadata/md5-cache/games-simulation/corsix-th-0.66-r1 b/metadata/md5-cache/games-simulation/corsix-th-0.66-r1 index 2e21bc1c19fa..dd918999f009 100644 --- a/metadata/md5-cache/games-simulation/corsix-th-0.66-r1 +++ b/metadata/md5-cache/games-simulation/corsix-th-0.66-r1 @@ -13,5 +13,5 @@ RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? REQUIRED_USE=^^ ( lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) SLOT=0 SRC_URI=https://github.com/CorsixTH/CorsixTH/archive/v0.66.tar.gz -> corsix-th-0.66.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8117fe1306d78bd8b2aafe2667e9fcdb diff --git a/metadata/md5-cache/games-simulation/flightgear-2020.3.17-r1 b/metadata/md5-cache/games-simulation/flightgear-2020.3.17-r1 index 2bce3e395445..0afbc31ce896 100644 --- a/metadata/md5-cache/games-simulation/flightgear-2020.3.17-r1 +++ b/metadata/md5-cache/games-simulation/flightgear-2020.3.17-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-db/sqlite:3 dev-games/openscenegraph[jpeg,png] ~dev-games/simgear-20 RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/flightgear/flightgear-2020.3.17.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a5d57ed930c0dad4aa4f7a025c4c8efb diff --git a/metadata/md5-cache/games-simulation/flightgear-9999 b/metadata/md5-cache/games-simulation/flightgear-9999 index 019d6834ae57..8d2e247c2a86 100644 --- a/metadata/md5-cache/games-simulation/flightgear-9999 +++ b/metadata/md5-cache/games-simulation/flightgear-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-db/sqlite:3 dev-games/openscenegraph[jpeg,png] ~dev-games/simgear-9999[gdal=] media-libs/openal >=media-libs/plib-1.8.5 >=media-libs/speex-1.2.0:0 media-libs/speexdsp:0 media-sound/gsm sys-libs/zlib virtual/glu x11-libs/libX11 dbus? ( >=sys-apps/dbus-1.6.18-r1 ) gdal? ( >=sci-libs/gdal-2.0.0:= ) qt5? ( >=dev-qt/qtcore-5.7.1:5 >=dev-qt/qtdeclarative-5.7.1:5 >=dev-qt/qtgui-5.7.1:5 >=dev-qt/qtnetwork-5.7.1:5 >=dev-qt/qtwidgets-5.7.1:5 ) udev? ( virtual/udev ) utils? ( media-libs/freeglut media-libs/freetype:2 media-libs/glew:0 media-libs/libpng:0 virtual/opengl qt5? ( >=dev-qt/qtwebsockets-5.7.1:5 ) ) ~games-simulation/flightgear-data-9999 RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7917bfa80c17e00acb8d5a937a2fdf83 diff --git a/metadata/md5-cache/games-simulation/openrct2-0.4.3 b/metadata/md5-cache/games-simulation/openrct2-0.4.3 index f79403107651..6d8bd9c43c05 100644 --- a/metadata/md5-cache/games-simulation/openrct2-0.4.3 +++ b/metadata/md5-cache/games-simulation/openrct2-0.4.3 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/icu:= dev-libs/jansson:= dev-libs/libzip:= media-libs/libpng:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/OpenRCT2/OpenRCT2/archive/v0.4.3.tar.gz -> openrct2-0.4.3.tar.gz https://github.com/OpenRCT2/objects/releases/download/v1.3.7/objects.zip -> openrct2-objects-1.3.7.zip https://github.com/OpenRCT2/title-sequences/releases/download/v0.4.0/title-sequences.zip -> openrct2-title-sequences-0.4.0.zip test? ( https://github.com/OpenRCT2/replays/releases/download/v0.0.70/replays.zip -> openrct2-replays-0.0.70.zip ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0390942718aa79ef7f301d872121d213 diff --git a/metadata/md5-cache/games-simulation/openrct2-9999 b/metadata/md5-cache/games-simulation/openrct2-9999 index 64a72d668312..1ecd44db5394 100644 --- a/metadata/md5-cache/games-simulation/openrct2-9999 +++ b/metadata/md5-cache/games-simulation/openrct2-9999 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/icu:= dev-libs/jansson:= dev-libs/libzip:= media-libs/libpng:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/OpenRCT2/objects/releases/download/v1.3.7/objects.zip -> openrct2-objects-1.3.7.zip https://github.com/OpenRCT2/title-sequences/releases/download/v0.4.0/title-sequences.zip -> openrct2-title-sequences-0.4.0.zip test? ( https://github.com/OpenRCT2/replays/releases/download/v0.0.70/replays.zip -> openrct2-replays-0.0.70.zip ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=86f9e46110572f83b5b02e56d551ed3d diff --git a/metadata/md5-cache/games-simulation/openttd-13.0 b/metadata/md5-cache/games-simulation/openttd-13.0 index e95f6b2fedd7..33f70c6585cb 100644 --- a/metadata/md5-cache/games-simulation/openttd-13.0 +++ b/metadata/md5-cache/games-simulation/openttd-13.0 @@ -14,5 +14,5 @@ RDEPEND=dedicated? ( acct-group/openttd acct-user/openttd app-misc/dtach ) !dedi REQUIRED_USE=!dedicated? ( || ( allegro sdl ) ) SLOT=0 SRC_URI=https://cdn.openttd.org/openttd-releases/13.0/openttd-13.0-source.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ac87febcd222763aef5314924e7f799d diff --git a/metadata/md5-cache/games-sports/Manifest.gz b/metadata/md5-cache/games-sports/Manifest.gz index 2853f44016c0..7d0286cef248 100644 Binary files a/metadata/md5-cache/games-sports/Manifest.gz and b/metadata/md5-cache/games-sports/Manifest.gz differ diff --git a/metadata/md5-cache/games-sports/dustrac-1.13.0 b/metadata/md5-cache/games-sports/dustrac-1.13.0 index 725192aff783..410eec2dd57d 100644 --- a/metadata/md5-cache/games-sports/dustrac-1.13.0 +++ b/metadata/md5-cache/games-sports/dustrac-1.13.0 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtxml:5 media-fo RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/juzzlin/DustRacing2D/archive/1.13.0.tar.gz -> dustrac-1.13.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a93719ee6d66f9b07c29dae862110078 diff --git a/metadata/md5-cache/games-sports/speed-dreams-2.2.3 b/metadata/md5-cache/games-sports/speed-dreams-2.2.3 index 47dec0dea07a..d45203ab871e 100644 --- a/metadata/md5-cache/games-sports/speed-dreams-2.2.3 +++ b/metadata/md5-cache/games-sports/speed-dreams-2.2.3 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ BitstreamVera CC0-1.0 Free-Art-1.2 OFL-1.1 RDEPEND=dev-games/freesolid dev-libs/expat media-libs/libpng:= media-libs/libsdl2[X,haptic,opengl,joystick,video] media-libs/libvorbis media-libs/openal media-libs/plib net-libs/enet:1.3 sys-libs/zlib:= virtual/glu virtual/jpeg virtual/opengl osggraph? ( dev-games/openscenegraph:=[png] ) webstats? ( net-misc/curl ) SLOT=0 SRC_URI=mirror://sourceforge/speed-dreams/speed-dreams-src-base-2.2.3-r7616.tar.xz mirror://sourceforge/speed-dreams/speed-dreams-src-hq-cars-and-tracks-2.2.3-r7616.tar.xz mirror://sourceforge/speed-dreams/speed-dreams-src-more-hq-cars-and-tracks-2.2.3-r7616.tar.xz mirror://sourceforge/speed-dreams/speed-dreams-src-wip-cars-and-tracks-2.2.3-r7616.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8a43befe8b976564747d90ada64515c6 diff --git a/metadata/md5-cache/games-sports/xmoto-0.6.1-r100 b/metadata/md5-cache/games-sports/xmoto-0.6.1-r100 index 21059af69cbe..efccebcecddb 100644 --- a/metadata/md5-cache/games-sports/xmoto-0.6.1-r100 +++ b/metadata/md5-cache/games-sports/xmoto-0.6.1-r100 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2 dev-db/sqlite:3 dev-games/ode[double-precision=] lua_sing REQUIRED_USE=^^ ( lua_single_target_lua5-1 lua_single_target_lua5-3 ) SLOT=0 SRC_URI=https://github.com/xmoto/xmoto/archive/0.6.1.tar.gz -> xmoto-0.6.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c84301632f1444507c18ec39b09bca94 diff --git a/metadata/md5-cache/games-strategy/Manifest.gz b/metadata/md5-cache/games-strategy/Manifest.gz index 6101a5095991..8072469612bb 100644 Binary files a/metadata/md5-cache/games-strategy/Manifest.gz and b/metadata/md5-cache/games-strategy/Manifest.gz differ diff --git a/metadata/md5-cache/games-strategy/augustus-3.1.0 b/metadata/md5-cache/games-strategy/augustus-3.1.0 index cdef7de3adb9..856dbd7b1c14 100644 --- a/metadata/md5-cache/games-strategy/augustus-3.1.0 +++ b/metadata/md5-cache/games-strategy/augustus-3.1.0 @@ -11,5 +11,5 @@ LICENSE=AGPL-3 RDEPEND=dev-libs/expat media-libs/libpng:= media-libs/libsdl2[joystick,video,sound] media-libs/sdl2-mixer SLOT=0 SRC_URI=https://github.com/Keriew/augustus/archive/refs/tags/v3.1.0.tar.gz -> augustus-3.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=df0dca0a934ce7886bdd7bb8501afe22 diff --git a/metadata/md5-cache/games-strategy/colobot-0.1.12 b/metadata/md5-cache/games-strategy/colobot-0.1.12 index ac8ccc3dd7ba..6247921f1cca 100644 --- a/metadata/md5-cache/games-strategy/colobot-0.1.12 +++ b/metadata/md5-cache/games-strategy/colobot-0.1.12 @@ -12,5 +12,5 @@ RDEPEND=dev-games/physfs dev-libs/boost:= media-libs/glew:0 media-libs/libogg me RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/colobot/colobot/archive/colobot-gold-0.1.12-alpha.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c62ec396e6257f6065aa51ca37896c1a diff --git a/metadata/md5-cache/games-strategy/colobot-0.2.0_alpha b/metadata/md5-cache/games-strategy/colobot-0.2.0_alpha index 695d408d5ad7..2a11972bebcc 100644 --- a/metadata/md5-cache/games-strategy/colobot-0.2.0_alpha +++ b/metadata/md5-cache/games-strategy/colobot-0.2.0_alpha @@ -12,5 +12,5 @@ RDEPEND=dev-games/physfs dev-libs/boost:= media-libs/glew:0 media-libs/libogg me RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/colobot/colobot/archive/colobot-gold-0.2.0-alpha.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=abfc3e0c25c876043c95ff139707d86d diff --git a/metadata/md5-cache/games-strategy/colobot-9999 b/metadata/md5-cache/games-strategy/colobot-9999 index 1ad224f88f72..5f9227a285bd 100644 --- a/metadata/md5-cache/games-strategy/colobot-9999 +++ b/metadata/md5-cache/games-strategy/colobot-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-games/physfs dev-libs/boost:= media-libs/glew:0 media-libs/libogg media-libs/libpng:0= media-libs/libsdl2:= media-libs/libsndfile:= media-libs/libvorbis:= media-libs/sdl2-image media-libs/sdl2-ttf media-sound/vorbis-tools openal? ( media-libs/openal ) games-strategy/colobot-data RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1e9251ce1ba3a77c606f94d918541e03 diff --git a/metadata/md5-cache/games-strategy/colobot-data-0.1.12 b/metadata/md5-cache/games-strategy/colobot-data-0.1.12 index 40649602d376..28a753131ca0 100644 --- a/metadata/md5-cache/games-strategy/colobot-data-0.1.12 +++ b/metadata/md5-cache/games-strategy/colobot-data-0.1.12 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 LICENSE=GPL-3+ SLOT=0 SRC_URI=https://github.com/colobot/colobot-data/archive/colobot-gold-0.1.12-alpha.tar.gz -> colobot-gold-0.1.12-alpha.data.tar.gz music? ( https://colobot.info/files/music/colobot-music_ogg_0.1.12-alpha.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a77218a38fc7f2ce895e608247c06a4c diff --git a/metadata/md5-cache/games-strategy/colobot-data-0.2.0_alpha b/metadata/md5-cache/games-strategy/colobot-data-0.2.0_alpha index b5fd2dcd9ae0..1665777736c7 100644 --- a/metadata/md5-cache/games-strategy/colobot-data-0.2.0_alpha +++ b/metadata/md5-cache/games-strategy/colobot-data-0.2.0_alpha @@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~arm64 LICENSE=GPL-3+ SLOT=0 SRC_URI=https://github.com/colobot/colobot-data/archive/colobot-gold-0.2.0-alpha.tar.gz -> colobot-gold-0.2.0-alpha.data.tar.gz music? ( https://colobot.info/files/music/colobot-music_ogg_0.2.0-alpha.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=85bf71f8ff821bfbd0729a7861a044d4 diff --git a/metadata/md5-cache/games-strategy/freeorion-0.4.10.2-r1 b/metadata/md5-cache/games-strategy/freeorion-0.4.10.2-r1 index 34e291dc3b60..acb54b69cae7 100644 --- a/metadata/md5-cache/games-strategy/freeorion-0.4.10.2-r1 +++ b/metadata/md5-cache/games-strategy/freeorion-0.4.10.2-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/freeorion/freeorion/releases/download/v0.4.10.2/FreeOrion_v0.4.10.2_2021-08-01.f663dad_Source.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=687198c49fa582c00d84b16f8c386f57 diff --git a/metadata/md5-cache/games-strategy/freeorion-9999 b/metadata/md5-cache/games-strategy/freeorion-9999 index bdd37aeb9e5b..80ca82cb9bc4 100644 --- a/metadata/md5-cache/games-strategy/freeorion-9999 +++ b/metadata/md5-cache/games-strategy/freeorion-9999 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b9e25445b7079e7e0dae2b390f21a2b4 diff --git a/metadata/md5-cache/games-strategy/freesynd-0.7.5 b/metadata/md5-cache/games-strategy/freesynd-0.7.5 index a878397d8734..3bdcf909e5f4 100644 --- a/metadata/md5-cache/games-strategy/freesynd-0.7.5 +++ b/metadata/md5-cache/games-strategy/freesynd-0.7.5 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=media-libs/libogg media-libs/libpng:0= media-libs/libsdl[X,sound,video] media-libs/libvorbis media-libs/sdl-mixer[mp3,vorbis] media-libs/sdl-image[png] SLOT=0 SRC_URI=mirror://sourceforge/freesynd/freesynd-0.7.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3b6a5ab7563f83feaeb62cd8269a4ff1 diff --git a/metadata/md5-cache/games-strategy/hedgewars-1.0.0-r100 b/metadata/md5-cache/games-strategy/hedgewars-1.0.0-r100 index 1867bfba2ce6..d78a4fb9fed6 100644 --- a/metadata/md5-cache/games-strategy/hedgewars-1.0.0-r100 +++ b/metadata/md5-cache/games-strategy/hedgewars-1.0.0-r100 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) >=dev-games/physfs-3.0.1 REQUIRED_USE=^^ ( lua_single_target_lua5-1 ) SLOT=0 SRC_URI=https://www.hedgewars.org/download/releases/hedgewars-src-1.0.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b8ecb93125a8376007b15f06cd0fc6e diff --git a/metadata/md5-cache/games-strategy/hedgewars-1.0.2 b/metadata/md5-cache/games-strategy/hedgewars-1.0.2 index 94d537942c68..dd51276979b3 100644 --- a/metadata/md5-cache/games-strategy/hedgewars-1.0.2 +++ b/metadata/md5-cache/games-strategy/hedgewars-1.0.2 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) >=dev-games/physfs-3.0.1 REQUIRED_USE=^^ ( lua_single_target_lua5-1 ) SLOT=0 SRC_URI=https://www.hedgewars.org/download/releases/hedgewars-src-1.0.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f4482803bd7d645b0dd231894751eb52 diff --git a/metadata/md5-cache/games-strategy/ja2-stracciatella-0.17.0 b/metadata/md5-cache/games-strategy/ja2-stracciatella-0.17.0 index b5ce07f3bb03..67974f277d6b 100644 --- a/metadata/md5-cache/games-strategy/ja2-stracciatella-0.17.0 +++ b/metadata/md5-cache/games-strategy/ja2-stracciatella-0.17.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( l10n_de l10n_en l10n_fr l10n_it l10n_nl l10n_pl l10n_ru ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/ja2-stracciatella/ja2-stracciatella/archive/v0.17.0.tar.gz -> ja2-stracciatella-0.17.0.tar.gz editor? ( https://github.com/ja2-stracciatella/free-ja2-resources/releases/download/v1/editor.slf -> ja2-stracciatella-0.17.0-editor.slf ) https://crates.io/api/v1/crates/aho-corasick/0.7.10/download -> aho-corasick-0.7.10.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/arrayref/0.3.6/download -> arrayref-0.3.6.crate https://crates.io/api/v1/crates/arrayvec/0.5.1/download -> arrayvec-0.5.1.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.0.0/download -> autocfg-1.0.0.crate https://crates.io/api/v1/crates/base64/0.11.0/download -> base64-0.11.0.crate https://crates.io/api/v1/crates/bitflags/1.2.1/download -> bitflags-1.2.1.crate https://crates.io/api/v1/crates/blake2b_simd/0.5.10/download -> blake2b_simd-0.5.10.crate https://crates.io/api/v1/crates/block-buffer/0.7.3/download -> block-buffer-0.7.3.crate https://crates.io/api/v1/crates/block-padding/0.1.5/download -> block-padding-0.1.5.crate https://crates.io/api/v1/crates/byte-tools/0.3.1/download -> byte-tools-0.3.1.crate https://crates.io/api/v1/crates/byteorder/1.3.4/download -> byteorder-1.3.4.crate https://crates.io/api/v1/crates/caseless/0.2.1/download -> caseless-0.2.1.crate https://crates.io/api/v1/crates/cbindgen/0.13.2/download -> cbindgen-0.13.2.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/chrono/0.4.11/download -> chrono-0.4.11.crate https://crates.io/api/v1/crates/clap/2.33.0/download -> clap-2.33.0.crate https://crates.io/api/v1/crates/constant_time_eq/0.1.5/download -> constant_time_eq-0.1.5.crate https://crates.io/api/v1/crates/crossbeam-deque/0.7.3/download -> crossbeam-deque-0.7.3.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.8.2/download -> crossbeam-epoch-0.8.2.crate https://crates.io/api/v1/crates/crossbeam-queue/0.2.1/download -> crossbeam-queue-0.2.1.crate https://crates.io/api/v1/crates/crossbeam-utils/0.7.2/download -> crossbeam-utils-0.7.2.crate https://crates.io/api/v1/crates/digest/0.8.1/download -> digest-0.8.1.crate https://crates.io/api/v1/crates/dirs/1.0.5/download -> dirs-1.0.5.crate https://crates.io/api/v1/crates/dunce/1.0.0/download -> dunce-1.0.0.crate https://crates.io/api/v1/crates/either/1.5.3/download -> either-1.5.3.crate https://crates.io/api/v1/crates/generic-array/0.12.3/download -> generic-array-0.12.3.crate https://crates.io/api/v1/crates/getopts/0.2.21/download -> getopts-0.2.21.crate https://crates.io/api/v1/crates/getrandom/0.1.14/download -> getrandom-0.1.14.crate https://crates.io/api/v1/crates/hermit-abi/0.1.10/download -> hermit-abi-0.1.10.crate https://crates.io/api/v1/crates/hex/0.3.2/download -> hex-0.3.2.crate https://crates.io/api/v1/crates/indexmap/1.3.2/download -> indexmap-1.3.2.crate https://crates.io/api/v1/crates/itoa/0.4.5/download -> itoa-0.4.5.crate https://crates.io/api/v1/crates/json_comments/0.2.0/download -> json_comments-0.2.0.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.68/download -> libc-0.2.68.crate https://crates.io/api/v1/crates/log/0.4.8/download -> log-0.4.8.crate https://crates.io/api/v1/crates/maybe-uninit/2.0.0/download -> maybe-uninit-2.0.0.crate https://crates.io/api/v1/crates/md-5/0.8.0/download -> md-5-0.8.0.crate https://crates.io/api/v1/crates/memchr/2.3.3/download -> memchr-2.3.3.crate https://crates.io/api/v1/crates/memoffset/0.5.4/download -> memoffset-0.5.4.crate https://crates.io/api/v1/crates/num-integer/0.1.42/download -> num-integer-0.1.42.crate https://crates.io/api/v1/crates/num-traits/0.2.11/download -> num-traits-0.2.11.crate https://crates.io/api/v1/crates/num_cpus/1.12.0/download -> num_cpus-1.12.0.crate https://crates.io/api/v1/crates/opaque-debug/0.2.3/download -> opaque-debug-0.2.3.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.6/download -> ppv-lite86-0.2.6.crate https://crates.io/api/v1/crates/proc-macro2/1.0.10/download -> proc-macro2-1.0.10.crate https://crates.io/api/v1/crates/quote/1.0.3/download -> quote-1.0.3.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.2.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_hc/0.2.0/download -> rand_hc-0.2.0.crate https://crates.io/api/v1/crates/rayon/1.3.0/download -> rayon-1.3.0.crate https://crates.io/api/v1/crates/rayon-core/1.7.0/download -> rayon-core-1.7.0.crate https://crates.io/api/v1/crates/redox_syscall/0.1.56/download -> redox_syscall-0.1.56.crate https://crates.io/api/v1/crates/redox_users/0.3.4/download -> redox_users-0.3.4.crate https://crates.io/api/v1/crates/regex/1.3.6/download -> regex-1.3.6.crate https://crates.io/api/v1/crates/regex-syntax/0.6.17/download -> regex-syntax-0.6.17.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.2/download -> remove_dir_all-0.5.2.crate https://crates.io/api/v1/crates/rust-argon2/0.7.0/download -> rust-argon2-0.7.0.crate https://crates.io/api/v1/crates/ryu/1.0.3/download -> ryu-1.0.3.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/serde/1.0.105/download -> serde-1.0.105.crate https://crates.io/api/v1/crates/serde_derive/1.0.105/download -> serde_derive-1.0.105.crate https://crates.io/api/v1/crates/serde_json/1.0.50/download -> serde_json-1.0.50.crate https://crates.io/api/v1/crates/simplelog/0.6.0/download -> simplelog-0.6.0.crate https://crates.io/api/v1/crates/smallvec/1.2.0/download -> smallvec-1.2.0.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/syn/1.0.17/download -> syn-1.0.17.crate https://crates.io/api/v1/crates/tempfile/3.1.0/download -> tempfile-3.1.0.crate https://crates.io/api/v1/crates/term/0.5.2/download -> term-0.5.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thread_local/1.0.1/download -> thread_local-1.0.1.crate https://crates.io/api/v1/crates/time/0.1.42/download -> time-0.1.42.crate https://crates.io/api/v1/crates/toml/0.5.6/download -> toml-0.5.6.crate https://crates.io/api/v1/crates/typenum/1.11.2/download -> typenum-1.11.2.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.12/download -> unicode-normalization-0.1.12.crate https://crates.io/api/v1/crates/unicode-width/0.1.7/download -> unicode-width-0.1.7.crate https://crates.io/api/v1/crates/unicode-xid/0.2.0/download -> unicode-xid-0.2.0.crate https://crates.io/api/v1/crates/vec_map/0.8.1/download -> vec_map-0.8.1.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/winapi/0.3.8/download -> winapi-0.3.8.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 -_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b5b2f2fb0828b13dbc7ca5d34f048b4f diff --git a/metadata/md5-cache/games-strategy/ja2-stracciatella-0.20.0 b/metadata/md5-cache/games-strategy/ja2-stracciatella-0.20.0 index dbe3ef5264de..1268ec3488fc 100644 --- a/metadata/md5-cache/games-strategy/ja2-stracciatella-0.20.0 +++ b/metadata/md5-cache/games-strategy/ja2-stracciatella-0.20.0 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( lua_single_target_lua5-3 ) RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://github.com/ja2-stracciatella/ja2-stracciatella/archive/v0.20.0.tar.gz -> ja2-stracciatella-0.20.0.tar.gz editor? ( https://github.com/ja2-stracciatella/free-ja2-resources/releases/download/v1/editor.slf -> ja2-stracciatella-0.20.0-editor.slf ) https://crates.io/api/v1/crates/addr2line/0.17.0/download -> addr2line-0.17.0.crate https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.crate https://crates.io/api/v1/crates/ahash/0.7.6/download -> ahash-0.7.6.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/android_log-sys/0.2.0/download -> android_log-sys-0.2.0.crate https://crates.io/api/v1/crates/android_logger/0.10.1/download -> android_logger-0.10.1.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/ascii/0.9.3/download -> ascii-0.9.3.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/backtrace/0.3.65/download -> backtrace-0.3.65.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/block-buffer/0.9.0/download -> block-buffer-0.9.0.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes/1.1.0/download -> bytes-1.1.0.crate https://crates.io/api/v1/crates/caseless/0.2.1/download -> caseless-0.2.1.crate https://crates.io/api/v1/crates/cbindgen/0.20.0/download -> cbindgen-0.20.0.crate https://crates.io/api/v1/crates/cc/1.0.73/download -> cc-1.0.73.crate https://crates.io/api/v1/crates/cesu8/1.1.0/download -> cesu8-1.1.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.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/clap/2.33.4/download -> clap-2.33.4.crate https://crates.io/api/v1/crates/combine/3.8.1/download -> combine-3.8.1.crate https://crates.io/api/v1/crates/combine/4.6.4/download -> combine-4.6.4.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.4/download -> crossbeam-channel-0.5.4.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.1/download -> crossbeam-deque-0.8.1.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.8/download -> crossbeam-epoch-0.9.8.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.8/download -> crossbeam-utils-0.8.8.crate https://crates.io/api/v1/crates/deunicode/0.4.3/download -> deunicode-0.4.3.crate https://crates.io/api/v1/crates/digest/0.9.0/download -> digest-0.9.0.crate https://crates.io/api/v1/crates/dirs/4.0.0/download -> dirs-4.0.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/dunce/1.0.2/download -> dunce-1.0.2.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.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/error-chain/0.12.4/download -> error-chain-0.12.4.crate https://crates.io/api/v1/crates/fastrand/1.7.0/download -> fastrand-1.7.0.crate https://crates.io/api/v1/crates/generic-array/0.14.5/download -> generic-array-0.14.5.crate https://crates.io/api/v1/crates/getopts/0.2.21/download -> getopts-0.2.21.crate https://crates.io/api/v1/crates/getrandom/0.2.6/download -> getrandom-0.2.6.crate https://crates.io/api/v1/crates/gimli/0.26.1/download -> gimli-0.26.1.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.crate https://crates.io/api/v1/crates/heck/0.3.3/download -> heck-0.3.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/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/indexmap/1.8.1/download -> indexmap-1.8.1.crate https://crates.io/api/v1/crates/instant/0.1.12/download -> instant-0.1.12.crate https://crates.io/api/v1/crates/itoa/1.0.1/download -> itoa-1.0.1.crate https://crates.io/api/v1/crates/jni/0.14.0/download -> jni-0.14.0.crate https://crates.io/api/v1/crates/jni/0.18.0/download -> jni-0.18.0.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/json_comments/0.2.1/download -> json_comments-0.2.1.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.124/download -> libc-0.2.124.crate https://crates.io/api/v1/crates/linked-hash-map/0.5.4/download -> linked-hash-map-0.5.4.crate https://crates.io/api/v1/crates/log/0.4.16/download -> log-0.4.16.crate https://crates.io/api/v1/crates/lru/0.7.5/download -> lru-0.7.5.crate https://crates.io/api/v1/crates/md-5/0.9.1/download -> md-5-0.9.1.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/memoffset/0.6.5/download -> memoffset-0.6.5.crate https://crates.io/api/v1/crates/miniz_oxide/0.5.1/download -> miniz_oxide-0.5.1.crate https://crates.io/api/v1/crates/ndk/0.6.0/download -> ndk-0.6.0.crate https://crates.io/api/v1/crates/ndk-sys/0.3.0/download -> ndk-sys-0.3.0.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.1/download -> num_cpus-1.13.1.crate https://crates.io/api/v1/crates/num_enum/0.5.7/download -> num_enum-0.5.7.crate https://crates.io/api/v1/crates/num_enum_derive/0.5.7/download -> num_enum_derive-0.5.7.crate https://crates.io/api/v1/crates/object/0.28.3/download -> object-0.28.3.crate https://crates.io/api/v1/crates/once_cell/1.10.0/download -> once_cell-1.10.0.crate https://crates.io/api/v1/crates/opaque-debug/0.3.0/download -> opaque-debug-0.3.0.crate https://crates.io/api/v1/crates/proc-macro-crate/1.1.3/download -> proc-macro-crate-1.1.3.crate https://crates.io/api/v1/crates/proc-macro2/1.0.37/download -> proc-macro2-1.0.37.crate https://crates.io/api/v1/crates/quote/1.0.18/download -> quote-1.0.18.crate https://crates.io/api/v1/crates/rayon/1.5.2/download -> rayon-1.5.2.crate https://crates.io/api/v1/crates/rayon-core/1.9.2/download -> rayon-core-1.9.2.crate https://crates.io/api/v1/crates/redox_syscall/0.2.13/download -> redox_syscall-0.2.13.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/1.5.5/download -> regex-1.5.5.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/remove_dir_all/0.7.0/download -> remove_dir_all-0.7.0.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.21/download -> rustc-demangle-0.1.21.crate https://crates.io/api/v1/crates/ryu/1.0.9/download -> ryu-1.0.9.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.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/send_wrapper/0.5.0/download -> send_wrapper-0.5.0.crate https://crates.io/api/v1/crates/serde/1.0.136/download -> serde-1.0.136.crate https://crates.io/api/v1/crates/serde_derive/1.0.136/download -> serde_derive-1.0.136.crate https://crates.io/api/v1/crates/serde_json/1.0.79/download -> serde_json-1.0.79.crate https://crates.io/api/v1/crates/serde_yaml/0.8.23/download -> serde_yaml-0.8.23.crate https://crates.io/api/v1/crates/simplelog/0.10.2/download -> simplelog-0.10.2.crate https://crates.io/api/v1/crates/slug/0.1.4/download -> slug-0.1.4.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/syn/1.0.91/download -> syn-1.0.91.crate https://crates.io/api/v1/crates/tempfile/3.3.0/download -> tempfile-3.3.0.crate https://crates.io/api/v1/crates/termcolor/1.1.3/download -> termcolor-1.1.3.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thiserror/1.0.30/download -> thiserror-1.0.30.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.30/download -> thiserror-impl-1.0.30.crate https://crates.io/api/v1/crates/time/0.1.43/download -> time-0.1.43.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.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/toml/0.5.9/download -> toml-0.5.9.crate https://crates.io/api/v1/crates/typenum/1.15.0/download -> typenum-1.15.0.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.19/download -> unicode-normalization-0.1.19.crate https://crates.io/api/v1/crates/unicode-segmentation/1.9.0/download -> unicode-segmentation-1.9.0.crate https://crates.io/api/v1/crates/unicode-width/0.1.9/download -> unicode-width-0.1.9.crate https://crates.io/api/v1/crates/unicode-xid/0.2.2/download -> unicode-xid-0.2.2.crate https://crates.io/api/v1/crates/unreachable/1.0.0/download -> unreachable-1.0.0.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_check/0.9.4/download -> version_check-0.9.4.crate https://crates.io/api/v1/crates/void/1.0.2/download -> void-1.0.2.crate https://crates.io/api/v1/crates/walkdir/2.3.2/download -> walkdir-2.3.2.crate https://crates.io/api/v1/crates/wasi/0.10.2+wasi-snapshot-preview1/download -> wasi-0.10.2+wasi-snapshot-preview1.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-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/yaml-rust/0.4.5/download -> yaml-rust-0.4.5.crate -_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7b9980fc0a0de4b69b677a6da0f8f57a diff --git a/metadata/md5-cache/games-strategy/julius-1.6.0 b/metadata/md5-cache/games-strategy/julius-1.6.0 index 6000aa0f6e5b..fb65bea9d135 100644 --- a/metadata/md5-cache/games-strategy/julius-1.6.0 +++ b/metadata/md5-cache/games-strategy/julius-1.6.0 @@ -10,5 +10,5 @@ LICENSE=AGPL-3 RDEPEND=media-libs/libpng:= media-libs/libsdl2[joystick,video,sound] media-libs/sdl2-mixer SLOT=0 SRC_URI=https://github.com/bvschaik/julius/archive/v1.6.0.tar.gz -> julius-1.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=df4d8dbf0d84d7c7eafea6fb47567597 diff --git a/metadata/md5-cache/games-strategy/maxr-0.2.9 b/metadata/md5-cache/games-strategy/maxr-0.2.9 index 7e8dafba1381..59add8834ca2 100644 --- a/metadata/md5-cache/games-strategy/maxr-0.2.9 +++ b/metadata/md5-cache/games-strategy/maxr-0.2.9 @@ -11,5 +11,5 @@ LICENSE=GPL-2 FDL-1.2+ RDEPEND=media-libs/libsdl2[video] media-libs/sdl2-mixer[vorbis] media-libs/sdl2-net SLOT=0 SRC_URI=https://www.maxr.org/downloads/maxr-0.2.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=437aaab7ce4b647354163dac701f81fb diff --git a/metadata/md5-cache/games-strategy/megaglest-3.13.0 b/metadata/md5-cache/games-strategy/megaglest-3.13.0 index ecdae9285dc1..32e36acad6b5 100644 --- a/metadata/md5-cache/games-strategy/megaglest-3.13.0 +++ b/metadata/md5-cache/games-strategy/megaglest-3.13.0 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ~games-strategy/megaglest REQUIRED_USE=^^ ( lua_single_target_lua5-1 ) SLOT=0 SRC_URI=https://github.com/MegaGlest/megaglest-source/releases/download/3.13.0/megaglest-source-3.13.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c7bbb9d7e22fd126b03d8066e2282d00 diff --git a/metadata/md5-cache/games-strategy/megaglest-data-3.13.0 b/metadata/md5-cache/games-strategy/megaglest-data-3.13.0 index bf1fc6d74229..cf8c96a96063 100644 --- a/metadata/md5-cache/games-strategy/megaglest-data-3.13.0 +++ b/metadata/md5-cache/games-strategy/megaglest-data-3.13.0 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~arm64 ~x86 LICENSE=CC-BY-SA-3.0 SLOT=0 SRC_URI=https://github.com/MegaGlest/megaglest-data/releases/download/3.13.0/megaglest-data-3.13.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=33c03e58ab3f737d85f0f78a470be0c4 diff --git a/metadata/md5-cache/games-strategy/s25rttr-0.9.5 b/metadata/md5-cache/games-strategy/s25rttr-0.9.5 index 8ed01f2956a7..a503b77e12a5 100644 --- a/metadata/md5-cache/games-strategy/s25rttr-0.9.5 +++ b/metadata/md5-cache/games-strategy/s25rttr-0.9.5 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( lua_single_target_lua5-3 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Return-To-The-Roots/s25client/releases/download/v0.9.5/s25client_src_v0.9.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4bd77057c3f25ad326075f772ae37ca8 diff --git a/metadata/md5-cache/games-strategy/war1gus-3.3.1 b/metadata/md5-cache/games-strategy/war1gus-3.3.1 index 0203e0be93b5..f48a7c03a46f 100644 --- a/metadata/md5-cache/games-strategy/war1gus-3.3.1 +++ b/metadata/md5-cache/games-strategy/war1gus-3.3.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==games-engines/stratagus-3.3.1*[theora] media-libs/libpng:0= sys-libs/zlib:= x11-libs/gtk+:2 x11-libs/libX11 SLOT=0 SRC_URI=https://github.com/Wargus/war1gus/archive/v3.3.1.tar.gz -> war1gus-3.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e7ec42299e3188c526ff1d6ba8d073df diff --git a/metadata/md5-cache/games-strategy/war1gus-3.3.2 b/metadata/md5-cache/games-strategy/war1gus-3.3.2 index 25d0219b0f5e..67dfee8f403b 100644 --- a/metadata/md5-cache/games-strategy/war1gus-3.3.2 +++ b/metadata/md5-cache/games-strategy/war1gus-3.3.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==games-engines/stratagus-3.3.2*[theora] media-libs/libpng:0= sys-libs/zlib:= x11-libs/gtk+:2 x11-libs/libX11 SLOT=0 SRC_URI=https://github.com/Wargus/war1gus/archive/v3.3.2.tar.gz -> war1gus-3.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e7ec42299e3188c526ff1d6ba8d073df diff --git a/metadata/md5-cache/games-strategy/wargus-3.3.1 b/metadata/md5-cache/games-strategy/wargus-3.3.1 index a1a4fa1bdda1..48b97c8b33b8 100644 --- a/metadata/md5-cache/games-strategy/wargus-3.3.1 +++ b/metadata/md5-cache/games-strategy/wargus-3.3.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND==games-engines/stratagus-3.3.1*[theora] media-libs/libpng:0= sys-libs/zlib:= x11-libs/gtk+:2 x11-libs/libX11 bne? ( app-arch/stormlib:= ) !games-strategy/wargus-data SLOT=0 SRC_URI=https://github.com/Wargus/wargus/archive/v3.3.1.tar.gz -> wargus-3.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd7b1aecaf34f8151a6792cf9750955f diff --git a/metadata/md5-cache/games-strategy/wargus-3.3.2 b/metadata/md5-cache/games-strategy/wargus-3.3.2 index 886f4c2a13d5..788205af6afe 100644 --- a/metadata/md5-cache/games-strategy/wargus-3.3.2 +++ b/metadata/md5-cache/games-strategy/wargus-3.3.2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND==games-engines/stratagus-3.3.2*[theora] media-libs/libpng:0= sys-libs/zlib:= x11-libs/gtk+:2 x11-libs/libX11 bne? ( app-arch/stormlib:= ) !games-strategy/wargus-data SLOT=0 SRC_URI=https://github.com/Wargus/wargus/archive/v3.3.2.tar.gz -> wargus-3.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd7b1aecaf34f8151a6792cf9750955f diff --git a/metadata/md5-cache/games-strategy/warzone2100-4.2.7 b/metadata/md5-cache/games-strategy/warzone2100-4.2.7 index d7e57892dcdf..b5b293c85a84 100644 --- a/metadata/md5-cache/games-strategy/warzone2100-4.2.7 +++ b/metadata/md5-cache/games-strategy/warzone2100-4.2.7 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ CC-BY-SA-3.0 public-domain vulkan? ( GPL-3 ) RDEPEND=>=dev-games/physfs-2[zip] dev-db/sqlite:3 >=dev-libs/libsodium-1.0.14:= media-libs/freetype:2 media-libs/harfbuzz:= media-libs/libogg media-libs/libpng:= media-libs/libsdl2[opengl,video,X] media-libs/libtheora media-libs/libvorbis media-libs/openal net-libs/miniupnpc:= net-misc/curl sys-libs/zlib nls? ( virtual/libintl ) vulkan? ( media-libs/libsdl2:=[vulkan] ) media-fonts/dejavu SLOT=0 SRC_URI=mirror://sourceforge/warzone2100/releases/4.2.7/warzone2100_src.tar.xz -> warzone2100-4.2.7.tar.xz videos? ( mirror://sourceforge/warzone2100/warzone2100/Videos/2.2/high-quality-en/sequences.wz -> warzone2100-videos-2.2.wz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=561e9a0c0fa0efcd4550aa5fe5b9149b diff --git a/metadata/md5-cache/games-strategy/warzone2100-4.3.1 b/metadata/md5-cache/games-strategy/warzone2100-4.3.1 index 84e09fe189bf..d139aedb8cf8 100644 --- a/metadata/md5-cache/games-strategy/warzone2100-4.3.1 +++ b/metadata/md5-cache/games-strategy/warzone2100-4.3.1 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ CC-BY-SA-3.0 public-domain vulkan? ( GPL-3 ) RDEPEND=>=dev-games/physfs-2[zip] dev-db/sqlite:3 >=dev-libs/libsodium-1.0.14:= media-libs/freetype:2 media-libs/harfbuzz:= media-libs/libogg media-libs/libpng:= media-libs/libsdl2[opengl,video,X] media-libs/libtheora media-libs/libvorbis media-libs/openal net-libs/miniupnpc:= net-misc/curl sys-libs/zlib nls? ( virtual/libintl ) vulkan? ( media-libs/libsdl2:=[vulkan] ) media-fonts/dejavu SLOT=0 SRC_URI=mirror://sourceforge/warzone2100/releases/4.3.1/warzone2100_src.tar.xz -> warzone2100-4.3.1.tar.xz videos? ( mirror://sourceforge/warzone2100/warzone2100/Videos/2.2/high-quality-en/sequences.wz -> warzone2100-videos-2.2.wz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f17e4249a2fb7e840e2206c8c9e728c3 diff --git a/metadata/md5-cache/games-strategy/warzone2100-4.3.3-r2 b/metadata/md5-cache/games-strategy/warzone2100-4.3.3-r2 index e3f3e3e40bd7..f588cc0bd8b1 100644 --- a/metadata/md5-cache/games-strategy/warzone2100-4.3.3-r2 +++ b/metadata/md5-cache/games-strategy/warzone2100-4.3.3-r2 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ CC-BY-SA-3.0 public-domain vulkan? ( GPL-3 ) RDEPEND=dev-libs/fribidi >=dev-games/physfs-2[zip] dev-db/sqlite:3 >=dev-libs/libsodium-1.0.14:= media-libs/freetype:2 media-libs/harfbuzz:= media-libs/libogg media-libs/libpng:= media-libs/libsdl2[opengl,video,X] media-libs/libtheora media-libs/libvorbis media-libs/openal media-libs/opus net-libs/miniupnpc:= net-misc/curl sys-libs/zlib nls? ( virtual/libintl ) vulkan? ( media-libs/libsdl2:=[vulkan] ) media-fonts/dejavu SLOT=0 SRC_URI=mirror://sourceforge/warzone2100/releases/4.3.3/warzone2100_src.tar.xz -> warzone2100-4.3.3.tar.xz videos? ( mirror://sourceforge/warzone2100/warzone2100/Videos/2.2/high-quality-en/sequences.wz -> warzone2100-videos-2.2.wz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f44565f115240cea402249e56706bff8 diff --git a/metadata/md5-cache/games-strategy/warzone2100-4.3.3-r3 b/metadata/md5-cache/games-strategy/warzone2100-4.3.3-r3 index fa74535b8427..c32cd4994bff 100644 --- a/metadata/md5-cache/games-strategy/warzone2100-4.3.3-r3 +++ b/metadata/md5-cache/games-strategy/warzone2100-4.3.3-r3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ CC-BY-SA-3.0 public-domain vulkan? ( GPL-3 ) RDEPEND=dev-libs/fribidi >=dev-games/physfs-2[zip] dev-db/sqlite:3 >=dev-libs/libsodium-1.0.14:= media-libs/freetype:2 media-libs/harfbuzz:= media-libs/libogg media-libs/libpng:= media-libs/libsdl2[opengl,video,X] media-libs/libtheora media-libs/libvorbis media-libs/openal media-libs/opus net-libs/miniupnpc:= net-misc/curl sys-libs/zlib nls? ( virtual/libintl ) vulkan? ( media-libs/libsdl2:=[vulkan] ) media-fonts/dejavu SLOT=0 SRC_URI=mirror://sourceforge/warzone2100/releases/4.3.3/warzone2100_src.tar.xz -> warzone2100-4.3.3.tar.xz videos? ( mirror://sourceforge/warzone2100/warzone2100/Videos/2.2/high-quality-en/sequences.wz -> warzone2100-videos-2.2.wz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=873a3bb1cc758272d0bfce680350769b diff --git a/metadata/md5-cache/games-strategy/wesnoth-1.16.8 b/metadata/md5-cache/games-strategy/wesnoth-1.16.8 index 1d8c928a4d3d..64433a17f8e6 100644 --- a/metadata/md5-cache/games-strategy/wesnoth-1.16.8 +++ b/metadata/md5-cache/games-strategy/wesnoth-1.16.8 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=acct-group/wesnoth acct-user/wesnoth dev-libs/boost:=[bzip2,context,icu,nls] >=media-libs/libsdl2-2.0.4:0[joystick,video,X] !dedicated? ( dev-libs/glib:2 dev-libs/openssl:0= >=media-libs/fontconfig-2.4.1 >=media-libs/sdl2-image-2.0.0[jpeg,png] >=media-libs/sdl2-mixer-2.0.0[vorbis] media-libs/libvorbis >=x11-libs/pango-1.22.0 >=x11-libs/cairo-1.10.0 sys-libs/readline:0= dbus? ( sys-apps/dbus ) ) SLOT=0 SRC_URI=https://github.com/wesnoth/wesnoth/archive/1.16.8.tar.gz -> wesnoth-1.16.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0ed575e70bddd1aca0e0ff733e65bfba diff --git a/metadata/md5-cache/games-strategy/wesnoth-1.17.11 b/metadata/md5-cache/games-strategy/wesnoth-1.17.11 index 5b2d73e763cc..590497c0c62a 100644 --- a/metadata/md5-cache/games-strategy/wesnoth-1.17.11 +++ b/metadata/md5-cache/games-strategy/wesnoth-1.17.11 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=acct-group/wesnoth acct-user/wesnoth dev-libs/boost:=[bzip2,context,icu,nls] >=media-libs/libsdl2-2.0.4:0[joystick,video,X] !dedicated? ( dev-libs/glib:2 dev-libs/openssl:0= >=media-libs/fontconfig-2.4.1 >=media-libs/sdl2-image-2.0.0[jpeg,png] >=media-libs/sdl2-mixer-2.0.0[vorbis] media-libs/libvorbis >=x11-libs/pango-1.22.0 >=x11-libs/cairo-1.10.0 sys-libs/readline:0= dbus? ( sys-apps/dbus ) ) SLOT=0 SRC_URI=mirror://sourceforge/wesnoth/wesnoth-1.17.11.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3391d164e267f931609898d4197c8307 diff --git a/metadata/md5-cache/games-strategy/widelands-1.1 b/metadata/md5-cache/games-strategy/widelands-1.1 index 9a8ffe66ece2..8b8975cbb700 100644 --- a/metadata/md5-cache/games-strategy/widelands-1.1 +++ b/metadata/md5-cache/games-strategy/widelands-1.1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/icu:= media-libs/glew:0= media-libs/libglvnd media-libs/libpng: RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/widelands/widelands/archive/refs/tags/v1.1.tar.gz -> widelands-1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=710a6d31afca2ffb4527583df71c1546 diff --git a/metadata/md5-cache/games-strategy/widelands-9999 b/metadata/md5-cache/games-strategy/widelands-9999 index 5cd19a31d995..c747b15d1d43 100644 --- a/metadata/md5-cache/games-strategy/widelands-9999 +++ b/metadata/md5-cache/games-strategy/widelands-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=dev-libs/icu:= media-libs/glew:0= media-libs/libglvnd media-libs/libpng:= media-libs/libsdl2[opengl,sound,video] media-libs/sdl2-image[jpeg,png] media-libs/sdl2-mixer[vorbis] media-libs/sdl2-ttf sys-libs/zlib:=[minizip] virtual/libintl RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=14cee237c92d5de4d5d466b17e6a1f33 diff --git a/metadata/md5-cache/games-util/Manifest.gz b/metadata/md5-cache/games-util/Manifest.gz index 37f5df8bc170..16945e7cedfe 100644 Binary files a/metadata/md5-cache/games-util/Manifest.gz and b/metadata/md5-cache/games-util/Manifest.gz differ diff --git a/metadata/md5-cache/games-util/acc-1.58 b/metadata/md5-cache/games-util/acc-1.58 index ca361461df34..0a3d1a006063 100644 --- a/metadata/md5-cache/games-util/acc-1.58 +++ b/metadata/md5-cache/games-util/acc-1.58 @@ -9,5 +9,5 @@ LICENSE=Activision RESTRICT=bindist mirror SLOT=0 SRC_URI=https://github.com/rheit/acc/archive/1.58.tar.gz -> acc-1.58.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=087abc511e45362afb129096d63e315e diff --git a/metadata/md5-cache/games-util/antimicro-2.23 b/metadata/md5-cache/games-util/antimicro-2.23 index e0aaf9d8f1b6..4e3acc791ba8 100644 --- a/metadata/md5-cache/games-util/antimicro-2.23 +++ b/metadata/md5-cache/games-util/antimicro-2.23 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-libs/libsdl2[X,joystick] x11-libs/libX11 x11-libs/libXtst SLOT=0 SRC_URI=https://github.com/AntiMicro/antimicro/archive/2.23.tar.gz -> antimicro-2.23.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d96e62d4549654495f988453a107707c diff --git a/metadata/md5-cache/games-util/antimicrox-3.3.1 b/metadata/md5-cache/games-util/antimicrox-3.3.1 index d81c96de2b9b..207889b84a44 100644 --- a/metadata/md5-cache/games-util/antimicrox-3.3.1 +++ b/metadata/md5-cache/games-util/antimicrox-3.3.1 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 RESTRICT=test SLOT=0 SRC_URI=https://github.com/AntiMicroX/antimicrox/archive/3.3.1.tar.gz -> antimicrox-3.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8df3b1aa8abde8ee756e0d0af920fa3 diff --git a/metadata/md5-cache/games-util/antimicrox-3.3.2 b/metadata/md5-cache/games-util/antimicrox-3.3.2 index e405466d385e..97380b43abba 100644 --- a/metadata/md5-cache/games-util/antimicrox-3.3.2 +++ b/metadata/md5-cache/games-util/antimicrox-3.3.2 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 RESTRICT=test SLOT=0 SRC_URI=https://github.com/AntiMicroX/antimicrox/archive/3.3.2.tar.gz -> antimicrox-3.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8df3b1aa8abde8ee756e0d0af920fa3 diff --git a/metadata/md5-cache/games-util/antimicrox-3.3.3 b/metadata/md5-cache/games-util/antimicrox-3.3.3 index b150dd1b2706..2684fb8a2730 100644 --- a/metadata/md5-cache/games-util/antimicrox-3.3.3 +++ b/metadata/md5-cache/games-util/antimicrox-3.3.3 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 RESTRICT=test SLOT=0 SRC_URI=https://github.com/AntiMicroX/antimicrox/archive/3.3.3.tar.gz -> antimicrox-3.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8df3b1aa8abde8ee756e0d0af920fa3 diff --git a/metadata/md5-cache/games-util/basis_universal-1.16.3 b/metadata/md5-cache/games-util/basis_universal-1.16.3 index bb4a9f3f9cf0..3f1025f1ce48 100644 --- a/metadata/md5-cache/games-util/basis_universal-1.16.3 +++ b/metadata/md5-cache/games-util/basis_universal-1.16.3 @@ -10,5 +10,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 zstd? ( BSD ) SLOT=0 SRC_URI=https://github.com/BinomialLLC/basis_universal/archive/refs/tags/1.16.3.tar.gz -> basis_universal-1.16.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=83af2484b80245696dde325a28642f71 diff --git a/metadata/md5-cache/games-util/grfcodec-6.0.6_p20210310-r1 b/metadata/md5-cache/games-util/grfcodec-6.0.6_p20210310-r1 index e854a7e9067c..3c33f8cb5644 100644 --- a/metadata/md5-cache/games-util/grfcodec-6.0.6_p20210310-r1 +++ b/metadata/md5-cache/games-util/grfcodec-6.0.6_p20210310-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=media-libs/libpng:= SLOT=0 SRC_URI=https://github.com/OpenTTD/grfcodec/archive/045774dee7cab1a618a3e0d9b39bff78a12b6efa.tar.gz -> grfcodec-6.0.6_p20210310.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fab722eff6c099a73778d694b476e9b4 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 1a449979b2ab..af1541a88677 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 a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0468559e27f573ae39858076733b8399 diff --git a/metadata/md5-cache/games-util/lgogdownloader-3.9 b/metadata/md5-cache/games-util/lgogdownloader-3.10 similarity index 88% rename from metadata/md5-cache/games-util/lgogdownloader-3.9 rename to metadata/md5-cache/games-util/lgogdownloader-3.10 index 6e5a5479b075..38504b813781 100644 --- a/metadata/md5-cache/games-util/lgogdownloader-3.9 +++ b/metadata/md5-cache/games-util/lgogdownloader-3.10 @@ -10,6 +10,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=WTFPL-2 RDEPEND=>=app-crypt/rhash-1.3.3-r2:0= dev-cpp/htmlcxx:0= dev-libs/boost:=[zlib] >=dev-libs/jsoncpp-1.7:0= dev-libs/tinyxml2:0= >=net-misc/curl-7.32:0=[ssl] gui? ( dev-qt/qtwebengine:5=[widgets] ) SLOT=0 -SRC_URI=https://github.com/Sude-/lgogdownloader/releases/download/v3.9/lgogdownloader-3.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=7590488700e7bb7e8ce0e17ae80c5e9b +SRC_URI=https://github.com/Sude-/lgogdownloader/releases/download/v3.10/lgogdownloader-3.10.tar.gz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=660b78476c2fb03ea9aa0f12377edec7 diff --git a/metadata/md5-cache/games-util/lgogdownloader-9999 b/metadata/md5-cache/games-util/lgogdownloader-9999 index 47f76e1fc94f..d4ffe1d8f0c0 100644 --- a/metadata/md5-cache/games-util/lgogdownloader-9999 +++ b/metadata/md5-cache/games-util/lgogdownloader-9999 @@ -10,5 +10,5 @@ LICENSE=WTFPL-2 PROPERTIES=live RDEPEND=>=app-crypt/rhash-1.3.3-r2:0= dev-cpp/htmlcxx:0= dev-libs/boost:=[zlib] >=dev-libs/jsoncpp-1.7:0= dev-libs/tinyxml2:0= >=net-misc/curl-7.32:0=[ssl] gui? ( dev-qt/qtwebengine:5=[widgets] ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1f77acd005d43a5d17e720376b69f2fc diff --git a/metadata/md5-cache/games-util/qjoypad-4.3.1 b/metadata/md5-cache/games-util/qjoypad-4.3.1 index 2932d75f22e4..cb1962ae7c9f 100644 --- a/metadata/md5-cache/games-util/qjoypad-4.3.1 +++ b/metadata/md5-cache/games-util/qjoypad-4.3.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 virtual/libudev x11-libs/libxcb x11-libs/libXtst SLOT=0 SRC_URI=https://github.com/panzi/qjoypad/archive/v4.3.1.tar.gz -> qjoypad-4.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9663c00bfe698639d98c2ed13f04190c diff --git a/metadata/md5-cache/games-util/slade-3.2.1-r1 b/metadata/md5-cache/games-util/slade-3.2.1-r1 index e174a7b950eb..75b8e6818799 100644 --- a/metadata/md5-cache/games-util/slade-3.2.1-r1 +++ b/metadata/md5-cache/games-util/slade-3.2.1-r1 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? REQUIRED_USE=^^ ( lua_single_target_lua5-1 lua_single_target_lua5-3 ) SLOT=0 SRC_URI=https://github.com/sirjuddington/SLADE/archive/3.2.1.tar.gz -> slade-3.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7d0cc23948c0ebdaff11d87aaafe6f4e diff --git a/metadata/md5-cache/gnome-base/Manifest.gz b/metadata/md5-cache/gnome-base/Manifest.gz index 9a75bcbf6d85..36881e53d89d 100644 Binary files a/metadata/md5-cache/gnome-base/Manifest.gz and b/metadata/md5-cache/gnome-base/Manifest.gz differ diff --git a/metadata/md5-cache/gnome-base/gnome-desktop-44.0-r300 b/metadata/md5-cache/gnome-base/gnome-desktop-44.0-r300 new file mode 100644 index 000000000000..3c10db782023 --- /dev/null +++ b/metadata/md5-cache/gnome-base/gnome-desktop-44.0-r300 @@ -0,0 +1,16 @@ +BDEPEND=app-text/docbook-xml-dtd:4.1.2 dev-util/gdbus-codegen dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=x11-libs/gdk-pixbuf-2.36.5:2[introspection?] >=x11-libs/gtk+-3.3.6:3[introspection?] >=dev-libs/glib-2.53.0:2 >=gnome-base/gsettings-desktop-schemas-3.27.0[introspection?] x11-misc/xkeyboard-config x11-libs/libxkbcommon app-text/iso-codes systemd? ( sys-apps/systemd:= ) udev? ( virtual/libudev:= ) seccomp? ( sys-libs/libseccomp ) x11-libs/cairo introspection? ( >=dev-libs/gobject-introspection-1.54:= ) media-libs/fontconfig +DESCRIPTION=Library with common API for various GNOME modules +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/gnome-desktop/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org meson xdg +IUSE=debug +introspection seccomp systemd udev +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=GPL-2+ LGPL-2+ FDL-1.1+ +RDEPEND=>=x11-libs/gdk-pixbuf-2.36.5:2[introspection?] >=x11-libs/gtk+-3.3.6:3[introspection?] >=dev-libs/glib-2.53.0:2 >=gnome-base/gsettings-desktop-schemas-3.27.0[introspection?] x11-misc/xkeyboard-config x11-libs/libxkbcommon app-text/iso-codes systemd? ( sys-apps/systemd:= ) udev? ( virtual/libudev:= ) seccomp? ( sys-libs/libseccomp ) x11-libs/cairo introspection? ( >=dev-libs/gobject-introspection-1.54:= ) seccomp? ( sys-apps/bubblewrap ) !=dev-util/gtk-doc-1.14 ) dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=x11-libs/gdk-pixbuf-2.36.5:2[introspection] >=gui-libs/gtk-4.4.0:4[introspection] >=dev-libs/glib-2.53.0:2 >=gnome-base/gsettings-desktop-schemas-3.27.0[introspection] x11-misc/xkeyboard-config x11-libs/libxkbcommon app-text/iso-codes systemd? ( sys-apps/systemd:= ) udev? ( virtual/libudev:= ) seccomp? ( sys-libs/libseccomp ) x11-libs/cairo >=dev-libs/gobject-introspection-1.54:= media-libs/fontconfig +DESCRIPTION=Library with common API for various GNOME modules +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/gnome-desktop/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org meson xdg +IUSE=debug gtk-doc seccomp systemd udev +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=GPL-2+ LGPL-2+ FDL-1.1+ +RDEPEND=>=x11-libs/gdk-pixbuf-2.36.5:2[introspection] >=gui-libs/gtk-4.4.0:4[introspection] >=dev-libs/glib-2.53.0:2 >=gnome-base/gsettings-desktop-schemas-3.27.0[introspection] x11-misc/xkeyboard-config x11-libs/libxkbcommon app-text/iso-codes systemd? ( sys-apps/systemd:= ) udev? ( virtual/libudev:= ) seccomp? ( sys-libs/libseccomp ) x11-libs/cairo >=dev-libs/gobject-introspection-1.54:= seccomp? ( sys-apps/bubblewrap ) !=sys-devel/gettext-0.19.8 x11-libs/xtrans virtual/pkgconfig doc? ( app-text/xmlto app-text/docbook-xml-dtd:4.1.2 ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=dev-libs/glib-2.46.0:2 >=x11-libs/gtk+-3.22.0:3 x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=gnome-base/gnome-desktop-3.34.2:3= >=dev-libs/json-glib-0.10 media-libs/libglvnd[X] media-libs/libepoxy x11-libs/libXcomposite systemd? ( >=sys-apps/systemd-242:0= ) elogind? ( >=sys-auth/elogind-239.4 ) +DESCRIPTION=Gnome session manager +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/gnome-session +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=desktop gnome.org gnome2-utils meson systemd xdg +IUSE=doc elogind systemd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.46.0:2 >=x11-libs/gtk+-3.22.0:3 x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=gnome-base/gnome-desktop-3.34.2:3= >=dev-libs/json-glib-0.10 media-libs/libglvnd[X] media-libs/libepoxy x11-libs/libXcomposite systemd? ( >=sys-apps/systemd-242:0= ) elogind? ( >=sys-auth/elogind-239.4 ) >=gnome-base/gnome-settings-daemon-3.35.91 >=gnome-base/gsettings-desktop-schemas-0.1.7 sys-apps/dbus[X] x11-misc/xdg-user-dirs x11-misc/xdg-user-dirs-gtk +REQUIRED_USE=?? ( elogind systemd ) +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-session/44/gnome-session-44.0.tar.xz +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=6d636ea60c18b285037db1f909dd8abc diff --git a/metadata/md5-cache/gnome-base/gnome-shell-44.0 b/metadata/md5-cache/gnome-base/gnome-shell-44.0 new file mode 100644 index 000000000000..ffbd954352e7 --- /dev/null +++ b/metadata/md5-cache/gnome-base/gnome-shell-44.0 @@ -0,0 +1,19 @@ +BDEPEND=dev-libs/libxslt >=dev-util/gdbus-codegen-2.45.3 dev-util/glib-utils gtk-doc? ( >=dev-util/gtk-doc-1.17 app-text/docbook-xml-dtd:4.5 ) >=sys-devel/gettext-0.19.8 virtual/pkgconfig test? ( x11-wm/mutter[test] ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=gnome-extra/evolution-data-server-3.46.0:= >=app-crypt/gcr-3.90.0:4=[introspection] >=dev-libs/glib-2.68:2 >=dev-libs/gobject-introspection-1.49.1:= >=dev-libs/gjs-1.73.1[cairo] >=x11-libs/gtk+-3.15.0:3[introspection] >=x11-wm/mutter-44.0:0/12[introspection,test?] >=sys-auth/polkit-0.120_p20220509[introspection] >=gnome-base/gsettings-desktop-schemas-42_beta[introspection] >=x11-libs/startup-notification-0.11 >=app-i18n/ibus-1.5.19 >=gnome-base/gnome-desktop-40.0:4 networkmanager? ( >=net-misc/networkmanager-1.10.4[introspection] net-libs/libnma[introspection] >=app-crypt/libsecret-0.18 dev-libs/dbus-glib ) systemd? ( >=sys-apps/systemd-242:= >=gnome-base/gnome-desktop-3.34.2:3=[systemd] ) elogind? ( >=sys-auth/elogind-237 ) app-arch/gnome-autoar dev-libs/json-glib >=app-accessibility/at-spi2-core-2.46:2[introspection] x11-libs/gdk-pixbuf:2[introspection] dev-libs/libxml2:2 x11-libs/libX11 >=media-libs/libpulse-2[glib] dev-libs/libical:= >=x11-libs/libXfixes-5.0 gui-libs/gtk:4[introspection] python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] ) media-libs/libglvnd[X] +DESCRIPTION=Provides core UI functions for the GNOME desktop +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Projects/GnomeShell https://gitlab.gnome.org/GNOME/gnome-shell +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson optfeature python-single-r1 virtualx xdg +IUSE=elogind gtk-doc +ibus +networkmanager systemd test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=GPL-2+ LGPL-2+ +PDEPEND=>=gnome-base/gdm-3.5[introspection(+)] >=gnome-base/gnome-control-center-3.26[networkmanager(+)?] +RDEPEND=>=gnome-extra/evolution-data-server-3.46.0:= >=app-crypt/gcr-3.90.0:4=[introspection] >=dev-libs/glib-2.68:2 >=dev-libs/gobject-introspection-1.49.1:= >=dev-libs/gjs-1.73.1[cairo] >=x11-libs/gtk+-3.15.0:3[introspection] >=x11-wm/mutter-44.0:0/12[introspection,test?] >=sys-auth/polkit-0.120_p20220509[introspection] >=gnome-base/gsettings-desktop-schemas-42_beta[introspection] >=x11-libs/startup-notification-0.11 >=app-i18n/ibus-1.5.19 >=gnome-base/gnome-desktop-40.0:4 networkmanager? ( >=net-misc/networkmanager-1.10.4[introspection] net-libs/libnma[introspection] >=app-crypt/libsecret-0.18 dev-libs/dbus-glib ) systemd? ( >=sys-apps/systemd-242:= >=gnome-base/gnome-desktop-3.34.2:3=[systemd] ) elogind? ( >=sys-auth/elogind-237 ) app-arch/gnome-autoar dev-libs/json-glib >=app-accessibility/at-spi2-core-2.46:2[introspection] x11-libs/gdk-pixbuf:2[introspection] dev-libs/libxml2:2 x11-libs/libX11 >=media-libs/libpulse-2[glib] dev-libs/libical:= >=x11-libs/libXfixes-5.0 gui-libs/gtk:4[introspection] python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] ) media-libs/libglvnd[X] >=sys-apps/accountsservice-0.6.14[introspection] app-accessibility/at-spi2-core:2[introspection] app-misc/geoclue[introspection] media-libs/graphene[introspection] x11-libs/pango[introspection] net-libs/libsoup:3.0[introspection] >=sys-power/upower-0.99:=[introspection] gnome-base/librsvg:2[introspection] >=gnome-base/gnome-session-2.91.91 >=gnome-base/gnome-settings-daemon-3.8.3 x11-misc/xdg-utils >=x11-themes/adwaita-icon-theme-3.26 networkmanager? ( net-misc/mobile-broadband-provider-info sys-libs/timezone-data ) ibus? ( >=app-i18n/ibus-1.5.26[gtk3,gtk4,introspection] ) media-fonts/cantarell sys-apps/xdg-desktop-portal-gnome +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ?? ( elogind systemd ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-shell/44/gnome-shell-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=80b9fee0c327a6b498340859b40a1c7c diff --git a/metadata/md5-cache/gnome-base/gsettings-desktop-schemas-44.0 b/metadata/md5-cache/gnome-base/gsettings-desktop-schemas-44.0 new file mode 100644 index 000000000000..20ec659b030d --- /dev/null +++ b/metadata/md5-cache/gnome-base/gsettings-desktop-schemas-44.0 @@ -0,0 +1,14 @@ +BDEPEND=introspection? ( >=dev-libs/gobject-introspection-1.54:= ) dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DESCRIPTION=Collection of GSettings schemas for GNOME desktop +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson xdg +IUSE=+introspection +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris +LICENSE=LGPL-2.1+ +SLOT=0 +SRC_URI=mirror://gnome/sources/gsettings-desktop-schemas/44/gsettings-desktop-schemas-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=7a69853a80b745cc9a671347159bb240 diff --git a/metadata/md5-cache/gnome-extra/Manifest.gz b/metadata/md5-cache/gnome-extra/Manifest.gz index deaa83c572b8..e316be5f213c 100644 Binary files a/metadata/md5-cache/gnome-extra/Manifest.gz and b/metadata/md5-cache/gnome-extra/Manifest.gz differ diff --git a/metadata/md5-cache/gnome-extra/evolution-data-server-3.46.3 b/metadata/md5-cache/gnome-extra/evolution-data-server-3.46.3 index f0bbe7eaac64..a4291f258eac 100644 --- a/metadata/md5-cache/gnome-extra/evolution-data-server-3.46.3 +++ b/metadata/md5-cache/gnome-extra/evolution-data-server-3.46.3 @@ -14,5 +14,5 @@ REQUIRED_USE=oauth? ( gtk ) vala? ( introspection ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0/64-11-21-4-2-27-2-27-4-0 SRC_URI=mirror://gnome/sources/evolution-data-server/3.46/evolution-data-server-3.46.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb db-use 3807d3e43e20aaa6e4decedd2bb2db4c flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 db-use 3807d3e43e20aaa6e4decedd2bb2db4c flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f278822ed5eb5dd5094677980ca02b31 diff --git a/metadata/md5-cache/gnome-extra/evolution-data-server-3.46.4 b/metadata/md5-cache/gnome-extra/evolution-data-server-3.46.4 index 3e5e5d3f0746..9c11cbef0767 100644 --- a/metadata/md5-cache/gnome-extra/evolution-data-server-3.46.4 +++ b/metadata/md5-cache/gnome-extra/evolution-data-server-3.46.4 @@ -14,5 +14,5 @@ REQUIRED_USE=oauth? ( gtk ) vala? ( introspection ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0/64-11-21-4-2-27-2-27-4-0 SRC_URI=mirror://gnome/sources/evolution-data-server/3.46/evolution-data-server-3.46.4.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb db-use 3807d3e43e20aaa6e4decedd2bb2db4c flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 db-use 3807d3e43e20aaa6e4decedd2bb2db4c flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bc682b35559b4de019216706755a947b diff --git a/metadata/md5-cache/gnome-extra/evolution-data-server-3.48.0 b/metadata/md5-cache/gnome-extra/evolution-data-server-3.48.0 new file mode 100644 index 000000000000..91d83e92d682 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/evolution-data-server-3.48.0 @@ -0,0 +1,18 @@ +BDEPEND=dev-util/gdbus-codegen dev-util/glib-utils dev-util/gperf gtk-doc? ( >=dev-util/gtk-doc-1.14 app-text/docbook-xml-dtd:4.1.2 ) >=dev-util/intltool-0.35.5 >=sys-devel/gettext-0.18.3 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 >=app-portage/elt-patches-20170815 app-arch/xz-utils test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=app-crypt/libsecret-0.5[crypt] >=dev-db/sqlite-3.7.17:3 >=dev-libs/glib-2.70:2 >=dev-libs/libical-3.0.8:=[glib,introspection?] >=dev-libs/libxml2-2 >=dev-libs/nspr-4.4 >=dev-libs/nss-3.9 >=net-libs/libsoup-3.1.1:3.0 >=dev-libs/json-glib-1.0.4 dev-libs/icu:= sys-libs/zlib:= virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gtk? ( >=x11-libs/gtk+-3.20:3 >=gui-libs/gtk-4.4:4 >=media-libs/libcanberra-0.25[gtk3] oauth? ( >=net-libs/webkit-gtk-2.34.0:4.1 >=net-libs/webkit-gtk-2.39.90:6 ) ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) kerberos? ( virtual/krb5:= ) ldap? ( >=net-nds/openldap-2:= ) weather? ( >=dev-libs/libgweather-4.2.0:4= ) vala? ( || ( dev-lang/vala:0.56 ) >=net-libs/libsoup-3.1.1:3.0[vala] dev-libs/libical[vala] ) +DESCRIPTION=Evolution groupware backend +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Evolution https://gitlab.gnome.org/GNOME/evolution-data-server +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=cmake db-use flag-o-matic gnome2 vala virtualx +IUSE=berkdb +gnome-online-accounts +gtk gtk-doc +introspection ldap kerberos oauth vala +weather test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=|| ( LGPL-2 LGPL-3 ) BSD Sleepycat +RDEPEND=>=app-crypt/libsecret-0.5[crypt] >=dev-db/sqlite-3.7.17:3 >=dev-libs/glib-2.70:2 >=dev-libs/libical-3.0.8:=[glib,introspection?] >=dev-libs/libxml2-2 >=dev-libs/nspr-4.4 >=dev-libs/nss-3.9 >=net-libs/libsoup-3.1.1:3.0 >=dev-libs/json-glib-1.0.4 dev-libs/icu:= sys-libs/zlib:= virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gtk? ( >=x11-libs/gtk+-3.20:3 >=gui-libs/gtk-4.4:4 >=media-libs/libcanberra-0.25[gtk3] oauth? ( >=net-libs/webkit-gtk-2.34.0:4.1 >=net-libs/webkit-gtk-2.39.90:6 ) ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) kerberos? ( virtual/krb5:= ) ldap? ( >=net-nds/openldap-2:= ) weather? ( >=dev-libs/libgweather-4.2.0:4= ) +REQUIRED_USE=oauth? ( gtk ) vala? ( introspection ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0/64-11-21-4-2-27-2-27-4-0 +SRC_URI=mirror://gnome/sources/evolution-data-server/3.48/evolution-data-server-3.48.0.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 db-use 3807d3e43e20aaa6e4decedd2bb2db4c flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=cb76be98cd0f024617ad2c4bd972896a diff --git a/metadata/md5-cache/gnome-extra/evolution-ews-3.46.3 b/metadata/md5-cache/gnome-extra/evolution-ews-3.46.3 index d23ba9b94106..902630913255 100644 --- a/metadata/md5-cache/gnome-extra/evolution-ews-3.46.3 +++ b/metadata/md5-cache/gnome-extra/evolution-ews-3.46.3 @@ -13,5 +13,5 @@ RDEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.68:2 >=dev-libs/libical-3.0.5:0=[intro RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/evolution-ews/3.46/evolution-ews-3.46.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2fe32d1fd242306bbcff9b68dd2d2890 diff --git a/metadata/md5-cache/gnome-extra/evolution-ews-3.46.4 b/metadata/md5-cache/gnome-extra/evolution-ews-3.46.4 index 22417400910d..3f6369acfb57 100644 --- a/metadata/md5-cache/gnome-extra/evolution-ews-3.46.4 +++ b/metadata/md5-cache/gnome-extra/evolution-ews-3.46.4 @@ -13,5 +13,5 @@ RDEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.68:2 >=dev-libs/libical-3.0.5:0=[intro RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/evolution-ews/3.46/evolution-ews-3.46.4.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9376b7fd0036eb2c32a7e3c36169c76b diff --git a/metadata/md5-cache/gnome-extra/evolution-ews-3.48.0 b/metadata/md5-cache/gnome-extra/evolution-ews-3.48.0 new file mode 100644 index 000000000000..456b9ac7e23d --- /dev/null +++ b/metadata/md5-cache/gnome-extra/evolution-ews-3.48.0 @@ -0,0 +1,17 @@ +BDEPEND=dev-util/gdbus-codegen dev-util/glib-utils >=dev-util/intltool-0.35.5 >=sys-devel/gettext-0.18.3 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 >=app-portage/elt-patches-20170815 app-arch/xz-utils +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.68:2 >=dev-libs/libical-3.0.5:0=[introspection(-)] >=dev-libs/json-glib-1.0.4 >=dev-libs/libmspack-0.4 dev-libs/libxml2:2 >=gnome-extra/evolution-data-server-3.48.0:0= >=mail-client/evolution-3.48.0:2.0 >=net-libs/libsoup-3.0:3.0 >=x11-libs/gtk+-3.10:3 test? ( >=net-libs/uhttpmock-0.9:1.0 ) +DESCRIPTION=Evolution module for connecting to Microsoft Exchange Web Services +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Evolution https://gitlab.gnome.org/GNOME/evolution-ews +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=cmake gnome2 optfeature +IUSE=test +KEYWORDS=~amd64 ~riscv ~x86 +LICENSE=LGPL-2.1 +RDEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.68:2 >=dev-libs/libical-3.0.5:0=[introspection(-)] >=dev-libs/json-glib-1.0.4 >=dev-libs/libmspack-0.4 dev-libs/libxml2:2 >=gnome-extra/evolution-data-server-3.48.0:0= >=mail-client/evolution-3.48.0:2.0 >=net-libs/libsoup-3.0:3.0 >=x11-libs/gtk+-3.10:3 +RESTRICT=test !test? ( test ) +SLOT=0 +SRC_URI=mirror://gnome/sources/evolution-ews/3.48/evolution-ews-3.48.0.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=9376b7fd0036eb2c32a7e3c36169c76b diff --git a/metadata/md5-cache/gnome-extra/gnome-browser-connector-10-r5 b/metadata/md5-cache/gnome-extra/gnome-browser-connector-10-r5 index 0c62ddedda59..d447a5fbfbf8 100644 --- a/metadata/md5-cache/gnome-extra/gnome-browser-connector-10-r5 +++ b/metadata/md5-cache/gnome-extra/gnome-browser-connector-10-r5 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=mirror://gnome/sources/chrome-gnome-shell/10/chrome-gnome-shell-10.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a6be71eedf28215a91e32a8d450223b7 diff --git a/metadata/md5-cache/gnome-extra/gnome-characters-44.0 b/metadata/md5-cache/gnome-extra/gnome-characters-44.0 new file mode 100644 index 000000000000..c492c960ecf4 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/gnome-characters-44.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-libs/libxml2:2 dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=>=dev-libs/gjs-1.50 >=dev-libs/glib-2.32:2 >=dev-libs/gobject-introspection-1.35.9:= >=gui-libs/gtk-4.6:4[introspection] >=gui-libs/libadwaita-1.2:1= x11-libs/gdk-pixbuf:2 >=x11-libs/pango-1.36[introspection] gnome-base/gnome-desktop:3[introspection] +DESCRIPTION=Unicode character map viewer and library +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Design/Apps/CharacterMap +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson xdg +KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=GPL-2+ BSD +RDEPEND=>=dev-libs/gjs-1.50 >=dev-libs/glib-2.32:2 >=dev-libs/gobject-introspection-1.35.9:= >=gui-libs/gtk-4.6:4[introspection] >=gui-libs/libadwaita-1.2:1= x11-libs/gdk-pixbuf:2 >=x11-libs/pango-1.36[introspection] gnome-base/gnome-desktop:3[introspection] +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-characters/44/gnome-characters-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=46e0e2cdac2a890c747d348df863761b diff --git a/metadata/md5-cache/gnome-extra/gnome-shell-extensions-44.0 b/metadata/md5-cache/gnome-extra/gnome-shell-extensions-44.0 new file mode 100644 index 000000000000..c6d60b5105e7 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/gnome-shell-extensions-44.0 @@ -0,0 +1,15 @@ +BDEPEND=>=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=>=dev-libs/glib-2.26:2 >=gnome-base/libgtop-2.28.3[introspection] >=app-eselect/eselect-gnome-shell-extensions-20111211 +DESCRIPTION=JavaScript extensions for GNOME Shell +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Projects/GnomeShell/Extensions +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org readme.gentoo-r1 meson xdg +KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.26:2 >=gnome-base/libgtop-2.28.3[introspection] >=app-eselect/eselect-gnome-shell-extensions-20111211 >=app-accessibility/at-spi2-core-2.46.0[introspection] >=dev-libs/gjs-1.29 dev-libs/gobject-introspection:= gnome-base/gnome-menus:3[introspection] =gnome-base/gnome-shell-44* gui-libs/libadwaita[introspection] media-libs/clutter:1.0[introspection] media-libs/graphene[introspection] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] x11-themes/adwaita-icon-theme >=x11-wm/mutter-3.32[introspection] +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-shell-extensions/44/gnome-shell-extensions-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=71f99fc19fbca1f6516339bdc2d4fd96 diff --git a/metadata/md5-cache/gnome-extra/gnome-user-docs-44.0 b/metadata/md5-cache/gnome-extra/gnome-user-docs-44.0 new file mode 100644 index 000000000000..74ae17113f5b --- /dev/null +++ b/metadata/md5-cache/gnome-extra/gnome-user-docs-44.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-libs/libxml2 ) >=app-portage/elt-patches-20170815 app-arch/xz-utils +DEFINED_PHASES=compile configure install postinst postrm preinst prepare +DESCRIPTION=GNOME end user documentation +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/gnome-user-docs +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome2 +IUSE=test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=CC-BY-3.0 +RESTRICT=binchecks strip !test? ( test ) +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-user-docs/44/gnome-user-docs-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=4bca05742af6e542f8a8b8b2d706b51f diff --git a/metadata/md5-cache/gnome-extra/gnome-weather-44.0 b/metadata/md5-cache/gnome-extra/gnome-weather-44.0 new file mode 100644 index 000000000000..715b263cde6e --- /dev/null +++ b/metadata/md5-cache/gnome-extra/gnome-weather-44.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-libs/appstream-glib dev-libs/libxml2:2 >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/gobject-introspection-1.56:= >=gui-libs/gtk-4.5:4 >=dev-libs/gjs-1.71.0 >=app-misc/geoclue-2.3.1:2.0 >=gui-libs/libadwaita-1.2.0:1= >=dev-libs/libgweather-3.90.0:4= +DESCRIPTION=A weather application for GNOME +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Design/Apps/Weather +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson xdg +KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0 +RDEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/gobject-introspection-1.56:= >=gui-libs/gtk-4.5:4 >=dev-libs/gjs-1.71.0 >=app-misc/geoclue-2.3.1:2.0 >=gui-libs/libadwaita-1.2.0:1= >=dev-libs/libgweather-3.90.0:4= gnome-base/gsettings-desktop-schemas +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-weather/44/gnome-weather-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=9f351a2e28401a6e37f911ab6d8c9a2b diff --git a/metadata/md5-cache/gnome-extra/gucharmap-15.0.3 b/metadata/md5-cache/gnome-extra/gucharmap-15.0.3 new file mode 100644 index 000000000000..30ff74244a1a --- /dev/null +++ b/metadata/md5-cache/gnome-extra/gucharmap-15.0.3 @@ -0,0 +1,17 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) app-text/docbook-xml-dtd:4.1.2 dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig gtk-doc? ( >=dev-util/gtk-doc-1 ) introspection? ( >=dev-libs/gobject-introspection-1.54:= ) vala? ( || ( dev-lang/vala:0.56 ) ) >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=media-libs/freetype:2 >=dev-libs/glib-2.32:2 >=x11-libs/gtk+-3.22:3[introspection?] >=dev-libs/libpcre2-10.21:= =app-i18n/unicode-data-15.0* >=x11-libs/pango-1.42.4-r2[introspection?] +DESCRIPTION=Unicode character map viewer and library +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Gucharmap +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome2-utils meson python-any-r1 vala xdg +IUSE=+introspection gtk-doc vala +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-3+ +RDEPEND=media-libs/freetype:2 >=dev-libs/glib-2.32:2 >=x11-libs/gtk+-3.22:3[introspection?] >=dev-libs/libpcre2-10.21:= =app-i18n/unicode-data-15.0* >=x11-libs/pango-1.42.4-r2[introspection?] +REQUIRED_USE=vala? ( introspection ) +SLOT=2.90 +SRC_URI=https://gitlab.gnome.org/GNOME/gucharmap/-/archive/15.0.3/gucharmap-15.0.3.tar.bz2 +_eclasses_=gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=8822aa32c28884c36572c056b1ae1279 diff --git a/metadata/md5-cache/gnustep-base/Manifest.gz b/metadata/md5-cache/gnustep-base/Manifest.gz index 11cff5953581..a1a645ca614a 100644 Binary files a/metadata/md5-cache/gnustep-base/Manifest.gz and b/metadata/md5-cache/gnustep-base/Manifest.gz differ diff --git a/metadata/md5-cache/gnustep-base/libobjc2-2.1 b/metadata/md5-cache/gnustep-base/libobjc2-2.1 index ee4ea3212d77..27ebedfbba88 100644 --- a/metadata/md5-cache/gnustep-base/libobjc2-2.1 +++ b/metadata/md5-cache/gnustep-base/libobjc2-2.1 @@ -11,5 +11,5 @@ RDEPEND=boehm-gc? ( dev-libs/boehm-gc ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/gnustep/libobjc2/archive/v2.1.tar.gz -> libobjc2-2.1.tar.gz https://github.com/Tessil/robin-map/archive/757de82.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=76188c4d7d8f9bb4446ab29a61a2a710 diff --git a/metadata/md5-cache/gui-apps/Manifest.gz b/metadata/md5-cache/gui-apps/Manifest.gz index 24443e40480d..0efb7b4d8c81 100644 Binary files a/metadata/md5-cache/gui-apps/Manifest.gz and b/metadata/md5-cache/gui-apps/Manifest.gz differ diff --git a/metadata/md5-cache/gui-apps/gnome-console-44.0 b/metadata/md5-cache/gui-apps/gnome-console-44.0 new file mode 100644 index 000000000000..309d23260f78 --- /dev/null +++ b/metadata/md5-cache/gui-apps/gnome-console-44.0 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig test? ( dev-util/desktop-file-utils dev-libs/appstream-glib ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=>=dev-libs/glib-2.72:2 >=gui-libs/gtk-4.6:4 >=gui-libs/libadwaita-1.3_rc:1 >=gui-libs/vte-0.70.0:2.91-gtk4 gnome-base/libgtop:2= >=dev-libs/libpcre2-10.32:0= gnome-base/gsettings-desktop-schemas x11-libs/pango +DESCRIPTION=A simple user-friendly terminal emulator for the GNOME desktop +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/console +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson xdg +IUSE=test +KEYWORDS=~amd64 +LICENSE=LGPL-3+ +RDEPEND=>=dev-libs/glib-2.72:2 >=gui-libs/gtk-4.6:4 >=gui-libs/libadwaita-1.3_rc:1 >=gui-libs/vte-0.70.0:2.91-gtk4 gnome-base/libgtop:2= >=dev-libs/libpcre2-10.32:0= gnome-base/gsettings-desktop-schemas x11-libs/pango +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-console/44/gnome-console-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=0511b6d88d16fde4eae0bb99ffac59a3 diff --git a/metadata/md5-cache/gui-apps/nm-tray-0.5.0 b/metadata/md5-cache/gui-apps/nm-tray-0.5.0 index b81cefd1dae7..860a55ed5279 100644 --- a/metadata/md5-cache/gui-apps/nm-tray-0.5.0 +++ b/metadata/md5-cache/gui-apps/nm-tray-0.5.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 kde-frameworks/networkmanager-qt SLOT=0 SRC_URI=https://github.com/palinek/nm-tray/archive/0.5.0.tar.gz -> nm-tray-0.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=329338bee5ab95f4fdc100b01fdf7a04 diff --git a/metadata/md5-cache/gui-apps/wayvnc-0.4.0-r1 b/metadata/md5-cache/gui-apps/wayvnc-0.6.2 similarity index 58% rename from metadata/md5-cache/gui-apps/wayvnc-0.4.0-r1 rename to metadata/md5-cache/gui-apps/wayvnc-0.6.2 index f7f82d421877..b5f9003ad22f 100644 --- a/metadata/md5-cache/gui-apps/wayvnc-0.4.0-r1 +++ b/metadata/md5-cache/gui-apps/wayvnc-0.6.2 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig dev-libs/wayland-protocols >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array DEFINED_PHASES=compile configure install test -DEPEND=dev-libs/aml dev-libs/wayland gui-libs/neatvnc[tracing?] media-libs/mesa:=[egl(+),gles2,gbm(+)?] x11-libs/libxkbcommon x11-libs/pixman tracing? ( dev-util/systemtap ) +DEPEND==dev-libs/aml-0.3* dev-libs/wayland =gui-libs/neatvnc-0.6*[tracing?] media-libs/mesa:=[egl(+),gles2,gbm(+)?] x11-libs/libxkbcommon x11-libs/pixman tracing? ( dev-util/systemtap ) DESCRIPTION=VNC server for wlroots based Wayland compositors EAPI=7 HOMEPAGE=https://github.com/any1/wayvnc @@ -8,8 +8,8 @@ INHERIT=meson IUSE=gbm tracing KEYWORDS=~amd64 ~riscv ~x86 LICENSE=ISC -RDEPEND=dev-libs/aml dev-libs/wayland gui-libs/neatvnc[tracing?] media-libs/mesa:=[egl(+),gles2,gbm(+)?] x11-libs/libxkbcommon x11-libs/pixman tracing? ( dev-util/systemtap ) +RDEPEND==dev-libs/aml-0.3* dev-libs/wayland =gui-libs/neatvnc-0.6*[tracing?] media-libs/mesa:=[egl(+),gles2,gbm(+)?] x11-libs/libxkbcommon x11-libs/pixman tracing? ( dev-util/systemtap ) SLOT=0 -SRC_URI=https://github.com/any1/wayvnc/archive/v0.4.0.tar.gz -> wayvnc-0.4.0.tar.gz +SRC_URI=https://github.com/any1/wayvnc/archive/v0.6.2.tar.gz -> wayvnc-0.6.2.tar.gz _eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=8af4538569d615e3b13db93382966694 +_md5_=407021ab83ef8c0603a1205ce2c82dc8 diff --git a/metadata/md5-cache/gui-apps/wayvnc-9999 b/metadata/md5-cache/gui-apps/wayvnc-9999 index a36c73e6cfd7..ff0f82954f35 100644 --- a/metadata/md5-cache/gui-apps/wayvnc-9999 +++ b/metadata/md5-cache/gui-apps/wayvnc-9999 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig dev-libs/wayland-protocols >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install test unpack -DEPEND=dev-libs/aml dev-libs/wayland gui-libs/neatvnc[tracing?] media-libs/mesa:=[egl(+),gles2,gbm(+)?] x11-libs/libxkbcommon x11-libs/pixman tracing? ( dev-util/systemtap ) +DEPEND==dev-libs/aml-0.3* dev-libs/wayland =gui-libs/neatvnc-0.6*[tracing?] media-libs/mesa:=[egl(+),gles2,gbm(+)?] x11-libs/libxkbcommon x11-libs/pixman tracing? ( dev-util/systemtap ) DESCRIPTION=VNC server for wlroots based Wayland compositors EAPI=7 HOMEPAGE=https://github.com/any1/wayvnc @@ -8,7 +8,7 @@ INHERIT=meson git-r3 IUSE=gbm tracing LICENSE=ISC PROPERTIES=live -RDEPEND=dev-libs/aml dev-libs/wayland gui-libs/neatvnc[tracing?] media-libs/mesa:=[egl(+),gles2,gbm(+)?] x11-libs/libxkbcommon x11-libs/pixman tracing? ( dev-util/systemtap ) +RDEPEND==dev-libs/aml-0.3* dev-libs/wayland =gui-libs/neatvnc-0.6*[tracing?] media-libs/mesa:=[egl(+),gles2,gbm(+)?] x11-libs/libxkbcommon x11-libs/pixman tracing? ( dev-util/systemtap ) SLOT=0 _eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 git-r3 c57c50c922e121043788de0b40ada60a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=3ff5bfcb1ba3cc3f934a69532f2ed0e3 +_md5_=407021ab83ef8c0603a1205ce2c82dc8 diff --git a/metadata/md5-cache/gui-libs/Manifest.gz b/metadata/md5-cache/gui-libs/Manifest.gz index 97344ceb32c0..ffe690e63c29 100644 Binary files a/metadata/md5-cache/gui-libs/Manifest.gz and b/metadata/md5-cache/gui-libs/Manifest.gz differ diff --git a/metadata/md5-cache/gui-libs/neatvnc-0.5.4 b/metadata/md5-cache/gui-libs/neatvnc-0.6.0 similarity index 51% rename from metadata/md5-cache/gui-libs/neatvnc-0.5.4 rename to metadata/md5-cache/gui-libs/neatvnc-0.6.0 index c946862b7283..b568aa81d806 100644 --- a/metadata/md5-cache/gui-libs/neatvnc-0.5.4 +++ b/metadata/md5-cache/gui-libs/neatvnc-0.6.0 @@ -1,17 +1,17 @@ BDEPEND=virtual/pkgconfig >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array DEFINED_PHASES=compile configure install test -DEPEND=dev-libs/aml sys-libs/zlib x11-libs/pixman gbm? ( media-libs/mesa ) h264? ( media-video/ffmpeg:= x11-libs/libdrm ) jpeg? ( media-libs/libjpeg-turbo:= ) ssl? ( net-libs/gnutls:= ) tracing? ( dev-util/systemtap ) x11-libs/libdrm +DEPEND==dev-libs/aml-0.3* sys-libs/zlib x11-libs/pixman gbm? ( media-libs/mesa ) h264? ( media-video/ffmpeg:= x11-libs/libdrm ) jpeg? ( media-libs/libjpeg-turbo:= ) ssl? ( net-libs/gnutls:= ) tracing? ( dev-util/systemtap ) x11-libs/libdrm DESCRIPTION=Liberally licensed VNC server library with a clean interface EAPI=8 HOMEPAGE=https://github.com/any1/neatvnc/ INHERIT=meson IUSE=examples gbm h264 jpeg ssl test tracing -KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~riscv ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~riscv ~x86 LICENSE=ISC -RDEPEND=dev-libs/aml sys-libs/zlib x11-libs/pixman gbm? ( media-libs/mesa ) h264? ( media-video/ffmpeg:= x11-libs/libdrm ) jpeg? ( media-libs/libjpeg-turbo:= ) ssl? ( net-libs/gnutls:= ) tracing? ( dev-util/systemtap ) +RDEPEND==dev-libs/aml-0.3* sys-libs/zlib x11-libs/pixman gbm? ( media-libs/mesa ) h264? ( media-video/ffmpeg:= x11-libs/libdrm ) jpeg? ( media-libs/libjpeg-turbo:= ) ssl? ( net-libs/gnutls:= ) tracing? ( dev-util/systemtap ) REQUIRED_USE=h264? ( gbm ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/any1/neatvnc/archive/v0.5.4.tar.gz -> neatvnc-0.5.4.tar.gz +SRC_URI=https://github.com/any1/neatvnc/archive/v0.6.0.tar.gz -> neatvnc-0.6.0.tar.gz _eclasses_=meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=3144b925d6667d2c028d42f495eaf57c +_md5_=e2f74f5130a7f733581be93331d5e682 diff --git a/metadata/md5-cache/gui-libs/neatvnc-9999 b/metadata/md5-cache/gui-libs/neatvnc-9999 index 175f3aaf5776..5406205b4c68 100644 --- a/metadata/md5-cache/gui-libs/neatvnc-9999 +++ b/metadata/md5-cache/gui-libs/neatvnc-9999 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install test unpack -DEPEND=dev-libs/aml sys-libs/zlib x11-libs/pixman gbm? ( media-libs/mesa ) h264? ( media-video/ffmpeg:= x11-libs/libdrm ) jpeg? ( media-libs/libjpeg-turbo:= ) ssl? ( net-libs/gnutls:= ) tracing? ( dev-util/systemtap ) x11-libs/libdrm +DEPEND==dev-libs/aml-0.3* sys-libs/zlib x11-libs/pixman gbm? ( media-libs/mesa ) h264? ( media-video/ffmpeg:= x11-libs/libdrm ) jpeg? ( media-libs/libjpeg-turbo:= ) ssl? ( net-libs/gnutls:= ) tracing? ( dev-util/systemtap ) x11-libs/libdrm DESCRIPTION=Liberally licensed VNC server library with a clean interface EAPI=8 HOMEPAGE=https://github.com/any1/neatvnc/ @@ -8,9 +8,9 @@ INHERIT=meson git-r3 IUSE=examples gbm h264 jpeg ssl test tracing LICENSE=ISC PROPERTIES=live -RDEPEND=dev-libs/aml sys-libs/zlib x11-libs/pixman gbm? ( media-libs/mesa ) h264? ( media-video/ffmpeg:= x11-libs/libdrm ) jpeg? ( media-libs/libjpeg-turbo:= ) ssl? ( net-libs/gnutls:= ) tracing? ( dev-util/systemtap ) +RDEPEND==dev-libs/aml-0.3* sys-libs/zlib x11-libs/pixman gbm? ( media-libs/mesa ) h264? ( media-video/ffmpeg:= x11-libs/libdrm ) jpeg? ( media-libs/libjpeg-turbo:= ) ssl? ( net-libs/gnutls:= ) tracing? ( dev-util/systemtap ) REQUIRED_USE=h264? ( gbm ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=git-r3 c57c50c922e121043788de0b40ada60a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=61de92d8141a4c0e79a82112d1200c14 +_md5_=e2f74f5130a7f733581be93331d5e682 diff --git a/metadata/md5-cache/gui-libs/vte-0.72.0 b/metadata/md5-cache/gui-libs/vte-0.72.0 new file mode 100644 index 000000000000..d6cb99065a54 --- /dev/null +++ b/metadata/md5-cache/gui-libs/vte-0.72.0 @@ -0,0 +1,17 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-libs/libxml2:2 dev-util/glib-utils gtk-doc? ( dev-util/gi-docgen ) >=sys-devel/gettext-0.19.8 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.56 ) ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=gui-libs/gtk-4.0.1:4[introspection?] >=dev-libs/fribidi-1.0.0 >=dev-libs/glib-2.60:2 crypt? ( >=net-libs/gnutls-3.2.7:0= ) icu? ( dev-libs/icu:= ) >=x11-libs/pango-1.22.0 >=dev-libs/libpcre2-10.21:= systemd? ( >=sys-apps/systemd-220:= ) sys-libs/zlib introspection? ( >=dev-libs/gobject-introspection-1.56:= ) x11-libs/pango[introspection?] +DESCRIPTION=Library providing a virtual terminal emulator widget +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Terminal/VTE +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org meson python-any-r1 vala xdg +IUSE=+crypt debug gtk-doc +icu +introspection systemd +vala vanilla +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-3+ GPL-3+ +RDEPEND=>=gui-libs/gtk-4.0.1:4[introspection?] >=dev-libs/fribidi-1.0.0 >=dev-libs/glib-2.60:2 crypt? ( >=net-libs/gnutls-3.2.7:0= ) icu? ( dev-libs/icu:= ) >=x11-libs/pango-1.22.0 >=dev-libs/libpcre2-10.21:= systemd? ( >=sys-apps/systemd-220:= ) sys-libs/zlib introspection? ( >=dev-libs/gobject-introspection-1.56:= ) x11-libs/pango[introspection?] ~gui-libs/vte-common-0.72.0[systemd?] +REQUIRED_USE=gtk-doc? ( introspection ) vala? ( introspection ) +SLOT=2.91-gtk4 +SRC_URI=https://gitlab.gnome.org/GNOME/vte/-/archive/0.72.0/vte-0.72.0.tar.bz2 !vanilla? ( https://dev.gentoo.org/~mattst88/distfiles/vte-0.70.0-command-notify.patch.xz ) +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=f838e69749b0c0c2ea57dadd8bb4a2a4 diff --git a/metadata/md5-cache/gui-libs/vte-common-0.72.0 b/metadata/md5-cache/gui-libs/vte-common-0.72.0 new file mode 100644 index 000000000000..065fd3c6676e --- /dev/null +++ b/metadata/md5-cache/gui-libs/vte-common-0.72.0 @@ -0,0 +1,15 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-libs/libxml2:2 dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=|| ( >=gui-libs/gtk-4.0.1:4 >=x11-libs/gtk+-3.24.22:3 ) >=dev-libs/fribidi-1.0.0 >=dev-libs/glib-2.60:2 >=x11-libs/pango-1.22.0 >=dev-libs/libpcre2-10.21 systemd? ( >=sys-apps/systemd-220:= ) sys-libs/zlib x11-libs/pango +DESCRIPTION=Library providing a virtual terminal emulator widget +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Terminal/VTE +INHERIT=gnome.org meson python-any-r1 +IUSE=systemd +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-3+ GPL-3+ +RDEPEND=!=x11-libs/libfm-qt-1.1:= sys-apps/xdg-desktop-portal SLOT=0 SRC_URI=https://github.com/lxqt/xdg-desktop-portal-lxqt/releases/download/0.2.0/xdg-desktop-portal-lxqt-0.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ce044af4633f74336b9df0e3eeaf682f diff --git a/metadata/md5-cache/gui-libs/xdg-desktop-portal-lxqt-0.3.0 b/metadata/md5-cache/gui-libs/xdg-desktop-portal-lxqt-0.3.0 index baae9c2b431f..684887f40679 100644 --- a/metadata/md5-cache/gui-libs/xdg-desktop-portal-lxqt-0.3.0 +++ b/metadata/md5-cache/gui-libs/xdg-desktop-portal-lxqt-0.3.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 kde-frameworks/kwindowsystem:5 >=x11-libs/libfm-qt-1.2:= sys-apps/xdg-desktop-portal SLOT=0 SRC_URI=https://github.com/lxqt/xdg-desktop-portal-lxqt/releases/download/0.3.0/xdg-desktop-portal-lxqt-0.3.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a23e7bf51f222669e27cfbed5f7aecdf diff --git a/metadata/md5-cache/kde-apps/Manifest.gz b/metadata/md5-cache/kde-apps/Manifest.gz index 0c5eb280fd71..0f7adcc29cc4 100644 Binary files a/metadata/md5-cache/kde-apps/Manifest.gz and b/metadata/md5-cache/kde-apps/Manifest.gz differ diff --git a/metadata/md5-cache/kde-apps/akonadi-22.08.3 b/metadata/md5-cache/kde-apps/akonadi-22.08.3 index 92d414b5decf..17e88fd78afe 100644 --- a/metadata/md5-cache/kde-apps/akonadi-22.08.3 +++ b/metadata/md5-cache/kde-apps/akonadi-22.08.3 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) test? ( tools ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akonadi-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9fc23da90d2fed84ae05f81aa0bd02de diff --git a/metadata/md5-cache/kde-apps/akonadi-22.12.3 b/metadata/md5-cache/kde-apps/akonadi-22.12.3 index 45b5f43924f9..f281818aa025 100644 --- a/metadata/md5-cache/kde-apps/akonadi-22.12.3 +++ b/metadata/md5-cache/kde-apps/akonadi-22.12.3 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) test? ( tools ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/akonadi-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=994661485b502723f8d0d3855c5c7df0 diff --git a/metadata/md5-cache/kde-apps/akonadi-calendar-22.08.3 b/metadata/md5-cache/kde-apps/akonadi-calendar-22.08.3 index e250948a7f45..fa247b4c0b1a 100644 --- a/metadata/md5-cache/kde-apps/akonadi-calendar-22.08.3 +++ b/metadata/md5-cache/kde-apps/akonadi-calendar-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akonadi-calendar-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bab9abd5f32fa6651ac8213d0bb8b0a9 diff --git a/metadata/md5-cache/kde-apps/akonadi-calendar-22.08.3-r1 b/metadata/md5-cache/kde-apps/akonadi-calendar-22.08.3-r1 index 070617ee5f52..7840b623d364 100644 --- a/metadata/md5-cache/kde-apps/akonadi-calendar-22.08.3-r1 +++ b/metadata/md5-cache/kde-apps/akonadi-calendar-22.08.3-r1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akonadi-calendar-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=80649216974100d4ed19ed199d902466 diff --git a/metadata/md5-cache/kde-apps/akonadi-calendar-22.12.3 b/metadata/md5-cache/kde-apps/akonadi-calendar-22.12.3 index 824eeeb63f2d..1851aff2e19c 100644 --- a/metadata/md5-cache/kde-apps/akonadi-calendar-22.12.3 +++ b/metadata/md5-cache/kde-apps/akonadi-calendar-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/akonadi-calendar-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2804947b34fa1e76f2f6071e8ffb38d2 diff --git a/metadata/md5-cache/kde-apps/akonadi-contacts-22.08.3 b/metadata/md5-cache/kde-apps/akonadi-contacts-22.08.3 index 0a0f382e60b5..70aabe4da94a 100644 --- a/metadata/md5-cache/kde-apps/akonadi-contacts-22.08.3 +++ b/metadata/md5-cache/kde-apps/akonadi-contacts-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/grantlee-5.2.0:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akonadi-contacts-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cd3cc93fbd5e63dba17f262b833d1965 diff --git a/metadata/md5-cache/kde-apps/akonadi-contacts-22.12.3 b/metadata/md5-cache/kde-apps/akonadi-contacts-22.12.3 index 307e079617f2..43d5c494fdde 100644 --- a/metadata/md5-cache/kde-apps/akonadi-contacts-22.12.3 +++ b/metadata/md5-cache/kde-apps/akonadi-contacts-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/grantlee-5.2.0:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/akonadi-contacts-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=beefa1d0103732538f035da278550102 diff --git a/metadata/md5-cache/kde-apps/akonadi-import-wizard-22.08.3 b/metadata/md5-cache/kde-apps/akonadi-import-wizard-22.08.3 index fd44273faa57..0f96ac92e1b0 100644 --- a/metadata/md5-cache/kde-apps/akonadi-import-wizard-22.08.3 +++ b/metadata/md5-cache/kde-apps/akonadi-import-wizard-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/akonadi-22.08.3:5 >=kde-apps/kidentitymanagement-22.08.3:5 >=kde-apps/kmailtransport-22.08.3:5 >=kde-apps/mailcommon-22.08.3:5 >=kde-apps/mailimporter-22.08.3:5 >=kde-apps/messagelib-22.08.3:5 >=kde-apps/pimcommon-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcontacts-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akonadi-import-wizard-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=383726cb48e1a5675c9ae994a2c36d02 diff --git a/metadata/md5-cache/kde-apps/akonadi-import-wizard-22.12.3 b/metadata/md5-cache/kde-apps/akonadi-import-wizard-22.12.3 index 2123437d2cc2..da68250461a9 100644 --- a/metadata/md5-cache/kde-apps/akonadi-import-wizard-22.12.3 +++ b/metadata/md5-cache/kde-apps/akonadi-import-wizard-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/akonadi-22.12.3:5 >=kde-apps/kidentitymanagement-22.12.3:5 >=kde-apps/kmailtransport-22.12.3:5 >=kde-apps/mailcommon-22.12.3:5 >=kde-apps/mailimporter-22.12.3:5 >=kde-apps/messagelib-22.12.3:5 >=kde-apps/pimcommon-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcontacts-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/akonadi-import-wizard-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=51cc135f4eda923260fe545832e70b11 diff --git a/metadata/md5-cache/kde-apps/akonadi-mime-22.08.3 b/metadata/md5-cache/kde-apps/akonadi-mime-22.08.3 index 4ae137e346bd..d47f1481585b 100644 --- a/metadata/md5-cache/kde-apps/akonadi-mime-22.08.3 +++ b/metadata/md5-cache/kde-apps/akonadi-mime-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libxslt >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akonadi-mime-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a82a0fe2c91387b0f09e08144e4edd5 diff --git a/metadata/md5-cache/kde-apps/akonadi-mime-22.12.3 b/metadata/md5-cache/kde-apps/akonadi-mime-22.12.3 index f3939973d1c5..fdbe8e9c686d 100644 --- a/metadata/md5-cache/kde-apps/akonadi-mime-22.12.3 +++ b/metadata/md5-cache/kde-apps/akonadi-mime-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libxslt >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/akonadi-mime-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3253f4412a8ce0e0e4732d5d20f0615f diff --git a/metadata/md5-cache/kde-apps/akonadi-notes-22.08.3 b/metadata/md5-cache/kde-apps/akonadi-notes-22.08.3 index f9e2dcb347b1..051a54c5005a 100644 --- a/metadata/md5-cache/kde-apps/akonadi-notes-22.08.3 +++ b/metadata/md5-cache/kde-apps/akonadi-notes-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/kmime-22.08.3 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akonadi-notes-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e1fc9a1bee06a85309469f7d1e6c736f diff --git a/metadata/md5-cache/kde-apps/akonadi-notes-22.12.3 b/metadata/md5-cache/kde-apps/akonadi-notes-22.12.3 index 6d580d6daa60..31c4ef592df6 100644 --- a/metadata/md5-cache/kde-apps/akonadi-notes-22.12.3 +++ b/metadata/md5-cache/kde-apps/akonadi-notes-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/kmime-22.12.3 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/akonadi-notes-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=323d4e89672f488221d03137e469d75c diff --git a/metadata/md5-cache/kde-apps/akonadi-search-22.08.3 b/metadata/md5-cache/kde-apps/akonadi-search-22.08.3 index e215971d704a..7afd8f861e7a 100644 --- a/metadata/md5-cache/kde-apps/akonadi-search-22.08.3 +++ b/metadata/md5-cache/kde-apps/akonadi-search-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/xapian-1.3:=[chert(+)] >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgu RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akonadi-search-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=efc91a957e8b7abcfe2d37dced6be1f8 diff --git a/metadata/md5-cache/kde-apps/akonadi-search-22.12.3 b/metadata/md5-cache/kde-apps/akonadi-search-22.12.3 index 6ce0e58058fe..36681fa61ad8 100644 --- a/metadata/md5-cache/kde-apps/akonadi-search-22.12.3 +++ b/metadata/md5-cache/kde-apps/akonadi-search-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/xapian-1.3:=[chert(+)] >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgu RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/akonadi-search-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=30bb89125e60263d84486e6a151b2151 diff --git a/metadata/md5-cache/kde-apps/akonadiconsole-22.08.3 b/metadata/md5-cache/kde-apps/akonadiconsole-22.08.3 index 0e8372e34575..0acd74c3ec00 100644 --- a/metadata/md5-cache/kde-apps/akonadiconsole-22.08.3 +++ b/metadata/md5-cache/kde-apps/akonadiconsole-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ LGPL-2.1+ handbook? ( FDL-1.2+ ) RDEPEND=dev-libs/xapian:= >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsql-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-22.08.3:5 >=kde-apps/akonadi-contacts-22.08.3:5 >=kde-apps/akonadi-search-22.08.3:5 >=kde-apps/calendarsupport-22.08.3:5 >=kde-apps/kmime-22.08.3:5 >=kde-apps/libkdepim-22.08.3:5 >=kde-apps/messagelib-22.08.3:5 >=kde-frameworks/kcalendarcore-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcontacts-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kitemmodels-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akonadiconsole-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7531bc6e3d68170089dbc5638c627da8 diff --git a/metadata/md5-cache/kde-apps/akonadiconsole-22.12.3 b/metadata/md5-cache/kde-apps/akonadiconsole-22.12.3 index 87912303fec1..a4cc81dbf2d9 100644 --- a/metadata/md5-cache/kde-apps/akonadiconsole-22.12.3 +++ b/metadata/md5-cache/kde-apps/akonadiconsole-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ LGPL-2.1+ handbook? ( FDL-1.2+ ) RDEPEND=dev-libs/xapian:= >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsql-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-22.12.3:5 >=kde-apps/akonadi-contacts-22.12.3:5 >=kde-apps/akonadi-search-22.12.3:5 >=kde-apps/calendarsupport-22.12.3:5 >=kde-apps/kmime-22.12.3:5 >=kde-apps/libkdepim-22.12.3:5 >=kde-apps/messagelib-22.12.3:5 >=kde-frameworks/kcalendarcore-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcontacts-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kitemmodels-5.101.0:5 >=kde-frameworks/kitemviews-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/akonadiconsole-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e763735eefd7c030db4655685b464ca diff --git a/metadata/md5-cache/kde-apps/akregator-22.08.3 b/metadata/md5-cache/kde-apps/akregator-22.08.3 index 587d58eabe3b..cfaa9aaf457c 100644 --- a/metadata/md5-cache/kde-apps/akregator-22.08.3 +++ b/metadata/md5-cache/kde-apps/akregator-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akregator-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=34afb2c0e24887c10543b3761e454ced diff --git a/metadata/md5-cache/kde-apps/akregator-22.12.3 b/metadata/md5-cache/kde-apps/akregator-22.12.3 index 24954a2b14a5..f44c0cfc1c48 100644 --- a/metadata/md5-cache/kde-apps/akregator-22.12.3 +++ b/metadata/md5-cache/kde-apps/akregator-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/akregator-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=afffd616ecbd78928a1b107e424a8473 diff --git a/metadata/md5-cache/kde-apps/analitza-22.08.3 b/metadata/md5-cache/kde-apps/analitza-22.08.3 index 54bce3eab952..af9eeeab28e3 100644 --- a/metadata/md5-cache/kde-apps/analitza-22.08.3 +++ b/metadata/md5-cache/kde-apps/analitza-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5[-gles2-only] >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/analitza-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a9269b96028e66c6a5e5523c36df8543 diff --git a/metadata/md5-cache/kde-apps/analitza-22.12.3 b/metadata/md5-cache/kde-apps/analitza-22.12.3 index e08b6daf93a1..02ae3ba3de51 100644 --- a/metadata/md5-cache/kde-apps/analitza-22.12.3 +++ b/metadata/md5-cache/kde-apps/analitza-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5[-gles2-only] >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/analitza-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=26cbf519b4fe17b3eec4a709cd43058b diff --git a/metadata/md5-cache/kde-apps/ark-22.08.3 b/metadata/md5-cache/kde-apps/ark-22.08.3 index 141d4dc67b0c..e3232add3f75 100644 --- a/metadata/md5-cache/kde-apps/ark-22.08.3 +++ b/metadata/md5-cache/kde-apps/ark-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=app-arch/libarchive:=[bzip2,lzma,zlib(+)] >=dev-qt/qtdbus-5.15.5:5 >=dev RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ark-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=178031415e40968661b2918c6902bce9 diff --git a/metadata/md5-cache/kde-apps/ark-22.12.3 b/metadata/md5-cache/kde-apps/ark-22.12.3 index 17bed2373e95..e59ff2d70234 100644 --- a/metadata/md5-cache/kde-apps/ark-22.12.3 +++ b/metadata/md5-cache/kde-apps/ark-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-arch/libarchive-3.5.3:=[bzip2,lzma] >=dev-qt/qtdbus-5.15.5:5 >=dev RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ark-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c89af319a6471fd845bff6a68fbd435 diff --git a/metadata/md5-cache/kde-apps/artikulate-22.08.3 b/metadata/md5-cache/kde-apps/artikulate-22.08.3 index 2c22c4ba5b38..34ee6c21d04c 100644 --- a/metadata/md5-cache/kde-apps/artikulate-22.08.3 +++ b/metadata/md5-cache/kde-apps/artikulate-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtsql-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=dev-qt/qtxmlpatterns-5.15.5:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/artikulate-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=41acd890f6972256c22717f3a34938dd diff --git a/metadata/md5-cache/kde-apps/artikulate-22.12.3 b/metadata/md5-cache/kde-apps/artikulate-22.12.3 index d9d980135dc4..f169cb05d81f 100644 --- a/metadata/md5-cache/kde-apps/artikulate-22.12.3 +++ b/metadata/md5-cache/kde-apps/artikulate-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmulti RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/artikulate-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b1e718497816872571a7b978f0996a9 diff --git a/metadata/md5-cache/kde-apps/audiocd-kio-22.08.3 b/metadata/md5-cache/kde-apps/audiocd-kio-22.08.3 index d7461d1b23b1..9ed3da9d3481 100644 --- a/metadata/md5-cache/kde-apps/audiocd-kio-22.08.3 +++ b/metadata/md5-cache/kde-apps/audiocd-kio-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2 ) RDEPEND=>=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkcddb-22.08.3:5 >=kde-apps/libkcompactdisc-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcmutils-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 media-sound/cdparanoia flac? ( >=media-libs/flac-1.1.2:= ) vorbis? ( media-libs/libogg media-libs/libvorbis ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/audiocd-kio-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=20a4005e0076eba4c91a061aa7bef0ba diff --git a/metadata/md5-cache/kde-apps/audiocd-kio-22.12.3 b/metadata/md5-cache/kde-apps/audiocd-kio-22.12.3 index b201a2742e5a..f86dc7f22592 100644 --- a/metadata/md5-cache/kde-apps/audiocd-kio-22.12.3 +++ b/metadata/md5-cache/kde-apps/audiocd-kio-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2 ) RDEPEND=>=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkcddb-22.12.3:5 >=kde-apps/libkcompactdisc-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcmutils-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 media-sound/cdparanoia flac? ( >=media-libs/flac-1.1.2:= ) vorbis? ( media-libs/libogg media-libs/libvorbis ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/audiocd-kio-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9a23f39133a9d2013bfc902c0d4be109 diff --git a/metadata/md5-cache/kde-apps/baloo-widgets-22.08.3 b/metadata/md5-cache/kde-apps/baloo-widgets-22.08.3 index dfc8a37f410e..794726619733 100644 --- a/metadata/md5-cache/kde-apps/baloo-widgets-22.08.3 +++ b/metadata/md5-cache/kde-apps/baloo-widgets-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/bal RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/baloo-widgets-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cd003db3826ec4003b12aa6a13f2909b diff --git a/metadata/md5-cache/kde-apps/baloo-widgets-22.12.3 b/metadata/md5-cache/kde-apps/baloo-widgets-22.12.3 index e6e2b0459782..17da67a2c18d 100644 --- a/metadata/md5-cache/kde-apps/baloo-widgets-22.12.3 +++ b/metadata/md5-cache/kde-apps/baloo-widgets-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/bal RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/baloo-widgets-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=59ef69ddfa0e202c8ff537c2a0da20e4 diff --git a/metadata/md5-cache/kde-apps/blinken-22.08.3 b/metadata/md5-cache/kde-apps/blinken-22.08.3 index a6359293b1ce..8a74f18e5607 100644 --- a/metadata/md5-cache/kde-apps/blinken-22.08.3 +++ b/metadata/md5-cache/kde-apps/blinken-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=media-libs/phonon-4.11.0 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/blinken-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e2ef5b8702873b21ffbe9fb05dacce93 diff --git a/metadata/md5-cache/kde-apps/blinken-22.12.3 b/metadata/md5-cache/kde-apps/blinken-22.12.3 index 763ef32ca0c4..7f3ff36ab4b5 100644 --- a/metadata/md5-cache/kde-apps/blinken-22.12.3 +++ b/metadata/md5-cache/kde-apps/blinken-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=media-libs/phonon-4.11.0 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/blinken-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd04b3e191a3397bbaab4f1dfba9a9b1 diff --git a/metadata/md5-cache/kde-apps/bomber-22.08.3 b/metadata/md5-cache/kde-apps/bomber-22.08.3 index 46b9d8dc514c..2f07c79f2298 100644 --- a/metadata/md5-cache/kde-apps/bomber-22.08.3 +++ b/metadata/md5-cache/kde-apps/bomber-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 !games-action/xbomber || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/bomber-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c667b9647d36753c4fcebbd228953e35 diff --git a/metadata/md5-cache/kde-apps/bomber-22.12.3 b/metadata/md5-cache/kde-apps/bomber-22.12.3 index 2730f24a34dc..26bd28185715 100644 --- a/metadata/md5-cache/kde-apps/bomber-22.12.3 +++ b/metadata/md5-cache/kde-apps/bomber-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 !games-action/xbomber || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/bomber-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=66e1a739fd47764df20059f4fdc18935 diff --git a/metadata/md5-cache/kde-apps/bovo-22.08.3 b/metadata/md5-cache/kde-apps/bovo-22.08.3 index 7250107c0cd0..891db02f0f4b 100644 --- a/metadata/md5-cache/kde-apps/bovo-22.08.3 +++ b/metadata/md5-cache/kde-apps/bovo-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/bovo-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f626e8856428c44725f35711eb4e2533 diff --git a/metadata/md5-cache/kde-apps/bovo-22.12.3 b/metadata/md5-cache/kde-apps/bovo-22.12.3 index 20ee321a1490..58682b9c76dd 100644 --- a/metadata/md5-cache/kde-apps/bovo-22.12.3 +++ b/metadata/md5-cache/kde-apps/bovo-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/bovo-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b7b50ef77c5ab9c7fcb25364690732ea diff --git a/metadata/md5-cache/kde-apps/calendarjanitor-22.08.3 b/metadata/md5-cache/kde-apps/calendarjanitor-22.08.3 index 03a476f43301..bbe2a0d50b62 100644 --- a/metadata/md5-cache/kde-apps/calendarjanitor-22.08.3 +++ b/metadata/md5-cache/kde-apps/calendarjanitor-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-22.08.3:5 >=kde-apps/akonadi-calendar-22.08.3:5 >=kde-apps/calendarsupport-22.08.3:5 >=kde-frameworks/kcalendarcore-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akonadi-calendar-tools-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d814086fa9ad8ea9b30aee1a1259e8dc diff --git a/metadata/md5-cache/kde-apps/calendarjanitor-22.12.3 b/metadata/md5-cache/kde-apps/calendarjanitor-22.12.3 index 53591bf32795..c5ce44e15382 100644 --- a/metadata/md5-cache/kde-apps/calendarjanitor-22.12.3 +++ b/metadata/md5-cache/kde-apps/calendarjanitor-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-22.12.3:5 >=kde-apps/akonadi-calendar-22.12.3:5 >=kde-apps/calendarsupport-22.12.3:5 >=kde-frameworks/kcalendarcore-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/akonadi-calendar-tools-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=67b7d9287f03c862937aa306e6827983 diff --git a/metadata/md5-cache/kde-apps/calendarsupport-22.08.3 b/metadata/md5-cache/kde-apps/calendarsupport-22.08.3 index 04ff44c5633d..1efb57642a3a 100644 --- a/metadata/md5-cache/kde-apps/calendarsupport-22.08.3 +++ b/metadata/md5-cache/kde-apps/calendarsupport-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libical >=dev-qt/designer-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=de RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/calendarsupport-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1b32976b9a31232083dcce68b5d16b9f diff --git a/metadata/md5-cache/kde-apps/calendarsupport-22.12.3 b/metadata/md5-cache/kde-apps/calendarsupport-22.12.3 index 62daeb0be870..a0224eab5b9d 100644 --- a/metadata/md5-cache/kde-apps/calendarsupport-22.12.3 +++ b/metadata/md5-cache/kde-apps/calendarsupport-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libical >=dev-qt/designer-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=de RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/calendarsupport-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=40cdbf3df3b4252066cb8320a0af41c5 diff --git a/metadata/md5-cache/kde-apps/cantor-22.08.3 b/metadata/md5-cache/kde-apps/cantor-22.08.3 index 76c72013e5bb..f04e9dbeca2f 100644 --- a/metadata/md5-cache/kde-apps/cantor-22.08.3 +++ b/metadata/md5-cache/kde-apps/cantor-22.08.3 @@ -14,5 +14,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_luajit ) ) python? ( ^^ ( python_sing RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/cantor-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c21b3459f1fd0490dc33eea2556da1ad diff --git a/metadata/md5-cache/kde-apps/cantor-22.12.3 b/metadata/md5-cache/kde-apps/cantor-22.12.3 index b72a797117da..86642b0e0b8e 100644 --- a/metadata/md5-cache/kde-apps/cantor-22.12.3 +++ b/metadata/md5-cache/kde-apps/cantor-22.12.3 @@ -14,5 +14,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_luajit ) ) python? ( ^^ ( python_sing RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/cantor-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1817fdc88cc226061fc043b849121f77 diff --git a/metadata/md5-cache/kde-apps/cervisia-22.08.3 b/metadata/md5-cache/kde-apps/cervisia-22.08.3 index f23b6f580e2e..29c15b465a86 100644 --- a/metadata/md5-cache/kde-apps/cervisia-22.08.3 +++ b/metadata/md5-cache/kde-apps/cervisia-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdesu-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kinit-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 dev-vcs/cvs || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/cervisia-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d071afe8ccdf1784d55bf9c5cb232f95 diff --git a/metadata/md5-cache/kde-apps/cervisia-22.12.3 b/metadata/md5-cache/kde-apps/cervisia-22.12.3 index b16438952f33..fb91484dfa53 100644 --- a/metadata/md5-cache/kde-apps/cervisia-22.12.3 +++ b/metadata/md5-cache/kde-apps/cervisia-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdesu-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kinit-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kitemviews-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 dev-vcs/cvs || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/cervisia-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=67b9f1ddb8680a5bf473e861cfb5221d diff --git a/metadata/md5-cache/kde-apps/dolphin-22.08.3 b/metadata/md5-cache/kde-apps/dolphin-22.08.3 index 2cbe8de91f64..4f307a44ea6c 100644 --- a/metadata/md5-cache/kde-apps/dolphin-22.08.3 +++ b/metadata/md5-cache/kde-apps/dolphin-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/dolphin-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1df3a35227dc0029783ebd348cf0f512 diff --git a/metadata/md5-cache/kde-apps/dolphin-22.12.3 b/metadata/md5-cache/kde-apps/dolphin-22.12.3 index 5bfa5af015fe..1cbec291bd96 100644 --- a/metadata/md5-cache/kde-apps/dolphin-22.12.3 +++ b/metadata/md5-cache/kde-apps/dolphin-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/dolphin-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ecc504953b143b7819ce7d0b5505b760 diff --git a/metadata/md5-cache/kde-apps/dolphin-plugins-dropbox-22.08.3 b/metadata/md5-cache/kde-apps/dolphin-plugins-dropbox-22.08.3 index 63ddb5628a34..06626b6e90be 100644 --- a/metadata/md5-cache/kde-apps/dolphin-plugins-dropbox-22.08.3 +++ b/metadata/md5-cache/kde-apps/dolphin-plugins-dropbox-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/dolphin-22.08.3:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 net-misc/dropbox-cli || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/dolphin-plugins-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=14fd1a649af45b436764e2680ccfc906 diff --git a/metadata/md5-cache/kde-apps/dolphin-plugins-dropbox-22.12.3 b/metadata/md5-cache/kde-apps/dolphin-plugins-dropbox-22.12.3 index 8be5fdc7a968..29718d07dd42 100644 --- a/metadata/md5-cache/kde-apps/dolphin-plugins-dropbox-22.12.3 +++ b/metadata/md5-cache/kde-apps/dolphin-plugins-dropbox-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/dolphin-22.12.3:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 net-misc/dropbox-cli || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/dolphin-plugins-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b0fe1cb719775e69d6a4bcef4268caf6 diff --git a/metadata/md5-cache/kde-apps/dolphin-plugins-git-22.08.3 b/metadata/md5-cache/kde-apps/dolphin-plugins-git-22.08.3 index 121090f8f46a..bfd154c88a5b 100644 --- a/metadata/md5-cache/kde-apps/dolphin-plugins-git-22.08.3 +++ b/metadata/md5-cache/kde-apps/dolphin-plugins-git-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/dolphin-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 dev-vcs/git || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/dolphin-plugins-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=54c442aa67ccf4b6fccdf84e4c280013 diff --git a/metadata/md5-cache/kde-apps/dolphin-plugins-git-22.12.3 b/metadata/md5-cache/kde-apps/dolphin-plugins-git-22.12.3 index e333e7f7b11e..3d8982ddaa82 100644 --- a/metadata/md5-cache/kde-apps/dolphin-plugins-git-22.12.3 +++ b/metadata/md5-cache/kde-apps/dolphin-plugins-git-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/dolphin-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 dev-vcs/git || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/dolphin-plugins-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=400f9d4b56f8bf0239c122c7230d9085 diff --git a/metadata/md5-cache/kde-apps/dolphin-plugins-mercurial-22.08.3 b/metadata/md5-cache/kde-apps/dolphin-plugins-mercurial-22.08.3 index 1a5bc6268864..437528b31ed3 100644 --- a/metadata/md5-cache/kde-apps/dolphin-plugins-mercurial-22.08.3 +++ b/metadata/md5-cache/kde-apps/dolphin-plugins-mercurial-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/dolphin-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktexteditor-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 dev-vcs/mercurial || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/dolphin-plugins-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7d187b5a7f9e1e6562a9977cff251c88 diff --git a/metadata/md5-cache/kde-apps/dolphin-plugins-mercurial-22.12.3 b/metadata/md5-cache/kde-apps/dolphin-plugins-mercurial-22.12.3 index b07dd4ad8f32..23afd5a62268 100644 --- a/metadata/md5-cache/kde-apps/dolphin-plugins-mercurial-22.12.3 +++ b/metadata/md5-cache/kde-apps/dolphin-plugins-mercurial-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/dolphin-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/ktexteditor-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 dev-vcs/mercurial || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/dolphin-plugins-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5d32ff47da8e5068f8d7f9293f4d3b71 diff --git a/metadata/md5-cache/kde-apps/dolphin-plugins-subversion-22.08.3 b/metadata/md5-cache/kde-apps/dolphin-plugins-subversion-22.08.3 index e8d13b2cce77..7f8b76c0c840 100644 --- a/metadata/md5-cache/kde-apps/dolphin-plugins-subversion-22.08.3 +++ b/metadata/md5-cache/kde-apps/dolphin-plugins-subversion-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/dolphin-22.08.3:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 dev-vcs/subversion >=kde-apps/kompare-22.08.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/dolphin-plugins-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f5f035dd7e95e8020577d8d161aa2288 diff --git a/metadata/md5-cache/kde-apps/dolphin-plugins-subversion-22.12.3 b/metadata/md5-cache/kde-apps/dolphin-plugins-subversion-22.12.3 index f5af8c9061cb..65536413a3cb 100644 --- a/metadata/md5-cache/kde-apps/dolphin-plugins-subversion-22.12.3 +++ b/metadata/md5-cache/kde-apps/dolphin-plugins-subversion-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/dolphin-22.12.3:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 dev-vcs/subversion >=kde-apps/kompare-22.12.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/dolphin-plugins-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6a872188b21f79ba70bbf70b0b3b7c4f diff --git a/metadata/md5-cache/kde-apps/dragon-22.08.3 b/metadata/md5-cache/kde-apps/dragon-22.08.3 index 5f8e6e54fe94..050349715661 100644 --- a/metadata/md5-cache/kde-apps/dragon-22.08.3 +++ b/metadata/md5-cache/kde-apps/dragon-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ || ( GPL-2 GPL-3 ) handbook? ( FDL-1.2 ) RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-frameworks/solid-5.96.0:5 >=media-libs/phonon-4.11.0 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/dragon-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fbeff736294cf8a94d326f5a4b7a336a diff --git a/metadata/md5-cache/kde-apps/dragon-22.12.3 b/metadata/md5-cache/kde-apps/dragon-22.12.3 index 6d01c76fa475..14e79e2ec175 100644 --- a/metadata/md5-cache/kde-apps/dragon-22.12.3 +++ b/metadata/md5-cache/kde-apps/dragon-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ || ( GPL-2 GPL-3 ) handbook? ( FDL-1.2 ) RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=kde-frameworks/solid-5.101.0:5 >=media-libs/phonon-4.11.0 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/dragon-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=10c9160b9c71a4f065e8df03d18c7477 diff --git a/metadata/md5-cache/kde-apps/eventviews-22.08.3 b/metadata/md5-cache/kde-apps/eventviews-22.08.3 index 5b1732957eaf..dddbbf2f313e 100644 --- a/metadata/md5-cache/kde-apps/eventviews-22.08.3 +++ b/metadata/md5-cache/kde-apps/eventviews-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/kdiagram:5 dev-libs/libical >=dev-qt/qtcore-5.15.5:5 >=dev-qt/q RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/eventviews-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=303c17e65590e21bad85e4ae14f91660 diff --git a/metadata/md5-cache/kde-apps/eventviews-22.12.3 b/metadata/md5-cache/kde-apps/eventviews-22.12.3 index d24473d655c9..5a45977862ba 100644 --- a/metadata/md5-cache/kde-apps/eventviews-22.12.3 +++ b/metadata/md5-cache/kde-apps/eventviews-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/kdiagram:5 dev-libs/libical >=dev-qt/qtcore-5.15.5:5 >=dev-qt/q RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/eventviews-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9d2ae2659cae10ad883054c2f7d6fb69 diff --git a/metadata/md5-cache/kde-apps/ffmpegthumbs-22.08.3 b/metadata/md5-cache/kde-apps/ffmpegthumbs-22.08.3 index 2542a1716a72..8048b5fffe78 100644 --- a/metadata/md5-cache/kde-apps/ffmpegthumbs-22.08.3 +++ b/metadata/md5-cache/kde-apps/ffmpegthumbs-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 media-libs/taglib media-video/ffmpeg:0= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ffmpegthumbs-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f3be136840dfda3cfe6648cf155ec59f diff --git a/metadata/md5-cache/kde-apps/ffmpegthumbs-22.12.3 b/metadata/md5-cache/kde-apps/ffmpegthumbs-22.12.3 index f7e3b024a519..58e48b6124cf 100644 --- a/metadata/md5-cache/kde-apps/ffmpegthumbs-22.12.3 +++ b/metadata/md5-cache/kde-apps/ffmpegthumbs-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 media-video/ffmpeg:0= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ffmpegthumbs-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd498b609f0302b02d78cb2485eeff58 diff --git a/metadata/md5-cache/kde-apps/filelight-22.08.3 b/metadata/md5-cache/kde-apps/filelight-22.08.3 index 8b911ac955d9..d4b244c0b662 100644 --- a/metadata/md5-cache/kde-apps/filelight-22.08.3 +++ b/metadata/md5-cache/kde-apps/filelight-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtquick RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/filelight-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f07d472da4bbcd0c09a47ab7d58df1f7 diff --git a/metadata/md5-cache/kde-apps/filelight-22.12.3 b/metadata/md5-cache/kde-apps/filelight-22.12.3 index 10e4413ceb8d..c3a052a67ce5 100644 --- a/metadata/md5-cache/kde-apps/filelight-22.12.3 +++ b/metadata/md5-cache/kde-apps/filelight-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtquick RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/filelight-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa4babe4e033c683e490bd7af6ebcc69 diff --git a/metadata/md5-cache/kde-apps/granatier-22.08.3 b/metadata/md5-cache/kde-apps/granatier-22.08.3 index 3ec3e530bb16..c6d4e475c550 100644 --- a/metadata/md5-cache/kde-apps/granatier-22.08.3 +++ b/metadata/md5-cache/kde-apps/granatier-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/granatier-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ff6bdb5d8585c7daedcb6cc0773be624 diff --git a/metadata/md5-cache/kde-apps/granatier-22.12.3 b/metadata/md5-cache/kde-apps/granatier-22.12.3 index 8790eb363270..2828d1af4a02 100644 --- a/metadata/md5-cache/kde-apps/granatier-22.12.3 +++ b/metadata/md5-cache/kde-apps/granatier-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/granatier-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=beceda411ffee0c3535c4cc3b95c8dcd diff --git a/metadata/md5-cache/kde-apps/grantlee-editor-22.08.3 b/metadata/md5-cache/kde-apps/grantlee-editor-22.08.3 index f6d1b8c7fa89..7216c0f71f5a 100644 --- a/metadata/md5-cache/kde-apps/grantlee-editor-22.08.3 +++ b/metadata/md5-cache/kde-apps/grantlee-editor-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-contacts-22.08.3:5 >=kde-apps/kmime-22.08.3:5 >=kde-apps/kpimtextedit-22.08.3:5 >=kde-apps/messagelib-22.08.3:5 >=kde-apps/pimcommon-22.08.3:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcontacts-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/ktexteditor-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/grantlee-editor-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c9073ea80c3132f6e199b1aa09e163d1 diff --git a/metadata/md5-cache/kde-apps/grantlee-editor-22.12.3 b/metadata/md5-cache/kde-apps/grantlee-editor-22.12.3 index c0b9dbc3648f..804ec5ff0f2e 100644 --- a/metadata/md5-cache/kde-apps/grantlee-editor-22.12.3 +++ b/metadata/md5-cache/kde-apps/grantlee-editor-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-contacts-22.12.3:5 >=kde-apps/kmime-22.12.3:5 >=kde-apps/kpimtextedit-22.12.3:5 >=kde-apps/messagelib-22.12.3:5 >=kde-apps/pimcommon-22.12.3:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcontacts-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/ktexteditor-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/grantlee-editor-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8c4cb8c9ced98b7a77ccc4b9b61269a0 diff --git a/metadata/md5-cache/kde-apps/grantleetheme-22.08.3 b/metadata/md5-cache/kde-apps/grantleetheme-22.08.3 index 4ffd0b033b0c..cb27712c200d 100644 --- a/metadata/md5-cache/kde-apps/grantleetheme-22.08.3 +++ b/metadata/md5-cache/kde-apps/grantleetheme-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/grantlee:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/grantleetheme-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9317dd08a440e2b56230af7e4a35cb4d diff --git a/metadata/md5-cache/kde-apps/grantleetheme-22.12.3 b/metadata/md5-cache/kde-apps/grantleetheme-22.12.3 index 5d5198ce8de9..a56915c9128f 100644 --- a/metadata/md5-cache/kde-apps/grantleetheme-22.12.3 +++ b/metadata/md5-cache/kde-apps/grantleetheme-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/grantlee:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/grantleetheme-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea26895034f8361c6b3353ee127fbc08 diff --git a/metadata/md5-cache/kde-apps/gwenview-22.08.3-r2 b/metadata/md5-cache/kde-apps/gwenview-22.08.3-r2 index 0fb739b0e45d..fdec47f03c8e 100644 --- a/metadata/md5-cache/kde-apps/gwenview-22.08.3-r2 +++ b/metadata/md5-cache/kde-apps/gwenview-22.08.3-r2 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtsvg- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/gwenview-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a9ffd14c766af14cce6739612a10f3ba diff --git a/metadata/md5-cache/kde-apps/gwenview-22.12.3 b/metadata/md5-cache/kde-apps/gwenview-22.12.3 index 7b0988812cef..fa1c94264ca3 100644 --- a/metadata/md5-cache/kde-apps/gwenview-22.12.3 +++ b/metadata/md5-cache/kde-apps/gwenview-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtsvg- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/gwenview-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2ae48ff89b3638622ea09da7ea7728aa diff --git a/metadata/md5-cache/kde-apps/incidenceeditor-22.08.3 b/metadata/md5-cache/kde-apps/incidenceeditor-22.08.3 index b3e1b2739c6c..b2cf98be8ec5 100644 --- a/metadata/md5-cache/kde-apps/incidenceeditor-22.08.3 +++ b/metadata/md5-cache/kde-apps/incidenceeditor-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/kdiagram:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/incidenceeditor-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2f34cf46452217a9b0107b5857d41767 diff --git a/metadata/md5-cache/kde-apps/incidenceeditor-22.12.3 b/metadata/md5-cache/kde-apps/incidenceeditor-22.12.3 index 5611ce72d638..6f75a2b83715 100644 --- a/metadata/md5-cache/kde-apps/incidenceeditor-22.12.3 +++ b/metadata/md5-cache/kde-apps/incidenceeditor-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/kdiagram:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/incidenceeditor-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a7c437e8da50cff348349d7950af1d6e diff --git a/metadata/md5-cache/kde-apps/juk-22.08.3 b/metadata/md5-cache/kde-apps/juk-22.08.3 index b351201787c4..fb28785dd5a2 100644 --- a/metadata/md5-cache/kde-apps/juk-22.08.3 +++ b/metadata/md5-cache/kde-apps/juk-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/juk-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7582b29595cee8a2139eecc98d38f60b diff --git a/metadata/md5-cache/kde-apps/juk-22.12.3 b/metadata/md5-cache/kde-apps/juk-22.12.3 index c97c498a7d48..39b29a5694ea 100644 --- a/metadata/md5-cache/kde-apps/juk-22.12.3 +++ b/metadata/md5-cache/kde-apps/juk-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/juk-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d84576f94dc77a8bc71f382c01a4aab5 diff --git a/metadata/md5-cache/kde-apps/k3b-22.08.3 b/metadata/md5-cache/kde-apps/k3b-22.08.3 index 76fe618ee6a6..be86267cfc84 100644 --- a/metadata/md5-cache/kde-apps/k3b-22.08.3 +++ b/metadata/md5-cache/kde-apps/k3b-22.08.3 @@ -14,5 +14,5 @@ REQUIRED_USE=flac? ( taglib ) mp3? ( encode taglib ) sox? ( encode taglib ) RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/k3b-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=29368ea1ca2b59bd66e9c72cb42c1f1e diff --git a/metadata/md5-cache/kde-apps/k3b-22.12.3 b/metadata/md5-cache/kde-apps/k3b-22.12.3 index 4bf4c5d8f62d..ac8810c8a07f 100644 --- a/metadata/md5-cache/kde-apps/k3b-22.12.3 +++ b/metadata/md5-cache/kde-apps/k3b-22.12.3 @@ -14,5 +14,5 @@ REQUIRED_USE=flac? ( taglib ) RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/k3b-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5fbb658f30ad5ce2de9fad8505a8089f diff --git a/metadata/md5-cache/kde-apps/kaccounts-integration-22.08.3 b/metadata/md5-cache/kde-apps/kaccounts-integration-22.08.3 index d4ba69ec358a..17391b9bcbd6 100644 --- a/metadata/md5-cache/kde-apps/kaccounts-integration-22.08.3 +++ b/metadata/md5-cache/kde-apps/kaccounts-integration-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kaccounts-integration-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5b6090fc890783d71146c3e15fb94805 diff --git a/metadata/md5-cache/kde-apps/kaccounts-integration-22.12.3 b/metadata/md5-cache/kde-apps/kaccounts-integration-22.12.3 index ca5334387842..f1a99f4cc782 100644 --- a/metadata/md5-cache/kde-apps/kaccounts-integration-22.12.3 +++ b/metadata/md5-cache/kde-apps/kaccounts-integration-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kaccounts-integration-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d437268d39fa2c532fcf99d9da97b980 diff --git a/metadata/md5-cache/kde-apps/kaccounts-providers-22.08.3 b/metadata/md5-cache/kde-apps/kaccounts-providers-22.08.3 index 9a5bce92be79..f7be2202db4d 100644 --- a/metadata/md5-cache/kde-apps/kaccounts-providers-22.08.3 +++ b/metadata/md5-cache/kde-apps/kaccounts-providers-22.08.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/kaccounts-integration-22.08.3:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdeclarative-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kpackage-5.96.0:5 webengine? ( >=dev-qt/qtwebengine-5.15.5:5 ) net-libs/signon-oauth2 net-libs/signon-ui || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kaccounts-providers-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5562852694ba8963f09fdace3a42d288 diff --git a/metadata/md5-cache/kde-apps/kaccounts-providers-22.12.3 b/metadata/md5-cache/kde-apps/kaccounts-providers-22.12.3 index 83ebaf75b3bc..ac7b2008fe80 100644 --- a/metadata/md5-cache/kde-apps/kaccounts-providers-22.12.3 +++ b/metadata/md5-cache/kde-apps/kaccounts-providers-22.12.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/kaccounts-integration-22.12.3:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdeclarative-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kpackage-5.101.0:5 webengine? ( >=dev-qt/qtwebengine-5.15.5:5 ) net-libs/signon-oauth2 net-libs/signon-ui || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kaccounts-providers-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6dba5a9adde5ea4e9f408c5f0b7f6862 diff --git a/metadata/md5-cache/kde-apps/kaddressbook-22.08.3 b/metadata/md5-cache/kde-apps/kaddressbook-22.08.3 index 48cb62b99d63..1064814ad1bb 100644 --- a/metadata/md5-cache/kde-apps/kaddressbook-22.08.3 +++ b/metadata/md5-cache/kde-apps/kaddressbook-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/grantlee:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kaddressbook-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa53e91f9e5e3d6a29d046b60b1bd9d6 diff --git a/metadata/md5-cache/kde-apps/kaddressbook-22.12.3 b/metadata/md5-cache/kde-apps/kaddressbook-22.12.3 index 66bc0925c14e..70f2704235b4 100644 --- a/metadata/md5-cache/kde-apps/kaddressbook-22.12.3 +++ b/metadata/md5-cache/kde-apps/kaddressbook-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/grantlee:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kaddressbook-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=06d5225040eecdd20f0f20bf1e6155cf diff --git a/metadata/md5-cache/kde-apps/kajongg-22.08.3-r1 b/metadata/md5-cache/kde-apps/kajongg-22.08.3-r1 index f67a332ffdd4..ac4f4ccfc77d 100644 --- a/metadata/md5-cache/kde-apps/kajongg-22.08.3-r1 +++ b/metadata/md5-cache/kde-apps/kajongg-22.08.3-r1 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kajongg-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef165c1718fbc92f92873e3c58c7dbee diff --git a/metadata/md5-cache/kde-apps/kajongg-22.12.3 b/metadata/md5-cache/kde-apps/kajongg-22.12.3 index 5924c58a79a0..d9482143f086 100644 --- a/metadata/md5-cache/kde-apps/kajongg-22.12.3 +++ b/metadata/md5-cache/kde-apps/kajongg-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kajongg-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=35b21373a015e692d82ad4e974405ac8 diff --git a/metadata/md5-cache/kde-apps/kalarm-22.08.3 b/metadata/md5-cache/kde-apps/kalarm-22.08.3 index 3eefd7a780d0..9178fc80fd43 100644 --- a/metadata/md5-cache/kde-apps/kalarm-22.08.3 +++ b/metadata/md5-cache/kde-apps/kalarm-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/kcalutils-22.08.3:5 >=kde-apps/kidentitymanagement-22.08.3:5 >=kde-apps/kmime-22.08.3:5 >=kde-apps/kontactinterface-22.08.3:5 >=kde-apps/kpimtextedit-22.08.3:5[speech=] >=kde-apps/pimcommon-22.08.3:5 >=kde-frameworks/kauth-5.96.0:5 >=kde-frameworks/kcalendarcore-5.96.0:5 >=kde-frameworks/kcmutils-5.96.0:5 >=kde-frameworks/kcodecs-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcontacts-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kglobalaccel-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/kholidays-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kidletime-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kitemmodels-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/knotifyconfig-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5[X?] >=kde-frameworks/kxmlgui-5.96.0:5 >=media-libs/phonon-4.11.0 pim? ( >=kde-apps/akonadi-22.08.3:5 >=kde-apps/akonadi-contacts-22.08.3:5 >=kde-apps/akonadi-mime-22.08.3:5 >=kde-apps/kmailtransport-22.08.3:5 ) X? ( >=dev-qt/qtx11extras-5.15.5:5 x11-libs/libX11 ) !kde-apps/kalarmcal:5 pim? ( >=kde-apps/kdepim-runtime-22.08.3:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kalarm-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=32e2606370716789bd1e78f90a9e0ddb diff --git a/metadata/md5-cache/kde-apps/kalarm-22.12.3 b/metadata/md5-cache/kde-apps/kalarm-22.12.3 index 4afbaa1bb315..a2d7f298d9c8 100644 --- a/metadata/md5-cache/kde-apps/kalarm-22.12.3 +++ b/metadata/md5-cache/kde-apps/kalarm-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/kcalutils-22.12.3:5 >=kde-apps/kidentitymanagement-22.12.3:5 >=kde-apps/kmime-22.12.3:5 >=kde-apps/kontactinterface-22.12.3:5 >=kde-apps/kpimtextedit-22.12.3:5[speech=] >=kde-apps/pimcommon-22.12.3:5 >=kde-frameworks/kauth-5.101.0:5 >=kde-frameworks/kcalendarcore-5.101.0:5 >=kde-frameworks/kcmutils-5.101.0:5 >=kde-frameworks/kcodecs-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcontacts-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kglobalaccel-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/kholidays-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kidletime-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kitemmodels-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/knotifyconfig-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5[X?] >=kde-frameworks/kxmlgui-5.101.0:5 >=media-libs/phonon-4.11.0 pim? ( >=kde-apps/akonadi-22.12.3:5 >=kde-apps/akonadi-contacts-22.12.3:5 >=kde-apps/akonadi-mime-22.12.3:5 >=kde-apps/kmailtransport-22.12.3:5 ) X? ( >=dev-qt/qtx11extras-5.15.5:5 x11-libs/libX11 ) pim? ( >=kde-apps/kdepim-runtime-22.12.3:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kalarm-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a6512526a5563cd396857e9098aa1c99 diff --git a/metadata/md5-cache/kde-apps/kalgebra-22.08.3 b/metadata/md5-cache/kde-apps/kalgebra-22.08.3 index 89a5d6176fd0..22b8ebf368e0 100644 --- a/metadata/md5-cache/kde-apps/kalgebra-22.08.3 +++ b/metadata/md5-cache/kde-apps/kalgebra-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/analitza-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 readline? ( sys-libs/readline:0= ) >=dev-qt/qtquickcontrols-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kirigami-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kalgebra-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=375864d1b3efab850226a3eabb1feda7 diff --git a/metadata/md5-cache/kde-apps/kalgebra-22.12.3 b/metadata/md5-cache/kde-apps/kalgebra-22.12.3 index 21bd7b623d5f..40f4f668f0ff 100644 --- a/metadata/md5-cache/kde-apps/kalgebra-22.12.3 +++ b/metadata/md5-cache/kde-apps/kalgebra-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/analitza-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 readline? ( sys-libs/readline:0= ) >=dev-qt/qtquickcontrols-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kirigami-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kalgebra-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=468b3d658945c1ac9fb108b06cff113e diff --git a/metadata/md5-cache/kde-apps/kalzium-22.08.3 b/metadata/md5-cache/kde-apps/kalzium-22.08.3 index e5f691ec8ddf..500a2c14d7e0 100644 --- a/metadata/md5-cache/kde-apps/kalzium-22.08.3 +++ b/metadata/md5-cache/kde-apps/kalzium-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtscript-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kplotting-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kunitconversion-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 editor? ( dev-cpp/eigen:3 >=dev-qt/qtopengl-5.15.5:5 >=kde-frameworks/knewstuff-5.96.0:5 sci-chemistry/openbabel:= >=sci-libs/avogadrolibs-1.93[qt5] ) solver? ( dev-ml/facile:=[ocamlopt] ) sci-chemistry/chemical-mime-data || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kalzium-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=05fd65ab09500bfd220537826522d598 diff --git a/metadata/md5-cache/kde-apps/kalzium-22.12.3 b/metadata/md5-cache/kde-apps/kalzium-22.12.3 index 244aa4d4d12d..6f85f99f7b44 100644 --- a/metadata/md5-cache/kde-apps/kalzium-22.12.3 +++ b/metadata/md5-cache/kde-apps/kalzium-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtscript-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kitemviews-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kplotting-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kunitconversion-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 editor? ( dev-cpp/eigen:3 >=dev-qt/qtopengl-5.15.5:5 >=kde-frameworks/knewstuff-5.101.0:5 sci-chemistry/openbabel:= >=sci-libs/avogadrolibs-1.93[qt5] ) solver? ( dev-ml/facile:=[ocamlopt] ) sci-chemistry/chemical-mime-data || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kalzium-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8034c63ae37a341464cf09edaaaa9db4 diff --git a/metadata/md5-cache/kde-apps/kamera-22.08.3 b/metadata/md5-cache/kde-apps/kamera-22.08.3 index 4f39db9e5d92..4aca697c0830 100644 --- a/metadata/md5-cache/kde-apps/kamera-22.08.3 +++ b/metadata/md5-cache/kde-apps/kamera-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2 ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 media-libs/libgphoto2:= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kamera-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b844b4156605e72c006cde733122834 diff --git a/metadata/md5-cache/kde-apps/kamera-22.12.3 b/metadata/md5-cache/kde-apps/kamera-22.12.3 index 3739a3225d96..9462061fb2a4 100644 --- a/metadata/md5-cache/kde-apps/kamera-22.12.3 +++ b/metadata/md5-cache/kde-apps/kamera-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2 ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 media-libs/libgphoto2:= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kamera-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5cfa4e68efc2b14e046f617fe0848d18 diff --git a/metadata/md5-cache/kde-apps/kamoso-22.08.3 b/metadata/md5-cache/kde-apps/kamoso-22.08.3 index 55fe6b9d0a3f..9918c31f341e 100644 --- a/metadata/md5-cache/kde-apps/kamoso-22.08.3 +++ b/metadata/md5-cache/kde-apps/kamoso-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/glib:2 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kamoso-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2c00e69a90b67fe52f018cad61629dfa diff --git a/metadata/md5-cache/kde-apps/kamoso-22.12.3 b/metadata/md5-cache/kde-apps/kamoso-22.12.3 index 52a7a3beee18..01300cc5e5d7 100644 --- a/metadata/md5-cache/kde-apps/kamoso-22.12.3 +++ b/metadata/md5-cache/kde-apps/kamoso-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/glib:2 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kamoso-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dda3fab32ae19267eb008a6350e6e1c2 diff --git a/metadata/md5-cache/kde-apps/kanagram-22.08.3 b/metadata/md5-cache/kde-apps/kanagram-22.08.3 index 2deec732ded5..74f99cad64b0 100644 --- a/metadata/md5-cache/kde-apps/kanagram-22.08.3 +++ b/metadata/md5-cache/kde-apps/kanagram-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkeduvocdocument-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-frameworks/sonnet-5.96.0:5 >=media-libs/phonon-4.11.0 speech? ( >=dev-qt/qtspeech-5.15.5:5 ) >=dev-qt/qtmultimedia-5.15.5:5[qml] >=dev-qt/qtquickcontrols-5.15.5:5 >=kde-apps/kdeedu-data-22.08.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kanagram-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7ac7dc55b3873d966a4d65117e62cbb7 diff --git a/metadata/md5-cache/kde-apps/kanagram-22.12.3 b/metadata/md5-cache/kde-apps/kanagram-22.12.3 index 4debf5baca67..fb3a27c7259a 100644 --- a/metadata/md5-cache/kde-apps/kanagram-22.12.3 +++ b/metadata/md5-cache/kde-apps/kanagram-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkeduvocdocument-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=kde-frameworks/sonnet-5.101.0:5 >=media-libs/phonon-4.11.0 speech? ( >=dev-qt/qtspeech-5.15.5:5 ) >=dev-qt/qtmultimedia-5.15.5:5[qml] >=dev-qt/qtquickcontrols-5.15.5:5 >=kde-apps/kdeedu-data-22.12.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kanagram-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f5f390d0340e9bb997b2bc7c59867471 diff --git a/metadata/md5-cache/kde-apps/kapman-22.08.3 b/metadata/md5-cache/kde-apps/kapman-22.08.3 index 35deae414fa0..1d3688840598 100644 --- a/metadata/md5-cache/kde-apps/kapman-22.08.3 +++ b/metadata/md5-cache/kde-apps/kapman-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kapman-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a1c06f9d4a0574dabdcca47848ebd78b diff --git a/metadata/md5-cache/kde-apps/kapman-22.12.3 b/metadata/md5-cache/kde-apps/kapman-22.12.3 index 878ef81d844c..f0fca5a37c5b 100644 --- a/metadata/md5-cache/kde-apps/kapman-22.12.3 +++ b/metadata/md5-cache/kde-apps/kapman-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kapman-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1beaad5999f4aea63d2bc0bd3aca4ae8 diff --git a/metadata/md5-cache/kde-apps/kapptemplate-22.08.3 b/metadata/md5-cache/kde-apps/kapptemplate-22.08.3 index 5c70af71e5f1..d14aa19f5efb 100644 --- a/metadata/md5-cache/kde-apps/kapptemplate-22.08.3 +++ b/metadata/md5-cache/kde-apps/kapptemplate-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kar RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kapptemplate-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f1a53a0459434d2b6ad41f6779bafffb diff --git a/metadata/md5-cache/kde-apps/kapptemplate-22.12.3 b/metadata/md5-cache/kde-apps/kapptemplate-22.12.3 index dacc00bf8e37..2748290548d2 100644 --- a/metadata/md5-cache/kde-apps/kapptemplate-22.12.3 +++ b/metadata/md5-cache/kde-apps/kapptemplate-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kar RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kapptemplate-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4d455efb861601b542d8b73825860a77 diff --git a/metadata/md5-cache/kde-apps/kate-22.08.3-r1 b/metadata/md5-cache/kde-apps/kate-22.08.3-r1 index 920a598fa0b1..dbc0f1ee1cfa 100644 --- a/metadata/md5-cache/kde-apps/kate-22.08.3-r1 +++ b/metadata/md5-cache/kde-apps/kate-22.08.3-r1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kate-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c52a536344a8e0337d9335429f7d4845 diff --git a/metadata/md5-cache/kde-apps/kate-22.12.3 b/metadata/md5-cache/kde-apps/kate-22.12.3 index cc075efb9617..f86b38b7384e 100644 --- a/metadata/md5-cache/kde-apps/kate-22.12.3 +++ b/metadata/md5-cache/kde-apps/kate-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kate-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a57eaab774dfa3ed2975ca32863b8ad4 diff --git a/metadata/md5-cache/kde-apps/kate-addons-22.08.3 b/metadata/md5-cache/kde-apps/kate-addons-22.08.3 index bc7be997f9a4..1b45234428ac 100644 --- a/metadata/md5-cache/kde-apps/kate-addons-22.08.3 +++ b/metadata/md5-cache/kde-apps/kate-addons-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kate-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ad947032f7773b3cf10bdfb21b648b4a diff --git a/metadata/md5-cache/kde-apps/kate-addons-22.12.3 b/metadata/md5-cache/kde-apps/kate-addons-22.12.3 index 9271933e5419..a43c7f8ece49 100644 --- a/metadata/md5-cache/kde-apps/kate-addons-22.12.3 +++ b/metadata/md5-cache/kde-apps/kate-addons-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kate-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=599eac155368c466bc2bf12f185a47fa diff --git a/metadata/md5-cache/kde-apps/kate-lib-22.08.3 b/metadata/md5-cache/kde-apps/kate-lib-22.08.3 index c657ced24035..ef7b751f7ce5 100644 --- a/metadata/md5-cache/kde-apps/kate-lib-22.08.3 +++ b/metadata/md5-cache/kde-apps/kate-lib-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kate-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e632db5c282da01d2aff00ca4c5a7fb0 diff --git a/metadata/md5-cache/kde-apps/kate-lib-22.12.3 b/metadata/md5-cache/kde-apps/kate-lib-22.12.3 index 7eda8b2d1a1b..0fa2dea9286e 100644 --- a/metadata/md5-cache/kde-apps/kate-lib-22.12.3 +++ b/metadata/md5-cache/kde-apps/kate-lib-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kate-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1b84f88014866dbb414adfdcbb8eb354 diff --git a/metadata/md5-cache/kde-apps/katomic-22.08.3 b/metadata/md5-cache/kde-apps/katomic-22.08.3 index ab2edfda6b09..3f3b79223901 100644 --- a/metadata/md5-cache/kde-apps/katomic-22.08.3 +++ b/metadata/md5-cache/kde-apps/katomic-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/katomic-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6ff4d87ebd6943ac7c895e3263e81147 diff --git a/metadata/md5-cache/kde-apps/katomic-22.12.3 b/metadata/md5-cache/kde-apps/katomic-22.12.3 index 20b8f24d215f..cdd87a455931 100644 --- a/metadata/md5-cache/kde-apps/katomic-22.12.3 +++ b/metadata/md5-cache/kde-apps/katomic-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/katomic-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=018ab6ee1801e558b97b297aea41f555 diff --git a/metadata/md5-cache/kde-apps/kbackup-22.08.3 b/metadata/md5-cache/kde-apps/kbackup-22.08.3 index c52c7aa4c345..6ad923233a14 100644 --- a/metadata/md5-cache/kde-apps/kbackup-22.08.3 +++ b/metadata/md5-cache/kde-apps/kbackup-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kbackup-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e82b428a1e0494564c282519a5697e8 diff --git a/metadata/md5-cache/kde-apps/kbackup-22.12.3 b/metadata/md5-cache/kde-apps/kbackup-22.12.3 index 51c1ee5c55de..c137e503aa7e 100644 --- a/metadata/md5-cache/kde-apps/kbackup-22.12.3 +++ b/metadata/md5-cache/kde-apps/kbackup-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kbackup-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=598df8d8342e443a8eea35bbd7d25203 diff --git a/metadata/md5-cache/kde-apps/kblackbox-22.08.3 b/metadata/md5-cache/kde-apps/kblackbox-22.08.3 index a0430442c8a2..2bb06a2442d8 100644 --- a/metadata/md5-cache/kde-apps/kblackbox-22.08.3 +++ b/metadata/md5-cache/kde-apps/kblackbox-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kblackbox-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d166ba6d5545cf63ca17fe780c71df60 diff --git a/metadata/md5-cache/kde-apps/kblackbox-22.12.3 b/metadata/md5-cache/kde-apps/kblackbox-22.12.3 index 17da4af39a36..00db8df46f91 100644 --- a/metadata/md5-cache/kde-apps/kblackbox-22.12.3 +++ b/metadata/md5-cache/kde-apps/kblackbox-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kblackbox-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a98de7b220851ecc7f712d80936fe4a4 diff --git a/metadata/md5-cache/kde-apps/kblocks-22.08.3 b/metadata/md5-cache/kde-apps/kblocks-22.08.3 index ae63f7196c9a..09ce59da544d 100644 --- a/metadata/md5-cache/kde-apps/kblocks-22.08.3 +++ b/metadata/md5-cache/kde-apps/kblocks-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtsvg-5.15. RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kblocks-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7a509f411811802c4339a6d56b9f79c7 diff --git a/metadata/md5-cache/kde-apps/kblocks-22.12.3 b/metadata/md5-cache/kde-apps/kblocks-22.12.3 index 9af2001d8d50..1dccfa618f42 100644 --- a/metadata/md5-cache/kde-apps/kblocks-22.12.3 +++ b/metadata/md5-cache/kde-apps/kblocks-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtsvg-5.15. RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kblocks-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0223ca4a0d40dc9c3f5477c4a0d3c618 diff --git a/metadata/md5-cache/kde-apps/kbounce-22.08.3 b/metadata/md5-cache/kde-apps/kbounce-22.08.3 index 96c73c58a017..81494a97b827 100644 --- a/metadata/md5-cache/kde-apps/kbounce-22.08.3 +++ b/metadata/md5-cache/kde-apps/kbounce-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kbounce-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ce189e58f3a87a93acfe9195212b3d81 diff --git a/metadata/md5-cache/kde-apps/kbounce-22.12.3 b/metadata/md5-cache/kde-apps/kbounce-22.12.3 index 8f0ed26b7446..12d8bcbc8fe7 100644 --- a/metadata/md5-cache/kde-apps/kbounce-22.12.3 +++ b/metadata/md5-cache/kde-apps/kbounce-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kbounce-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e96476847dc109bfc3ceb06deeb617dd diff --git a/metadata/md5-cache/kde-apps/kbreakout-22.08.3 b/metadata/md5-cache/kde-apps/kbreakout-22.08.3 index 3dff8a274747..c08290e7f87e 100644 --- a/metadata/md5-cache/kde-apps/kbreakout-22.08.3 +++ b/metadata/md5-cache/kde-apps/kbreakout-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kbreakout-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b86339c28e3a843c92fa4f1fb876363d diff --git a/metadata/md5-cache/kde-apps/kbreakout-22.12.3 b/metadata/md5-cache/kde-apps/kbreakout-22.12.3 index 75929695dc6f..f5b2091e2940 100644 --- a/metadata/md5-cache/kde-apps/kbreakout-22.12.3 +++ b/metadata/md5-cache/kde-apps/kbreakout-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kbreakout-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5361a91bc68d4ffc0e0dd77e9b1024f6 diff --git a/metadata/md5-cache/kde-apps/kbruch-22.08.3 b/metadata/md5-cache/kde-apps/kbruch-22.08.3 index 9bcb5d87f566..d88433275adb 100644 --- a/metadata/md5-cache/kde-apps/kbruch-22.08.3 +++ b/metadata/md5-cache/kde-apps/kbruch-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kbruch-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=546adb792d610cc29161c1e6ae49bc3d diff --git a/metadata/md5-cache/kde-apps/kbruch-22.12.3 b/metadata/md5-cache/kde-apps/kbruch-22.12.3 index 875c2620d0b4..b80779b85f42 100644 --- a/metadata/md5-cache/kde-apps/kbruch-22.12.3 +++ b/metadata/md5-cache/kde-apps/kbruch-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kbruch-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=67a0bc592f67d9c5bfa6e9eceb3d35ad diff --git a/metadata/md5-cache/kde-apps/kcachegrind-22.08.3 b/metadata/md5-cache/kde-apps/kcachegrind-22.08.3 index 4393e78ae86c..abd95fd268cd 100644 --- a/metadata/md5-cache/kde-apps/kcachegrind-22.08.3 +++ b/metadata/md5-cache/kde-apps/kcachegrind-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 media-gfx/graphviz || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kcachegrind-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af23b046dad4daf28729066adf46c802 diff --git a/metadata/md5-cache/kde-apps/kcachegrind-22.12.3 b/metadata/md5-cache/kde-apps/kcachegrind-22.12.3 index 5adfa42884db..825c89bbf237 100644 --- a/metadata/md5-cache/kde-apps/kcachegrind-22.12.3 +++ b/metadata/md5-cache/kde-apps/kcachegrind-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 media-gfx/graphviz || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kcachegrind-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b184e805857c6e00375c611e282e86a diff --git a/metadata/md5-cache/kde-apps/kcalc-22.08.3 b/metadata/md5-cache/kde-apps/kcalc-22.08.3 index d9601ef2eedf..b55556c414f4 100644 --- a/metadata/md5-cache/kde-apps/kcalc-22.08.3 +++ b/metadata/md5-cache/kde-apps/kcalc-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/gmp:0= dev-libs/mpfr:0= >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidg RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kcalc-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8d7ed2d1f1f89ef7db01922822843d5c diff --git a/metadata/md5-cache/kde-apps/kcalc-22.12.3 b/metadata/md5-cache/kde-apps/kcalc-22.12.3 index a58668d130a7..1d7ff2613b40 100644 --- a/metadata/md5-cache/kde-apps/kcalc-22.12.3 +++ b/metadata/md5-cache/kde-apps/kcalc-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/gmp:0= dev-libs/mpfr:0= >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidg RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kcalc-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4753304f5ba744f18332d752eb689a98 diff --git a/metadata/md5-cache/kde-apps/kcalutils-22.08.3 b/metadata/md5-cache/kde-apps/kcalutils-22.08.3 index 6d3d4240681a..782fb2354ccb 100644 --- a/metadata/md5-cache/kde-apps/kcalutils-22.08.3 +++ b/metadata/md5-cache/kde-apps/kcalutils-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/grantlee-5.2.0:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kcalutils-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a32862bf3d367107930ab2ce3c5dd27e diff --git a/metadata/md5-cache/kde-apps/kcalutils-22.12.3 b/metadata/md5-cache/kde-apps/kcalutils-22.12.3 index 42f980beb06c..71af7b5d420d 100644 --- a/metadata/md5-cache/kde-apps/kcalutils-22.12.3 +++ b/metadata/md5-cache/kde-apps/kcalutils-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/grantlee-5.2.0:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kcalutils-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d96cf7c4bfd5065d6aef0073e67cc16d diff --git a/metadata/md5-cache/kde-apps/kcharselect-22.08.3 b/metadata/md5-cache/kde-apps/kcharselect-22.08.3 index c3b6c0e9bb1d..dec69e9d86d3 100644 --- a/metadata/md5-cache/kde-apps/kcharselect-22.08.3 +++ b/metadata/md5-cache/kde-apps/kcharselect-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kbookmarks-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kcharselect-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1e6ae2195a87be73dc0a0a9ed9e9fa81 diff --git a/metadata/md5-cache/kde-apps/kcharselect-22.12.3 b/metadata/md5-cache/kde-apps/kcharselect-22.12.3 index d5db1a87733f..df8ef595d533 100644 --- a/metadata/md5-cache/kde-apps/kcharselect-22.12.3 +++ b/metadata/md5-cache/kde-apps/kcharselect-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kbookmarks-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kcharselect-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dde4148cda96f2a2fe659af6e6e8079f diff --git a/metadata/md5-cache/kde-apps/kcolorchooser-22.08.3 b/metadata/md5-cache/kde-apps/kcolorchooser-22.08.3 index 698de023e6a3..a8c1c7f28c47 100644 --- a/metadata/md5-cache/kde-apps/kcolorchooser-22.08.3 +++ b/metadata/md5-cache/kde-apps/kcolorchooser-22.08.3 @@ -12,5 +12,5 @@ LICENSE=MIT RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kcolorchooser-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=02bb54ca9e17dc44c3acbb67c4950d25 diff --git a/metadata/md5-cache/kde-apps/kcolorchooser-22.12.3 b/metadata/md5-cache/kde-apps/kcolorchooser-22.12.3 index 7bcde187eef5..2370eb5fcb1b 100644 --- a/metadata/md5-cache/kde-apps/kcolorchooser-22.12.3 +++ b/metadata/md5-cache/kde-apps/kcolorchooser-22.12.3 @@ -12,5 +12,5 @@ LICENSE=MIT RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kcolorchooser-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6fc75316ea3d7d72787e14794a023698 diff --git a/metadata/md5-cache/kde-apps/kcron-22.08.3 b/metadata/md5-cache/kde-apps/kcron-22.08.3 index 7d2824d0877f..0f255db4b7aa 100644 --- a/metadata/md5-cache/kde-apps/kcron-22.08.3 +++ b/metadata/md5-cache/kde-apps/kcron-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kauth-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 virtual/cron || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kcron-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=282b1ffedb74ec0e2e338551b94cc573 diff --git a/metadata/md5-cache/kde-apps/kcron-22.12.3 b/metadata/md5-cache/kde-apps/kcron-22.12.3 index e863e69f5d16..8eb46e18c80a 100644 --- a/metadata/md5-cache/kde-apps/kcron-22.12.3 +++ b/metadata/md5-cache/kde-apps/kcron-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kauth-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 virtual/cron || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kcron-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b8c94abe6cea57f754a6d647e4f0295b diff --git a/metadata/md5-cache/kde-apps/kde-dev-scripts-22.08.3 b/metadata/md5-cache/kde-apps/kde-dev-scripts-22.08.3 index bcf63b107a41..2c1e82b2d69d 100644 --- a/metadata/md5-cache/kde-apps/kde-dev-scripts-22.08.3 +++ b/metadata/md5-cache/kde-apps/kde-dev-scripts-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/advancecomp media-gfx/optipng dev-perl/XML-DOM || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kde-dev-scripts-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1f002153a64727a6f4f838accd2ddfa9 diff --git a/metadata/md5-cache/kde-apps/kde-dev-scripts-22.12.3 b/metadata/md5-cache/kde-apps/kde-dev-scripts-22.12.3 index 98d587d8f00b..3f9e5a367e34 100644 --- a/metadata/md5-cache/kde-apps/kde-dev-scripts-22.12.3 +++ b/metadata/md5-cache/kde-apps/kde-dev-scripts-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/advancecomp media-gfx/optipng dev-perl/XML-DOM || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kde-dev-scripts-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0da3b9da05c0b9e5d39752834ab0eaec diff --git a/metadata/md5-cache/kde-apps/kde-dev-utils-22.08.3 b/metadata/md5-cache/kde-apps/kde-dev-utils-22.08.3 index 44495e3a1cfb..273e7e881855 100644 --- a/metadata/md5-cache/kde-apps/kde-dev-utils-22.08.3 +++ b/metadata/md5-cache/kde-apps/kde-dev-utils-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/designer-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kde-dev-utils-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c953d8458e4842327ad7abb229c996da diff --git a/metadata/md5-cache/kde-apps/kde-dev-utils-22.12.3 b/metadata/md5-cache/kde-apps/kde-dev-utils-22.12.3 index 7abf4741c07e..2597a379f3ef 100644 --- a/metadata/md5-cache/kde-apps/kde-dev-utils-22.12.3 +++ b/metadata/md5-cache/kde-apps/kde-dev-utils-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/designer-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kde-dev-utils-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=85c2a981f710165d5582d5a42396359f diff --git a/metadata/md5-cache/kde-apps/kdebugsettings-22.08.3 b/metadata/md5-cache/kde-apps/kdebugsettings-22.08.3 index 4e48a065d215..5d1595712daa 100644 --- a/metadata/md5-cache/kde-apps/kdebugsettings-22.08.3 +++ b/metadata/md5-cache/kde-apps/kdebugsettings-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kco RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdebugsettings-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9907859c834d044508ca90431e5c5a1d diff --git a/metadata/md5-cache/kde-apps/kdebugsettings-22.12.3 b/metadata/md5-cache/kde-apps/kdebugsettings-22.12.3 index 51620fd75e3a..c58e9676011b 100644 --- a/metadata/md5-cache/kde-apps/kdebugsettings-22.12.3 +++ b/metadata/md5-cache/kde-apps/kdebugsettings-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kco RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdebugsettings-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=89f326c54b3caf892a473146927b6da0 diff --git a/metadata/md5-cache/kde-apps/kdeedu-data-22.08.3 b/metadata/md5-cache/kde-apps/kdeedu-data-22.08.3 index 00b432153dc9..8183f80f330c 100644 --- a/metadata/md5-cache/kde-apps/kdeedu-data-22.08.3 +++ b/metadata/md5-cache/kde-apps/kdeedu-data-22.08.3 @@ -8,5 +8,5 @@ KEYWORDS=amd64 arm64 ~riscv x86 LICENSE=GPL-2 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdeedu-data-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ac74b1967b49a379300f2e8a04f66271 diff --git a/metadata/md5-cache/kde-apps/kdeedu-data-22.12.3 b/metadata/md5-cache/kde-apps/kdeedu-data-22.12.3 index 53eb2ed5698b..2846a880983a 100644 --- a/metadata/md5-cache/kde-apps/kdeedu-data-22.12.3 +++ b/metadata/md5-cache/kde-apps/kdeedu-data-22.12.3 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~arm64 ~riscv ~x86 LICENSE=GPL-2 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdeedu-data-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ba85f7c0ac7b837946b32b37c696310b diff --git a/metadata/md5-cache/kde-apps/kdegraphics-mobipocket-22.08.3 b/metadata/md5-cache/kde-apps/kdegraphics-mobipocket-22.08.3 index b3855cd3be84..4542009e408d 100644 --- a/metadata/md5-cache/kde-apps/kdegraphics-mobipocket-22.08.3 +++ b/metadata/md5-cache/kde-apps/kdegraphics-mobipocket-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdegraphics-mobipocket-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5fe921a7b9301cbcd6e4b7ef28e1c0bd diff --git a/metadata/md5-cache/kde-apps/kdegraphics-mobipocket-22.12.3 b/metadata/md5-cache/kde-apps/kdegraphics-mobipocket-22.12.3 index a4a2b2da259d..fabd29c32745 100644 --- a/metadata/md5-cache/kde-apps/kdegraphics-mobipocket-22.12.3 +++ b/metadata/md5-cache/kde-apps/kdegraphics-mobipocket-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdegraphics-mobipocket-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=804e0192e4b7cd9a90cb2f42be6bfb7c diff --git a/metadata/md5-cache/kde-apps/kdenetwork-filesharing-22.08.3 b/metadata/md5-cache/kde-apps/kdenetwork-filesharing-22.08.3 index 6f23dfdd8e0f..056bc3d9423a 100644 --- a/metadata/md5-cache/kde-apps/kdenetwork-filesharing-22.08.3 +++ b/metadata/md5-cache/kde-apps/kdenetwork-filesharing-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdeclarative-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kirigami-5.96.0:5 net-fs/samba || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdenetwork-filesharing-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=63092a28674a91d04ba9548f12e18acc diff --git a/metadata/md5-cache/kde-apps/kdenetwork-filesharing-22.12.3 b/metadata/md5-cache/kde-apps/kdenetwork-filesharing-22.12.3 index c77a54ecb431..71499008dadc 100644 --- a/metadata/md5-cache/kde-apps/kdenetwork-filesharing-22.12.3 +++ b/metadata/md5-cache/kde-apps/kdenetwork-filesharing-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kirigami-5.101.0:5 net-fs/samba || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdenetwork-filesharing-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ec630b3f954fcf653ba3b805bb204f1f diff --git a/metadata/md5-cache/kde-apps/kdenlive-22.08.3-r1 b/metadata/md5-cache/kde-apps/kdenlive-22.08.3-r1 index 12b5c28d1d9d..746bf0f52453 100644 --- a/metadata/md5-cache/kde-apps/kdenlive-22.08.3-r1 +++ b/metadata/md5-cache/kde-apps/kdenlive-22.08.3-r1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdecla RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdenlive-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=170dad05fb8a5011f4072d1091e81243 diff --git a/metadata/md5-cache/kde-apps/kdenlive-22.12.3 b/metadata/md5-cache/kde-apps/kdenlive-22.12.3 index 848cf84995f7..ea5b353268ee 100644 --- a/metadata/md5-cache/kde-apps/kdenlive-22.12.3 +++ b/metadata/md5-cache/kde-apps/kdenlive-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdecla RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdenlive-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f7ff756773f970a9201cea99ec046d36 diff --git a/metadata/md5-cache/kde-apps/kdepim-addons-22.08.3-r1 b/metadata/md5-cache/kde-apps/kdepim-addons-22.08.3-r1 index e29d0e031cc9..e56cfb3a53a7 100644 --- a/metadata/md5-cache/kde-apps/kdepim-addons-22.08.3-r1 +++ b/metadata/md5-cache/kde-apps/kdepim-addons-22.08.3-r1 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] >=dev-libs/grantlee-5.2.0:5 >=dev-qt RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdepim-addons-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8b43a47d2bfaa82f18dc50c3856bd366 diff --git a/metadata/md5-cache/kde-apps/kdepim-addons-22.08.3-r2 b/metadata/md5-cache/kde-apps/kdepim-addons-22.08.3-r2 index 7028e459f4e5..50375c22a134 100644 --- a/metadata/md5-cache/kde-apps/kdepim-addons-22.08.3-r2 +++ b/metadata/md5-cache/kde-apps/kdepim-addons-22.08.3-r2 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] >=dev-libs/grantlee-5.2.0:5 >=dev-qt RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdepim-addons-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4296f651408ba2bd34d53aca78f3fe1b diff --git a/metadata/md5-cache/kde-apps/kdepim-addons-22.12.3 b/metadata/md5-cache/kde-apps/kdepim-addons-22.12.3 index 2047b4d88548..b33756bf6695 100644 --- a/metadata/md5-cache/kde-apps/kdepim-addons-22.12.3 +++ b/metadata/md5-cache/kde-apps/kdepim-addons-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] >=dev-libs/grantlee-5.2.0:5 >=dev-qt RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdepim-addons-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=db9486a524546817e27dccfa1390c1b0 diff --git a/metadata/md5-cache/kde-apps/kdepim-runtime-22.08.3 b/metadata/md5-cache/kde-apps/kdepim-runtime-22.08.3 index 827c4fbf8e43..66c8954870dd 100644 --- a/metadata/md5-cache/kde-apps/kdepim-runtime-22.08.3 +++ b/metadata/md5-cache/kde-apps/kdepim-runtime-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] dev-libs/cyrus-sasl:2 dev-libs/libical:= RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdepim-runtime-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=44651a65397705374d5404267e10af19 diff --git a/metadata/md5-cache/kde-apps/kdepim-runtime-22.12.3 b/metadata/md5-cache/kde-apps/kdepim-runtime-22.12.3 index e1e601c823ab..07ac868a949f 100644 --- a/metadata/md5-cache/kde-apps/kdepim-runtime-22.12.3 +++ b/metadata/md5-cache/kde-apps/kdepim-runtime-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] dev-libs/cyrus-sasl:2 dev-libs/libical:= RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdepim-runtime-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=95d8bda659805e43499b5f11da707110 diff --git a/metadata/md5-cache/kde-apps/kdesdk-thumbnailers-22.08.3 b/metadata/md5-cache/kde-apps/kdesdk-thumbnailers-22.08.3 index 8cf7a32190a4..34d5c5107b9e 100644 --- a/metadata/md5-cache/kde-apps/kdesdk-thumbnailers-22.08.3 +++ b/metadata/md5-cache/kde-apps/kdesdk-thumbnailers-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 sys-devel/gettext || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdesdk-thumbnailers-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6e3fd675595652824da7dcae25439733 diff --git a/metadata/md5-cache/kde-apps/kdesdk-thumbnailers-22.12.3 b/metadata/md5-cache/kde-apps/kdesdk-thumbnailers-22.12.3 index 8ee5ae89c72e..a5d10ef18bf3 100644 --- a/metadata/md5-cache/kde-apps/kdesdk-thumbnailers-22.12.3 +++ b/metadata/md5-cache/kde-apps/kdesdk-thumbnailers-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 sys-devel/gettext || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdesdk-thumbnailers-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=42a58bfaad9e976bd788498b528e34a9 diff --git a/metadata/md5-cache/kde-apps/kdf-22.08.3 b/metadata/md5-cache/kde-apps/kdf-22.08.3 index 1b91384014ed..12a369d8b059 100644 --- a/metadata/md5-cache/kde-apps/kdf-22.08.3 +++ b/metadata/md5-cache/kde-apps/kdf-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcmutils-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdf-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1884c745bb44a55157aa3855b2b5fd1a diff --git a/metadata/md5-cache/kde-apps/kdf-22.12.3 b/metadata/md5-cache/kde-apps/kdf-22.12.3 index 816b4af84583..2b9ad04ec6db 100644 --- a/metadata/md5-cache/kde-apps/kdf-22.12.3 +++ b/metadata/md5-cache/kde-apps/kdf-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcmutils-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdf-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ed32c8510ec427babf86b4adf1c48a7e diff --git a/metadata/md5-cache/kde-apps/kdialog-22.08.3 b/metadata/md5-cache/kde-apps/kdialog-22.08.3 index d546f38f0af0..4d28dad3ca79 100644 --- a/metadata/md5-cache/kde-apps/kdialog-22.08.3 +++ b/metadata/md5-cache/kde-apps/kdialog-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 X? ( x11-libs/libX11 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdialog-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bbff7f8e289d74eeffe2aa5e2156ebb6 diff --git a/metadata/md5-cache/kde-apps/kdialog-22.12.3 b/metadata/md5-cache/kde-apps/kdialog-22.12.3 index 05e39db12107..319af62492a9 100644 --- a/metadata/md5-cache/kde-apps/kdialog-22.12.3 +++ b/metadata/md5-cache/kde-apps/kdialog-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 X? ( x11-libs/libX11 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdialog-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=21cc8fc23238f5a8f16e710b93a1b713 diff --git a/metadata/md5-cache/kde-apps/kdiamond-22.08.3 b/metadata/md5-cache/kde-apps/kdiamond-22.08.3 index c7beae3f2b04..b111a4b3dc2d 100644 --- a/metadata/md5-cache/kde-apps/kdiamond-22.08.3 +++ b/metadata/md5-cache/kde-apps/kdiamond-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/knotifyconfig-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdiamond-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d8a6329b258917aab54349ac49a9ab6 diff --git a/metadata/md5-cache/kde-apps/kdiamond-22.12.3 b/metadata/md5-cache/kde-apps/kdiamond-22.12.3 index 027552ee5943..b100c88ddc3d 100644 --- a/metadata/md5-cache/kde-apps/kdiamond-22.12.3 +++ b/metadata/md5-cache/kde-apps/kdiamond-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/knotifyconfig-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdiamond-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2ee163ef6716805f5e6839ffe9070883 diff --git a/metadata/md5-cache/kde-apps/keditbookmarks-22.08.3 b/metadata/md5-cache/kde-apps/keditbookmarks-22.08.3 index 1e9346bc738d..e4248145066b 100644 --- a/metadata/md5-cache/kde-apps/keditbookmarks-22.08.3 +++ b/metadata/md5-cache/kde-apps/keditbookmarks-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/keditbookmarks-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=230350a60da211016ebc6262d9589e58 diff --git a/metadata/md5-cache/kde-apps/keditbookmarks-22.12.3 b/metadata/md5-cache/kde-apps/keditbookmarks-22.12.3 index e80a40168dc1..44e80127bdb1 100644 --- a/metadata/md5-cache/kde-apps/keditbookmarks-22.12.3 +++ b/metadata/md5-cache/kde-apps/keditbookmarks-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/keditbookmarks-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e8d61c4c934991023edb7f8ab8a16890 diff --git a/metadata/md5-cache/kde-apps/kfind-22.08.3 b/metadata/md5-cache/kde-apps/kfind-22.08.3 index 8270b5a859ba..78a8c5e8a23c 100644 --- a/metadata/md5-cache/kde-apps/kfind-22.08.3 +++ b/metadata/md5-cache/kde-apps/kfind-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kfilemetadata-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kfind-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=37d2547c6355b7b50d33359a2294d362 diff --git a/metadata/md5-cache/kde-apps/kfind-22.12.3 b/metadata/md5-cache/kde-apps/kfind-22.12.3 index dc39d9f3bc35..32619c237326 100644 --- a/metadata/md5-cache/kde-apps/kfind-22.12.3 +++ b/metadata/md5-cache/kde-apps/kfind-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kfilemetadata-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kfind-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c8f314efde218a73d1b5e8cf9c5eb80d diff --git a/metadata/md5-cache/kde-apps/kfloppy-22.08.3 b/metadata/md5-cache/kde-apps/kfloppy-22.08.3 index 997544a68438..65f4520b1aa8 100644 --- a/metadata/md5-cache/kde-apps/kfloppy-22.08.3 +++ b/metadata/md5-cache/kde-apps/kfloppy-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kfloppy-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=115453f140a2a94ba3b00b32fa9acffc diff --git a/metadata/md5-cache/kde-apps/kfloppy-22.12.3 b/metadata/md5-cache/kde-apps/kfloppy-22.12.3 index 99e1cf8c81b3..9bd0758738f9 100644 --- a/metadata/md5-cache/kde-apps/kfloppy-22.12.3 +++ b/metadata/md5-cache/kde-apps/kfloppy-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kfloppy-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7906a2e4e2b0ecc0546fb8000d393745 diff --git a/metadata/md5-cache/kde-apps/kfourinline-22.08.3 b/metadata/md5-cache/kde-apps/kfourinline-22.08.3 index ef56224f150e..1955b2ff9428 100644 --- a/metadata/md5-cache/kde-apps/kfourinline-22.08.3 +++ b/metadata/md5-cache/kde-apps/kfourinline-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdnssd-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kfourinline-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d964dc9a98c9765ab8958d670fb09502 diff --git a/metadata/md5-cache/kde-apps/kfourinline-22.12.3 b/metadata/md5-cache/kde-apps/kfourinline-22.12.3 index 1f75cd9539e5..446503a1cc9e 100644 --- a/metadata/md5-cache/kde-apps/kfourinline-22.12.3 +++ b/metadata/md5-cache/kde-apps/kfourinline-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdnssd-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kfourinline-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7e5c1476a21d4b0fb3be4fc10868d206 diff --git a/metadata/md5-cache/kde-apps/kgeography-22.08.3 b/metadata/md5-cache/kde-apps/kgeography-22.08.3 index fb0e61c5dd21..68cfc42217c9 100644 --- a/metadata/md5-cache/kde-apps/kgeography-22.08.3 +++ b/metadata/md5-cache/kde-apps/kgeography-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kgeography-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b7a7dfe46438153726f53d2033e56ab8 diff --git a/metadata/md5-cache/kde-apps/kgeography-22.12.3 b/metadata/md5-cache/kde-apps/kgeography-22.12.3 index 7037f8c874dc..29bc25d00692 100644 --- a/metadata/md5-cache/kde-apps/kgeography-22.12.3 +++ b/metadata/md5-cache/kde-apps/kgeography-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kitemviews-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kgeography-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e88495a7e16091cd98c770be067d0637 diff --git a/metadata/md5-cache/kde-apps/kget-22.08.3 b/metadata/md5-cache/kde-apps/kget-22.08.3 index c99ef0ef50af..019002243094 100644 --- a/metadata/md5-cache/kde-apps/kget-22.08.3 +++ b/metadata/md5-cache/kde-apps/kget-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kget-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0750078abcb361d1d9699297a8d06898 diff --git a/metadata/md5-cache/kde-apps/kget-22.12.3 b/metadata/md5-cache/kde-apps/kget-22.12.3 index 6084e8c32819..bcc42cd8b57a 100644 --- a/metadata/md5-cache/kde-apps/kget-22.12.3 +++ b/metadata/md5-cache/kde-apps/kget-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kget-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d0ce9089306c14f04a12cdcbe929e848 diff --git a/metadata/md5-cache/kde-apps/kgoldrunner-22.08.3 b/metadata/md5-cache/kde-apps/kgoldrunner-22.08.3 index 98b9fed43c79..3c168004c293 100644 --- a/metadata/md5-cache/kde-apps/kgoldrunner-22.08.3 +++ b/metadata/md5-cache/kde-apps/kgoldrunner-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 media-libs/libsndfile media-libs/openal >=dev-qt/qtsvg-5.15.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kgoldrunner-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=40b17f1e0c7685ba0271b8ff52fdfd22 diff --git a/metadata/md5-cache/kde-apps/kgoldrunner-22.12.3 b/metadata/md5-cache/kde-apps/kgoldrunner-22.12.3 index 68a97bd53095..27e147300b75 100644 --- a/metadata/md5-cache/kde-apps/kgoldrunner-22.12.3 +++ b/metadata/md5-cache/kde-apps/kgoldrunner-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 media-libs/libsndfile media-libs/openal >=dev-qt/qtsvg-5.15.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kgoldrunner-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a4a7ad98cf58fa7f93ccec0a1c6965ed diff --git a/metadata/md5-cache/kde-apps/kgpg-22.08.3 b/metadata/md5-cache/kde-apps/kgpg-22.08.3 index 273b2ba7d830..0ce9720b39e9 100644 --- a/metadata/md5-cache/kde-apps/kgpg-22.08.3 +++ b/metadata/md5-cache/kde-apps/kgpg-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-22.08.3:5 >=kde-apps/akonadi-contacts-22.08.3:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kcodecs-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcontacts-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 app-crypt/gnupg || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-gpg ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kgpg-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e0e6607cbf5c3584741a0764cedee434 diff --git a/metadata/md5-cache/kde-apps/kgpg-22.12.3 b/metadata/md5-cache/kde-apps/kgpg-22.12.3 index d3db07d688bc..a648df01d4f4 100644 --- a/metadata/md5-cache/kde-apps/kgpg-22.12.3 +++ b/metadata/md5-cache/kde-apps/kgpg-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-22.12.3:5 >=kde-apps/akonadi-contacts-22.12.3:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kcodecs-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcontacts-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 app-crypt/gnupg || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-gpg ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kgpg-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d9857cb798101acf35db426d94da3f5c diff --git a/metadata/md5-cache/kde-apps/khangman-22.08.3 b/metadata/md5-cache/kde-apps/khangman-22.08.3 index e742c4c5a7fa..6141d107bf4d 100644 --- a/metadata/md5-cache/kde-apps/khangman-22.08.3 +++ b/metadata/md5-cache/kde-apps/khangman-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkeduvocdocument-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=media-libs/phonon-4.11.0 >=dev-qt/qtgraphicaleffects-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtquickcontrols-5.15.5:5 >=kde-apps/kdeedu-data-22.08.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/khangman-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=10f343eea2a5ff3d8d5c98ffda86f70c diff --git a/metadata/md5-cache/kde-apps/khangman-22.12.3 b/metadata/md5-cache/kde-apps/khangman-22.12.3 index 88cc0aa76c5a..bc007cc71d77 100644 --- a/metadata/md5-cache/kde-apps/khangman-22.12.3 +++ b/metadata/md5-cache/kde-apps/khangman-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkeduvocdocument-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=media-libs/phonon-4.11.0 >=dev-qt/qtgraphicaleffects-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtquickcontrols-5.15.5:5 >=kde-apps/kdeedu-data-22.12.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/khangman-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9d557503799ea84bce93d5b1e2c28006 diff --git a/metadata/md5-cache/kde-apps/khelpcenter-22.08.3 b/metadata/md5-cache/kde-apps/khelpcenter-22.08.3 index 5ae706c6f67b..c88a1fbe1c6f 100644 --- a/metadata/md5-cache/kde-apps/khelpcenter-22.08.3 +++ b/metadata/md5-cache/kde-apps/khelpcenter-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/grantlee:5 dev-libs/libxml2 dev-libs/xapian:= >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kbookmarks-5.96.0:5 >=kde-frameworks/kcodecs-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kdoctools-5.96.0:5 >=kde-frameworks/khtml-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-plasma/kde-cli-tools-5.16.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/khelpcenter-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9ec84997736f8065846ef25e0120d5c2 diff --git a/metadata/md5-cache/kde-apps/khelpcenter-22.12.3 b/metadata/md5-cache/kde-apps/khelpcenter-22.12.3 index 41dd01a5191e..b5539e2db5ff 100644 --- a/metadata/md5-cache/kde-apps/khelpcenter-22.12.3 +++ b/metadata/md5-cache/kde-apps/khelpcenter-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/grantlee:5 dev-libs/libxml2 dev-libs/xapian:= >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kbookmarks-5.101.0:5 >=kde-frameworks/kcodecs-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kdoctools-5.101.0:5 >=kde-frameworks/khtml-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=kde-plasma/kde-cli-tools-5.16.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/khelpcenter-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6b0b6babc6ad6cde19d426d8237c560e diff --git a/metadata/md5-cache/kde-apps/kidentitymanagement-22.08.3 b/metadata/md5-cache/kde-apps/kidentitymanagement-22.08.3 index bed72e1cd1d4..a8878a973bfa 100644 --- a/metadata/md5-cache/kde-apps/kidentitymanagement-22.08.3 +++ b/metadata/md5-cache/kde-apps/kidentitymanagement-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kidentitymanagement-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=20274629eaef984925f7e15bb366c394 diff --git a/metadata/md5-cache/kde-apps/kidentitymanagement-22.12.3 b/metadata/md5-cache/kde-apps/kidentitymanagement-22.12.3 index eaebe903d5e4..ce349f66b666 100644 --- a/metadata/md5-cache/kde-apps/kidentitymanagement-22.12.3 +++ b/metadata/md5-cache/kde-apps/kidentitymanagement-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kidentitymanagement-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5892d70a78cc28ef1b0a06ce3cc7c064 diff --git a/metadata/md5-cache/kde-apps/kig-22.08.3 b/metadata/md5-cache/kde-apps/kig-22.08.3 index a7486e39ea16..68d4bd1e0d05 100644 --- a/metadata/md5-cache/kde-apps/kig-22.08.3 +++ b/metadata/md5-cache/kde-apps/kig-22.08.3 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kig-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d2ab4410707d9ea11ee595a313919275 diff --git a/metadata/md5-cache/kde-apps/kig-22.12.3 b/metadata/md5-cache/kde-apps/kig-22.12.3 index 7a1421b2d262..4707b1f9cda3 100644 --- a/metadata/md5-cache/kde-apps/kig-22.12.3 +++ b/metadata/md5-cache/kde-apps/kig-22.12.3 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kig-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=749bd1d6d6aa075ed01995ac50adab2e diff --git a/metadata/md5-cache/kde-apps/kigo-22.08.3 b/metadata/md5-cache/kde-apps/kigo-22.08.3 index 1f546613617b..07be38c6cb32 100644 --- a/metadata/md5-cache/kde-apps/kigo-22.08.3 +++ b/metadata/md5-cache/kde-apps/kigo-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 games-board/gnugo || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kigo-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1cdf70e38aae05c3cecc9ac059292250 diff --git a/metadata/md5-cache/kde-apps/kigo-22.12.3 b/metadata/md5-cache/kde-apps/kigo-22.12.3 index 64c2f8d32225..740834d6f8c4 100644 --- a/metadata/md5-cache/kde-apps/kigo-22.12.3 +++ b/metadata/md5-cache/kde-apps/kigo-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 games-board/gnugo || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kigo-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=937a37ea0b8ed871e7811d2fdde7a201 diff --git a/metadata/md5-cache/kde-apps/killbots-22.08.3 b/metadata/md5-cache/kde-apps/killbots-22.08.3 index a6134d31b6c5..70d39294b35a 100644 --- a/metadata/md5-cache/kde-apps/killbots-22.08.3 +++ b/metadata/md5-cache/kde-apps/killbots-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/killbots-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3cecc25b5d852c7756d2e2956d78420b diff --git a/metadata/md5-cache/kde-apps/killbots-22.12.3 b/metadata/md5-cache/kde-apps/killbots-22.12.3 index 831862b7aee4..4d79e02de3ec 100644 --- a/metadata/md5-cache/kde-apps/killbots-22.12.3 +++ b/metadata/md5-cache/kde-apps/killbots-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/killbots-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ec80575c9ee8b070af0437362fc71d3f diff --git a/metadata/md5-cache/kde-apps/kimagemapeditor-22.08.3 b/metadata/md5-cache/kde-apps/kimagemapeditor-22.08.3 index 3bf8e6349720..898ce9127267 100644 --- a/metadata/md5-cache/kde-apps/kimagemapeditor-22.08.3 +++ b/metadata/md5-cache/kde-apps/kimagemapeditor-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kimagemapeditor-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3914396437ad256fddd32f94dba8d8d0 diff --git a/metadata/md5-cache/kde-apps/kimagemapeditor-22.12.3 b/metadata/md5-cache/kde-apps/kimagemapeditor-22.12.3 index 7171317a185e..f96549b81970 100644 --- a/metadata/md5-cache/kde-apps/kimagemapeditor-22.12.3 +++ b/metadata/md5-cache/kde-apps/kimagemapeditor-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kimagemapeditor-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4eb7bd458d7f5e34fd0f8676a36e41e diff --git a/metadata/md5-cache/kde-apps/kimap-22.08.3 b/metadata/md5-cache/kde-apps/kimap-22.08.3 index ecf9431603dd..824df14aae6b 100644 --- a/metadata/md5-cache/kde-apps/kimap-22.08.3 +++ b/metadata/md5-cache/kde-apps/kimap-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl >=dev-qt/qtgui-5.15.5:5 >=kde-apps/kmime-22.08.3:5 > RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kimap-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e45aabf178b5bfd7ce76c52554f6088 diff --git a/metadata/md5-cache/kde-apps/kimap-22.12.3 b/metadata/md5-cache/kde-apps/kimap-22.12.3 index be306c280050..d41d2e33e587 100644 --- a/metadata/md5-cache/kde-apps/kimap-22.12.3 +++ b/metadata/md5-cache/kde-apps/kimap-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl >=dev-qt/qtgui-5.15.5:5 >=kde-apps/kmime-22.12.3:5 > RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kimap-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=56f8067a6863aeef0fd2d29311ed8bcc diff --git a/metadata/md5-cache/kde-apps/kio-extras-22.08.3 b/metadata/md5-cache/kde-apps/kio-extras-22.08.3 index 3cd8a5858a49..ad4da1440ba4 100644 --- a/metadata/md5-cache/kde-apps/kio-extras-22.08.3 +++ b/metadata/md5-cache/kde-apps/kio-extras-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kio-extras-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3cba261487ef7a023a8213665c6e5c6c diff --git a/metadata/md5-cache/kde-apps/kio-extras-22.12.3 b/metadata/md5-cache/kde-apps/kio-extras-22.12.3 index d6e6b32d16e4..13ad552c10e2 100644 --- a/metadata/md5-cache/kde-apps/kio-extras-22.12.3 +++ b/metadata/md5-cache/kde-apps/kio-extras-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kio-extras-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9eccb86819a1833491345c97bcc09aaa diff --git a/metadata/md5-cache/kde-apps/kiriki-22.08.3 b/metadata/md5-cache/kde-apps/kiriki-22.08.3 index a0b405569570..d605560516f0 100644 --- a/metadata/md5-cache/kde-apps/kiriki-22.08.3 +++ b/metadata/md5-cache/kde-apps/kiriki-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kiriki-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f9f4eb6937426744da7976585a41e5d3 diff --git a/metadata/md5-cache/kde-apps/kiriki-22.12.3 b/metadata/md5-cache/kde-apps/kiriki-22.12.3 index a50823096b24..a5e89222b2ad 100644 --- a/metadata/md5-cache/kde-apps/kiriki-22.12.3 +++ b/metadata/md5-cache/kde-apps/kiriki-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kiriki-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5317f3600bda604d32b3f1e8e52d9749 diff --git a/metadata/md5-cache/kde-apps/kiten-22.08.3 b/metadata/md5-cache/kde-apps/kiten-22.08.3 index 8ce961d82350..3df2a0f6f4f2 100644 --- a/metadata/md5-cache/kde-apps/kiten-22.08.3 +++ b/metadata/md5-cache/kde-apps/kiten-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 media-fonts/kanjistrokeorders || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kiten-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bdf4433346d0ce42287d5a84f82caad1 diff --git a/metadata/md5-cache/kde-apps/kiten-22.12.3 b/metadata/md5-cache/kde-apps/kiten-22.12.3 index 2b208aa6f3dd..041221642d33 100644 --- a/metadata/md5-cache/kde-apps/kiten-22.12.3 +++ b/metadata/md5-cache/kde-apps/kiten-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 media-fonts/kanjistrokeorders || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kiten-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b8e8374ed80af1ca66aa4f7b0f8012b diff --git a/metadata/md5-cache/kde-apps/kitinerary-22.08.3 b/metadata/md5-cache/kde-apps/kitinerary-22.08.3 index 970d872ba96d..da5d7becd03d 100644 --- a/metadata/md5-cache/kde-apps/kitinerary-22.08.3 +++ b/metadata/md5-cache/kde-apps/kitinerary-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=app-text/poppler:=[qt5] dev-libs/libphonenumber dev-libs/libxml2:2 dev-l RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kitinerary-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1f4d319ef1d8c8d5e23ff0f1821efe8c diff --git a/metadata/md5-cache/kde-apps/kitinerary-22.12.3 b/metadata/md5-cache/kde-apps/kitinerary-22.12.3 index 6595f0863c7d..258bc35f2514 100644 --- a/metadata/md5-cache/kde-apps/kitinerary-22.12.3 +++ b/metadata/md5-cache/kde-apps/kitinerary-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=app-text/poppler:=[qt5] dev-libs/libphonenumber dev-libs/libxml2:2 dev-l RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kitinerary-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a33ebc254606c256d7e7799d1a4adaac diff --git a/metadata/md5-cache/kde-apps/kjumpingcube-22.08.3 b/metadata/md5-cache/kde-apps/kjumpingcube-22.08.3 index 612f6ab23574..60043336c83b 100644 --- a/metadata/md5-cache/kde-apps/kjumpingcube-22.08.3 +++ b/metadata/md5-cache/kde-apps/kjumpingcube-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kjumpingcube-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=39c46f2354a7c51e99aa37849cd2243d diff --git a/metadata/md5-cache/kde-apps/kjumpingcube-22.12.3 b/metadata/md5-cache/kde-apps/kjumpingcube-22.12.3 index 2e4af835119f..749cf5a71e4a 100644 --- a/metadata/md5-cache/kde-apps/kjumpingcube-22.12.3 +++ b/metadata/md5-cache/kde-apps/kjumpingcube-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kjumpingcube-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=92dc1c0a5be646faa13c59419a770262 diff --git a/metadata/md5-cache/kde-apps/kldap-22.08.3 b/metadata/md5-cache/kde-apps/kldap-22.08.3 index 70dbf86fb6e4..ba513a020e98 100644 --- a/metadata/md5-cache/kde-apps/kldap-22.08.3 +++ b/metadata/md5-cache/kde-apps/kldap-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtgui-5.15.5: RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kldap-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c57ea7a6b21c60d1d1a1d75555e05234 diff --git a/metadata/md5-cache/kde-apps/kldap-22.12.3 b/metadata/md5-cache/kde-apps/kldap-22.12.3 index 7bc2292d3452..99f10f2e2640 100644 --- a/metadata/md5-cache/kde-apps/kldap-22.12.3 +++ b/metadata/md5-cache/kde-apps/kldap-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtgui-5.15.5: RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kldap-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7d66fb7ad823c36788dbdb8006dfbdc6 diff --git a/metadata/md5-cache/kde-apps/kleopatra-22.08.3 b/metadata/md5-cache/kde-apps/kleopatra-22.08.3 index 6ecacdf0cd18..bba91541ea38 100644 --- a/metadata/md5-cache/kde-apps/kleopatra-22.08.3 +++ b/metadata/md5-cache/kde-apps/kleopatra-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] dev-libs/libassuan dev-libs/libgpg-e RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kleopatra-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=df190483c924d7a865bf3e93725ca1f7 diff --git a/metadata/md5-cache/kde-apps/kleopatra-22.12.3 b/metadata/md5-cache/kde-apps/kleopatra-22.12.3 index 5edfad4a84e5..0e8257c1cc42 100644 --- a/metadata/md5-cache/kde-apps/kleopatra-22.12.3 +++ b/metadata/md5-cache/kde-apps/kleopatra-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] dev-libs/libassuan dev-libs/libgpg-e RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kleopatra-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ff6a9938dc9171575590a4590121a096 diff --git a/metadata/md5-cache/kde-apps/klettres-22.08.3 b/metadata/md5-cache/kde-apps/klettres-22.08.3 index c376f5d24ab5..d774af1c574d 100644 --- a/metadata/md5-cache/kde-apps/klettres-22.08.3 +++ b/metadata/md5-cache/kde-apps/klettres-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=media-libs/phonon-4.11.0 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/klettres-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=abeb8aebb69cd94f68987874474e0231 diff --git a/metadata/md5-cache/kde-apps/klettres-22.12.3 b/metadata/md5-cache/kde-apps/klettres-22.12.3 index 55622350b5cb..8addf09a80e6 100644 --- a/metadata/md5-cache/kde-apps/klettres-22.12.3 +++ b/metadata/md5-cache/kde-apps/klettres-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=media-libs/phonon-4.11.0 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/klettres-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7b4ee3a2d8c46757aa28a48a64d3edcd diff --git a/metadata/md5-cache/kde-apps/klickety-22.08.3 b/metadata/md5-cache/kde-apps/klickety-22.08.3 index ee8212d2b1b7..c2016425f9b3 100644 --- a/metadata/md5-cache/kde-apps/klickety-22.08.3 +++ b/metadata/md5-cache/kde-apps/klickety-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/knotifyconfig-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/klickety-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2282daa73e9fe664d5d9b280ebf7fbe6 diff --git a/metadata/md5-cache/kde-apps/klickety-22.12.3 b/metadata/md5-cache/kde-apps/klickety-22.12.3 index 78efc8e50cf7..bd95be9b68c1 100644 --- a/metadata/md5-cache/kde-apps/klickety-22.12.3 +++ b/metadata/md5-cache/kde-apps/klickety-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/knotifyconfig-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/klickety-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=db246de5c862e69d70f0b8d36a773919 diff --git a/metadata/md5-cache/kde-apps/klines-22.08.3 b/metadata/md5-cache/kde-apps/klines-22.08.3 index 79121251db2c..56f10b669ab3 100644 --- a/metadata/md5-cache/kde-apps/klines-22.08.3 +++ b/metadata/md5-cache/kde-apps/klines-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/klines-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d2cf92ad7fdbd6e19939a38a40393723 diff --git a/metadata/md5-cache/kde-apps/klines-22.12.3 b/metadata/md5-cache/kde-apps/klines-22.12.3 index 0f5d57a7bd93..e2d546098b48 100644 --- a/metadata/md5-cache/kde-apps/klines-22.12.3 +++ b/metadata/md5-cache/kde-apps/klines-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/klines-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=79306015d514e4cc6f18640516274ce7 diff --git a/metadata/md5-cache/kde-apps/kmag-22.08.3 b/metadata/md5-cache/kde-apps/kmag-22.08.3 index 5e14a7937203..c934840793b9 100644 --- a/metadata/md5-cache/kde-apps/kmag-22.08.3 +++ b/metadata/md5-cache/kde-apps/kmag-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 keyboardfocus? ( >=media-libs/libqaccessibilityclient-0.4:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmag-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5c382847faf054eef9235798a262398c diff --git a/metadata/md5-cache/kde-apps/kmag-22.12.3 b/metadata/md5-cache/kde-apps/kmag-22.12.3 index 6665e1607f68..4bed87b43788 100644 --- a/metadata/md5-cache/kde-apps/kmag-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmag-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 keyboardfocus? ( >=media-libs/libqaccessibilityclient-0.4:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmag-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=77c23761c4fbb276831f18699d1f0957 diff --git a/metadata/md5-cache/kde-apps/kmahjongg-22.08.3 b/metadata/md5-cache/kde-apps/kmahjongg-22.08.3 index e7e3e688bafb..279b37650dcd 100644 --- a/metadata/md5-cache/kde-apps/kmahjongg-22.08.3 +++ b/metadata/md5-cache/kde-apps/kmahjongg-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-apps/libkmahjongg-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kdeclarative-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmahjongg-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d906654c99e3f4a43901b845368ffa6d diff --git a/metadata/md5-cache/kde-apps/kmahjongg-22.12.3 b/metadata/md5-cache/kde-apps/kmahjongg-22.12.3 index b94807007247..ebde7efc0503 100644 --- a/metadata/md5-cache/kde-apps/kmahjongg-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmahjongg-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-apps/libkmahjongg-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kdeclarative-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmahjongg-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6a0ad6832510e33c174fe4ef24af344c diff --git a/metadata/md5-cache/kde-apps/kmail-22.08.3-r1 b/metadata/md5-cache/kde-apps/kmail-22.08.3-r1 index e2187778216f..4021f39dfc23 100644 --- a/metadata/md5-cache/kde-apps/kmail-22.08.3-r1 +++ b/metadata/md5-cache/kde-apps/kmail-22.08.3-r1 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] >=dev-qt/qtcore-5.15.5:5 >=dev-qt/qt RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmail-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=eecea7e3466cfb31ea052abf716e64ba diff --git a/metadata/md5-cache/kde-apps/kmail-22.08.3-r2 b/metadata/md5-cache/kde-apps/kmail-22.08.3-r2 index b77f515b9a0c..9d13ea00e85f 100644 --- a/metadata/md5-cache/kde-apps/kmail-22.08.3-r2 +++ b/metadata/md5-cache/kde-apps/kmail-22.08.3-r2 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] >=dev-qt/qtcore-5.15.5:5 >=dev-qt/qt RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmail-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=805ee3a59772e35f59c42b7c9eebebd3 diff --git a/metadata/md5-cache/kde-apps/kmail-22.12.3 b/metadata/md5-cache/kde-apps/kmail-22.12.3 index c26e9d8a59da..f049a89dbd8e 100644 --- a/metadata/md5-cache/kde-apps/kmail-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmail-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] >=dev-qt/qtcore-5.15.5:5 >=dev-qt/qt RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmail-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=82a986eaf42e597742a7b671ea9eec85 diff --git a/metadata/md5-cache/kde-apps/kmail-account-wizard-22.08.3 b/metadata/md5-cache/kde-apps/kmail-account-wizard-22.08.3 index 27ad571054bd..c09ebdbb51ec 100644 --- a/metadata/md5-cache/kde-apps/kmail-account-wizard-22.08.3 +++ b/metadata/md5-cache/kde-apps/kmail-account-wizard-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/gpgme:=[cxx,qt5] dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtdbus RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmail-account-wizard-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=913b0f583d6e729d68553d5b0b9b48a0 diff --git a/metadata/md5-cache/kde-apps/kmail-account-wizard-22.12.3 b/metadata/md5-cache/kde-apps/kmail-account-wizard-22.12.3 index e6dadf132f3f..6ed0eb498868 100644 --- a/metadata/md5-cache/kde-apps/kmail-account-wizard-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmail-account-wizard-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/gpgme:=[cxx,qt5] dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtdbus RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmail-account-wizard-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3e180165a374ec97bd163f2cd96a362f diff --git a/metadata/md5-cache/kde-apps/kmailtransport-22.08.3 b/metadata/md5-cache/kde-apps/kmailtransport-22.08.3 index e9f9cb704d15..e4b3fa58a175 100644 --- a/metadata/md5-cache/kde-apps/kmailtransport-22.08.3 +++ b/metadata/md5-cache/kde-apps/kmailtransport-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5. RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmailtransport-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=07c8d761a8413a404c4e1229772766b9 diff --git a/metadata/md5-cache/kde-apps/kmailtransport-22.08.3-r1 b/metadata/md5-cache/kde-apps/kmailtransport-22.08.3-r1 index 53c3a253a0af..9fbf7aeb9eb1 100644 --- a/metadata/md5-cache/kde-apps/kmailtransport-22.08.3-r1 +++ b/metadata/md5-cache/kde-apps/kmailtransport-22.08.3-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5. RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmailtransport-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=da5fe5fca427c9cc08ba667d28c02644 diff --git a/metadata/md5-cache/kde-apps/kmailtransport-22.12.3 b/metadata/md5-cache/kde-apps/kmailtransport-22.12.3 index 60c13c8a44aa..db7d91768acb 100644 --- a/metadata/md5-cache/kde-apps/kmailtransport-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmailtransport-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5. RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmailtransport-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8ddb490e122f372b4a167c13d092805e diff --git a/metadata/md5-cache/kde-apps/kmbox-22.08.3 b/metadata/md5-cache/kde-apps/kmbox-22.08.3 index 88b6730e20e4..ee7c051bc95a 100644 --- a/metadata/md5-cache/kde-apps/kmbox-22.08.3 +++ b/metadata/md5-cache/kde-apps/kmbox-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=kde-apps/kmime-22.08.3:5 || ( kde-frameworks/breeze-icons:* kde-framew RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmbox-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2c8cdddf17ea1e6d254c4745076d2d82 diff --git a/metadata/md5-cache/kde-apps/kmbox-22.12.3 b/metadata/md5-cache/kde-apps/kmbox-22.12.3 index cc29a695c0d3..062692115e50 100644 --- a/metadata/md5-cache/kde-apps/kmbox-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmbox-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=kde-apps/kmime-22.12.3:5 || ( kde-frameworks/breeze-icons:* kde-framew RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmbox-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=db74a5decf54ca5ade19d5efecaca0af diff --git a/metadata/md5-cache/kde-apps/kmime-22.08.3 b/metadata/md5-cache/kde-apps/kmime-22.08.3 index 37aa9758084b..3fc068c736dc 100644 --- a/metadata/md5-cache/kde-apps/kmime-22.08.3 +++ b/metadata/md5-cache/kde-apps/kmime-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=kde-frameworks/kcodecs-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 || ( k RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmime-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7ec6f3bc6fdf2c7725d43821dfe45c6f diff --git a/metadata/md5-cache/kde-apps/kmime-22.12.3 b/metadata/md5-cache/kde-apps/kmime-22.12.3 index 815eec81e035..613bc3df148d 100644 --- a/metadata/md5-cache/kde-apps/kmime-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmime-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=kde-frameworks/kcodecs-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 || ( RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmime-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=225e46eba57a0855d41737f2b2bd8bff diff --git a/metadata/md5-cache/kde-apps/kmines-22.08.3 b/metadata/md5-cache/kde-apps/kmines-22.08.3 index f291b2a00e5c..efefe1f4bf7e 100644 --- a/metadata/md5-cache/kde-apps/kmines-22.08.3 +++ b/metadata/md5-cache/kde-apps/kmines-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmines-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a751a9300de5212d7fd9edb5c4391d3c diff --git a/metadata/md5-cache/kde-apps/kmines-22.12.3 b/metadata/md5-cache/kde-apps/kmines-22.12.3 index 0785f49ea548..44d473a30b67 100644 --- a/metadata/md5-cache/kde-apps/kmines-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmines-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmines-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a23b0036d53883d29f37bf21df84bbdc diff --git a/metadata/md5-cache/kde-apps/kmix-22.08.3 b/metadata/md5-cache/kde-apps/kmix-22.08.3 index 963d38e59787..dd8951d0d7a7 100644 --- a/metadata/md5-cache/kde-apps/kmix-22.08.3 +++ b/metadata/md5-cache/kde-apps/kmix-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kglobalaccel-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-frameworks/solid-5.96.0:5 alsa? ( >=media-libs/alsa-lib-1.0.14a ) plasma? ( >=kde-frameworks/plasma-5.96.0:5 ) pulseaudio? ( media-libs/libcanberra media-libs/libpulse ) kde-plasma/kde-cli-tools:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmix-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f7c1205d9cfd48fa3969c8c195f4d0a8 diff --git a/metadata/md5-cache/kde-apps/kmix-22.12.3 b/metadata/md5-cache/kde-apps/kmix-22.12.3 index 5e8ed31734fb..b01baf55c95c 100644 --- a/metadata/md5-cache/kde-apps/kmix-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmix-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kglobalaccel-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=kde-frameworks/solid-5.101.0:5 alsa? ( >=media-libs/alsa-lib-1.0.14a ) plasma? ( >=kde-frameworks/plasma-5.101.0:5 ) pulseaudio? ( media-libs/libcanberra media-libs/libpulse ) kde-plasma/kde-cli-tools:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmix-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d0d24b171586f9768f0f85a5949bca22 diff --git a/metadata/md5-cache/kde-apps/kmousetool-22.08.3 b/metadata/md5-cache/kde-apps/kmousetool-22.08.3 index 7adce95be72b..d8194f2bd475 100644 --- a/metadata/md5-cache/kde-apps/kmousetool-22.08.3 +++ b/metadata/md5-cache/kde-apps/kmousetool-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=media-libs/phonon-4.11.0 x11-libs/libX11 x11-libs/libXtst || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmousetool-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aa987eebbf2e35ba737c651ea2920924 diff --git a/metadata/md5-cache/kde-apps/kmousetool-22.12.3 b/metadata/md5-cache/kde-apps/kmousetool-22.12.3 index 56bd653601d3..6879f6796dd1 100644 --- a/metadata/md5-cache/kde-apps/kmousetool-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmousetool-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=media-libs/phonon-4.11.0 x11-libs/libX11 x11-libs/libXtst || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmousetool-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bbcaeac4072a6a7164ca3b59cc1e5fdf diff --git a/metadata/md5-cache/kde-apps/kmouth-22.08.3 b/metadata/md5-cache/kde-apps/kmouth-22.08.3 index c8f270c6b37e..800f2aa4393c 100644 --- a/metadata/md5-cache/kde-apps/kmouth-22.08.3 +++ b/metadata/md5-cache/kde-apps/kmouth-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtspeech-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmouth-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=91b52e7c01b9430541e93ad84b2a42b4 diff --git a/metadata/md5-cache/kde-apps/kmouth-22.12.3 b/metadata/md5-cache/kde-apps/kmouth-22.12.3 index 11458c4b697c..7e8247f71506 100644 --- a/metadata/md5-cache/kde-apps/kmouth-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmouth-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtspeech-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmouth-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4ffac4aa59dae52cc7082ebe85f222e6 diff --git a/metadata/md5-cache/kde-apps/kmplot-22.08.3 b/metadata/md5-cache/kde-apps/kmplot-22.08.3 index e3523d276d48..4a4d30aa14be 100644 --- a/metadata/md5-cache/kde-apps/kmplot-22.08.3 +++ b/metadata/md5-cache/kde-apps/kmplot-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kmplot-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a9b1c7398a391d7bd7c1a54093130ee9 diff --git a/metadata/md5-cache/kde-apps/kmplot-22.12.3 b/metadata/md5-cache/kde-apps/kmplot-22.12.3 index d6df9cdf845a..a1e9cd6dab5f 100644 --- a/metadata/md5-cache/kde-apps/kmplot-22.12.3 +++ b/metadata/md5-cache/kde-apps/kmplot-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kmplot-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3e881381ad932e56cbc2a08865c02246 diff --git a/metadata/md5-cache/kde-apps/knavalbattle-22.08.3 b/metadata/md5-cache/kde-apps/knavalbattle-22.08.3 index ff8de6a7aa78..dae7504b769f 100644 --- a/metadata/md5-cache/kde-apps/knavalbattle-22.08.3 +++ b/metadata/md5-cache/kde-apps/knavalbattle-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kdnssd-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/knavalbattle-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f2e5c7d9aa1bb90c5984b695b908dd41 diff --git a/metadata/md5-cache/kde-apps/knavalbattle-22.12.3 b/metadata/md5-cache/kde-apps/knavalbattle-22.12.3 index ecbae6d114bc..ea93de90b198 100644 --- a/metadata/md5-cache/kde-apps/knavalbattle-22.12.3 +++ b/metadata/md5-cache/kde-apps/knavalbattle-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kdnssd-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/knavalbattle-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f45cdebaea35f3a323329db21d98dafd diff --git a/metadata/md5-cache/kde-apps/knetwalk-22.08.3 b/metadata/md5-cache/kde-apps/knetwalk-22.08.3 index a8e3e952bf30..d152213d9073 100644 --- a/metadata/md5-cache/kde-apps/knetwalk-22.08.3 +++ b/metadata/md5-cache/kde-apps/knetwalk-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidge RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/knetwalk-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d3a0eb05d0102c540869fef261002f92 diff --git a/metadata/md5-cache/kde-apps/knetwalk-22.12.3 b/metadata/md5-cache/kde-apps/knetwalk-22.12.3 index e4e5fce6cdcf..9d63fe30abdf 100644 --- a/metadata/md5-cache/kde-apps/knetwalk-22.12.3 +++ b/metadata/md5-cache/kde-apps/knetwalk-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidge RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/knetwalk-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef7fc9584cf0f382718d1b1511536e0b diff --git a/metadata/md5-cache/kde-apps/knights-22.08.3 b/metadata/md5-cache/kde-apps/knights-22.08.3 index e3ac8dfec88b..7272f4847652 100644 --- a/metadata/md5-cache/kde-apps/knights-22.08.3 +++ b/metadata/md5-cache/kde-apps/knights-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kplotting-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwallet-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-frameworks/plasma-5.96.0:5 speech? ( >=dev-qt/qtspeech-5.15.5:5 ) || ( games-board/gnuchess games-board/crafty games-board/stockfish games-board/sjeng ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/knights-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=77eaf4ddf43cdae4b95f59779de4fd99 diff --git a/metadata/md5-cache/kde-apps/knights-22.12.3 b/metadata/md5-cache/kde-apps/knights-22.12.3 index a9a6868e82d3..4a965b4f5fa6 100644 --- a/metadata/md5-cache/kde-apps/knights-22.12.3 +++ b/metadata/md5-cache/kde-apps/knights-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kplotting-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwallet-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=kde-frameworks/plasma-5.101.0:5 speech? ( >=dev-qt/qtspeech-5.15.5:5 ) || ( games-board/gnuchess games-board/crafty games-board/stockfish games-board/sjeng ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/knights-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=62e24ac85dc69afd615ab1ade518218b diff --git a/metadata/md5-cache/kde-apps/knotes-22.08.3 b/metadata/md5-cache/kde-apps/knotes-22.08.3 index b8ea8a0b9628..5a000872d4c6 100644 --- a/metadata/md5-cache/kde-apps/knotes-22.08.3 +++ b/metadata/md5-cache/kde-apps/knotes-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libxslt >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/knotes-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c7d6ace8a4e04f0034ad88dc19932637 diff --git a/metadata/md5-cache/kde-apps/knotes-22.12.3 b/metadata/md5-cache/kde-apps/knotes-22.12.3 index aeed3d63c4f9..61db0ec96328 100644 --- a/metadata/md5-cache/kde-apps/knotes-22.12.3 +++ b/metadata/md5-cache/kde-apps/knotes-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libxslt >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/knotes-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=348a886710395d857956cef2463e97fd diff --git a/metadata/md5-cache/kde-apps/kolf-22.08.3 b/metadata/md5-cache/kde-apps/kolf-22.08.3 index b67cdb8d47fa..f534feb6e4de 100644 --- a/metadata/md5-cache/kde-apps/kolf-22.08.3 +++ b/metadata/md5-cache/kde-apps/kolf-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kolf-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=279fcbf647cdab9b4af89eea3bdee326 diff --git a/metadata/md5-cache/kde-apps/kolf-22.12.3 b/metadata/md5-cache/kde-apps/kolf-22.12.3 index 8eacf3983333..1e32f8aa1343 100644 --- a/metadata/md5-cache/kde-apps/kolf-22.12.3 +++ b/metadata/md5-cache/kde-apps/kolf-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kolf-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f01790c440f7860919260c61e61d120 diff --git a/metadata/md5-cache/kde-apps/kollision-22.08.3 b/metadata/md5-cache/kde-apps/kollision-22.08.3 index cef8cf28f289..4345b14249d1 100644 --- a/metadata/md5-cache/kde-apps/kollision-22.08.3 +++ b/metadata/md5-cache/kde-apps/kollision-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kollision-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=25d2f5e15178417c73c260402c9a9132 diff --git a/metadata/md5-cache/kde-apps/kollision-22.12.3 b/metadata/md5-cache/kde-apps/kollision-22.12.3 index 93788e0ef86f..6ceae6927c2d 100644 --- a/metadata/md5-cache/kde-apps/kollision-22.12.3 +++ b/metadata/md5-cache/kde-apps/kollision-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kollision-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5c093384edb17f80f095668abd7428fd diff --git a/metadata/md5-cache/kde-apps/kolourpaint-22.08.3 b/metadata/md5-cache/kde-apps/kolourpaint-22.08.3 index c14978073b7a..76fa4f252410 100644 --- a/metadata/md5-cache/kde-apps/kolourpaint-22.08.3 +++ b/metadata/md5-cache/kde-apps/kolourpaint-22.08.3 @@ -12,5 +12,5 @@ LICENSE=BSD-2 LGPL-2 LGPL-2+ || ( LGPL-2.1 LGPL-3 ) GPL-2 handbook? ( FDL-1.2 ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 scanner? ( >=kde-apps/libksane-22.08.3:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kolourpaint-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=caf283173bd392f1e0728941390041a0 diff --git a/metadata/md5-cache/kde-apps/kolourpaint-22.12.3 b/metadata/md5-cache/kde-apps/kolourpaint-22.12.3 index 5e2bfa9add50..d3b2c8851787 100644 --- a/metadata/md5-cache/kde-apps/kolourpaint-22.12.3 +++ b/metadata/md5-cache/kde-apps/kolourpaint-22.12.3 @@ -12,5 +12,5 @@ LICENSE=BSD-2 LGPL-2 LGPL-2+ || ( LGPL-2.1 LGPL-3 ) GPL-2 handbook? ( FDL-1.2 ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 scanner? ( >=kde-apps/libksane-22.12.3:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kolourpaint-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1f9850260c0ffe50dfc4f731c03bd309 diff --git a/metadata/md5-cache/kde-apps/kompare-22.08.3 b/metadata/md5-cache/kde-apps/kompare-22.08.3 index 3b1b11105b73..dc46f07e831f 100644 --- a/metadata/md5-cache/kde-apps/kompare-22.08.3 +++ b/metadata/md5-cache/kde-apps/kompare-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkomparediff2-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kcodecs-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktexteditor-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kompare-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3b04004ad64492dda94dde93b4956668 diff --git a/metadata/md5-cache/kde-apps/kompare-22.12.3 b/metadata/md5-cache/kde-apps/kompare-22.12.3 index 1864b72ba3ca..8e8e818d18c8 100644 --- a/metadata/md5-cache/kde-apps/kompare-22.12.3 +++ b/metadata/md5-cache/kde-apps/kompare-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkomparediff2-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kcodecs-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/ktexteditor-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kompare-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2390ef5348bb844380418a22b9b41ee7 diff --git a/metadata/md5-cache/kde-apps/konqueror-22.08.3 b/metadata/md5-cache/kde-apps/konqueror-22.08.3 index 20bdc64b7e61..3689d1fc16f7 100644 --- a/metadata/md5-cache/kde-apps/konqueror-22.08.3 +++ b/metadata/md5-cache/kde-apps/konqueror-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtscript-5.15. RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/konqueror-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d865a8b57e9a21942fe8eb1c63eaa9b9 diff --git a/metadata/md5-cache/kde-apps/konqueror-22.12.3 b/metadata/md5-cache/kde-apps/konqueror-22.12.3 index 10d8667bc95e..b4ddefba9529 100644 --- a/metadata/md5-cache/kde-apps/konqueror-22.12.3 +++ b/metadata/md5-cache/kde-apps/konqueror-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtscript-5.15. RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/konqueror-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4107e4f22a0d00953586f05248a3fbb2 diff --git a/metadata/md5-cache/kde-apps/konquest-22.08.3 b/metadata/md5-cache/kde-apps/konquest-22.08.3 index 9eefb0c8b223..7a6f42e15cf1 100644 --- a/metadata/md5-cache/kde-apps/konquest-22.08.3 +++ b/metadata/md5-cache/kde-apps/konquest-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/konquest-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=230778909f29895ef49d6f4d7a08288f diff --git a/metadata/md5-cache/kde-apps/konquest-22.12.3 b/metadata/md5-cache/kde-apps/konquest-22.12.3 index 787639bb088e..5d8367edcb34 100644 --- a/metadata/md5-cache/kde-apps/konquest-22.12.3 +++ b/metadata/md5-cache/kde-apps/konquest-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/konquest-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e24764c45a092c3a7fa62a394b8af878 diff --git a/metadata/md5-cache/kde-apps/konsole-22.08.3 b/metadata/md5-cache/kde-apps/konsole-22.08.3 index e87abf7b57b1..74a09a31c4b1 100644 --- a/metadata/md5-cache/kde-apps/konsole-22.08.3 +++ b/metadata/md5-cache/kde-apps/konsole-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/konsole-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8f09bf3e7fb4d4f246c5df5f158ba40 diff --git a/metadata/md5-cache/kde-apps/konsole-22.12.3 b/metadata/md5-cache/kde-apps/konsole-22.12.3 index 2cbac4aa09ec..add403cc7d1a 100644 --- a/metadata/md5-cache/kde-apps/konsole-22.12.3 +++ b/metadata/md5-cache/kde-apps/konsole-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/icu:= >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/konsole-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b0c7a8bf46ebaea83f0f91d079a86cec diff --git a/metadata/md5-cache/kde-apps/konsolekalendar-22.08.3 b/metadata/md5-cache/kde-apps/konsolekalendar-22.08.3 index 50011aebc820..d69ef8abe23a 100644 --- a/metadata/md5-cache/kde-apps/konsolekalendar-22.08.3 +++ b/metadata/md5-cache/kde-apps/konsolekalendar-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=kde-apps/akonadi-22.08.3:5 >=kde-apps/akonadi-calendar-22.08.3:5 >=kde-apps/calendarsupport-22.08.3:5 >=kde-apps/kcalutils-22.08.3:5 >=kde-frameworks/kcalendarcore-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/akonadi-calendar-tools-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=76082dbe8094a61d0c1a2f4db4aa61ac diff --git a/metadata/md5-cache/kde-apps/konsolekalendar-22.12.3 b/metadata/md5-cache/kde-apps/konsolekalendar-22.12.3 index 4df43a92fba1..633d1f628a6f 100644 --- a/metadata/md5-cache/kde-apps/konsolekalendar-22.12.3 +++ b/metadata/md5-cache/kde-apps/konsolekalendar-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=kde-apps/akonadi-22.12.3:5 >=kde-apps/akonadi-calendar-22.12.3:5 >=kde-apps/calendarsupport-22.12.3:5 >=kde-apps/kcalutils-22.12.3:5 >=kde-frameworks/kcalendarcore-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/akonadi-calendar-tools-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8baf93599f2625a4fe46a4550a84f7df diff --git a/metadata/md5-cache/kde-apps/kontact-22.08.3 b/metadata/md5-cache/kde-apps/kontact-22.08.3 index d0c17110aa2a..073e26f0b77e 100644 --- a/metadata/md5-cache/kde-apps/kontact-22.08.3 +++ b/metadata/md5-cache/kde-apps/kontact-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-22.08.3:5 >=kde-apps/grantleetheme-22.08.3:5 >=kde-apps/kontactinterface-22.08.3:5 >=kde-apps/kpimtextedit-22.08.3:5 >=kde-apps/libkdepim-22.08.3:5 >=kde-apps/mailcommon-22.08.3:5 >=kde-apps/pimcommon-22.08.3:5 >=kde-frameworks/kcmutils-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kontact-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d83d7e4cdfe12e21e74ed3c066e2515c diff --git a/metadata/md5-cache/kde-apps/kontact-22.12.3 b/metadata/md5-cache/kde-apps/kontact-22.12.3 index d891142004da..f7b141f50220 100644 --- a/metadata/md5-cache/kde-apps/kontact-22.12.3 +++ b/metadata/md5-cache/kde-apps/kontact-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-22.12.3:5 >=kde-apps/grantleetheme-22.12.3:5 >=kde-apps/kontactinterface-22.12.3:5 >=kde-apps/kpimtextedit-22.12.3:5 >=kde-apps/libkdepim-22.12.3:5 >=kde-apps/mailcommon-22.12.3:5 >=kde-apps/pimcommon-22.12.3:5 >=kde-frameworks/kcmutils-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kontact-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=28d968151435f5246016dd54271e0bd6 diff --git a/metadata/md5-cache/kde-apps/kontactinterface-22.08.3 b/metadata/md5-cache/kde-apps/kontactinterface-22.08.3 index c7065e90ccb6..7bb64b558eda 100644 --- a/metadata/md5-cache/kde-apps/kontactinterface-22.08.3 +++ b/metadata/md5-cache/kde-apps/kontactinterface-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kontactinterface-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0da95169205952bde187f6a355964245 diff --git a/metadata/md5-cache/kde-apps/kontactinterface-22.12.3 b/metadata/md5-cache/kde-apps/kontactinterface-22.12.3 index 1cbb76b73271..6712ef32eea6 100644 --- a/metadata/md5-cache/kde-apps/kontactinterface-22.12.3 +++ b/metadata/md5-cache/kde-apps/kontactinterface-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kontactinterface-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b29fee15ca9d12e544c8027075625658 diff --git a/metadata/md5-cache/kde-apps/kopete-22.08.3 b/metadata/md5-cache/kde-apps/kopete-22.08.3 index 6d1f27d457dd..abf828f943fc 100644 --- a/metadata/md5-cache/kde-apps/kopete-22.08.3 +++ b/metadata/md5-cache/kde-apps/kopete-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/gpgme:=[cxx,qt5] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsql-5.15.5 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kopete-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=76d9625b085cd4f575ccdeffd58f218a diff --git a/metadata/md5-cache/kde-apps/kopete-22.12.3 b/metadata/md5-cache/kde-apps/kopete-22.12.3 index 5e4504c04719..a0989f685eee 100644 --- a/metadata/md5-cache/kde-apps/kopete-22.12.3 +++ b/metadata/md5-cache/kde-apps/kopete-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/gpgme:=[cxx,qt5] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsql-5.15.5 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kopete-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=60626a29a102b7629c84c8de18f7e079 diff --git a/metadata/md5-cache/kde-apps/korganizer-22.08.3 b/metadata/md5-cache/kde-apps/korganizer-22.08.3 index c7b236a0b6e0..565602b6cf35 100644 --- a/metadata/md5-cache/kde-apps/korganizer-22.08.3 +++ b/metadata/md5-cache/kde-apps/korganizer-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/korganizer-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5c50aaf515fd3ad9eae8ab20231f7a7e diff --git a/metadata/md5-cache/kde-apps/korganizer-22.12.3 b/metadata/md5-cache/kde-apps/korganizer-22.12.3 index db144a6745df..5c56d7b85562 100644 --- a/metadata/md5-cache/kde-apps/korganizer-22.12.3 +++ b/metadata/md5-cache/kde-apps/korganizer-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/korganizer-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2e238e6e3af389be5054b62f4b05b78 diff --git a/metadata/md5-cache/kde-apps/kpat-22.08.3 b/metadata/md5-cache/kde-apps/kpat-22.08.3 index 1fea2f0162d1..38fdfa33d352 100644 --- a/metadata/md5-cache/kde-apps/kpat-22.08.3 +++ b/metadata/md5-cache/kde-apps/kpat-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-games/freecell-solver >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5: RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kpat-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8fdf0e84541f18be68ebf374872ca800 diff --git a/metadata/md5-cache/kde-apps/kpat-22.12.3 b/metadata/md5-cache/kde-apps/kpat-22.12.3 index ebc5a59ec8e1..12a9570933e3 100644 --- a/metadata/md5-cache/kde-apps/kpat-22.12.3 +++ b/metadata/md5-cache/kde-apps/kpat-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-games/freecell-solver >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5: RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kpat-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a306b5b3ab131bde3a39e37851075d23 diff --git a/metadata/md5-cache/kde-apps/kpimtextedit-22.08.3 b/metadata/md5-cache/kde-apps/kpimtextedit-22.08.3 index 4d8f7f079572..ad5b3bf1ff8d 100644 --- a/metadata/md5-cache/kde-apps/kpimtextedit-22.08.3 +++ b/metadata/md5-cache/kde-apps/kpimtextedit-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kco RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kpimtextedit-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5a12803161374147af1e41ace8543396 diff --git a/metadata/md5-cache/kde-apps/kpimtextedit-22.12.3 b/metadata/md5-cache/kde-apps/kpimtextedit-22.12.3 index ec77b9c6c77d..43a5f6e63ed4 100644 --- a/metadata/md5-cache/kde-apps/kpimtextedit-22.12.3 +++ b/metadata/md5-cache/kde-apps/kpimtextedit-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kco RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kpimtextedit-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2aa47570b046911dfad47e63aca4092a diff --git a/metadata/md5-cache/kde-apps/kpkpass-22.08.3 b/metadata/md5-cache/kde-apps/kpkpass-22.08.3 index d9988cf5e788..9162a9f85521 100644 --- a/metadata/md5-cache/kde-apps/kpkpass-22.08.3 +++ b/metadata/md5-cache/kde-apps/kpkpass-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/karchive-5.96.0:5 || ( kde-fram RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kpkpass-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4f076bd22291a827fc2d44bbc3ffbe72 diff --git a/metadata/md5-cache/kde-apps/kpkpass-22.12.3 b/metadata/md5-cache/kde-apps/kpkpass-22.12.3 index 42b368f36864..e1bc0cf83039 100644 --- a/metadata/md5-cache/kde-apps/kpkpass-22.12.3 +++ b/metadata/md5-cache/kde-apps/kpkpass-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/karchive-5.101.0:5 || ( kde-fra RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kpkpass-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=905ee54ee6657119cc6a7fdabf8f34cd diff --git a/metadata/md5-cache/kde-apps/kqtquickcharts-22.08.3 b/metadata/md5-cache/kde-apps/kqtquickcharts-22.08.3 index 83768fa73025..c2009adf4f06 100644 --- a/metadata/md5-cache/kde-apps/kqtquickcharts-22.08.3 +++ b/metadata/md5-cache/kde-apps/kqtquickcharts-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kqtquickcharts-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9a48311025ff517a603929ef2988c646 diff --git a/metadata/md5-cache/kde-apps/kqtquickcharts-22.12.3 b/metadata/md5-cache/kde-apps/kqtquickcharts-22.12.3 index 4d68235e06f0..38463196ab01 100644 --- a/metadata/md5-cache/kde-apps/kqtquickcharts-22.12.3 +++ b/metadata/md5-cache/kde-apps/kqtquickcharts-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kqtquickcharts-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=59ff3476e4233ff03cfb593b245d31b2 diff --git a/metadata/md5-cache/kde-apps/krdc-22.08.3 b/metadata/md5-cache/kde-apps/krdc-22.08.3 index 6850194cee60..51c2ce139f1e 100644 --- a/metadata/md5-cache/kde-apps/krdc-22.08.3 +++ b/metadata/md5-cache/kde-apps/krdc-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kbookmarks-5.96.0:5 >=kde-frameworks/kcmutils-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdnssd-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/knotifyconfig-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/kwallet-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 vnc? ( net-libs/libssh:= >=net-libs/libvncserver-0.9 ) rdp? ( >=net-misc/freerdp-1.1.0_beta1[X] ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/krdc-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c0efdd427c9b38014f6fea1863969c94 diff --git a/metadata/md5-cache/kde-apps/krdc-22.12.3 b/metadata/md5-cache/kde-apps/krdc-22.12.3 index 4b5b8982d1ae..0cb23446037c 100644 --- a/metadata/md5-cache/kde-apps/krdc-22.12.3 +++ b/metadata/md5-cache/kde-apps/krdc-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kbookmarks-5.101.0:5 >=kde-frameworks/kcmutils-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdnssd-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/knotifyconfig-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/kwallet-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 activities? ( >=kde-frameworks/kactivities-5.101.0:5 ) vnc? ( net-libs/libssh:= >=net-libs/libvncserver-0.9 ) rdp? ( >=net-misc/freerdp-1.1.0_beta1[X] ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/krdc-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=77c509ba287f5e4083ca66c5921f6935 diff --git a/metadata/md5-cache/kde-apps/kreversi-22.08.3 b/metadata/md5-cache/kde-apps/kreversi-22.08.3 index 603d8ff9fa6f..e40de53671f7 100644 --- a/metadata/md5-cache/kde-apps/kreversi-22.08.3 +++ b/metadata/md5-cache/kde-apps/kreversi-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kdeclarative-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kreversi-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=40700711549550fb893c8c9d038cdf8b diff --git a/metadata/md5-cache/kde-apps/kreversi-22.12.3 b/metadata/md5-cache/kde-apps/kreversi-22.12.3 index e7bb4833864e..d1c0ee848a29 100644 --- a/metadata/md5-cache/kde-apps/kreversi-22.12.3 +++ b/metadata/md5-cache/kde-apps/kreversi-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kreversi-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea6b6b164c2983920d37da7ea278a304 diff --git a/metadata/md5-cache/kde-apps/krfb-22.08.3 b/metadata/md5-cache/kde-apps/krfb-22.08.3 index 844a1451fb32..1173fd935854 100644 --- a/metadata/md5-cache/kde-apps/krfb-22.08.3 +++ b/metadata/md5-cache/kde-apps/krfb-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kdnssd-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kwallet-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=net-libs/libvncserver-0.9.9 x11-libs/libX11 x11-libs/libxcb x11-libs/libXtst x11-libs/xcb-util-image wayland? ( dev-libs/wayland || ( >=dev-qt/qtgui-5.15.5:5[libinput] >=dev-qt/qtgui-5.15.5:5[X] ) >=dev-qt/qtwayland-5.15.5:5 >=kde-frameworks/kwayland-5.96.0:5 media-libs/libepoxy media-libs/mesa[gbm(+)] >=media-video/pipewire-0.3:= ) wayland? ( sys-apps/xdg-desktop-portal[screencast] ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/krfb-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e931253d409ec2068f87de812b58b440 diff --git a/metadata/md5-cache/kde-apps/krfb-22.12.3 b/metadata/md5-cache/kde-apps/krfb-22.12.3 index 0882898d0998..d2d9c654f6cd 100644 --- a/metadata/md5-cache/kde-apps/krfb-22.12.3 +++ b/metadata/md5-cache/kde-apps/krfb-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kdnssd-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kwallet-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=net-libs/libvncserver-0.9.9 x11-libs/libX11 x11-libs/libxcb x11-libs/libXtst x11-libs/xcb-util-image wayland? ( dev-libs/wayland || ( >=dev-qt/qtgui-5.15.5:5[libinput] >=dev-qt/qtgui-5.15.5:5[X] ) >=dev-qt/qtwayland-5.15.5:5 >=kde-frameworks/kwayland-5.101.0:5 media-libs/libepoxy media-libs/mesa[gbm(+)] >=media-video/pipewire-0.3:= ) wayland? ( sys-apps/xdg-desktop-portal[screencast] ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/krfb-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=61e14ef562c5d32150d420d9002d7670 diff --git a/metadata/md5-cache/kde-apps/kross-interpreters-22.08.3 b/metadata/md5-cache/kde-apps/kross-interpreters-22.08.3 index d69502780095..9130e8cdfa9c 100644 --- a/metadata/md5-cache/kde-apps/kross-interpreters-22.08.3 +++ b/metadata/md5-cache/kde-apps/kross-interpreters-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kross-5.96.0:5 || ( dev-lang/ruby:2.7 ) virtual/rubygems || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kross-interpreters-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5337fb46ca17eb9a884b95bcbc93a1b8 diff --git a/metadata/md5-cache/kde-apps/kross-interpreters-22.12.3 b/metadata/md5-cache/kde-apps/kross-interpreters-22.12.3 index 2bfdf439593b..1582277cbd7b 100644 --- a/metadata/md5-cache/kde-apps/kross-interpreters-22.12.3 +++ b/metadata/md5-cache/kde-apps/kross-interpreters-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kross-5.101.0:5 || ( dev-lang/ruby:2.7 ) virtual/rubygems || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kross-interpreters-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a09877ad8f37994b278efdb67a9cb221 diff --git a/metadata/md5-cache/kde-apps/kruler-22.08.3 b/metadata/md5-cache/kde-apps/kruler-22.08.3 index c9e649a5a470..39fa6ebfdabd 100644 --- a/metadata/md5-cache/kde-apps/kruler-22.08.3 +++ b/metadata/md5-cache/kde-apps/kruler-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2 ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 X? ( >=dev-qt/qtx11extras-5.15.5:5 x11-libs/libxcb ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kruler-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3657a83e9db21ede4c81e18fbfedf5f4 diff --git a/metadata/md5-cache/kde-apps/kruler-22.12.3 b/metadata/md5-cache/kde-apps/kruler-22.12.3 index 5225bf92f070..ce2abb831695 100644 --- a/metadata/md5-cache/kde-apps/kruler-22.12.3 +++ b/metadata/md5-cache/kde-apps/kruler-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2 ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 X? ( >=dev-qt/qtx11extras-5.15.5:5 x11-libs/libxcb ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kruler-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2d7f7badb4d5ef77a83cd01da52cb31c diff --git a/metadata/md5-cache/kde-apps/kshisen-22.08.3 b/metadata/md5-cache/kde-apps/kshisen-22.08.3 index 1b8b68125366..01f490895d07 100644 --- a/metadata/md5-cache/kde-apps/kshisen-22.08.3 +++ b/metadata/md5-cache/kde-apps/kshisen-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-apps/libkmahjongg-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kshisen-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=33e12da84284a4a01a4dcdf9540c6ddd diff --git a/metadata/md5-cache/kde-apps/kshisen-22.12.3 b/metadata/md5-cache/kde-apps/kshisen-22.12.3 index 0dc3b736dd94..c8c4d0d4c787 100644 --- a/metadata/md5-cache/kde-apps/kshisen-22.12.3 +++ b/metadata/md5-cache/kde-apps/kshisen-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-apps/libkmahjongg-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kshisen-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b658b1e3e2591c2d4a0edcf53a9ce429 diff --git a/metadata/md5-cache/kde-apps/ksirk-22.08.3 b/metadata/md5-cache/kde-apps/ksirk-22.08.3 index dc84834fdb0a..4f6f6f740f55 100644 --- a/metadata/md5-cache/kde-apps/ksirk-22.08.3 +++ b/metadata/md5-cache/kde-apps/ksirk-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/kwallet-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=media-libs/phonon-4.11.0 sys-libs/zlib || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ksirk-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3179a856fc00ba1881526cc50ef196f4 diff --git a/metadata/md5-cache/kde-apps/ksirk-22.12.3 b/metadata/md5-cache/kde-apps/ksirk-22.12.3 index ac95d1e6e8cb..4a0dfd257c6b 100644 --- a/metadata/md5-cache/kde-apps/ksirk-22.12.3 +++ b/metadata/md5-cache/kde-apps/ksirk-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/kwallet-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=media-libs/phonon-4.11.0 sys-libs/zlib || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ksirk-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ed6e7683fac67c26856f1f95d54f09b9 diff --git a/metadata/md5-cache/kde-apps/ksmtp-22.08.3 b/metadata/md5-cache/kde-apps/ksmtp-22.08.3 index a771abe3fd6d..173b7381fd02 100644 --- a/metadata/md5-cache/kde-apps/ksmtp-22.08.3 +++ b/metadata/md5-cache/kde-apps/ksmtp-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl >=dev-qt/qtnetwork-5.15.5:5 >=kde-frameworks/kcoread RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ksmtp-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e4f8e0a53be3fcaa93cc9077b794f83a diff --git a/metadata/md5-cache/kde-apps/ksmtp-22.12.3 b/metadata/md5-cache/kde-apps/ksmtp-22.12.3 index e7dda1203ec7..0520238f4cd0 100644 --- a/metadata/md5-cache/kde-apps/ksmtp-22.12.3 +++ b/metadata/md5-cache/kde-apps/ksmtp-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl >=dev-qt/qtnetwork-5.15.5:5 >=kde-frameworks/kcoread RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ksmtp-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=154310df7c8d60bf82443e7bcc36226d diff --git a/metadata/md5-cache/kde-apps/ksnakeduel-22.08.3 b/metadata/md5-cache/kde-apps/ksnakeduel-22.08.3 index 43a25186db11..e5259e157028 100644 --- a/metadata/md5-cache/kde-apps/ksnakeduel-22.08.3 +++ b/metadata/md5-cache/kde-apps/ksnakeduel-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ksnakeduel-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9bb99a17094db9e6e8da28d5a960a70d diff --git a/metadata/md5-cache/kde-apps/ksnakeduel-22.12.3 b/metadata/md5-cache/kde-apps/ksnakeduel-22.12.3 index de7dc241aca3..c258ab19ea39 100644 --- a/metadata/md5-cache/kde-apps/ksnakeduel-22.12.3 +++ b/metadata/md5-cache/kde-apps/ksnakeduel-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ksnakeduel-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef01300fff9ff02747c1714af28aa95d diff --git a/metadata/md5-cache/kde-apps/kspaceduel-22.08.3 b/metadata/md5-cache/kde-apps/kspaceduel-22.08.3 index 599a9c1639df..4ae5ff9d0a26 100644 --- a/metadata/md5-cache/kde-apps/kspaceduel-22.08.3 +++ b/metadata/md5-cache/kde-apps/kspaceduel-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kspaceduel-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=848944947d88f5f37491d58884b934e6 diff --git a/metadata/md5-cache/kde-apps/kspaceduel-22.12.3 b/metadata/md5-cache/kde-apps/kspaceduel-22.12.3 index d59b7542b9d6..4cd27c5a986e 100644 --- a/metadata/md5-cache/kde-apps/kspaceduel-22.12.3 +++ b/metadata/md5-cache/kde-apps/kspaceduel-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kspaceduel-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2995c94cd8013e5cd5f80891f78a0311 diff --git a/metadata/md5-cache/kde-apps/ksquares-22.08.3 b/metadata/md5-cache/kde-apps/ksquares-22.08.3 index 210092dae0fe..0e7647f5b707 100644 --- a/metadata/md5-cache/kde-apps/ksquares-22.08.3 +++ b/metadata/md5-cache/kde-apps/ksquares-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ksquares-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=33fab6952a44f5f16c18076b54aa19f8 diff --git a/metadata/md5-cache/kde-apps/ksquares-22.12.3 b/metadata/md5-cache/kde-apps/ksquares-22.12.3 index 769ed65ec9a8..28a6b69e003a 100644 --- a/metadata/md5-cache/kde-apps/ksquares-22.12.3 +++ b/metadata/md5-cache/kde-apps/ksquares-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ksquares-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=18925969eee3c2411addc92a58ef22de diff --git a/metadata/md5-cache/kde-apps/ksudoku-22.08.3 b/metadata/md5-cache/kde-apps/ksudoku-22.08.3 index a81c77aa75f4..b771c112a394 100644 --- a/metadata/md5-cache/kde-apps/ksudoku-22.08.3 +++ b/metadata/md5-cache/kde-apps/ksudoku-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 opengl? ( >=dev-qt/qtopengl-5.15.5:5 media-libs/libglvnd virtual/glu ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ksudoku-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3c9270d0b95140e243e5b101d802a8df diff --git a/metadata/md5-cache/kde-apps/ksudoku-22.12.3 b/metadata/md5-cache/kde-apps/ksudoku-22.12.3 index 07d13da63cae..903492919172 100644 --- a/metadata/md5-cache/kde-apps/ksudoku-22.12.3 +++ b/metadata/md5-cache/kde-apps/ksudoku-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 opengl? ( >=dev-qt/qtopengl-5.15.5:5 media-libs/libglvnd virtual/glu ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ksudoku-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=92e6bb1585360d8b555131586769ed51 diff --git a/metadata/md5-cache/kde-apps/ksystemlog-22.08.3 b/metadata/md5-cache/kde-apps/ksystemlog-22.08.3 index c0110d40eef4..1752cb157a36 100644 --- a/metadata/md5-cache/kde-apps/ksystemlog-22.08.3 +++ b/metadata/md5-cache/kde-apps/ksystemlog-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidg RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ksystemlog-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7d89b1b77d108283ba309c0ad578f0f2 diff --git a/metadata/md5-cache/kde-apps/ksystemlog-22.12.3 b/metadata/md5-cache/kde-apps/ksystemlog-22.12.3 index 8a52ce9e69d7..8220dc160ec0 100644 --- a/metadata/md5-cache/kde-apps/ksystemlog-22.12.3 +++ b/metadata/md5-cache/kde-apps/ksystemlog-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidg RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ksystemlog-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=482a26028a17cdee1fc9af071e56c91d diff --git a/metadata/md5-cache/kde-apps/kteatime-22.08.3 b/metadata/md5-cache/kde-apps/kteatime-22.08.3 index 33372f0b4905..1c2889b2f233 100644 --- a/metadata/md5-cache/kde-apps/kteatime-22.08.3 +++ b/metadata/md5-cache/kde-apps/kteatime-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/knotifyconfig-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kteatime-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=527d176054fe9e520ddea8dffa4ed47b diff --git a/metadata/md5-cache/kde-apps/kteatime-22.12.3 b/metadata/md5-cache/kde-apps/kteatime-22.12.3 index a6265746a4ca..2289f2f647f0 100644 --- a/metadata/md5-cache/kde-apps/kteatime-22.12.3 +++ b/metadata/md5-cache/kde-apps/kteatime-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/knotifyconfig-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kteatime-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=629aa863b59a09d1d64e910487f4b6f0 diff --git a/metadata/md5-cache/kde-apps/ktimer-22.08.3 b/metadata/md5-cache/kde-apps/ktimer-22.08.3 index fc42d3963ad6..8de69d936474 100644 --- a/metadata/md5-cache/kde-apps/ktimer-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktimer-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktimer-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7f2195a20f45f485d571291df2953944 diff --git a/metadata/md5-cache/kde-apps/ktimer-22.12.3 b/metadata/md5-cache/kde-apps/ktimer-22.12.3 index bb32f5b7274e..2e721e6c20c5 100644 --- a/metadata/md5-cache/kde-apps/ktimer-22.12.3 +++ b/metadata/md5-cache/kde-apps/ktimer-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ktimer-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3c05af3fbf4eab004ec06ad82ddf3c4b diff --git a/metadata/md5-cache/kde-apps/ktouch-22.08.3 b/metadata/md5-cache/kde-apps/ktouch-22.08.3 index 782d82b1cf6a..6db1936ffa9c 100644 --- a/metadata/md5-cache/kde-apps/ktouch-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktouch-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtsql-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=dev-qt/qtxmlpatterns-5.15.5:5 >=kde-frameworks/kcmutils-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 X? ( >=dev-qt/qtx11extras-5.15.5:5 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libxcb x11-libs/libxkbfile ) >=dev-qt/qtgraphicaleffects-5.15.5:5 >=kde-apps/kqtquickcharts-22.08.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktouch-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2329b674e94cb74e194d63d04344bb87 diff --git a/metadata/md5-cache/kde-apps/ktouch-22.12.3 b/metadata/md5-cache/kde-apps/ktouch-22.12.3 index ef36eb7103c2..b6b1c6a99dee 100644 --- a/metadata/md5-cache/kde-apps/ktouch-22.12.3 +++ b/metadata/md5-cache/kde-apps/ktouch-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtsql-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=dev-qt/qtxmlpatterns-5.15.5:5 >=kde-frameworks/kcmutils-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kitemviews-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 X? ( >=dev-qt/qtx11extras-5.15.5:5 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libxcb x11-libs/libxkbfile ) >=dev-qt/qtgraphicaleffects-5.15.5:5 >=kde-apps/kqtquickcharts-22.12.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ktouch-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a324c44e2fdf10e97cb72fb04b2c9a8 diff --git a/metadata/md5-cache/kde-apps/ktp-accounts-kcm-22.08.3 b/metadata/md5-cache/kde-apps/ktp-accounts-kcm-22.08.3 index 6114f3c2eb4e..faa9c4d91f6d 100644 --- a/metadata/md5-cache/kde-apps/ktp-accounts-kcm-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktp-accounts-kcm-22.08.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/kaccounts-integration-22.08.3:5 >=kde-frameworks/kcodecs-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 net-libs/accounts-qt net-libs/signond >=net-libs/telepathy-qt-0.9.8 >=kde-apps/kaccounts-providers-22.08.3:5 net-im/telepathy-connection-managers || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktp-accounts-kcm-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1055488274b658beff5567efaa310c24 diff --git a/metadata/md5-cache/kde-apps/ktp-approver-22.08.3 b/metadata/md5-cache/kde-apps/ktp-approver-22.08.3 index 62958c626efd..f28303af5a35 100644 --- a/metadata/md5-cache/kde-apps/ktp-approver-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktp-approver-22.08.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=net-libs/telepathy-qt-0.9.8 >=kde-apps/ktp-contact-list-22.08.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktp-approver-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d4c6a70981bce807b161f598beb9a763 diff --git a/metadata/md5-cache/kde-apps/ktp-auth-handler-22.08.3 b/metadata/md5-cache/kde-apps/ktp-auth-handler-22.08.3 index ba1935690f2f..5d5d3ba50dd4 100644 --- a/metadata/md5-cache/kde-apps/ktp-auth-handler-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktp-auth-handler-22.08.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/kaccounts-integration-22.08.3:5 >=kde-apps/ktp-common-internals-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwallet-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 net-libs/accounts-qt net-libs/signond >=net-libs/telepathy-qt-0.9.8 >=app-crypt/qca-2.3.0:2[qt5(+),ssl] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktp-auth-handler-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e66cb4a2968eb221dbd934b30979514 diff --git a/metadata/md5-cache/kde-apps/ktp-common-internals-22.08.3 b/metadata/md5-cache/kde-apps/ktp-common-internals-22.08.3 index 7a62632a6433..0a28143f9925 100644 --- a/metadata/md5-cache/kde-apps/ktp-common-internals-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktp-common-internals-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktp-common-internals-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5e07c0acfc5be03874ec7c1318ae5f6e diff --git a/metadata/md5-cache/kde-apps/ktp-contact-list-22.08.3 b/metadata/md5-cache/kde-apps/ktp-contact-list-22.08.3 index dda81f3acf90..e41c43b277c9 100644 --- a/metadata/md5-cache/kde-apps/ktp-contact-list-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktp-contact-list-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/ktp-common-internals-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kpeople-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=net-libs/telepathy-qt-0.9.8 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktp-contact-list-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=87491a87b5a555b8aee1e1b15261de1b diff --git a/metadata/md5-cache/kde-apps/ktp-contact-runner-22.08.3 b/metadata/md5-cache/kde-apps/ktp-contact-runner-22.08.3 index a18b1a919d44..c4222ab6169b 100644 --- a/metadata/md5-cache/kde-apps/ktp-contact-runner-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktp-contact-runner-22.08.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/ktp-common-internals-22.08.3:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/krunner-5.96.0:5 >=net-libs/telepathy-qt-0.9.8 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktp-contact-runner-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e2eb5e9c3c9cc2933aab92f89748734b diff --git a/metadata/md5-cache/kde-apps/ktp-desktop-applets-22.08.3 b/metadata/md5-cache/kde-apps/ktp-desktop-applets-22.08.3 index 8c5e84f107d7..4c0f45af2162 100644 --- a/metadata/md5-cache/kde-apps/ktp-desktop-applets-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktp-desktop-applets-22.08.3 @@ -12,5 +12,5 @@ LICENSE=|| ( GPL-2 GPL-3 ) GPL-2+ LGPL-2.1+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=kde-frameworks/kdeclarative-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/plasma-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktp-desktop-applets-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=28aaad68a72b09180b4209017eab114e diff --git a/metadata/md5-cache/kde-apps/ktp-filetransfer-handler-22.08.3 b/metadata/md5-cache/kde-apps/ktp-filetransfer-handler-22.08.3 index 09d22cebf98e..2ab6393ba9be 100644 --- a/metadata/md5-cache/kde-apps/ktp-filetransfer-handler-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktp-filetransfer-handler-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ LGPL-2+ LGPL-2.1+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/ktp-common-internals-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=net-libs/telepathy-qt-0.9.8 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktp-filetransfer-handler-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=980d3b91e00d1c421a775e079572c838 diff --git a/metadata/md5-cache/kde-apps/ktp-kded-module-22.08.3 b/metadata/md5-cache/kde-apps/ktp-kded-module-22.08.3 index 45775938eb69..a8ca36485667 100644 --- a/metadata/md5-cache/kde-apps/ktp-kded-module-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktp-kded-module-22.08.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtsql-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/ktp-common-internals-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kidletime-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=net-libs/telepathy-qt-0.9.8 >=kde-apps/signon-kwallet-extension-22.08.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktp-kded-module-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ac1b6c6e33c58f6b41247c1729594584 diff --git a/metadata/md5-cache/kde-apps/ktp-send-file-22.08.3 b/metadata/md5-cache/kde-apps/ktp-send-file-22.08.3 index 926ac4720944..3e7ac6a44c4c 100644 --- a/metadata/md5-cache/kde-apps/ktp-send-file-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktp-send-file-22.08.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/ktp-common-internals-22.08.3:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=net-libs/telepathy-qt-0.9.8 >=kde-apps/ktp-contact-list-22.08.3:5 >=kde-apps/ktp-filetransfer-handler-22.08.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktp-send-file-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0dd659f5ad19a1346470e8a9a49eb7b9 diff --git a/metadata/md5-cache/kde-apps/ktp-text-ui-22.08.3 b/metadata/md5-cache/kde-apps/ktp-text-ui-22.08.3 index da63dea00192..0f25ea9effa8 100644 --- a/metadata/md5-cache/kde-apps/ktp-text-ui-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktp-text-ui-22.08.3 @@ -12,5 +12,5 @@ LICENSE=Apache-2.0 || ( AFL-2.1 BSD ) GPL-2+ LGPL-2.1+ MIT RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/ktp-common-internals-22.08.3:5[otr] >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kcmutils-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kemoticons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/knotifyconfig-5.96.0:5 >=kde-frameworks/kpeople-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-frameworks/sonnet-5.96.0:5 >=net-libs/telepathy-qt-0.9.8 speech? ( >=dev-qt/qtspeech-5.15.5:5 ) >=kde-apps/ktp-contact-list-22.08.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktp-text-ui-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ed36669b64afe239a1d364d46c4fb74d diff --git a/metadata/md5-cache/kde-apps/ktuberling-22.08.3 b/metadata/md5-cache/kde-apps/ktuberling-22.08.3 index 260d8503db20..9e1830cf6c15 100644 --- a/metadata/md5-cache/kde-apps/ktuberling-22.08.3 +++ b/metadata/md5-cache/kde-apps/ktuberling-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=media-libs/phonon-4.11.0 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktuberling-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dd0255f6ad884fba4677831b0d5dd029 diff --git a/metadata/md5-cache/kde-apps/ktuberling-22.12.3 b/metadata/md5-cache/kde-apps/ktuberling-22.12.3 index 52bfe523f150..fe80822d4b59 100644 --- a/metadata/md5-cache/kde-apps/ktuberling-22.12.3 +++ b/metadata/md5-cache/kde-apps/ktuberling-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=media-libs/phonon-4.11.0 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ktuberling-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=78575e3921403932aad662404e8edd5f diff --git a/metadata/md5-cache/kde-apps/kturtle-22.08.3 b/metadata/md5-cache/kde-apps/kturtle-22.08.3 index 745ed8f70aba..d9ccbf22bd6c 100644 --- a/metadata/md5-cache/kde-apps/kturtle-22.08.3 +++ b/metadata/md5-cache/kde-apps/kturtle-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kturtle-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5573bd2aab8bba04d1cb625de7efb273 diff --git a/metadata/md5-cache/kde-apps/kturtle-22.12.3 b/metadata/md5-cache/kde-apps/kturtle-22.12.3 index 0e7dd5896203..560895e249a6 100644 --- a/metadata/md5-cache/kde-apps/kturtle-22.12.3 +++ b/metadata/md5-cache/kde-apps/kturtle-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kturtle-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=372ff851c65b1c3bb36f9c4689cfbd73 diff --git a/metadata/md5-cache/kde-apps/kubrick-22.08.3 b/metadata/md5-cache/kde-apps/kubrick-22.08.3 index 845f18e20a98..b163911aedcf 100644 --- a/metadata/md5-cache/kde-apps/kubrick-22.08.3 +++ b/metadata/md5-cache/kde-apps/kubrick-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtopengl-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 virtual/glu virtual/opengl || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kubrick-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f611ef09a29172db35094a9d47caa8a2 diff --git a/metadata/md5-cache/kde-apps/kubrick-22.12.3 b/metadata/md5-cache/kde-apps/kubrick-22.12.3 index 259f88aa88aa..3a1473fde4db 100644 --- a/metadata/md5-cache/kde-apps/kubrick-22.12.3 +++ b/metadata/md5-cache/kde-apps/kubrick-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtopengl-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 virtual/glu virtual/opengl || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kubrick-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=731e1c71dad07f66acfbf2711dd216bb diff --git a/metadata/md5-cache/kde-apps/kwalletmanager-22.08.3 b/metadata/md5-cache/kde-apps/kwalletmanager-22.08.3 index a5a51de30b6e..b917872256c1 100644 --- a/metadata/md5-cache/kde-apps/kwalletmanager-22.08.3 +++ b/metadata/md5-cache/kde-apps/kwalletmanager-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kauth-5.96.0:5 >=kde-frameworks/kcmutils-5.96.0:5 >=kde-frameworks/kcodecs-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwallet-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kwalletmanager-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=835d9940cef37925b1a021b6497aaedd diff --git a/metadata/md5-cache/kde-apps/kwalletmanager-22.12.3 b/metadata/md5-cache/kde-apps/kwalletmanager-22.12.3 index 5c7e56f7e299..9a7e3001cc01 100644 --- a/metadata/md5-cache/kde-apps/kwalletmanager-22.12.3 +++ b/metadata/md5-cache/kde-apps/kwalletmanager-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kauth-5.101.0:5 >=kde-frameworks/kcmutils-5.101.0:5 >=kde-frameworks/kcodecs-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kitemviews-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwallet-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kwalletmanager-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4fdca47c2f3c5c57cd45854fe5076f11 diff --git a/metadata/md5-cache/kde-apps/kwave-22.08.3 b/metadata/md5-cache/kde-apps/kwave-22.08.3 index 0d7a3c7fdb33..0770f6d0d276 100644 --- a/metadata/md5-cache/kde-apps/kwave-22.08.3 +++ b/metadata/md5-cache/kde-apps/kwave-22.08.3 @@ -12,5 +12,5 @@ LICENSE=CC-BY-SA-3.0 CC0-1.0 GPL-2+ LGPL-2+ handbook? ( FDL-1.2 ) opus? ( BSD-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 media-libs/audiofile:= >=sci-libs/fftw-3:= media-libs/libsamplerate alsa? ( media-libs/alsa-lib ) flac? ( media-libs/flac:=[cxx] ) mp3? ( media-libs/id3lib media-libs/libmad || ( media-sound/lame media-sound/toolame media-sound/twolame ) ) qtmedia? ( >=dev-qt/qtmultimedia-5.15.5:5 ) opus? ( media-libs/libogg media-libs/opus ) pulseaudio? ( media-libs/libpulse ) vorbis? ( media-libs/libogg media-libs/libvorbis ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kwave-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=26e30f5d4c6310e75feb388bded89509 diff --git a/metadata/md5-cache/kde-apps/kwave-22.12.3 b/metadata/md5-cache/kde-apps/kwave-22.12.3 index 1a84ca68ee48..fd7620d98f29 100644 --- a/metadata/md5-cache/kde-apps/kwave-22.12.3 +++ b/metadata/md5-cache/kde-apps/kwave-22.12.3 @@ -12,5 +12,5 @@ LICENSE=CC-BY-SA-3.0 CC0-1.0 GPL-2+ LGPL-2+ handbook? ( FDL-1.2 ) opus? ( BSD-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 media-libs/audiofile:= >=sci-libs/fftw-3:= media-libs/libsamplerate alsa? ( media-libs/alsa-lib ) flac? ( media-libs/flac:=[cxx] ) mp3? ( media-libs/id3lib media-libs/libmad || ( media-sound/lame media-sound/toolame media-sound/twolame ) ) qtmedia? ( >=dev-qt/qtmultimedia-5.15.5:5 ) opus? ( media-libs/libogg media-libs/opus ) pulseaudio? ( media-libs/libpulse ) vorbis? ( media-libs/libogg media-libs/libvorbis ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kwave-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef7af0654b7a7065b13ee9e1d1ecc857 diff --git a/metadata/md5-cache/kde-apps/kwordquiz-22.08.3 b/metadata/md5-cache/kde-apps/kwordquiz-22.08.3 index 34fb64728439..a6353bd7ca03 100644 --- a/metadata/md5-cache/kde-apps/kwordquiz-22.08.3 +++ b/metadata/md5-cache/kde-apps/kwordquiz-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkeduvocdocument-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/knotifyconfig-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=media-libs/phonon-4.11.0 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kwordquiz-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b0566bfeac71e2baeda0a11ca00586b diff --git a/metadata/md5-cache/kde-apps/kwordquiz-22.12.3 b/metadata/md5-cache/kde-apps/kwordquiz-22.12.3 index 52a8a3392572..086f5347f119 100644 --- a/metadata/md5-cache/kde-apps/kwordquiz-22.12.3 +++ b/metadata/md5-cache/kde-apps/kwordquiz-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kwordquiz-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=233161dbae8a4d437d7f8adcd58295fd diff --git a/metadata/md5-cache/kde-apps/kwrite-22.08.3 b/metadata/md5-cache/kde-apps/kwrite-22.08.3 index 0fdca6973f52..09bf619bbbe7 100644 --- a/metadata/md5-cache/kde-apps/kwrite-22.08.3 +++ b/metadata/md5-cache/kde-apps/kwrite-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 ~kde-apps/kate-lib-22.08.3:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kate-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8b90b8b36abe5291b85fcfd58dceb3a1 diff --git a/metadata/md5-cache/kde-apps/kwrite-22.12.3 b/metadata/md5-cache/kde-apps/kwrite-22.12.3 index f0cf44bc7869..0582cd1fd6cf 100644 --- a/metadata/md5-cache/kde-apps/kwrite-22.12.3 +++ b/metadata/md5-cache/kde-apps/kwrite-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 ~kde-apps/kate-lib-22.12.3:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kate-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5fb14a18cb2b1ee4e3e3418a4ba64998 diff --git a/metadata/md5-cache/kde-apps/libgravatar-22.08.3 b/metadata/md5-cache/kde-apps/libgravatar-22.08.3 index 5cd5e8c35ef9..0901a3ab77f5 100644 --- a/metadata/md5-cache/kde-apps/libgravatar-22.08.3 +++ b/metadata/md5-cache/kde-apps/libgravatar-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libgravatar-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ced243a40d01395525ee104cd54e82a9 diff --git a/metadata/md5-cache/kde-apps/libgravatar-22.12.3 b/metadata/md5-cache/kde-apps/libgravatar-22.12.3 index 7be33c65dfd5..27716afa68b7 100644 --- a/metadata/md5-cache/kde-apps/libgravatar-22.12.3 +++ b/metadata/md5-cache/kde-apps/libgravatar-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libgravatar-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=34cc522076e6915c0f2c382a3e7b8e23 diff --git a/metadata/md5-cache/kde-apps/libkcddb-22.08.3 b/metadata/md5-cache/kde-apps/libkcddb-22.08.3 index b66e039bd929..e474aa6dab5a 100644 --- a/metadata/md5-cache/kde-apps/libkcddb-22.08.3 +++ b/metadata/md5-cache/kde-apps/libkcddb-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkcddb-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=16153d063e742f7af4bb8641a8c3fc76 diff --git a/metadata/md5-cache/kde-apps/libkcddb-22.12.3 b/metadata/md5-cache/kde-apps/libkcddb-22.12.3 index f276186ba662..f8c618fd8cfe 100644 --- a/metadata/md5-cache/kde-apps/libkcddb-22.12.3 +++ b/metadata/md5-cache/kde-apps/libkcddb-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libkcddb-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5d3cb9224a8fd4e52df3b2791438bb44 diff --git a/metadata/md5-cache/kde-apps/libkcompactdisc-22.08.3 b/metadata/md5-cache/kde-apps/libkcompactdisc-22.08.3 index 5fc760d145b7..f30767ade670 100644 --- a/metadata/md5-cache/kde-apps/libkcompactdisc-22.08.3 +++ b/metadata/md5-cache/kde-apps/libkcompactdisc-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-framework RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkcompactdisc-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=be13ed2ed0085aa85ce77130a8ddbeb7 diff --git a/metadata/md5-cache/kde-apps/libkcompactdisc-22.12.3 b/metadata/md5-cache/kde-apps/libkcompactdisc-22.12.3 index 67578ea541fc..d781253394f0 100644 --- a/metadata/md5-cache/kde-apps/libkcompactdisc-22.12.3 +++ b/metadata/md5-cache/kde-apps/libkcompactdisc-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-framewor RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libkcompactdisc-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a649cb44e06966ca8286d2b18ae105ce diff --git a/metadata/md5-cache/kde-apps/libkdcraw-22.08.3-r1 b/metadata/md5-cache/kde-apps/libkdcraw-22.08.3-r1 index fa15b1ef8cd1..091ee86adb36 100644 --- a/metadata/md5-cache/kde-apps/libkdcraw-22.08.3-r1 +++ b/metadata/md5-cache/kde-apps/libkdcraw-22.08.3-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=media-libs/libraw-0.16:= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkdcraw-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6249991ee04ef178e03023996b7a85f3 diff --git a/metadata/md5-cache/kde-apps/libkdcraw-22.12.3 b/metadata/md5-cache/kde-apps/libkdcraw-22.12.3 index ad24c8a21551..136f27477af8 100644 --- a/metadata/md5-cache/kde-apps/libkdcraw-22.12.3 +++ b/metadata/md5-cache/kde-apps/libkdcraw-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=media-libs/libraw-0.16:= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libkdcraw-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e75c0b5d589f92230c016b2558081acf diff --git a/metadata/md5-cache/kde-apps/libkdegames-22.08.3 b/metadata/md5-cache/kde-apps/libkdegames-22.08.3 index 4955b06b9660..8159e0d44d85 100644 --- a/metadata/md5-cache/kde-apps/libkdegames-22.08.3 +++ b/metadata/md5-cache/kde-apps/libkdegames-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5[widgets] >=dev-qt/qtgui-5.15.5:5 >=dev-q RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkdegames-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d6c2ae2786fc5fe734c92302ed6e6016 diff --git a/metadata/md5-cache/kde-apps/libkdegames-22.12.3 b/metadata/md5-cache/kde-apps/libkdegames-22.12.3 index 0a23e20386df..7c232471c568 100644 --- a/metadata/md5-cache/kde-apps/libkdegames-22.12.3 +++ b/metadata/md5-cache/kde-apps/libkdegames-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5[widgets] >=dev-qt/qtgui-5.15.5:5 >=dev-q RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libkdegames-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4069133f1c89afdbb536b23e891fa420 diff --git a/metadata/md5-cache/kde-apps/libkdepim-22.08.3 b/metadata/md5-cache/kde-apps/libkdepim-22.08.3 index 51de6e765824..c4472aab33e6 100644 --- a/metadata/md5-cache/kde-apps/libkdepim-22.08.3 +++ b/metadata/md5-cache/kde-apps/libkdepim-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkdepim-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af75edc432278df0bd599cc9c89332ef diff --git a/metadata/md5-cache/kde-apps/libkdepim-22.12.3 b/metadata/md5-cache/kde-apps/libkdepim-22.12.3 index 5c64f026eb26..a1bff5a214cd 100644 --- a/metadata/md5-cache/kde-apps/libkdepim-22.12.3 +++ b/metadata/md5-cache/kde-apps/libkdepim-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libkdepim-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5480ad48832c81bbe6452afbb8fa00f1 diff --git a/metadata/md5-cache/kde-apps/libkeduvocdocument-22.08.3 b/metadata/md5-cache/kde-apps/libkeduvocdocument-22.08.3 index 35f5fb5bc115..b565b250d021 100644 --- a/metadata/md5-cache/kde-apps/libkeduvocdocument-22.08.3 +++ b/metadata/md5-cache/kde-apps/libkeduvocdocument-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-framewo RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkeduvocdocument-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=78667fd24f882973b808415bab0ebf8a diff --git a/metadata/md5-cache/kde-apps/libkeduvocdocument-22.12.3 b/metadata/md5-cache/kde-apps/libkeduvocdocument-22.12.3 index 79236a26cd2b..f3a593c341e9 100644 --- a/metadata/md5-cache/kde-apps/libkeduvocdocument-22.12.3 +++ b/metadata/md5-cache/kde-apps/libkeduvocdocument-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-framew RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libkeduvocdocument-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d91de82e8f744eabc81f892c7b1ddf6f diff --git a/metadata/md5-cache/kde-apps/libkexiv2-22.08.3 b/metadata/md5-cache/kde-apps/libkexiv2-22.08.3 index 4e5ae215969d..ecb6532b34ad 100644 --- a/metadata/md5-cache/kde-apps/libkexiv2-22.08.3 +++ b/metadata/md5-cache/kde-apps/libkexiv2-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=media-gfx/exiv2-0.25:=[xmp=] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkexiv2-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=85e5a0483d3cef0a1843b6f5c7abcadb diff --git a/metadata/md5-cache/kde-apps/libkexiv2-22.12.3 b/metadata/md5-cache/kde-apps/libkexiv2-22.12.3 index f930a7902b20..742e15fda12b 100644 --- a/metadata/md5-cache/kde-apps/libkexiv2-22.12.3 +++ b/metadata/md5-cache/kde-apps/libkexiv2-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=media-gfx/exiv2-0.25:=[xmp=] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libkexiv2-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c0e68e835956e159ced954764e019283 diff --git a/metadata/md5-cache/kde-apps/libkgapi-22.08.3 b/metadata/md5-cache/kde-apps/libkgapi-22.08.3 index be3e48fc2eaf..3c06ef571df6 100644 --- a/metadata/md5-cache/kde-apps/libkgapi-22.08.3 +++ b/metadata/md5-cache/kde-apps/libkgapi-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl:2 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5: RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkgapi-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=117b379c7ee320ba7c5ef03a39c664be diff --git a/metadata/md5-cache/kde-apps/libkgapi-22.08.3-r1 b/metadata/md5-cache/kde-apps/libkgapi-22.08.3-r1 index a6f8f518a350..70733b51e62f 100644 --- a/metadata/md5-cache/kde-apps/libkgapi-22.08.3-r1 +++ b/metadata/md5-cache/kde-apps/libkgapi-22.08.3-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl:2 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5: RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkgapi-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cc9d61dcbc78cea53733a5be408af269 diff --git a/metadata/md5-cache/kde-apps/libkgapi-22.12.3 b/metadata/md5-cache/kde-apps/libkgapi-22.12.3 index a7e06bdf4101..c9e9aae0e39e 100644 --- a/metadata/md5-cache/kde-apps/libkgapi-22.12.3 +++ b/metadata/md5-cache/kde-apps/libkgapi-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl:2 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5: RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libkgapi-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8eb284f4c6e6d40365e9c56613368b70 diff --git a/metadata/md5-cache/kde-apps/libkleo-22.08.3 b/metadata/md5-cache/kde-apps/libkleo-22.08.3 index 2a2f26c91ce9..cd4eaf6e4879 100644 --- a/metadata/md5-cache/kde-apps/libkleo-22.08.3 +++ b/metadata/md5-cache/kde-apps/libkleo-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtw RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkleo-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f91b4253c2e55150a9eed618eeaa49d7 diff --git a/metadata/md5-cache/kde-apps/libkleo-22.12.3 b/metadata/md5-cache/kde-apps/libkleo-22.12.3 index 87403444191e..3d7f254150d7 100644 --- a/metadata/md5-cache/kde-apps/libkleo-22.12.3 +++ b/metadata/md5-cache/kde-apps/libkleo-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtw RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libkleo-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f4aac14648b167bf9cabe6882cf4d34a diff --git a/metadata/md5-cache/kde-apps/libkmahjongg-22.08.3 b/metadata/md5-cache/kde-apps/libkmahjongg-22.08.3 index 5e65284268ca..e95865313439 100644 --- a/metadata/md5-cache/kde-apps/libkmahjongg-22.08.3 +++ b/metadata/md5-cache/kde-apps/libkmahjongg-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkmahjongg-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f1d76dc734e966acd576d1ae16622078 diff --git a/metadata/md5-cache/kde-apps/libkmahjongg-22.12.3 b/metadata/md5-cache/kde-apps/libkmahjongg-22.12.3 index 45d25d3bdbba..9f5f69605d0a 100644 --- a/metadata/md5-cache/kde-apps/libkmahjongg-22.12.3 +++ b/metadata/md5-cache/kde-apps/libkmahjongg-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libkmahjongg-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7d03a157718837fd20dd47d1412d1e49 diff --git a/metadata/md5-cache/kde-apps/libkomparediff2-22.08.3 b/metadata/md5-cache/kde-apps/libkomparediff2-22.08.3 index 79e75f0c6617..24aafb7eebc8 100644 --- a/metadata/md5-cache/kde-apps/libkomparediff2-22.08.3 +++ b/metadata/md5-cache/kde-apps/libkomparediff2-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kco RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libkomparediff2-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f664dd07cdd05e275940387915d48711 diff --git a/metadata/md5-cache/kde-apps/libkomparediff2-22.12.3 b/metadata/md5-cache/kde-apps/libkomparediff2-22.12.3 index 7e7195dca6aa..c4c554f9f7ed 100644 --- a/metadata/md5-cache/kde-apps/libkomparediff2-22.12.3 +++ b/metadata/md5-cache/kde-apps/libkomparediff2-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kco RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libkomparediff2-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8df29f27fe0b1cc35e0effb1581b7970 diff --git a/metadata/md5-cache/kde-apps/libksane-22.08.3 b/metadata/md5-cache/kde-apps/libksane-22.08.3 index 2859841408d8..c18635473051 100644 --- a/metadata/md5-cache/kde-apps/libksane-22.08.3 +++ b/metadata/md5-cache/kde-apps/libksane-22.08.3 @@ -12,5 +12,5 @@ LICENSE=|| ( LGPL-2.1 LGPL-3 ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=media-libs/ksanecore-22.08.3:5 kwallet? ( >=kde-frameworks/kwallet-5.96.0:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libksane-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0ee418ec3652d80a5dc30f40856199cd diff --git a/metadata/md5-cache/kde-apps/libksane-22.12.3 b/metadata/md5-cache/kde-apps/libksane-22.12.3 index 3adbab195f96..dfd20dc6bec8 100644 --- a/metadata/md5-cache/kde-apps/libksane-22.12.3 +++ b/metadata/md5-cache/kde-apps/libksane-22.12.3 @@ -12,5 +12,5 @@ LICENSE=|| ( LGPL-2.1 LGPL-3 ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=media-libs/ksanecore-22.12.3:5 kwallet? ( >=kde-frameworks/kwallet-5.101.0:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libksane-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1850de8300d19eae6b74ae286ba9eb7f diff --git a/metadata/md5-cache/kde-apps/libksieve-22.08.3 b/metadata/md5-cache/kde-apps/libksieve-22.08.3 index 760c88d3fed1..d295dd7adbd4 100644 --- a/metadata/md5-cache/kde-apps/libksieve-22.08.3 +++ b/metadata/md5-cache/kde-apps/libksieve-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=d RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libksieve-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d01681be6e8b787df35c9079d630b374 diff --git a/metadata/md5-cache/kde-apps/libksieve-22.12.3 b/metadata/md5-cache/kde-apps/libksieve-22.12.3 index 2e73b6dc563e..f2e275c94dac 100644 --- a/metadata/md5-cache/kde-apps/libksieve-22.12.3 +++ b/metadata/md5-cache/kde-apps/libksieve-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=d RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libksieve-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3f3ebb018cade02a079a9b4943f060d3 diff --git a/metadata/md5-cache/kde-apps/libktnef-22.08.3 b/metadata/md5-cache/kde-apps/libktnef-22.08.3 index f2d1541f2112..8c06fd6948ac 100644 --- a/metadata/md5-cache/kde-apps/libktnef-22.08.3 +++ b/metadata/md5-cache/kde-apps/libktnef-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/kcalutils-22.08.3:5 >=kde-framewo RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktnef-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=46414e37eb26936542ead303a9439025 diff --git a/metadata/md5-cache/kde-apps/libktnef-22.12.3 b/metadata/md5-cache/kde-apps/libktnef-22.12.3 index 1b0a33b1fb69..d25deec9736d 100644 --- a/metadata/md5-cache/kde-apps/libktnef-22.12.3 +++ b/metadata/md5-cache/kde-apps/libktnef-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/kcalutils-22.12.3:5 >=kde-framewo RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ktnef-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=09dc60a376a214512156bfb092e3a188 diff --git a/metadata/md5-cache/kde-apps/lokalize-22.08.3 b/metadata/md5-cache/kde-apps/lokalize-22.08.3 index 37960fc17b13..3baf3013a931 100644 --- a/metadata/md5-cache/kde-apps/lokalize-22.08.3 +++ b/metadata/md5-cache/kde-apps/lokalize-22.08.3 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/lokalize-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e882ed81030f7857265cceb3cbdbd0e3 diff --git a/metadata/md5-cache/kde-apps/lokalize-22.12.3 b/metadata/md5-cache/kde-apps/lokalize-22.12.3 index 443958fd3ed5..9f15ccbf7cfb 100644 --- a/metadata/md5-cache/kde-apps/lokalize-22.12.3 +++ b/metadata/md5-cache/kde-apps/lokalize-22.12.3 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/lokalize-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c99b271fbe8712fab39cbd201da00348 diff --git a/metadata/md5-cache/kde-apps/lskat-22.08.3 b/metadata/md5-cache/kde-apps/lskat-22.08.3 index 81b4c23a21b8..913271005243 100644 --- a/metadata/md5-cache/kde-apps/lskat-22.08.3 +++ b/metadata/md5-cache/kde-apps/lskat-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kguiaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/lskat-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=396ed3f262b44f2c8212e065554d4804 diff --git a/metadata/md5-cache/kde-apps/lskat-22.12.3 b/metadata/md5-cache/kde-apps/lskat-22.12.3 index a8e74e248cae..354e25b4b2b0 100644 --- a/metadata/md5-cache/kde-apps/lskat-22.12.3 +++ b/metadata/md5-cache/kde-apps/lskat-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kguiaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 selinux? ( sec-policy/selinux-games ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/lskat-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f66a1adf57e6bb03981333eabc486c09 diff --git a/metadata/md5-cache/kde-apps/mailcommon-22.08.3 b/metadata/md5-cache/kde-apps/mailcommon-22.08.3 index 4b7c4a4ebd75..3f3f32897f74 100644 --- a/metadata/md5-cache/kde-apps/mailcommon-22.08.3 +++ b/metadata/md5-cache/kde-apps/mailcommon-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/gpgme:=[cxx,qt5] >=dev-qt/qtcore-5.15.5:5 >=dev-qt/qtdbus-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/mailcommon-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b9692c44c42026a2df75b36b2b13660e diff --git a/metadata/md5-cache/kde-apps/mailcommon-22.12.3 b/metadata/md5-cache/kde-apps/mailcommon-22.12.3 index 37f290cc20c3..c38a64066bbe 100644 --- a/metadata/md5-cache/kde-apps/mailcommon-22.12.3 +++ b/metadata/md5-cache/kde-apps/mailcommon-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/gpgme:=[cxx,qt5] >=dev-qt/qtcore-5.15.5:5 >=dev-qt/qtdbus-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/mailcommon-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c6212e6823e337c74d1ec81e02cfe223 diff --git a/metadata/md5-cache/kde-apps/mailimporter-22.08.3 b/metadata/md5-cache/kde-apps/mailimporter-22.08.3 index d171f0b7fe6a..ec8bdb58243f 100644 --- a/metadata/md5-cache/kde-apps/mailimporter-22.08.3 +++ b/metadata/md5-cache/kde-apps/mailimporter-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15. RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/mailimporter-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af87f7a8b90250ebc7ce0196c00da2f2 diff --git a/metadata/md5-cache/kde-apps/mailimporter-22.12.3 b/metadata/md5-cache/kde-apps/mailimporter-22.12.3 index 15755d8fa4c5..72860a8a00e6 100644 --- a/metadata/md5-cache/kde-apps/mailimporter-22.12.3 +++ b/metadata/md5-cache/kde-apps/mailimporter-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15. RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/mailimporter-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b1fe8a43b7f9928fda25353737c1d9f3 diff --git a/metadata/md5-cache/kde-apps/marble-22.08.3 b/metadata/md5-cache/kde-apps/marble-22.08.3 index 647a2c24449b..a53597185c18 100644 --- a/metadata/md5-cache/kde-apps/marble-22.08.3 +++ b/metadata/md5-cache/kde-apps/marble-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/ RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/22.08 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/marble-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1722e43d2ce2ceb900ac23098bf7ff29 diff --git a/metadata/md5-cache/kde-apps/marble-22.12.3 b/metadata/md5-cache/kde-apps/marble-22.12.3 index a83ee2c22cda..00576fe11185 100644 --- a/metadata/md5-cache/kde-apps/marble-22.12.3 +++ b/metadata/md5-cache/kde-apps/marble-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/ RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/22.12 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/marble-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4d6df96abe6e956f88c6a467a1fd9d41 diff --git a/metadata/md5-cache/kde-apps/mbox-importer-22.08.3 b/metadata/md5-cache/kde-apps/mbox-importer-22.08.3 index 0b7715b4c937..492ae4306590 100644 --- a/metadata/md5-cache/kde-apps/mbox-importer-22.08.3 +++ b/metadata/md5-cache/kde-apps/mbox-importer-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-22.08.3:5 >=kde-apps/kidentitymanagement-22.08.3:5 >=kde-apps/mailcommon-22.08.3:5 >=kde-apps/mailimporter-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/mbox-importer-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0f6b57ec301b79dd9ad7e53dc069a295 diff --git a/metadata/md5-cache/kde-apps/mbox-importer-22.12.3 b/metadata/md5-cache/kde-apps/mbox-importer-22.12.3 index 4469c2510eda..42690ad10929 100644 --- a/metadata/md5-cache/kde-apps/mbox-importer-22.12.3 +++ b/metadata/md5-cache/kde-apps/mbox-importer-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.2+ ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-22.12.3:5 >=kde-apps/kidentitymanagement-22.12.3:5 >=kde-apps/mailcommon-22.12.3:5 >=kde-apps/mailimporter-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/mbox-importer-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d311092c992c893d81c50940d7e4ff68 diff --git a/metadata/md5-cache/kde-apps/messagelib-22.08.3 b/metadata/md5-cache/kde-apps/messagelib-22.08.3 index 4f376fd275da..4915766d1ed7 100644 --- a/metadata/md5-cache/kde-apps/messagelib-22.08.3 +++ b/metadata/md5-cache/kde-apps/messagelib-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] >=app-crypt/qca-2.3.0:2[qt5(+)] >=de RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/messagelib-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a6ba4346ede1f46c93c4056791a92dfd diff --git a/metadata/md5-cache/kde-apps/messagelib-22.12.3 b/metadata/md5-cache/kde-apps/messagelib-22.12.3 index 6fbe3b5d9b3e..79d10df729c6 100644 --- a/metadata/md5-cache/kde-apps/messagelib-22.12.3 +++ b/metadata/md5-cache/kde-apps/messagelib-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/gpgme-1.16.0:=[cxx,qt5] >=app-crypt/qca-2.3.0:2[qt5(+)] >=de RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/messagelib-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=24d33cc495523c6a82252725c1a14216 diff --git a/metadata/md5-cache/kde-apps/minuet-22.08.3 b/metadata/md5-cache/kde-apps/minuet-22.08.3 index c5d9e00e642d..99facbc537a3 100644 --- a/metadata/md5-cache/kde-apps/minuet-22.08.3 +++ b/metadata/md5-cache/kde-apps/minuet-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 media-sound/fluidsynth:= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/minuet-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5da6019c7455cd28a5f0b2e954f98cff diff --git a/metadata/md5-cache/kde-apps/minuet-22.12.3 b/metadata/md5-cache/kde-apps/minuet-22.12.3 index f55d4205d444..115fb3584e9a 100644 --- a/metadata/md5-cache/kde-apps/minuet-22.12.3 +++ b/metadata/md5-cache/kde-apps/minuet-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 media-sound/fluidsynth:= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/minuet-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b7ae71b970c380dc36e8612acdeaaf2e diff --git a/metadata/md5-cache/kde-apps/okular-22.08.3-r2 b/metadata/md5-cache/kde-apps/okular-22.08.3-r2 index f2ab3943902d..33ecca3fc847 100644 --- a/metadata/md5-cache/kde-apps/okular-22.08.3-r2 +++ b/metadata/md5-cache/kde-apps/okular-22.08.3-r2 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/okular-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3329fe7afb9a7b520355a3496ac02ea3 diff --git a/metadata/md5-cache/kde-apps/okular-22.12.3 b/metadata/md5-cache/kde-apps/okular-22.12.3 index cdca418cb994..7fc1e54507ba 100644 --- a/metadata/md5-cache/kde-apps/okular-22.12.3 +++ b/metadata/md5-cache/kde-apps/okular-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtcore-5.15.5:5= >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/okular-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b070dbe19a5e6b5dbacaef89529ae73 diff --git a/metadata/md5-cache/kde-apps/palapeli-22.08.3 b/metadata/md5-cache/kde-apps/palapeli-22.08.3 index 4a979a9abfaa..79be4afa47b0 100644 --- a/metadata/md5-cache/kde-apps/palapeli-22.08.3 +++ b/metadata/md5-cache/kde-apps/palapeli-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.08.3:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/palapeli-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=880968a01453b1af07e1838de7e23cbb diff --git a/metadata/md5-cache/kde-apps/palapeli-22.12.3 b/metadata/md5-cache/kde-apps/palapeli-22.12.3 index 5c06a993b544..dd290d1c0edb 100644 --- a/metadata/md5-cache/kde-apps/palapeli-22.12.3 +++ b/metadata/md5-cache/kde-apps/palapeli-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkdegames-22.12.3:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kitemviews-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/palapeli-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ce2ae32cd3be1cf3f454759bd324e367 diff --git a/metadata/md5-cache/kde-apps/parley-22.08.3 b/metadata/md5-cache/kde-apps/parley-22.08.3 index 5c300c118d98..a8db993c1a43 100644 --- a/metadata/md5-cache/kde-apps/parley-22.08.3 +++ b/metadata/md5-cache/kde-apps/parley-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=app-i18n/translate-shell dev-libs/libxml2:2 dev-libs/libxslt >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=kde-apps/libkeduvocdocument-22.08.3:5 >=kde-frameworks/kcmutils-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-frameworks/sonnet-5.96.0:5 >=kde-apps/kdeedu-data-22.08.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/parley-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=15c8da5f7950100413f2349de583ebf5 diff --git a/metadata/md5-cache/kde-apps/parley-22.12.3 b/metadata/md5-cache/kde-apps/parley-22.12.3 index c549472e0d15..44dbdb4dd71c 100644 --- a/metadata/md5-cache/kde-apps/parley-22.12.3 +++ b/metadata/md5-cache/kde-apps/parley-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=app-i18n/translate-shell dev-libs/libxml2:2 dev-libs/libxslt >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=kde-apps/libkeduvocdocument-22.12.3:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=kde-frameworks/sonnet-5.101.0:5 >=kde-apps/kdeedu-data-22.12.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/parley-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca38d8d4388ac30cce85f5fefb00142d diff --git a/metadata/md5-cache/kde-apps/picmi-22.08.3 b/metadata/md5-cache/kde-apps/picmi-22.08.3 index 32f062e25255..fb1d1a97ecc5 100644 --- a/metadata/md5-cache/kde-apps/picmi-22.08.3 +++ b/metadata/md5-cache/kde-apps/picmi-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/picmi-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1caaaf894d849a9dcc0ab2be03e38d17 diff --git a/metadata/md5-cache/kde-apps/picmi-22.12.3 b/metadata/md5-cache/kde-apps/picmi-22.12.3 index 22a519a922b3..7c1df71f94ff 100644 --- a/metadata/md5-cache/kde-apps/picmi-22.12.3 +++ b/metadata/md5-cache/kde-apps/picmi-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/picmi-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e4bd47972a619b9ba12a348ea36caccc diff --git a/metadata/md5-cache/kde-apps/pim-data-exporter-22.08.3 b/metadata/md5-cache/kde-apps/pim-data-exporter-22.08.3 index b4eb23718f3e..79d123676952 100644 --- a/metadata/md5-cache/kde-apps/pim-data-exporter-22.08.3 +++ b/metadata/md5-cache/kde-apps/pim-data-exporter-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-2 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/pim-data-exporter-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5dfbaa12c6b8759b0638d211d6f0f0c2 diff --git a/metadata/md5-cache/kde-apps/pim-data-exporter-22.12.3 b/metadata/md5-cache/kde-apps/pim-data-exporter-22.12.3 index 87eb76bcb9fd..2f2c032d799c 100644 --- a/metadata/md5-cache/kde-apps/pim-data-exporter-22.12.3 +++ b/metadata/md5-cache/kde-apps/pim-data-exporter-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/akonadi-2 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/pim-data-exporter-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9c1ea30e922c2eb8fc1c3dac7f6f771d diff --git a/metadata/md5-cache/kde-apps/pim-sieve-editor-22.08.3 b/metadata/md5-cache/kde-apps/pim-sieve-editor-22.08.3 index 81708f69e075..0e98f819a3e5 100644 --- a/metadata/md5-cache/kde-apps/pim-sieve-editor-22.08.3 +++ b/metadata/md5-cache/kde-apps/pim-sieve-editor-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/pim-sieve-editor-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=794e73a18d38d128b0918ac1e06d9f10 diff --git a/metadata/md5-cache/kde-apps/pim-sieve-editor-22.12.3 b/metadata/md5-cache/kde-apps/pim-sieve-editor-22.12.3 index cc71fd430f63..c483afa47520 100644 --- a/metadata/md5-cache/kde-apps/pim-sieve-editor-22.12.3 +++ b/metadata/md5-cache/kde-apps/pim-sieve-editor-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/pim-sieve-editor-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=10d9b424403b41bce373f71ce4695055 diff --git a/metadata/md5-cache/kde-apps/pimcommon-22.08.3 b/metadata/md5-cache/kde-apps/pimcommon-22.08.3 index 9e589dec8644..fc53d5de96bc 100644 --- a/metadata/md5-cache/kde-apps/pimcommon-22.08.3 +++ b/metadata/md5-cache/kde-apps/pimcommon-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/pimcommon-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=54aaa2fc2e3faf12295a2e8f5b78b85c diff --git a/metadata/md5-cache/kde-apps/pimcommon-22.12.3 b/metadata/md5-cache/kde-apps/pimcommon-22.12.3 index 7c43771e9235..eee3c363ada4 100644 --- a/metadata/md5-cache/kde-apps/pimcommon-22.12.3 +++ b/metadata/md5-cache/kde-apps/pimcommon-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/pimcommon-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7212d1e14f50b061b4dabafb5aecf31a diff --git a/metadata/md5-cache/kde-apps/poxml-22.08.3 b/metadata/md5-cache/kde-apps/poxml-22.08.3 index 85e0cf726dec..86beea83b541 100644 --- a/metadata/md5-cache/kde-apps/poxml-22.08.3 +++ b/metadata/md5-cache/kde-apps/poxml-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtxml-5.15.5:5 sys-devel/gettext || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/poxml-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0d89716ca9e7c0d413caf960ebebf70d diff --git a/metadata/md5-cache/kde-apps/poxml-22.12.3 b/metadata/md5-cache/kde-apps/poxml-22.12.3 index ebfd6bf89177..3a82bac4f5bd 100644 --- a/metadata/md5-cache/kde-apps/poxml-22.12.3 +++ b/metadata/md5-cache/kde-apps/poxml-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtxml-5.15.5:5 sys-devel/gettext || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/poxml-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=48e06fcbf71eef66098d9dc950e1849a diff --git a/metadata/md5-cache/kde-apps/print-manager-22.08.3 b/metadata/md5-cache/kde-apps/print-manager-22.08.3 index 75f9eaf7d9dd..02f4913aed04 100644 --- a/metadata/md5-cache/kde-apps/print-manager-22.08.3 +++ b/metadata/md5-cache/kde-apps/print-manager-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcmutils-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/plasma-5.96.0:5 net-print/cups >=dev-qt/qtquickcontrols-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kdeclarative-5.96.0:5 kde-plasma/kde-cli-tools:5 gtk? ( app-admin/system-config-printer ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/print-manager-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5212eaab98cce2ab71b4816b58a90f9e diff --git a/metadata/md5-cache/kde-apps/print-manager-22.12.3 b/metadata/md5-cache/kde-apps/print-manager-22.12.3 index 7ddb891b222a..180675e12ef2 100644 --- a/metadata/md5-cache/kde-apps/print-manager-22.12.3 +++ b/metadata/md5-cache/kde-apps/print-manager-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcmutils-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/plasma-5.101.0:5 net-print/cups >=dev-qt/qtquickcontrols-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kdeclarative-5.101.0:5 kde-plasma/kde-cli-tools:5 gtk? ( app-admin/system-config-printer ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/print-manager-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=27b57f2a469f801a2bbb8d000c090efb diff --git a/metadata/md5-cache/kde-apps/rocs-22.08.3 b/metadata/md5-cache/kde-apps/rocs-22.08.3 index 0a06760e8932..21e6d0b5a2ec 100644 --- a/metadata/md5-cache/kde-apps/rocs-22.08.3 +++ b/metadata/md5-cache/kde-apps/rocs-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/grantlee:5 >=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdeclarativ RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/rocs-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ad153b18580068172cf4a8c66079f35 diff --git a/metadata/md5-cache/kde-apps/rocs-22.12.3 b/metadata/md5-cache/kde-apps/rocs-22.12.3 index 140dfc1242af..65613c593c24 100644 --- a/metadata/md5-cache/kde-apps/rocs-22.12.3 +++ b/metadata/md5-cache/kde-apps/rocs-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/grantlee:5 >=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdeclarativ RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/rocs-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a215d3a1a01a26682f185dc0c63efd2e diff --git a/metadata/md5-cache/kde-apps/signon-kwallet-extension-22.08.3 b/metadata/md5-cache/kde-apps/signon-kwallet-extension-22.08.3 index b39402a945b1..49f33fa41bca 100644 --- a/metadata/md5-cache/kde-apps/signon-kwallet-extension-22.08.3 +++ b/metadata/md5-cache/kde-apps/signon-kwallet-extension-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=kde-frameworks/kwallet-5.96.0:5 net-libs/signond || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/signon-kwallet-extension-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d091e6b43ba0e024ddf5a59599656ecb diff --git a/metadata/md5-cache/kde-apps/signon-kwallet-extension-22.12.3 b/metadata/md5-cache/kde-apps/signon-kwallet-extension-22.12.3 index 92d1ed9e182f..7409c91c5b3c 100644 --- a/metadata/md5-cache/kde-apps/signon-kwallet-extension-22.12.3 +++ b/metadata/md5-cache/kde-apps/signon-kwallet-extension-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=kde-frameworks/kwallet-5.101.0:5 net-libs/signond || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/signon-kwallet-extension-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e1ce4fd5138d98123cfe4bb7595a2011 diff --git a/metadata/md5-cache/kde-apps/spectacle-22.08.3 b/metadata/md5-cache/kde-apps/spectacle-22.08.3 index a1ea7913ea27..bd87afb6e825 100644 --- a/metadata/md5-cache/kde-apps/spectacle-22.08.3 +++ b/metadata/md5-cache/kde-apps/spectacle-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/spectacle-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=40d21894fd3f2e3447ef2b4de1576067 diff --git a/metadata/md5-cache/kde-apps/spectacle-22.12.3 b/metadata/md5-cache/kde-apps/spectacle-22.12.3 index 14f8816eea74..0d0efa3ae3e4 100644 --- a/metadata/md5-cache/kde-apps/spectacle-22.12.3 +++ b/metadata/md5-cache/kde-apps/spectacle-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/spectacle-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a75b032484bf61a44e72a2bc5e2d79d3 diff --git a/metadata/md5-cache/kde-apps/step-22.08.3 b/metadata/md5-cache/kde-apps/step-22.08.3 index 2cc4157896e5..ff208569eb8c 100644 --- a/metadata/md5-cache/kde-apps/step-22.08.3 +++ b/metadata/md5-cache/kde-apps/step-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-cpp/eigen-3.2:3 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtopengl-5.15.5:5 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/step-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef4929a7457077131e169ff9f1ad6851 diff --git a/metadata/md5-cache/kde-apps/step-22.12.3 b/metadata/md5-cache/kde-apps/step-22.12.3 index a62b84966903..1b8beb223646 100644 --- a/metadata/md5-cache/kde-apps/step-22.12.3 +++ b/metadata/md5-cache/kde-apps/step-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-cpp/eigen-3.2:3 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >= RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/step-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=62155806d0e9023fff89d9f25b9c1be6 diff --git a/metadata/md5-cache/kde-apps/svgpart-22.08.3 b/metadata/md5-cache/kde-apps/svgpart-22.08.3 index edff24043ae3..f7b8969eac57 100644 --- a/metadata/md5-cache/kde-apps/svgpart-22.08.3 +++ b/metadata/md5-cache/kde-apps/svgpart-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/svgpart-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=30883673b693a55776206e4be25e108b diff --git a/metadata/md5-cache/kde-apps/svgpart-22.12.3 b/metadata/md5-cache/kde-apps/svgpart-22.12.3 index b34266bf8e2c..25feca940ef8 100644 --- a/metadata/md5-cache/kde-apps/svgpart-22.12.3 +++ b/metadata/md5-cache/kde-apps/svgpart-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/svgpart-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2c1087ab0e2e968692dfd78df2bace83 diff --git a/metadata/md5-cache/kde-apps/sweeper-22.08.3 b/metadata/md5-cache/kde-apps/sweeper-22.08.3 index c599eeaf3b2f..c07f12273be0 100644 --- a/metadata/md5-cache/kde-apps/sweeper-22.08.3 +++ b/metadata/md5-cache/kde-apps/sweeper-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kactivities-stats-5.96.0:5 >=kde-frameworks/kbookmarks-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/sweeper-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0fec55706edef58e5e551f3a8ae4834e diff --git a/metadata/md5-cache/kde-apps/sweeper-22.12.3 b/metadata/md5-cache/kde-apps/sweeper-22.12.3 index bb436e212090..6340db91e3a9 100644 --- a/metadata/md5-cache/kde-apps/sweeper-22.12.3 +++ b/metadata/md5-cache/kde-apps/sweeper-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kactivities-stats-5.101.0:5 >=kde-frameworks/kbookmarks-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/sweeper-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3ef352ee0601c2e77bd4148e1f13ea9a diff --git a/metadata/md5-cache/kde-apps/thumbnailers-22.08.3 b/metadata/md5-cache/kde-apps/thumbnailers-22.08.3 index 9712daf0e432..0e3758be6945 100644 --- a/metadata/md5-cache/kde-apps/thumbnailers-22.08.3 +++ b/metadata/md5-cache/kde-apps/thumbnailers-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 mobi? ( >=kde-apps/kdegraphics-mobipocket-22.08.3:5 ) raw? ( >=kde-apps/libkdcraw-22.08.3:5 >=kde-apps/libkexiv2-22.08.3:5 ) mobi? ( !=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdegraphics-thumbnailers-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9894cd9be327b2b244a70283eb459d7d diff --git a/metadata/md5-cache/kde-apps/thumbnailers-22.12.3 b/metadata/md5-cache/kde-apps/thumbnailers-22.12.3 index df3f7f9b0ead..9622eed9c471 100644 --- a/metadata/md5-cache/kde-apps/thumbnailers-22.12.3 +++ b/metadata/md5-cache/kde-apps/thumbnailers-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 mobi? ( >=kde-apps/kdegraphics-mobipocket-22.12.3:5 ) raw? ( >=kde-apps/libkdcraw-22.12.3:5 >=kde-apps/libkexiv2-22.12.3:5 ) mobi? ( !=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdegraphics-thumbnailers-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=daf7f7165ba8e9ab2ce9bc4319d47b2b diff --git a/metadata/md5-cache/kde-apps/umbrello-22.08.3 b/metadata/md5-cache/kde-apps/umbrello-22.08.3 index e641603e02f0..5cba2676b568 100644 --- a/metadata/md5-cache/kde-apps/umbrello-22.08.3 +++ b/metadata/md5-cache/kde-apps/umbrello-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libxml2 dev-libs/libxslt >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtpri RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/umbrello-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a55e31d8c695468c4df48d7c1f027986 diff --git a/metadata/md5-cache/kde-apps/umbrello-22.12.3 b/metadata/md5-cache/kde-apps/umbrello-22.12.3 index e887167aeaf5..32f1621025c6 100644 --- a/metadata/md5-cache/kde-apps/umbrello-22.12.3 +++ b/metadata/md5-cache/kde-apps/umbrello-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libxml2 dev-libs/libxslt >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtpri RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/umbrello-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=40dc48ca0e82c1c8f8a2794578a40418 diff --git a/metadata/md5-cache/kde-apps/yakuake-22.08.3-r1 b/metadata/md5-cache/kde-apps/yakuake-22.08.3-r1 index f813b2ed0a42..c7b52a3b3796 100644 --- a/metadata/md5-cache/kde-apps/yakuake-22.08.3-r1 +++ b/metadata/md5-cache/kde-apps/yakuake-22.08.3-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=kde-apps/konsole-22.08.3:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kglobalaccel-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kiconthemes-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/knotifyconfig-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5[X] >=kde-frameworks/kxmlgui-5.96.0:5 x11-libs/libX11 absolute-position? ( >=kde-frameworks/kwayland-5.96.0:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/yakuake-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6b87bbe3d6b690b2f395dba260020b53 diff --git a/metadata/md5-cache/kde-apps/yakuake-22.12.3 b/metadata/md5-cache/kde-apps/yakuake-22.12.3 index 4ab89ea4d792..2df79f8ba824 100644 --- a/metadata/md5-cache/kde-apps/yakuake-22.12.3 +++ b/metadata/md5-cache/kde-apps/yakuake-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=kde-apps/konsole-22.12.3:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kglobalaccel-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kiconthemes-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/knotifyconfig-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5[X] >=kde-frameworks/kxmlgui-5.101.0:5 x11-libs/libX11 absolute-position? ( >=kde-frameworks/kwayland-5.101.0:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/yakuake-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e619fd18f485164029f1b8dc9c5f18c1 diff --git a/metadata/md5-cache/kde-frameworks/Manifest.gz b/metadata/md5-cache/kde-frameworks/Manifest.gz index af8392c70989..f8923188204a 100644 Binary files a/metadata/md5-cache/kde-frameworks/Manifest.gz and b/metadata/md5-cache/kde-frameworks/Manifest.gz differ diff --git a/metadata/md5-cache/kde-frameworks/attica-5.102.0 b/metadata/md5-cache/kde-frameworks/attica-5.102.0 index 2d659d3d402a..e0914b7f4b30 100644 --- a/metadata/md5-cache/kde-frameworks/attica-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/attica-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtnetwork-5.15.5:5 >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-d RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/attica-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a49317781f6757ba1878411a258c9903 diff --git a/metadata/md5-cache/kde-frameworks/attica-5.104.0 b/metadata/md5-cache/kde-frameworks/attica-5.104.0 index 828d14360f0f..46f98a6e25d0 100644 --- a/metadata/md5-cache/kde-frameworks/attica-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/attica-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtnetwork-5.15.5:5 >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-d RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/attica-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ff6c52d38361474b68acab3ddb77ff2c diff --git a/metadata/md5-cache/kde-frameworks/baloo-5.102.0 b/metadata/md5-cache/kde-frameworks/baloo-5.102.0 index e28c3d06f7ec..a6cb33107b99 100644 --- a/metadata/md5-cache/kde-frameworks/baloo-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/baloo-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-db/lmdb-0.9.17 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.1 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/baloo-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4b6f39ef8019a9860ea9c5a2f0e65663 diff --git a/metadata/md5-cache/kde-frameworks/baloo-5.104.0 b/metadata/md5-cache/kde-frameworks/baloo-5.104.0 index 0b0eb5bf4d08..16482e3183cb 100644 --- a/metadata/md5-cache/kde-frameworks/baloo-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/baloo-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-db/lmdb-0.9.17 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.1 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/baloo-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=eb985f53e3f760d57b48e2d1e220e737 diff --git a/metadata/md5-cache/kde-frameworks/bluez-qt-5.102.0 b/metadata/md5-cache/kde-frameworks/bluez-qt-5.102.0 index b871a0798e15..94ac7cdab5f0 100644 --- a/metadata/md5-cache/kde-frameworks/bluez-qt-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/bluez-qt-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtnetw RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/bluez-qt-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ab67011a44934ddb211bbf8cee4c52f9 diff --git a/metadata/md5-cache/kde-frameworks/bluez-qt-5.104.0 b/metadata/md5-cache/kde-frameworks/bluez-qt-5.104.0 index 00a9817c8c53..6cf4d9e5322e 100644 --- a/metadata/md5-cache/kde-frameworks/bluez-qt-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/bluez-qt-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtnetw RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/bluez-qt-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3d5ee43a685cc263dffb6e150bcfe6c9 diff --git a/metadata/md5-cache/kde-frameworks/breeze-icons-5.102.0 b/metadata/md5-cache/kde-frameworks/breeze-icons-5.102.0 index aaedba02e864..59231ed6f488 100644 --- a/metadata/md5-cache/kde-frameworks/breeze-icons-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/breeze-icons-5.102.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-3 RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/breeze-icons-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c317f7b24cb329e79c4f70dea7843e73 diff --git a/metadata/md5-cache/kde-frameworks/breeze-icons-5.104.0 b/metadata/md5-cache/kde-frameworks/breeze-icons-5.104.0 index edffd89530ac..f03c558aa4c0 100644 --- a/metadata/md5-cache/kde-frameworks/breeze-icons-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/breeze-icons-5.104.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-3 RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/breeze-icons-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=091264288c77e4089a8b5d23fadf2fdc diff --git a/metadata/md5-cache/kde-frameworks/breeze-icons-rcc-5.102.0 b/metadata/md5-cache/kde-frameworks/breeze-icons-rcc-5.102.0 index 12c74a3d2aae..098cbc7fe9bd 100644 --- a/metadata/md5-cache/kde-frameworks/breeze-icons-rcc-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/breeze-icons-rcc-5.102.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-3 RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/breeze-icons-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6db0fff54a5656bab2d642ff2c681260 diff --git a/metadata/md5-cache/kde-frameworks/breeze-icons-rcc-5.104.0 b/metadata/md5-cache/kde-frameworks/breeze-icons-rcc-5.104.0 index 4dc707e8ee6a..2ff3dc7d3157 100644 --- a/metadata/md5-cache/kde-frameworks/breeze-icons-rcc-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/breeze-icons-rcc-5.104.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-3 RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/breeze-icons-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a2328384629d8a0b1705a9ec1f739633 diff --git a/metadata/md5-cache/kde-frameworks/countryflags-5.102.0 b/metadata/md5-cache/kde-frameworks/countryflags-5.102.0 index 2f73b8ea9b2a..9101eba7b74e 100644 --- a/metadata/md5-cache/kde-frameworks/countryflags-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/countryflags-5.102.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=!=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/portingAids/kdelibs4support-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=95022698aa79831a100ff8da8865def7 diff --git a/metadata/md5-cache/kde-frameworks/countryflags-5.104.0 b/metadata/md5-cache/kde-frameworks/countryflags-5.104.0 index 7461e956a859..884b9e256440 100644 --- a/metadata/md5-cache/kde-frameworks/countryflags-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/countryflags-5.104.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=!=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/portingAids/kdelibs4support-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5971f3827425f418723c38a4fca70e14 diff --git a/metadata/md5-cache/kde-frameworks/extra-cmake-modules-5.102.0 b/metadata/md5-cache/kde-frameworks/extra-cmake-modules-5.102.0 index 03d83c1ce2b4..1602529e3639 100644 --- a/metadata/md5-cache/kde-frameworks/extra-cmake-modules-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/extra-cmake-modules-5.102.0 @@ -11,5 +11,5 @@ RDEPEND=app-arch/libarchive[bzip2] RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/extra-cmake-modules-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d4a6ad6aebd9c0019a0d2924fa30e94 diff --git a/metadata/md5-cache/kde-frameworks/extra-cmake-modules-5.104.0 b/metadata/md5-cache/kde-frameworks/extra-cmake-modules-5.104.0 index f4814f981bfc..48673433dc86 100644 --- a/metadata/md5-cache/kde-frameworks/extra-cmake-modules-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/extra-cmake-modules-5.104.0 @@ -11,5 +11,5 @@ RDEPEND=app-arch/libarchive[bzip2] RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/extra-cmake-modules-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=10da7dc076d69f7e4c5dbd378850d9eb diff --git a/metadata/md5-cache/kde-frameworks/frameworkintegration-5.102.0 b/metadata/md5-cache/kde-frameworks/frameworkintegration-5.102.0 index b63ccd8d3b94..61b53e9c98d0 100644 --- a/metadata/md5-cache/kde-frameworks/frameworkintegration-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/frameworkintegration-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kcon RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/frameworkintegration-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ddcaf61440839198e288786d99a7ac93 diff --git a/metadata/md5-cache/kde-frameworks/frameworkintegration-5.104.0 b/metadata/md5-cache/kde-frameworks/frameworkintegration-5.104.0 index 548f460d6deb..f027604e97e5 100644 --- a/metadata/md5-cache/kde-frameworks/frameworkintegration-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/frameworkintegration-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kcon RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/frameworkintegration-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a01670af85d6c7f586d06c3fa61c9ed9 diff --git a/metadata/md5-cache/kde-frameworks/kactivities-5.102.0 b/metadata/md5-cache/kde-frameworks/kactivities-5.102.0 index eb8736c34e6d..716191887d87 100644 --- a/metadata/md5-cache/kde-frameworks/kactivities-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kactivities-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5[widgets] >=dev- RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kactivities-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7a9fe1cf195b09ba4b3d09921579ae8d diff --git a/metadata/md5-cache/kde-frameworks/kactivities-5.104.0 b/metadata/md5-cache/kde-frameworks/kactivities-5.104.0 index aa8230f1f7c0..5e1c24087297 100644 --- a/metadata/md5-cache/kde-frameworks/kactivities-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kactivities-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5[widgets] >=dev- RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kactivities-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3ce6d7bc8131c5e3eddd5667241ae2c7 diff --git a/metadata/md5-cache/kde-frameworks/kactivities-stats-5.102.0 b/metadata/md5-cache/kde-frameworks/kactivities-stats-5.102.0 index a0aec4707a71..beee2894a686 100644 --- a/metadata/md5-cache/kde-frameworks/kactivities-stats-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kactivities-stats-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtsql-5.15.5:5 =kde-frameworks/kactivi RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kactivities-stats-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=efce3338b41462bba1828b6142dac9ff diff --git a/metadata/md5-cache/kde-frameworks/kactivities-stats-5.104.0 b/metadata/md5-cache/kde-frameworks/kactivities-stats-5.104.0 index 275e8d065190..4413856ff882 100644 --- a/metadata/md5-cache/kde-frameworks/kactivities-stats-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kactivities-stats-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtsql-5.15.5:5 =kde-frameworks/kactivi RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kactivities-stats-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f0f97ef98fae2f2e718a88d7a000d077 diff --git a/metadata/md5-cache/kde-frameworks/karchive-5.102.0 b/metadata/md5-cache/kde-frameworks/karchive-5.102.0 index ed17420ebbc3..259e8ccca08a 100644 --- a/metadata/md5-cache/kde-frameworks/karchive-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/karchive-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2 app-arch/xz-utils sys-libs/zlib zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/karchive-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a9969b8f6a46768bc5c91901cf744ebe diff --git a/metadata/md5-cache/kde-frameworks/karchive-5.104.0 b/metadata/md5-cache/kde-frameworks/karchive-5.104.0 index 265a93aa0256..ba746ee812d9 100644 --- a/metadata/md5-cache/kde-frameworks/karchive-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/karchive-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2 app-arch/xz-utils sys-libs/zlib zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/karchive-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=62f6a4e04542cae0754a09dab77704c5 diff --git a/metadata/md5-cache/kde-frameworks/kauth-5.102.0 b/metadata/md5-cache/kde-frameworks/kauth-5.102.0 index 1ab3b5b35299..95428f3bcba9 100644 --- a/metadata/md5-cache/kde-frameworks/kauth-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kauth-5.102.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kauth-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f1b98bb3a12c0b5b60e4f8775bb3dd59 diff --git a/metadata/md5-cache/kde-frameworks/kauth-5.104.0 b/metadata/md5-cache/kde-frameworks/kauth-5.104.0 index d454995937fb..42b2baa632f2 100644 --- a/metadata/md5-cache/kde-frameworks/kauth-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kauth-5.104.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kauth-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6f235ad5e723c0085e2b4c4b2c87a2d0 diff --git a/metadata/md5-cache/kde-frameworks/kbookmarks-5.102.0 b/metadata/md5-cache/kde-frameworks/kbookmarks-5.102.0 index 4c9bff3d1c8b..ff8daede9278 100644 --- a/metadata/md5-cache/kde-frameworks/kbookmarks-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kbookmarks-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kbookmarks-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bb79e50e3efaafaa9f022a51c217da2f diff --git a/metadata/md5-cache/kde-frameworks/kbookmarks-5.104.0 b/metadata/md5-cache/kde-frameworks/kbookmarks-5.104.0 index 0dd2e048d4dc..8afe48112afe 100644 --- a/metadata/md5-cache/kde-frameworks/kbookmarks-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kbookmarks-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kbookmarks-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=abb1f792bcd29abf785609b7fac049a1 diff --git a/metadata/md5-cache/kde-frameworks/kcalendarcore-5.102.0 b/metadata/md5-cache/kde-frameworks/kcalendarcore-5.102.0 index 36ebf0f4dabf..1e3e9b9e6afb 100644 --- a/metadata/md5-cache/kde-frameworks/kcalendarcore-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kcalendarcore-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libical-3.0.5:= >=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/kf-e RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kcalendarcore-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e1294495b1b9bfaf2af98f3c1cef7a5 diff --git a/metadata/md5-cache/kde-frameworks/kcalendarcore-5.104.0 b/metadata/md5-cache/kde-frameworks/kcalendarcore-5.104.0 index 580105766436..609ad26e90fa 100644 --- a/metadata/md5-cache/kde-frameworks/kcalendarcore-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kcalendarcore-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libical-3.0.5:= >=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/kf-e RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kcalendarcore-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f5c9d0e74d2bcd56215c12dc3454dc87 diff --git a/metadata/md5-cache/kde-frameworks/kcmutils-5.102.0 b/metadata/md5-cache/kde-frameworks/kcmutils-5.102.0 index 55e42f75a088..fb30e4046b62 100644 --- a/metadata/md5-cache/kde-frameworks/kcmutils-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kcmutils-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5[widgets] >=dev- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kcmutils-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3673a3494d3e6120eb72e41f24bdfc38 diff --git a/metadata/md5-cache/kde-frameworks/kcmutils-5.104.0 b/metadata/md5-cache/kde-frameworks/kcmutils-5.104.0 index da7f736d96ce..87a93df3b71f 100644 --- a/metadata/md5-cache/kde-frameworks/kcmutils-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kcmutils-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5[widgets] >=dev- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kcmutils-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f22707a085b2edd8c56d91044293c2d2 diff --git a/metadata/md5-cache/kde-frameworks/kcodecs-5.102.0 b/metadata/md5-cache/kde-frameworks/kcodecs-5.102.0 index 99616e045955..6bab888cdb04 100644 --- a/metadata/md5-cache/kde-frameworks/kcodecs-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kcodecs-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kcodecs-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=34e6bf267f375459dcd767288c4e245b diff --git a/metadata/md5-cache/kde-frameworks/kcodecs-5.104.0 b/metadata/md5-cache/kde-frameworks/kcodecs-5.104.0 index 910e72ca9837..5f69bb63702b 100644 --- a/metadata/md5-cache/kde-frameworks/kcodecs-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kcodecs-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kcodecs-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b60e32685f3c624dc45e0bbfea661217 diff --git a/metadata/md5-cache/kde-frameworks/kcompletion-5.102.0 b/metadata/md5-cache/kde-frameworks/kcompletion-5.102.0 index 32dd09a8bd51..d8a6a265aa1b 100644 --- a/metadata/md5-cache/kde-frameworks/kcompletion-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kcompletion-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kcon RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kcompletion-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b3c06594a3c9ce370b9407af1f614b28 diff --git a/metadata/md5-cache/kde-frameworks/kcompletion-5.104.0 b/metadata/md5-cache/kde-frameworks/kcompletion-5.104.0 index 3c50e0367f24..6621b442ce9a 100644 --- a/metadata/md5-cache/kde-frameworks/kcompletion-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kcompletion-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kcon RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kcompletion-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=20b6d0825ad9f248af369c0470284313 diff --git a/metadata/md5-cache/kde-frameworks/kconfig-5.102.0 b/metadata/md5-cache/kde-frameworks/kconfig-5.102.0 index 743721c7d7ec..ce6351b70478 100644 --- a/metadata/md5-cache/kde-frameworks/kconfig-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kconfig-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 dbus? ( >=dev-qt/qtdbus- RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kconfig-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=013422b1755053c1981a871e0e638b8a diff --git a/metadata/md5-cache/kde-frameworks/kconfig-5.104.0 b/metadata/md5-cache/kde-frameworks/kconfig-5.104.0 index d5e2176efdb3..5528ebfc8bbf 100644 --- a/metadata/md5-cache/kde-frameworks/kconfig-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kconfig-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 dbus? ( >=dev-qt/qtdbus- RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kconfig-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d45ed72ce2639e27ed29b39669583381 diff --git a/metadata/md5-cache/kde-frameworks/kconfigwidgets-5.102.0 b/metadata/md5-cache/kde-frameworks/kconfigwidgets-5.102.0 index 82e875f4086a..bb289d3acb87 100644 --- a/metadata/md5-cache/kde-frameworks/kconfigwidgets-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kconfigwidgets-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kconfigwidgets-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=316aa539531f34f52ba614b35c7f56ae diff --git a/metadata/md5-cache/kde-frameworks/kconfigwidgets-5.104.0 b/metadata/md5-cache/kde-frameworks/kconfigwidgets-5.104.0 index 504c7e68a2b8..5477b4c8a700 100644 --- a/metadata/md5-cache/kde-frameworks/kconfigwidgets-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kconfigwidgets-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kconfigwidgets-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=89213372d00380939566cfaadbad37ce diff --git a/metadata/md5-cache/kde-frameworks/kcontacts-5.102.0 b/metadata/md5-cache/kde-frameworks/kcontacts-5.102.0 index 56286def271d..c5f03d51bb08 100644 --- a/metadata/md5-cache/kde-frameworks/kcontacts-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kcontacts-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 =kde-frameworks/kcodecs-5.102*:5 =kde-frameworks RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kcontacts-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=62f90ba9e9cb673b745a60118506b067 diff --git a/metadata/md5-cache/kde-frameworks/kcontacts-5.104.0 b/metadata/md5-cache/kde-frameworks/kcontacts-5.104.0 index 9c89873710d4..2093bbe76351 100644 --- a/metadata/md5-cache/kde-frameworks/kcontacts-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kcontacts-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 =kde-frameworks/kcodecs-5.104*:5 =kde-frameworks RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kcontacts-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c62b6ba407d13cbc53a7bba68bd4c8ef diff --git a/metadata/md5-cache/kde-frameworks/kcoreaddons-5.102.0 b/metadata/md5-cache/kde-frameworks/kcoreaddons-5.102.0 index babdaa1c2e39..79be72a9bfd6 100644 --- a/metadata/md5-cache/kde-frameworks/kcoreaddons-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kcoreaddons-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtcore-5.15.5:5[icu] virtual/libudev:= dbus? ( >=dev-qt/qtdbus- RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kcoreaddons-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=75f81f09519883a04a42787bafe46667 diff --git a/metadata/md5-cache/kde-frameworks/kcoreaddons-5.104.0 b/metadata/md5-cache/kde-frameworks/kcoreaddons-5.104.0 index ca6ab004acd5..fefad53916f7 100644 --- a/metadata/md5-cache/kde-frameworks/kcoreaddons-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kcoreaddons-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtcore-5.15.5:5[icu] virtual/libudev:= dbus? ( >=dev-qt/qtdbus- RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kcoreaddons-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9d322c0d480c6b51b26dec845dba34c4 diff --git a/metadata/md5-cache/kde-frameworks/kcrash-5.102.0 b/metadata/md5-cache/kde-frameworks/kcrash-5.102.0 index 4690eb401bdc..fac31d944329 100644 --- a/metadata/md5-cache/kde-frameworks/kcrash-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kcrash-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 =kde-frameworks/kcoreaddons-5.102*:5 X? ( >=dev- RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kcrash-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9c6191eb280fbbd1b6dc72db8ec3704c diff --git a/metadata/md5-cache/kde-frameworks/kcrash-5.104.0 b/metadata/md5-cache/kde-frameworks/kcrash-5.104.0 index 163956576266..9eb0f92ed471 100644 --- a/metadata/md5-cache/kde-frameworks/kcrash-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kcrash-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 =kde-frameworks/kcoreaddons-5.104*:5 X? ( >=dev- RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kcrash-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a688f46179b4bd7045e9b9a99fd6a233 diff --git a/metadata/md5-cache/kde-frameworks/kdav-5.102.0 b/metadata/md5-cache/kde-frameworks/kdav-5.102.0 index c1a962d56714..b8674b0d9055 100644 --- a/metadata/md5-cache/kde-frameworks/kdav-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kdav-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcoread RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kdav-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9bf1b4f1f89a09185a4c945c4a3f1338 diff --git a/metadata/md5-cache/kde-frameworks/kdav-5.104.0 b/metadata/md5-cache/kde-frameworks/kdav-5.104.0 index 71bf9d9f0d36..704970c07d28 100644 --- a/metadata/md5-cache/kde-frameworks/kdav-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kdav-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcoread RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kdav-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca72fbb743049c8c1290a8fc909e5f2f diff --git a/metadata/md5-cache/kde-frameworks/kdbusaddons-5.102.0 b/metadata/md5-cache/kde-frameworks/kdbusaddons-5.102.0 index 609434bc9f49..ab11faa7268a 100644 --- a/metadata/md5-cache/kde-frameworks/kdbusaddons-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kdbusaddons-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 X? ( >=dev-qt/qtx11extras-5.15.5:5 ) >=kde-fram RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kdbusaddons-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=faa56f56f3c5e00fe964060b5d1db8f1 diff --git a/metadata/md5-cache/kde-frameworks/kdbusaddons-5.104.0 b/metadata/md5-cache/kde-frameworks/kdbusaddons-5.104.0 index 8480731482ce..7525280ec60c 100644 --- a/metadata/md5-cache/kde-frameworks/kdbusaddons-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kdbusaddons-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 X? ( >=dev-qt/qtx11extras-5.15.5:5 ) >=kde-fram RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kdbusaddons-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5fb8a498bfa017071543d0ded0105878 diff --git a/metadata/md5-cache/kde-frameworks/kdeclarative-5.102.0 b/metadata/md5-cache/kde-frameworks/kdeclarative-5.102.0 index fa91a1bdc2cc..53b3de6e08ed 100644 --- a/metadata/md5-cache/kde-frameworks/kdeclarative-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kdeclarative-5.102.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kconfig-5.102*:5 =kde-frameworks/kcoreaddons-5.102*:5 =kde-frameworks/kglobalaccel-5.102*:5 =kde-frameworks/ki18n-5.102*:5 =kde-frameworks/kiconthemes-5.102*:5 =kde-frameworks/kio-5.102*:5 =kde-frameworks/knotifications-5.102*:5 =kde-frameworks/kpackage-5.102*:5 =kde-frameworks/kservice-5.102*:5 =kde-frameworks/kwidgetsaddons-5.102*:5 =kde-frameworks/kwindowsystem-5.102*:5 media-libs/libepoxy >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kdeclarative-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dacc7d16228b86b80670286621be480a diff --git a/metadata/md5-cache/kde-frameworks/kdeclarative-5.104.0 b/metadata/md5-cache/kde-frameworks/kdeclarative-5.104.0 index d4946c0c37c2..9b5a6ae1aeb4 100644 --- a/metadata/md5-cache/kde-frameworks/kdeclarative-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kdeclarative-5.104.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kconfig-5.104*:5 =kde-frameworks/kcoreaddons-5.104*:5 =kde-frameworks/kglobalaccel-5.104*:5 =kde-frameworks/ki18n-5.104*:5 =kde-frameworks/kiconthemes-5.104*:5 =kde-frameworks/kio-5.104*:5 =kde-frameworks/knotifications-5.104*:5 =kde-frameworks/kpackage-5.104*:5 =kde-frameworks/kservice-5.104*:5 =kde-frameworks/kwidgetsaddons-5.104*:5 =kde-frameworks/kwindowsystem-5.104*:5 media-libs/libepoxy >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kdeclarative-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b1a77a792d36461a3d7acfa448684932 diff --git a/metadata/md5-cache/kde-frameworks/kded-5.102.0-r1 b/metadata/md5-cache/kde-frameworks/kded-5.102.0-r1 index 6544ff684065..65255018859b 100644 --- a/metadata/md5-cache/kde-frameworks/kded-5.102.0-r1 +++ b/metadata/md5-cache/kde-frameworks/kded-5.102.0-r1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kconfig-5.102*:5[dbus] =kde-frameworks/kcoreaddons-5.102*:5 =kde-frameworks/kcrash-5.102*:5 =kde-frameworks/kdbusaddons-5.102*:5 =kde-frameworks/kinit-5.102*:5 =kde-frameworks/kservice-5.102*:5 >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kded-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a023148c257b6fe31f5a2a3e041cff69 diff --git a/metadata/md5-cache/kde-frameworks/kded-5.104.0 b/metadata/md5-cache/kde-frameworks/kded-5.104.0 index 472e0a87c402..fa4625ef132c 100644 --- a/metadata/md5-cache/kde-frameworks/kded-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kded-5.104.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kconfig-5.104*:5[dbus] =kde-frameworks/kcoreaddons-5.104*:5 =kde-frameworks/kcrash-5.104*:5 =kde-frameworks/kdbusaddons-5.104*:5 =kde-frameworks/kinit-5.104*:5 =kde-frameworks/kservice-5.104*:5 >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kded-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f14467574fb4968065aa0a3df8742273 diff --git a/metadata/md5-cache/kde-frameworks/kdelibs4support-5.102.0 b/metadata/md5-cache/kde-frameworks/kdelibs4support-5.102.0 index 512867d3440e..6bf0c52638e7 100644 --- a/metadata/md5-cache/kde-frameworks/kdelibs4support-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kdelibs4support-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=app-text/docbook-xml-dtd:4.2 dev-libs/openssl:0 >=dev-qt/qtdbus-5.15.5:5 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/portingAids/kdelibs4support-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=10b6cbd212a72ea75beced42741645ea diff --git a/metadata/md5-cache/kde-frameworks/kdelibs4support-5.104.0 b/metadata/md5-cache/kde-frameworks/kdelibs4support-5.104.0 index 51b34cca665e..85c93a20cbc7 100644 --- a/metadata/md5-cache/kde-frameworks/kdelibs4support-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kdelibs4support-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=app-text/docbook-xml-dtd:4.2 dev-libs/openssl:0 >=dev-qt/qtdbus-5.15.5:5 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/portingAids/kdelibs4support-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef61a1bc118045b0e92f73a95599f55b diff --git a/metadata/md5-cache/kde-frameworks/kdesu-5.102.0 b/metadata/md5-cache/kde-frameworks/kdesu-5.102.0 index 2ed19d5e417d..447d41fcf463 100644 --- a/metadata/md5-cache/kde-frameworks/kdesu-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kdesu-5.102.0 @@ -12,5 +12,5 @@ RDEPEND==kde-frameworks/kconfig-5.102*:5 =kde-frameworks/kcoreaddons-5.102*:5 =k RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kdesu-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=45a2aead8e3d9192677e401ed6d10e48 diff --git a/metadata/md5-cache/kde-frameworks/kdesu-5.104.0 b/metadata/md5-cache/kde-frameworks/kdesu-5.104.0 index ebd444bc7c77..0fd29496a91e 100644 --- a/metadata/md5-cache/kde-frameworks/kdesu-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kdesu-5.104.0 @@ -12,5 +12,5 @@ RDEPEND==kde-frameworks/kconfig-5.104*:5 =kde-frameworks/kcoreaddons-5.104*:5 =k RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kdesu-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2203f06876ffbc3948fd66a34c2f7e43 diff --git a/metadata/md5-cache/kde-frameworks/kdnssd-5.102.0 b/metadata/md5-cache/kde-frameworks/kdnssd-5.102.0 index c75cb93f6cec..030b133107b6 100644 --- a/metadata/md5-cache/kde-frameworks/kdnssd-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kdnssd-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtnetwork-5.15.5:5 zeroconf? ( >=dev-qt/qtdbus-5.15.5:5 net-dns RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kdnssd-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=29b756aace7022ee59e5e588fabff3a6 diff --git a/metadata/md5-cache/kde-frameworks/kdnssd-5.104.0 b/metadata/md5-cache/kde-frameworks/kdnssd-5.104.0 index 79bcd3169afb..2976aa86f4bb 100644 --- a/metadata/md5-cache/kde-frameworks/kdnssd-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kdnssd-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtnetwork-5.15.5:5 zeroconf? ( >=dev-qt/qtdbus-5.15.5:5 net-dns RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kdnssd-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=32cb8518179fefe0f3871a6c0361616c diff --git a/metadata/md5-cache/kde-frameworks/kdoctools-5.102.0 b/metadata/md5-cache/kde-frameworks/kdoctools-5.102.0 index d227c63fec20..4b3d7bb8d5dd 100644 --- a/metadata/md5-cache/kde-frameworks/kdoctools-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kdoctools-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets app-text/s RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kdoctools-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bf38c911f8ef5cd61c1f40009bcb48ba diff --git a/metadata/md5-cache/kde-frameworks/kdoctools-5.104.0 b/metadata/md5-cache/kde-frameworks/kdoctools-5.104.0 index 0dd10ae08c75..6f210460f0c5 100644 --- a/metadata/md5-cache/kde-frameworks/kdoctools-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kdoctools-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets app-text/s RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kdoctools-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ab32571ca06229dcc96b95a553c4c6a9 diff --git a/metadata/md5-cache/kde-frameworks/kemoticons-5.102.0 b/metadata/md5-cache/kde-frameworks/kemoticons-5.102.0 index ab9ae5cbfab1..fa8a88138d1b 100644 --- a/metadata/md5-cache/kde-frameworks/kemoticons-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kemoticons-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kemoticons-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1b31cd7fe9c2cfe0e20780e7b3b0ce57 diff --git a/metadata/md5-cache/kde-frameworks/kemoticons-5.104.0 b/metadata/md5-cache/kde-frameworks/kemoticons-5.104.0 index 2a6d6c13500e..2121a61eeedf 100644 --- a/metadata/md5-cache/kde-frameworks/kemoticons-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kemoticons-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kemoticons-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9426cc9f9a7e67a3fdb79379faa0af71 diff --git a/metadata/md5-cache/kde-frameworks/kfilemetadata-5.102.0 b/metadata/md5-cache/kde-frameworks/kfilemetadata-5.102.0 index ca5e4bb9f10e..7c90430c0632 100644 --- a/metadata/md5-cache/kde-frameworks/kfilemetadata-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kfilemetadata-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtxml-5.15.5:5 =kde-frameworks/karchive-5.102*:5 =kde-framework RESTRICT=test !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kfilemetadata-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=580227cc54b823dab979d338e00a96b6 diff --git a/metadata/md5-cache/kde-frameworks/kfilemetadata-5.104.0 b/metadata/md5-cache/kde-frameworks/kfilemetadata-5.104.0 index dadcca655fc3..ae13a3c3519b 100644 --- a/metadata/md5-cache/kde-frameworks/kfilemetadata-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kfilemetadata-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtxml-5.15.5:5 =kde-frameworks/karchive-5.104*:5 =kde-framework RESTRICT=test !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kfilemetadata-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5e7035339e09abb83c145a1199e33c82 diff --git a/metadata/md5-cache/kde-frameworks/kglobalaccel-5.102.0 b/metadata/md5-cache/kde-frameworks/kglobalaccel-5.102.0 index 986af0be05b3..6fcec9bb3433 100644 --- a/metadata/md5-cache/kde-frameworks/kglobalaccel-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kglobalaccel-5.102.0 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( X ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kglobalaccel-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=27372fb7581559d63ce8ef91b97a7437 diff --git a/metadata/md5-cache/kde-frameworks/kglobalaccel-5.104.0 b/metadata/md5-cache/kde-frameworks/kglobalaccel-5.104.0 index e44b968820b6..eecbf7b839a8 100644 --- a/metadata/md5-cache/kde-frameworks/kglobalaccel-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kglobalaccel-5.104.0 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( X ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kglobalaccel-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aef83088c3fd1cec9d96acc067175f5a diff --git a/metadata/md5-cache/kde-frameworks/kguiaddons-5.102.0-r1 b/metadata/md5-cache/kde-frameworks/kguiaddons-5.102.0-r1 index 1918cb5dab78..283a9e9ccdb5 100644 --- a/metadata/md5-cache/kde-frameworks/kguiaddons-5.102.0-r1 +++ b/metadata/md5-cache/kde-frameworks/kguiaddons-5.102.0-r1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 dbus? ( >=dev-qt/qtdbus-5.15.5:5 ) wayland? ( de RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kguiaddons-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=eecceff4ca642175e90257b7162c1891 diff --git a/metadata/md5-cache/kde-frameworks/kguiaddons-5.104.0 b/metadata/md5-cache/kde-frameworks/kguiaddons-5.104.0 index 32e8a5663def..1fbf1f545274 100644 --- a/metadata/md5-cache/kde-frameworks/kguiaddons-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kguiaddons-5.104.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 dbus? ( >=dev-qt/qtdbus-5.15.5:5 ) wayland? ( de RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kguiaddons-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a659312660e1f2e9258115ffa1f008a1 diff --git a/metadata/md5-cache/kde-frameworks/kholidays-5.102.0 b/metadata/md5-cache/kde-frameworks/kholidays-5.102.0 index 83f5229306e4..90168fef8343 100644 --- a/metadata/md5-cache/kde-frameworks/kholidays-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kholidays-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=kde-frameworks/kf-env-4 dev-qt/qtcore: RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kholidays-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=07393f481fcaa4c63125068ac88a1183 diff --git a/metadata/md5-cache/kde-frameworks/kholidays-5.104.0 b/metadata/md5-cache/kde-frameworks/kholidays-5.104.0 index b448d057cdd8..54de9899a2fd 100644 --- a/metadata/md5-cache/kde-frameworks/kholidays-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kholidays-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=kde-frameworks/kf-env-4 dev-qt/qtcore: RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kholidays-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=96b1a52f1b90072953a85e916687cc80 diff --git a/metadata/md5-cache/kde-frameworks/khtml-5.102.0 b/metadata/md5-cache/kde-frameworks/khtml-5.102.0 index d941c7959e7c..4c6bae594c16 100644 --- a/metadata/md5-cache/kde-frameworks/khtml-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/khtml-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl:0 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=de RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/portingAids/khtml-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cbad16afca2a8adfaa79445d30768413 diff --git a/metadata/md5-cache/kde-frameworks/khtml-5.104.0 b/metadata/md5-cache/kde-frameworks/khtml-5.104.0 index df0fc9ecd8c4..f941f8af3d00 100644 --- a/metadata/md5-cache/kde-frameworks/khtml-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/khtml-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl:0 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=de RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/portingAids/khtml-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=802591af3d6523a791b83120e517e72d diff --git a/metadata/md5-cache/kde-frameworks/ki18n-5.102.0 b/metadata/md5-cache/kde-frameworks/ki18n-5.102.0 index afbc9ae34141..16054a05a58e 100644 --- a/metadata/md5-cache/kde-frameworks/ki18n-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/ki18n-5.102.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/ki18n-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e9c8b85e4ca6c1bd205c52ff1d13bb85 diff --git a/metadata/md5-cache/kde-frameworks/ki18n-5.104.0 b/metadata/md5-cache/kde-frameworks/ki18n-5.104.0 index 9e5c158226ec..7c9270b152d6 100644 --- a/metadata/md5-cache/kde-frameworks/ki18n-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/ki18n-5.104.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/ki18n-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2734a13f9d947bb4f1763221ec282488 diff --git a/metadata/md5-cache/kde-frameworks/kiconthemes-5.102.0 b/metadata/md5-cache/kde-frameworks/kiconthemes-5.102.0 index 3ae12ec29f32..42f466b75a45 100644 --- a/metadata/md5-cache/kde-frameworks/kiconthemes-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kiconthemes-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kiconthemes-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b25df3ac305c52ad51ac9c1be4426e0 diff --git a/metadata/md5-cache/kde-frameworks/kiconthemes-5.104.0 b/metadata/md5-cache/kde-frameworks/kiconthemes-5.104.0 index 9927ef79ecc3..e59729ab538f 100644 --- a/metadata/md5-cache/kde-frameworks/kiconthemes-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kiconthemes-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kiconthemes-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6eac26ebda2ed77665234107f5b96808 diff --git a/metadata/md5-cache/kde-frameworks/kidletime-5.102.0-r1 b/metadata/md5-cache/kde-frameworks/kidletime-5.102.0-r1 index d93428749099..75ea57a258b2 100644 --- a/metadata/md5-cache/kde-frameworks/kidletime-5.102.0-r1 +++ b/metadata/md5-cache/kde-frameworks/kidletime-5.102.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 wayland? ( dev-libs/wayland >=dev-qt/qtgui-5.15. REQUIRED_USE=xscreensaver? ( X ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kidletime-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=73290e0c01b488da01b7bc3a380931a9 diff --git a/metadata/md5-cache/kde-frameworks/kidletime-5.104.0 b/metadata/md5-cache/kde-frameworks/kidletime-5.104.0 index 658c129052f7..29dff71822f4 100644 --- a/metadata/md5-cache/kde-frameworks/kidletime-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kidletime-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 wayland? ( dev-libs/wayland >=dev-qt/qtgui-5.15. REQUIRED_USE=xscreensaver? ( X ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kidletime-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5bff4fa37a516718c3b8f309506e2fda diff --git a/metadata/md5-cache/kde-frameworks/kimageformats-5.102.0-r1 b/metadata/md5-cache/kde-frameworks/kimageformats-5.102.0-r1 index d31eef60abbe..10aef51df534 100644 --- a/metadata/md5-cache/kde-frameworks/kimageformats-5.102.0-r1 +++ b/metadata/md5-cache/kde-frameworks/kimageformats-5.102.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 =kde-frameworks/karchive-5.102*:5 avif? ( >=medi RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kimageformats-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d03a4a4f3480d1d4695e1a55efe180b diff --git a/metadata/md5-cache/kde-frameworks/kimageformats-5.104.0 b/metadata/md5-cache/kde-frameworks/kimageformats-5.104.0 index 7f80c639191c..908ada65bb94 100644 --- a/metadata/md5-cache/kde-frameworks/kimageformats-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kimageformats-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 =kde-frameworks/karchive-5.104*:5 avif? ( >=medi RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kimageformats-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aca18526b364ec1044e19374cd0f8b42 diff --git a/metadata/md5-cache/kde-frameworks/kinit-5.102.0 b/metadata/md5-cache/kde-frameworks/kinit-5.102.0 index 01d3af34a49d..ee1cfc6c9909 100644 --- a/metadata/md5-cache/kde-frameworks/kinit-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kinit-5.102.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 =kde-frameworks/kconfig-5.102*:5 =kde-frameworks/kcoreaddons-5.102*:5 =kde-frameworks/kcrash-5.102*:5 =kde-frameworks/kdbusaddons-5.102*:5 =kde-frameworks/ki18n-5.102*:5 =kde-frameworks/kio-5.102*:5 =kde-frameworks/kservice-5.102*:5 =kde-frameworks/kwindowsystem-5.102*:5[X?] caps? ( sys-libs/libcap ) X? ( x11-libs/libX11 x11-libs/libxcb ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kinit-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=124bebf0a0a57d533909f325157992a3 diff --git a/metadata/md5-cache/kde-frameworks/kinit-5.104.0 b/metadata/md5-cache/kde-frameworks/kinit-5.104.0 index 15b17c62c578..90a1177d0e65 100644 --- a/metadata/md5-cache/kde-frameworks/kinit-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kinit-5.104.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 =kde-frameworks/kconfig-5.104*:5 =kde-frameworks/kcoreaddons-5.104*:5 =kde-frameworks/kcrash-5.104*:5 =kde-frameworks/kdbusaddons-5.104*:5 =kde-frameworks/ki18n-5.104*:5 =kde-frameworks/kio-5.104*:5 =kde-frameworks/kservice-5.104*:5 =kde-frameworks/kwindowsystem-5.104*:5[X?] caps? ( sys-libs/libcap ) X? ( x11-libs/libX11 x11-libs/libxcb ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kinit-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bf4a91570dc49f186b2f2a1be10b26f9 diff --git a/metadata/md5-cache/kde-frameworks/kio-5.102.0-r1 b/metadata/md5-cache/kde-frameworks/kio-5.102.0-r1 index 5c97bf8ecc4e..cd300b80a6af 100644 --- a/metadata/md5-cache/kde-frameworks/kio-5.102.0-r1 +++ b/metadata/md5-cache/kde-frameworks/kio-5.102.0-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libxml2 dev-libs/libxslt >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtde RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kio-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c14031bf4a838bcc3ebbd18407ae88dc diff --git a/metadata/md5-cache/kde-frameworks/kio-5.104.0 b/metadata/md5-cache/kde-frameworks/kio-5.104.0 index 678bfcb4b49d..cfc76cfd42b4 100644 --- a/metadata/md5-cache/kde-frameworks/kio-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kio-5.104.0 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libxml2 dev-libs/libxslt >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtde RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kio-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f5db1ad9ab9f7a52e696b90e2c122c9e diff --git a/metadata/md5-cache/kde-frameworks/kirigami-5.102.0-r1 b/metadata/md5-cache/kde-frameworks/kirigami-5.102.0-r1 index b8713a7eb8a0..1810126d811a 100644 --- a/metadata/md5-cache/kde-frameworks/kirigami-5.102.0-r1 +++ b/metadata/md5-cache/kde-frameworks/kirigami-5.102.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdecla RESTRICT=test !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kirigami2-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ce1aa981726e771cdf370bc220f361b diff --git a/metadata/md5-cache/kde-frameworks/kirigami-5.104.0 b/metadata/md5-cache/kde-frameworks/kirigami-5.104.0 index 2e225b5ce3e4..30896d7f6542 100644 --- a/metadata/md5-cache/kde-frameworks/kirigami-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kirigami-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdecla RESTRICT=test !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kirigami2-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3945736ed4a8ca1319e13d09bafb5f2a diff --git a/metadata/md5-cache/kde-frameworks/kitemmodels-5.102.0 b/metadata/md5-cache/kde-frameworks/kitemmodels-5.102.0 index d6b4385ced58..0b27bb09e11d 100644 --- a/metadata/md5-cache/kde-frameworks/kitemmodels-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kitemmodels-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=qml? ( >=dev-qt/qtdeclarative-5.15.5:5 ) >=kde-frameworks/kf-env-4 doc? RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kitemmodels-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b6f222a35bceb8155354c4bcfb4a4ef9 diff --git a/metadata/md5-cache/kde-frameworks/kitemmodels-5.104.0 b/metadata/md5-cache/kde-frameworks/kitemmodels-5.104.0 index a9df0f4741a8..bf23e0bb61c3 100644 --- a/metadata/md5-cache/kde-frameworks/kitemmodels-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kitemmodels-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=qml? ( >=dev-qt/qtdeclarative-5.15.5:5 ) >=kde-frameworks/kf-env-4 doc? RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kitemmodels-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=de6457302005834325e4e87d82c71267 diff --git a/metadata/md5-cache/kde-frameworks/kitemviews-5.102.0 b/metadata/md5-cache/kde-frameworks/kitemviews-5.102.0 index 574326653824..03daea564a1c 100644 --- a/metadata/md5-cache/kde-frameworks/kitemviews-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kitemviews-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kf- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kitemviews-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2e9c3c9ee35279cfd82cb7d424a189b4 diff --git a/metadata/md5-cache/kde-frameworks/kitemviews-5.104.0 b/metadata/md5-cache/kde-frameworks/kitemviews-5.104.0 index 7e0c3210cd75..f4a6201ab8f9 100644 --- a/metadata/md5-cache/kde-frameworks/kitemviews-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kitemviews-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kf- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kitemviews-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c5a533abf5bc3789b82e8c16ad71e527 diff --git a/metadata/md5-cache/kde-frameworks/kjobwidgets-5.102.0 b/metadata/md5-cache/kde-frameworks/kjobwidgets-5.102.0 index 4a0f743be6a7..9d9688c43850 100644 --- a/metadata/md5-cache/kde-frameworks/kjobwidgets-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kjobwidgets-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kjobwidgets-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b1434d513f2423d0ace5e43e0281b528 diff --git a/metadata/md5-cache/kde-frameworks/kjobwidgets-5.104.0 b/metadata/md5-cache/kde-frameworks/kjobwidgets-5.104.0 index 064427932129..caf76a76e8c7 100644 --- a/metadata/md5-cache/kde-frameworks/kjobwidgets-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kjobwidgets-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kjobwidgets-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8d9d48ebce585ecad4a4e60bb54ec6be diff --git a/metadata/md5-cache/kde-frameworks/kjs-5.102.0 b/metadata/md5-cache/kde-frameworks/kjs-5.102.0 index a38ea94932ab..049bd8f56227 100644 --- a/metadata/md5-cache/kde-frameworks/kjs-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kjs-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libpcre >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/portingAids/kjs-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e98ba7b8c8ab9cbe0a098b1b073c9ef9 diff --git a/metadata/md5-cache/kde-frameworks/kjs-5.104.0 b/metadata/md5-cache/kde-frameworks/kjs-5.104.0 index bad8460fe44d..71bcfd7e78b1 100644 --- a/metadata/md5-cache/kde-frameworks/kjs-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kjs-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libpcre >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/portingAids/kjs-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d12f227c292e90cedb73286b9550ce77 diff --git a/metadata/md5-cache/kde-frameworks/knewstuff-5.102.0-r1 b/metadata/md5-cache/kde-frameworks/knewstuff-5.102.0-r1 index 55a688d66289..deaca66cd3a9 100644 --- a/metadata/md5-cache/kde-frameworks/knewstuff-5.102.0-r1 +++ b/metadata/md5-cache/kde-frameworks/knewstuff-5.102.0-r1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 =kde-frameworks/attica-5.102*:5 =kde-frameworks/karchive-5.102*:5 =kde-frameworks/kcompletion-5.102*:5 =kde-frameworks/kconfig-5.102*:5 =kde-frameworks/kcoreaddons-5.102*:5 =kde-frameworks/ki18n-5.102*:5 =kde-frameworks/kiconthemes-5.102*:5 =kde-frameworks/kio-5.102*:5 =kde-frameworks/kitemviews-5.102*:5 =kde-frameworks/kpackage-5.102*:5 =kde-frameworks/kservice-5.102*:5 =kde-frameworks/ktextwidgets-5.102*:5 =kde-frameworks/kwidgetsaddons-5.102*:5 =kde-frameworks/kxmlgui-5.102*:5 opds? ( =kde-frameworks/syndication-5.102*:5 ) >=kde-frameworks/kirigami-5.102:5 >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/knewstuff-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=698fb098913008e8875aaf1383ccd518 diff --git a/metadata/md5-cache/kde-frameworks/knewstuff-5.104.0 b/metadata/md5-cache/kde-frameworks/knewstuff-5.104.0 index ad8e2722bb0e..e24b3ad9f926 100644 --- a/metadata/md5-cache/kde-frameworks/knewstuff-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/knewstuff-5.104.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 =kde-frameworks/attica-5.104*:5 =kde-frameworks/karchive-5.104*:5 =kde-frameworks/kcompletion-5.104*:5 =kde-frameworks/kconfig-5.104*:5 =kde-frameworks/kcoreaddons-5.104*:5 =kde-frameworks/ki18n-5.104*:5 =kde-frameworks/kiconthemes-5.104*:5 =kde-frameworks/kio-5.104*:5 =kde-frameworks/kitemviews-5.104*:5 =kde-frameworks/kpackage-5.104*:5 =kde-frameworks/kservice-5.104*:5 =kde-frameworks/ktextwidgets-5.104*:5 =kde-frameworks/kwidgetsaddons-5.104*:5 =kde-frameworks/kxmlgui-5.104*:5 opds? ( =kde-frameworks/syndication-5.104*:5 ) >=kde-frameworks/kirigami-5.104:5 >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/knewstuff-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a318924201b8c4eaefa4135f04d4091a diff --git a/metadata/md5-cache/kde-frameworks/knotifications-5.102.0 b/metadata/md5-cache/kde-frameworks/knotifications-5.102.0 index 917a28d08a12..b374f3b8ea13 100644 --- a/metadata/md5-cache/kde-frameworks/knotifications-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/knotifications-5.102.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kconfig-5.102*:5 =kde-frameworks/kcoreaddons-5.102*:5 =kde-frameworks/kwindowsystem-5.102*:5[X?] dbus? ( dev-libs/libdbusmenu-qt[qt5(+)] ) !phonon? ( media-libs/libcanberra ) phonon? ( >=media-libs/phonon-4.11.0 ) qml? ( >=dev-qt/qtdeclarative-5.15.5:5 ) speech? ( >=dev-qt/qtspeech-5.15.5:5 ) X? ( >=dev-qt/qtx11extras-5.15.5:5 x11-libs/libX11 x11-libs/libXtst ) >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/knotifications-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e5eadf74b0042f952fb747337b1f4272 diff --git a/metadata/md5-cache/kde-frameworks/knotifications-5.104.0 b/metadata/md5-cache/kde-frameworks/knotifications-5.104.0 index 0307484f4d11..6917635e8c49 100644 --- a/metadata/md5-cache/kde-frameworks/knotifications-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/knotifications-5.104.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kconfig-5.104*:5 =kde-frameworks/kcoreaddons-5.104*:5 =kde-frameworks/kwindowsystem-5.104*:5[X?] dbus? ( dev-libs/libdbusmenu-qt[qt5(+)] ) !phonon? ( media-libs/libcanberra ) phonon? ( >=media-libs/phonon-4.11.0 ) qml? ( >=dev-qt/qtdeclarative-5.15.5:5 ) speech? ( >=dev-qt/qtspeech-5.15.5:5 ) X? ( >=dev-qt/qtx11extras-5.15.5:5 x11-libs/libX11 x11-libs/libXtst ) >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/knotifications-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bc5fbfec4f90ee3ca03baad16636fe6f diff --git a/metadata/md5-cache/kde-frameworks/knotifyconfig-5.102.0 b/metadata/md5-cache/kde-frameworks/knotifyconfig-5.102.0 index 8e757ae8eab4..bb70cd8b8321 100644 --- a/metadata/md5-cache/kde-frameworks/knotifyconfig-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/knotifyconfig-5.102.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kcompletion-5.102*:5 =kde-frameworks/kconfig-5.102*:5 =kde-frameworks/ki18n-5.102*:5 =kde-frameworks/kio-5.102*:5 !phonon? ( media-libs/libcanberra ) phonon? ( >=media-libs/phonon-4.11.0 ) >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/knotifyconfig-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2ec2b645ae7e7ca8c3c6b26d543bae21 diff --git a/metadata/md5-cache/kde-frameworks/knotifyconfig-5.104.0 b/metadata/md5-cache/kde-frameworks/knotifyconfig-5.104.0 index 832b43a2a686..7bde7a92a640 100644 --- a/metadata/md5-cache/kde-frameworks/knotifyconfig-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/knotifyconfig-5.104.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kcompletion-5.104*:5 =kde-frameworks/kconfig-5.104*:5 =kde-frameworks/ki18n-5.104*:5 =kde-frameworks/kio-5.104*:5 !phonon? ( media-libs/libcanberra ) phonon? ( >=media-libs/phonon-4.11.0 ) >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/knotifyconfig-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b59dfd39e07791b76923da579abe37d6 diff --git a/metadata/md5-cache/kde-frameworks/kpackage-5.102.0 b/metadata/md5-cache/kde-frameworks/kpackage-5.102.0 index 6835cf75e603..f5c10d608a3f 100644 --- a/metadata/md5-cache/kde-frameworks/kpackage-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kpackage-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 =kde-frameworks/karchive-5.102*:5 =kde-framewor RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kpackage-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=12576369c20da4e31442cdd67da5c8ee diff --git a/metadata/md5-cache/kde-frameworks/kpackage-5.104.0 b/metadata/md5-cache/kde-frameworks/kpackage-5.104.0 index bd37a70f07cb..4cf84c1b58dd 100644 --- a/metadata/md5-cache/kde-frameworks/kpackage-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kpackage-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 =kde-frameworks/karchive-5.104*:5 =kde-framewor RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kpackage-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3375fbe85c754baac81f20bbc4554064 diff --git a/metadata/md5-cache/kde-frameworks/kparts-5.102.0 b/metadata/md5-cache/kde-frameworks/kparts-5.102.0 index 5e3f80d737fa..ae62fe2cf46e 100644 --- a/metadata/md5-cache/kde-frameworks/kparts-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kparts-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15. RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kparts-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4b36fc7ac2410acc5e25c848a6c98222 diff --git a/metadata/md5-cache/kde-frameworks/kparts-5.104.0 b/metadata/md5-cache/kde-frameworks/kparts-5.104.0 index b66fd567a741..f8cfb2f794c3 100644 --- a/metadata/md5-cache/kde-frameworks/kparts-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kparts-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15. RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kparts-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=abb333d7a91247e0ce7be9e6c649548b diff --git a/metadata/md5-cache/kde-frameworks/kpeople-5.102.0 b/metadata/md5-cache/kde-frameworks/kpeople-5.102.0 index c7c94c43bfdf..29321cf3b407 100644 --- a/metadata/md5-cache/kde-frameworks/kpeople-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kpeople-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kpeople-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ec09df26dd54802baf9466618299c757 diff --git a/metadata/md5-cache/kde-frameworks/kpeople-5.104.0 b/metadata/md5-cache/kde-frameworks/kpeople-5.104.0 index 627fd08160d3..914a3921352a 100644 --- a/metadata/md5-cache/kde-frameworks/kpeople-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kpeople-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kpeople-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f0b9dc34b3d3cbe6bd160ae53ea61b13 diff --git a/metadata/md5-cache/kde-frameworks/kplotting-5.102.0 b/metadata/md5-cache/kde-frameworks/kplotting-5.102.0 index 937c78cdc721..1a0abe2b5ed0 100644 --- a/metadata/md5-cache/kde-frameworks/kplotting-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kplotting-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kf- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kplotting-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c3d14e7801c58286fa42861bbdc10fdc diff --git a/metadata/md5-cache/kde-frameworks/kplotting-5.104.0 b/metadata/md5-cache/kde-frameworks/kplotting-5.104.0 index 28cec31b2e99..ebba5e262384 100644 --- a/metadata/md5-cache/kde-frameworks/kplotting-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kplotting-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kf- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kplotting-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4e8a7fa5b639034d0c2f8c1b98d0de9 diff --git a/metadata/md5-cache/kde-frameworks/kpty-5.102.0 b/metadata/md5-cache/kde-frameworks/kpty-5.102.0 index ec14bc82aa91..7cc9ba96e539 100644 --- a/metadata/md5-cache/kde-frameworks/kpty-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kpty-5.102.0 @@ -12,5 +12,5 @@ RDEPEND==kde-frameworks/kcoreaddons-5.102*:5 =kde-frameworks/ki18n-5.102*:5 sys- RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kpty-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=333cc3f4a46e5c50889c9c6b3f9eb0a9 diff --git a/metadata/md5-cache/kde-frameworks/kpty-5.104.0 b/metadata/md5-cache/kde-frameworks/kpty-5.104.0 index 0f3151e6d853..2744c21dff6d 100644 --- a/metadata/md5-cache/kde-frameworks/kpty-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kpty-5.104.0 @@ -12,5 +12,5 @@ RDEPEND==kde-frameworks/kcoreaddons-5.104*:5 =kde-frameworks/ki18n-5.104*:5 sys- RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kpty-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c7a5a5ea87f419590cba3896696e888b diff --git a/metadata/md5-cache/kde-frameworks/kquickcharts-5.102.0 b/metadata/md5-cache/kde-frameworks/kquickcharts-5.102.0 index 094fd1b00e96..ea238979c755 100644 --- a/metadata/md5-cache/kde-frameworks/kquickcharts-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kquickcharts-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtquick RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kquickcharts-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a7cd855324683fefccd7946b9c06f2c9 diff --git a/metadata/md5-cache/kde-frameworks/kquickcharts-5.104.0 b/metadata/md5-cache/kde-frameworks/kquickcharts-5.104.0 index 12d7dbdff117..4ec9072e242e 100644 --- a/metadata/md5-cache/kde-frameworks/kquickcharts-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kquickcharts-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtquick RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kquickcharts-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=419958cf3d434f62f1b40cba11e5dc65 diff --git a/metadata/md5-cache/kde-frameworks/kross-5.102.0 b/metadata/md5-cache/kde-frameworks/kross-5.102.0 index a8a5006c6d0e..04816fa56663 100644 --- a/metadata/md5-cache/kde-frameworks/kross-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kross-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtscript-5.15.5:5 >=dev-qt/qtwidgets-5. RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/portingAids/kross-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=92caf896a92eaf0342977ab663c3c507 diff --git a/metadata/md5-cache/kde-frameworks/kross-5.104.0 b/metadata/md5-cache/kde-frameworks/kross-5.104.0 index 55144c7d7eb7..7f76b6b49e74 100644 --- a/metadata/md5-cache/kde-frameworks/kross-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kross-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtscript-5.15.5:5 >=dev-qt/qtwidgets-5. RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/portingAids/kross-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cac04b95c3c22bf37b22370d8ce63ba9 diff --git a/metadata/md5-cache/kde-frameworks/krunner-5.102.0 b/metadata/md5-cache/kde-frameworks/krunner-5.102.0 index 2768c9fe9e86..dbf9570a3c06 100644 --- a/metadata/md5-cache/kde-frameworks/krunner-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/krunner-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/krunner-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4dfc62b72ae0df0e46fe43b70cd723bb diff --git a/metadata/md5-cache/kde-frameworks/krunner-5.104.0 b/metadata/md5-cache/kde-frameworks/krunner-5.104.0 index 718773957897..75e439393640 100644 --- a/metadata/md5-cache/kde-frameworks/krunner-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/krunner-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/krunner-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=89969be28935c92dc29c25e60b68f5db diff --git a/metadata/md5-cache/kde-frameworks/kservice-5.102.0 b/metadata/md5-cache/kde-frameworks/kservice-5.102.0 index 7b123bfc1fc0..27565f51444d 100644 --- a/metadata/md5-cache/kde-frameworks/kservice-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kservice-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 =kde-frameworks/kconfig RESTRICT=test !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kservice-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0dd77e84651d612182e422dfa182f4f2 diff --git a/metadata/md5-cache/kde-frameworks/kservice-5.104.0 b/metadata/md5-cache/kde-frameworks/kservice-5.104.0 index d497bb2cc3c4..b31539701090 100644 --- a/metadata/md5-cache/kde-frameworks/kservice-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kservice-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 =kde-frameworks/kconfig RESTRICT=test !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kservice-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e8739693bf73c79c2ca509104eb919b6 diff --git a/metadata/md5-cache/kde-frameworks/ktexteditor-5.102.0 b/metadata/md5-cache/kde-frameworks/ktexteditor-5.102.0 index 4270b46bcfc0..1b26d0122468 100644 --- a/metadata/md5-cache/kde-frameworks/ktexteditor-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/ktexteditor-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprint RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/ktexteditor-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=174b0c3a0ab3512da297804832e67095 diff --git a/metadata/md5-cache/kde-frameworks/ktexteditor-5.104.0 b/metadata/md5-cache/kde-frameworks/ktexteditor-5.104.0 index 0815f30461d7..9576f8e21066 100644 --- a/metadata/md5-cache/kde-frameworks/ktexteditor-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/ktexteditor-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprint RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/ktexteditor-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=db07c88c80decec6c7f8712d95ae2db1 diff --git a/metadata/md5-cache/kde-frameworks/ktextwidgets-5.102.0 b/metadata/md5-cache/kde-frameworks/ktextwidgets-5.102.0 index 9f903f2abd8a..ad25463da51a 100644 --- a/metadata/md5-cache/kde-frameworks/ktextwidgets-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/ktextwidgets-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kcom RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/ktextwidgets-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d7eedf24f42d4b262805e454e80dd870 diff --git a/metadata/md5-cache/kde-frameworks/ktextwidgets-5.104.0 b/metadata/md5-cache/kde-frameworks/ktextwidgets-5.104.0 index 5b34f15f585d..630a522606d9 100644 --- a/metadata/md5-cache/kde-frameworks/ktextwidgets-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/ktextwidgets-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 =kde-frameworks/kcom RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/ktextwidgets-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d6c5554ca6dd53692cdb3c3fd9a1c566 diff --git a/metadata/md5-cache/kde-frameworks/kunitconversion-5.102.0 b/metadata/md5-cache/kde-frameworks/kunitconversion-5.102.0 index c054deee53f1..7458268c81a8 100644 --- a/metadata/md5-cache/kde-frameworks/kunitconversion-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kunitconversion-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtnetwork-5.15.5:5 =kde-frameworks/ki18n-5.102*:5 >=kde-framewo RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kunitconversion-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=afe6503f404f1d6e1fd92d476335d4b9 diff --git a/metadata/md5-cache/kde-frameworks/kunitconversion-5.104.0 b/metadata/md5-cache/kde-frameworks/kunitconversion-5.104.0 index d672216550f8..c10c3771dc64 100644 --- a/metadata/md5-cache/kde-frameworks/kunitconversion-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kunitconversion-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtnetwork-5.15.5:5 =kde-frameworks/ki18n-5.104*:5 >=kde-framewo RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kunitconversion-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3cd5a064139edbac1fe467c2c2fbec32 diff --git a/metadata/md5-cache/kde-frameworks/kwallet-5.102.0-r1 b/metadata/md5-cache/kde-frameworks/kwallet-5.102.0-r1 index 2961854548cd..abb5ce519202 100644 --- a/metadata/md5-cache/kde-frameworks/kwallet-5.102.0-r1 +++ b/metadata/md5-cache/kde-frameworks/kwallet-5.102.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=app-crypt/qca-2.3.1:2[qt5(+)] dev-libs/libgcrypt:0= >=dev-qt/qtdbus-5. RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kwallet-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e968580c6b1c6197aed466dc306414ea diff --git a/metadata/md5-cache/kde-frameworks/kwallet-5.104.0 b/metadata/md5-cache/kde-frameworks/kwallet-5.104.0 index a502baf7cf04..62ecb3e7d4e1 100644 --- a/metadata/md5-cache/kde-frameworks/kwallet-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kwallet-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=app-crypt/qca-2.3.1:2[qt5(+)] dev-libs/libgcrypt:0= >=dev-qt/qtdbus-5. RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kwallet-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bb5df7eefc17d3e65698949ca46002cb diff --git a/metadata/md5-cache/kde-frameworks/kwayland-5.102.0 b/metadata/md5-cache/kde-frameworks/kwayland-5.102.0 index 36d6bd5be161..8bf1506826f1 100644 --- a/metadata/md5-cache/kde-frameworks/kwayland-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kwayland-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/wayland-1.15.0 >=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kwayland-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=79c28dd85c3864011ebaebc31da5899f diff --git a/metadata/md5-cache/kde-frameworks/kwayland-5.104.0 b/metadata/md5-cache/kde-frameworks/kwayland-5.104.0 index bdd1ce2764c9..e4fe24f161eb 100644 --- a/metadata/md5-cache/kde-frameworks/kwayland-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kwayland-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/wayland-1.15.0 >=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kwayland-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d7d7e7264baa0752abd1746887b946d5 diff --git a/metadata/md5-cache/kde-frameworks/kwidgetsaddons-5.102.0 b/metadata/md5-cache/kde-frameworks/kwidgetsaddons-5.102.0 index badd9c028fdf..924176daa9a3 100644 --- a/metadata/md5-cache/kde-frameworks/kwidgetsaddons-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kwidgetsaddons-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kf- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kwidgetsaddons-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f021d03c6be89472e133d9b1d7d08d21 diff --git a/metadata/md5-cache/kde-frameworks/kwidgetsaddons-5.104.0 b/metadata/md5-cache/kde-frameworks/kwidgetsaddons-5.104.0 index d582dc2bf2b9..a810d97ef478 100644 --- a/metadata/md5-cache/kde-frameworks/kwidgetsaddons-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kwidgetsaddons-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kf- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kwidgetsaddons-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c09080e3475b04340ffafb6ce4f960af diff --git a/metadata/md5-cache/kde-frameworks/kwindowsystem-5.102.0-r1 b/metadata/md5-cache/kde-frameworks/kwindowsystem-5.102.0-r1 index e66145ef9bf2..42bbbe6fa3d4 100644 --- a/metadata/md5-cache/kde-frameworks/kwindowsystem-5.102.0-r1 +++ b/metadata/md5-cache/kde-frameworks/kwindowsystem-5.102.0-r1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 X? ( >=dev-qt/qtx11extras-5.15.5:5 x11-libs/libX RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kwindowsystem-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=070e64de0bf43719bdd00b8f208d273a diff --git a/metadata/md5-cache/kde-frameworks/kwindowsystem-5.104.0 b/metadata/md5-cache/kde-frameworks/kwindowsystem-5.104.0 index 2f87826775da..65a55819f8cd 100644 --- a/metadata/md5-cache/kde-frameworks/kwindowsystem-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kwindowsystem-5.104.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 X? ( >=dev-qt/qtx11extras-5.15.5:5 x11-libs/libX RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kwindowsystem-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4f256392b7d59e1d4c1a0aea18e2294b diff --git a/metadata/md5-cache/kde-frameworks/kxmlgui-5.102.0 b/metadata/md5-cache/kde-frameworks/kxmlgui-5.102.0 index 429c7dc0eb74..cfdc4cab3f57 100644 --- a/metadata/md5-cache/kde-frameworks/kxmlgui-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/kxmlgui-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtcore-5.15.5:5= >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/kxmlgui-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cb5b66ee2b08cfb81d95b514f1e21baa diff --git a/metadata/md5-cache/kde-frameworks/kxmlgui-5.104.0 b/metadata/md5-cache/kde-frameworks/kxmlgui-5.104.0 index 9e014231b92c..1de8cb10a7bc 100644 --- a/metadata/md5-cache/kde-frameworks/kxmlgui-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/kxmlgui-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtcore-5.15.5:5= >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/kxmlgui-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e5c67ae69d99b8934fa9621b4964901 diff --git a/metadata/md5-cache/kde-frameworks/modemmanager-qt-5.102.0 b/metadata/md5-cache/kde-frameworks/modemmanager-qt-5.102.0 index df8800dfbcba..ea2eb56a2cf8 100644 --- a/metadata/md5-cache/kde-frameworks/modemmanager-qt-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/modemmanager-qt-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 net-misc/modemmanager > RESTRICT=test !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/modemmanager-qt-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=81d8bfed543b5df1f96ca431a8d86f72 diff --git a/metadata/md5-cache/kde-frameworks/modemmanager-qt-5.104.0 b/metadata/md5-cache/kde-frameworks/modemmanager-qt-5.104.0 index 1dc11d9ec266..1f4af6483012 100644 --- a/metadata/md5-cache/kde-frameworks/modemmanager-qt-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/modemmanager-qt-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 net-misc/modemmanager > RESTRICT=test !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/modemmanager-qt-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cf1649a87524f1015e8ffffb9fe33f7f diff --git a/metadata/md5-cache/kde-frameworks/networkmanager-qt-5.102.0 b/metadata/md5-cache/kde-frameworks/networkmanager-qt-5.102.0 index 9cf98abd71a8..3854dd35390f 100644 --- a/metadata/md5-cache/kde-frameworks/networkmanager-qt-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/networkmanager-qt-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=n RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/networkmanager-qt-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cd668ae3f1e2ea3833e6f9f384ce5854 diff --git a/metadata/md5-cache/kde-frameworks/networkmanager-qt-5.104.0 b/metadata/md5-cache/kde-frameworks/networkmanager-qt-5.104.0 index 927ed985bf59..c7d233e5d1d3 100644 --- a/metadata/md5-cache/kde-frameworks/networkmanager-qt-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/networkmanager-qt-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=n RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/networkmanager-qt-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7bdf6ab9d897a92fd880eb1c297d704f diff --git a/metadata/md5-cache/kde-frameworks/oxygen-icons-5.102.0 b/metadata/md5-cache/kde-frameworks/oxygen-icons-5.102.0 index ac6a423f7db7..eb083f95a3a5 100644 --- a/metadata/md5-cache/kde-frameworks/oxygen-icons-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/oxygen-icons-5.102.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-3 RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/oxygen-icons5-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fb973e9ea5c6919ac96e4ca4d42a57dc diff --git a/metadata/md5-cache/kde-frameworks/oxygen-icons-5.104.0 b/metadata/md5-cache/kde-frameworks/oxygen-icons-5.104.0 index 1ac959b95451..f6be757091cc 100644 --- a/metadata/md5-cache/kde-frameworks/oxygen-icons-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/oxygen-icons-5.104.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-3 RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/oxygen-icons5-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4628522513ff343654392ec002e6049f diff --git a/metadata/md5-cache/kde-frameworks/plasma-5.102.0-r3 b/metadata/md5-cache/kde-frameworks/plasma-5.102.0-r3 index c42aacfa8361..424222503289 100644 --- a/metadata/md5-cache/kde-frameworks/plasma-5.102.0-r3 +++ b/metadata/md5-cache/kde-frameworks/plasma-5.102.0-r3 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/plasma-framework-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d723a6174ec155f28547eced0b234e4d diff --git a/metadata/md5-cache/kde-frameworks/plasma-5.104.0 b/metadata/md5-cache/kde-frameworks/plasma-5.104.0 index 4a7240d6f573..988e4e5ccd1f 100644 --- a/metadata/md5-cache/kde-frameworks/plasma-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/plasma-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/plasma-framework-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4d6a03526b3627049702d55cb233977a diff --git a/metadata/md5-cache/kde-frameworks/prison-5.102.0 b/metadata/md5-cache/kde-frameworks/prison-5.102.0 index b258beeab648..a540c2574de4 100644 --- a/metadata/md5-cache/kde-frameworks/prison-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/prison-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 media-gfx/qrencod RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/prison-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e036e87adcbff2b2ed5f43aa3ecaf7f9 diff --git a/metadata/md5-cache/kde-frameworks/prison-5.104.0 b/metadata/md5-cache/kde-frameworks/prison-5.104.0 index 80ca8660560b..ef442cfa8676 100644 --- a/metadata/md5-cache/kde-frameworks/prison-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/prison-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 media-gfx/qrencod RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/prison-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5704678c892e908bd855671058257035 diff --git a/metadata/md5-cache/kde-frameworks/purpose-5.102.0 b/metadata/md5-cache/kde-frameworks/purpose-5.102.0 index bf187745d9d1..2256a13fcd86 100644 --- a/metadata/md5-cache/kde-frameworks/purpose-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/purpose-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwo RESTRICT=test !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/purpose-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e07db7d5853df33f41c549b68f1a9228 diff --git a/metadata/md5-cache/kde-frameworks/purpose-5.104.0 b/metadata/md5-cache/kde-frameworks/purpose-5.104.0 index 35e405008815..53e46dcc8479 100644 --- a/metadata/md5-cache/kde-frameworks/purpose-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/purpose-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwo RESTRICT=test !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/purpose-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=417ddf2bf310ffdd50627dfcd3daea3d diff --git a/metadata/md5-cache/kde-frameworks/qqc2-desktop-style-5.102.0 b/metadata/md5-cache/kde-frameworks/qqc2-desktop-style-5.102.0 index a69771ce1e54..1dcf2b5c6986 100644 --- a/metadata/md5-cache/kde-frameworks/qqc2-desktop-style-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/qqc2-desktop-style-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5= >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidg RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/qqc2-desktop-style-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=be6f2da4cf63319329b4cec5bd6f6f9a diff --git a/metadata/md5-cache/kde-frameworks/qqc2-desktop-style-5.104.0 b/metadata/md5-cache/kde-frameworks/qqc2-desktop-style-5.104.0 index 945dc31105cf..f4380aa8c8a9 100644 --- a/metadata/md5-cache/kde-frameworks/qqc2-desktop-style-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/qqc2-desktop-style-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5= >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidg RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/qqc2-desktop-style-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a3a4246754bfbea21aa51360fef21bb4 diff --git a/metadata/md5-cache/kde-frameworks/solid-5.102.0 b/metadata/md5-cache/kde-frameworks/solid-5.102.0 index d29cb2db7ffa..31440806e3cf 100644 --- a/metadata/md5-cache/kde-frameworks/solid-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/solid-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/solid-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=470f66c64f8b910e74175d7ba6079765 diff --git a/metadata/md5-cache/kde-frameworks/solid-5.104.0 b/metadata/md5-cache/kde-frameworks/solid-5.104.0 index 2dbc113d15fe..5b94c0fe215c 100644 --- a/metadata/md5-cache/kde-frameworks/solid-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/solid-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/solid-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b1d076a1749e5f637f81143fb91761c4 diff --git a/metadata/md5-cache/kde-frameworks/sonnet-5.102.0 b/metadata/md5-cache/kde-frameworks/sonnet-5.102.0 index 5fbdedbde2c1..308568d70c57 100644 --- a/metadata/md5-cache/kde-frameworks/sonnet-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/sonnet-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 aspell? ( app-text/a RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/sonnet-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0cc636b61c8e47115bd23e6085bad506 diff --git a/metadata/md5-cache/kde-frameworks/sonnet-5.104.0 b/metadata/md5-cache/kde-frameworks/sonnet-5.104.0 index f4325b349e69..716e65f9a4cb 100644 --- a/metadata/md5-cache/kde-frameworks/sonnet-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/sonnet-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 aspell? ( app-text/a RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/sonnet-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ef14f43642224666b82f44258e3b8f2 diff --git a/metadata/md5-cache/kde-frameworks/syndication-5.102.0 b/metadata/md5-cache/kde-frameworks/syndication-5.102.0 index 9340ec445f6c..7e87ed4dc744 100644 --- a/metadata/md5-cache/kde-frameworks/syndication-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/syndication-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtxml-5.15.5:5 =kde-frameworks/kcodecs-5.102*:5 >=kde-framework RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/syndication-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6d37837f97516fb16b9aa3adb997a04e diff --git a/metadata/md5-cache/kde-frameworks/syndication-5.104.0 b/metadata/md5-cache/kde-frameworks/syndication-5.104.0 index 628ac1fe3f7d..0f2188816f8f 100644 --- a/metadata/md5-cache/kde-frameworks/syndication-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/syndication-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtxml-5.15.5:5 =kde-frameworks/kcodecs-5.104*:5 >=kde-framework RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/syndication-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=12ae3eb583abd3506cdbb8ef33c12f61 diff --git a/metadata/md5-cache/kde-frameworks/syntax-highlighting-5.102.0 b/metadata/md5-cache/kde-frameworks/syntax-highlighting-5.102.0 index 133e99a38039..283fe9e517c7 100644 --- a/metadata/md5-cache/kde-frameworks/syntax-highlighting-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/syntax-highlighting-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwo RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/syntax-highlighting-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3ad9b362e687ef61cce44c5af70fa84f diff --git a/metadata/md5-cache/kde-frameworks/syntax-highlighting-5.104.0 b/metadata/md5-cache/kde-frameworks/syntax-highlighting-5.104.0 index 11c0455611a2..dcc72bedcfc8 100644 --- a/metadata/md5-cache/kde-frameworks/syntax-highlighting-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/syntax-highlighting-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwo RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/syntax-highlighting-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=87c64ff3e0ea7559d941c6ccd4c1a6d8 diff --git a/metadata/md5-cache/kde-frameworks/threadweaver-5.102.0 b/metadata/md5-cache/kde-frameworks/threadweaver-5.102.0 index 9c6c2b850908..4832e5e93788 100644 --- a/metadata/md5-cache/kde-frameworks/threadweaver-5.102.0 +++ b/metadata/md5-cache/kde-frameworks/threadweaver-5.102.0 @@ -12,5 +12,5 @@ RDEPEND=>=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 RESTRICT=!test? ( test ) SLOT=5/5.102 SRC_URI=mirror://kde/stable/frameworks/5.102/threadweaver-5.102.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b3275da3c50fdc81b24d7298894d8759 diff --git a/metadata/md5-cache/kde-frameworks/threadweaver-5.104.0 b/metadata/md5-cache/kde-frameworks/threadweaver-5.104.0 index e49712b41fb7..abacbbaeec91 100644 --- a/metadata/md5-cache/kde-frameworks/threadweaver-5.104.0 +++ b/metadata/md5-cache/kde-frameworks/threadweaver-5.104.0 @@ -12,5 +12,5 @@ RDEPEND=>=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 RESTRICT=!test? ( test ) SLOT=5/5.104 SRC_URI=mirror://kde/stable/frameworks/5.104/threadweaver-5.104.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 frameworks.kde.org 6556398a532490b4d6d03158a82e455a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=15931d4baffd4b14088b1ff737d76055 diff --git a/metadata/md5-cache/kde-misc/Manifest.gz b/metadata/md5-cache/kde-misc/Manifest.gz index 1e7998872f36..ea26506d5789 100644 Binary files a/metadata/md5-cache/kde-misc/Manifest.gz and b/metadata/md5-cache/kde-misc/Manifest.gz differ diff --git a/metadata/md5-cache/kde-misc/basket-2.49b b/metadata/md5-cache/kde-misc/basket-2.49b index 440bfca2be00..b094348a6f0b 100644 --- a/metadata/md5-cache/kde-misc/basket-2.49b +++ b/metadata/md5-cache/kde-misc/basket-2.49b @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.12.3:5 >=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtnetwork-5.12 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/basket-notepads/basket/archive/v2.49b.tar.gz -> basket-2.49b.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a79268d9983f63ddd8a09a04df6a617f diff --git a/metadata/md5-cache/kde-misc/bismuth-3.1.4 b/metadata/md5-cache/kde-misc/bismuth-3.1.4 index 4f9587b7a043..8550b86b6061 100644 --- a/metadata/md5-cache/kde-misc/bismuth-3.1.4 +++ b/metadata/md5-cache/kde-misc/bismuth-3.1.4 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.0:5 >=dev-qt/qtquickcontrols2-5.15.0:5 >=dev-qt/qts RESTRICT=test SLOT=0 SRC_URI=https://github.com/Bismuth-Forge/bismuth/archive/refs/tags/v3.1.4.tar.gz -> bismuth-3.1.4.tar.gz https://github.com/Bismuth-Forge/bismuth/releases/download/v3.1.4/binary-release.tar.gz -> bismuth-3.1.4-binary-release.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=744c6692045e60ca5268e38aad5b8264 diff --git a/metadata/md5-cache/kde-misc/colord-kde-22.12.3 b/metadata/md5-cache/kde-misc/colord-kde-22.12.3 index 9a00efad152c..898f4b33ed8f 100644 --- a/metadata/md5-cache/kde-misc/colord-kde-22.12.3 +++ b/metadata/md5-cache/kde-misc/colord-kde-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcmutils-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 media-libs/lcms:2 X? ( >=dev-qt/qtx11extras-5.15.5:5 x11-libs/libX11 x11-libs/libxcb ) kde-plasma/kde-cli-tools:5 x11-misc/colord || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/colord-kde-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a35b7862395cd14b4c1bfdcdc65f7278 diff --git a/metadata/md5-cache/kde-misc/gmail-feed-1.2 b/metadata/md5-cache/kde-misc/gmail-feed-1.2 index a94732968829..e70173e314ed 100644 --- a/metadata/md5-cache/kde-misc/gmail-feed-1.2 +++ b/metadata/md5-cache/kde-misc/gmail-feed-1.2 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ RDEPEND=dev-qt/qtdeclarative:5 dev-qt/qtnetwork:5 kde-apps/kaccounts-integration:5 kde-frameworks/kcoreaddons:5 kde-frameworks/knotifications:5 kde-frameworks/plasma:5 net-libs/accounts-qt dev-qt/qtquickcontrols:5 dev-qt/qtxmlpatterns:5[qml] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=https://github.com/anthon38/gmailfeed/archive/v1.2.tar.gz -> gmail-feed-1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f39a26b76bb920b4e59c4f3f7448b14a diff --git a/metadata/md5-cache/kde-misc/kdeconnect-22.08.3 b/metadata/md5-cache/kde-misc/kdeconnect-22.08.3 index 0dd6dddf4cbd..d62589718ed5 100644 --- a/metadata/md5-cache/kde-misc/kdeconnect-22.08.3 +++ b/metadata/md5-cache/kde-misc/kdeconnect-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+),ssl] >=dev-libs/wayland-1.15.0 >=dev-qt/q RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kdeconnect-kde-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=779c4480d0031700a4e9499a2043c61f diff --git a/metadata/md5-cache/kde-misc/kdeconnect-22.12.3 b/metadata/md5-cache/kde-misc/kdeconnect-22.12.3 index c241a08fdc37..64205e3a8945 100644 --- a/metadata/md5-cache/kde-misc/kdeconnect-22.12.3 +++ b/metadata/md5-cache/kde-misc/kdeconnect-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+),ssl] >=dev-libs/wayland-1.15.0 >=dev-qt/q RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kdeconnect-kde-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4a781b1b4471d00f37e34b157dd2610e diff --git a/metadata/md5-cache/kde-misc/kdiff3-1.10.0 b/metadata/md5-cache/kde-misc/kdiff3-1.10.0 index e269010030e7..cc39c48fdd33 100644 --- a/metadata/md5-cache/kde-misc/kdiff3-1.10.0 +++ b/metadata/md5-cache/kde-misc/kdiff3-1.10.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidg RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kdiff3/kdiff3-1.10.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a3996126cd3b9c02146331dc66136834 diff --git a/metadata/md5-cache/kde-misc/kdiff3-1.9.6 b/metadata/md5-cache/kde-misc/kdiff3-1.9.6 index 2ff698a2d5d9..2a62935d54dd 100644 --- a/metadata/md5-cache/kde-misc/kdiff3-1.9.6 +++ b/metadata/md5-cache/kde-misc/kdiff3-1.9.6 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtprintsupport-5.15.2:5 >=dev-qt/qtwidg RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kdiff3/kdiff3-1.9.6.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aaabe62ad0616180c14a355f94a88ae9 diff --git a/metadata/md5-cache/kde-misc/kdirstat-3.4.2 b/metadata/md5-cache/kde-misc/kdirstat-3.4.2 index 1df7413bb960..a93ddef988a6 100644 --- a/metadata/md5-cache/kde-misc/kdirstat-3.4.2 +++ b/metadata/md5-cache/kde-misc/kdirstat-3.4.2 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtgui:5 dev-qt/qtwidgets:5 kde-frameworks/kconfig:5 kde-frameworks/kconfigwidgets:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kiconthemes:5 kde-frameworks/kio:5 kde-frameworks/kjobwidgets:5 kde-frameworks/kwidgetsaddons:5 kde-frameworks/kxmlgui:5 sys-libs/zlib || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=https://github.com/jeromerobert/k4dirstat/archive/3.4.2.tar.gz -> k4dirstat-3.4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9eee10ab76990a8da7de11cb6dd2e28d diff --git a/metadata/md5-cache/kde-misc/kio-fuse-5.0.1_p20220906 b/metadata/md5-cache/kde-misc/kio-fuse-5.0.1_p20220906 index 5759084c58cc..3956f9c55264 100644 --- a/metadata/md5-cache/kde-misc/kio-fuse-5.0.1_p20220906 +++ b/metadata/md5-cache/kde-misc/kio-fuse-5.0.1_p20220906 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://gentoo/kio-fuse-5.0.1_p20220906-fbd09a33.tar.gz https://invent.kde.org/kde/kio-fuse/-/archive/fbd09a339f9880fe8d018001d4d2561593f90530/kio-fuse-fbd09a339f9880fe8d018001d4d2561593f90530.tar.gz -> kio-fuse-5.0.1_p20220906-fbd09a33.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=82bbcacd5956245880f4018bb9e62da7 diff --git a/metadata/md5-cache/kde-misc/kio-gdrive-22.08.3 b/metadata/md5-cache/kde-misc/kio-gdrive-22.08.3 index d712c0ce7ea7..546847a43285 100644 --- a/metadata/md5-cache/kde-misc/kio-gdrive-22.08.3 +++ b/metadata/md5-cache/kde-misc/kio-gdrive-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/kaccounts RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kio-gdrive-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9da8bc2ba596370bca6383affae000cd diff --git a/metadata/md5-cache/kde-misc/kio-gdrive-22.12.3 b/metadata/md5-cache/kde-misc/kio-gdrive-22.12.3 index 5bf4d282beb5..b473b16b9d9e 100644 --- a/metadata/md5-cache/kde-misc/kio-gdrive-22.12.3 +++ b/metadata/md5-cache/kde-misc/kio-gdrive-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/kaccounts RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kio-gdrive-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=66209219c005ca60c4afa49bfffaff7b diff --git a/metadata/md5-cache/kde-misc/kio-gopher-0.1.99-r1 b/metadata/md5-cache/kde-misc/kio-gopher-0.1.99-r1 index adb9d71a82c7..3cb3f4f9a901 100644 --- a/metadata/md5-cache/kde-misc/kio-gopher-0.1.99-r1 +++ b/metadata/md5-cache/kde-misc/kio-gopher-0.1.99-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=kde-frameworks/kcodecs-5.60.0:5 >=kde-frameworks/ki18n-5.60.0:5 >=kde-frameworks/kiconthemes-5.60.0:5 >=kde-frameworks/kio-5.60.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/unstable/kio-gopher/kio-gopher-0.1.99.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f33c3fef612a0cf5219f45ac6e459f2b diff --git a/metadata/md5-cache/kde-misc/kio-locate-0.5.3-r3 b/metadata/md5-cache/kde-misc/kio-locate-0.5.3-r3 index 5c9508578bec..2cfd41363139 100644 --- a/metadata/md5-cache/kde-misc/kio-locate-0.5.3-r3 +++ b/metadata/md5-cache/kde-misc/kio-locate-0.5.3-r3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtgui:5 dev-qt/qtwidgets:5 kde-frameworks/kcompletion:5 kde-frameworks/kconfig:5 kde-frameworks/kconfigwidgets:5 kde-frameworks/kcoreaddons:5 kde-frameworks/kdelibs4support:5 kde-frameworks/ki18n:5 kde-frameworks/kiconthemes:5 kde-frameworks/kio:5 kde-frameworks/kwidgetsaddons:5 sys-apps/mlocate || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=https://dl.opendesktop.org/api/files/download/id/1460972255/120965-kio-locate-0.5.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0008c310fc121911ef219eafe6a6c3e2 diff --git a/metadata/md5-cache/kde-misc/kio-stash-1.0-r1 b/metadata/md5-cache/kde-misc/kio-stash-1.0-r1 index 4f31e145c825..ddcf556d8404 100644 --- a/metadata/md5-cache/kde-misc/kio-stash-1.0-r1 +++ b/metadata/md5-cache/kde-misc/kio-stash-1.0-r1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.12.3:5 >=kde-frameworks/kcoreaddons-5.60.0:5 >=kde-fra RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=mirror://kde/stable/kio-stash/kio-stash-1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9c49e09d4597c9856d043eb375c9bd88 diff --git a/metadata/md5-cache/kde-misc/krename-5.0.2 b/metadata/md5-cache/kde-misc/krename-5.0.2 index 1f8823a8f210..db3d4edb74e8 100644 --- a/metadata/md5-cache/kde-misc/krename-5.0.2 +++ b/metadata/md5-cache/kde-misc/krename-5.0.2 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidge RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/krename/5.0.2/src/krename-5.0.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b82a88eb7b27bacb0bbf2a3b580a244c diff --git a/metadata/md5-cache/kde-misc/krusader-2.8.0 b/metadata/md5-cache/kde-misc/krusader-2.8.0 index f17df5934d61..a87a05952bf6 100644 --- a/metadata/md5-cache/kde-misc/krusader-2.8.0 +++ b/metadata/md5-cache/kde-misc/krusader-2.8.0 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/karchive-5.82.0:5 >=kde-frameworks/kbookmarks-5.82.0:5 >=kde-frameworks/kcodecs-5.82.0:5 >=kde-frameworks/kcompletion-5.82.0:5 >=kde-frameworks/kconfig-5.82.0:5 >=kde-frameworks/kconfigwidgets-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/kguiaddons-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kiconthemes-5.82.0:5 >=kde-frameworks/kio-5.82.0:5 >=kde-frameworks/kitemviews-5.82.0:5 >=kde-frameworks/kjobwidgets-5.82.0:5 >=kde-frameworks/knotifications-5.82.0:5 >=kde-frameworks/kparts-5.82.0:5 >=kde-frameworks/kservice-5.82.0:5 >=kde-frameworks/ktextwidgets-5.82.0:5 >=kde-frameworks/kwallet-5.82.0:5 >=kde-frameworks/kwidgetsaddons-5.82.0:5 >=kde-frameworks/kwindowsystem-5.82.0:5 >=kde-frameworks/kxmlgui-5.82.0:5 >=kde-frameworks/solid-5.82.0:5 sys-apps/acl sys-libs/zlib kde-apps/kio-extras:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/krusader/2.8.0/krusader-2.8.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b9e09a1bea776f9ad63bf045bdd3489f diff --git a/metadata/md5-cache/kde-misc/kshutdown-5.2 b/metadata/md5-cache/kde-misc/kshutdown-5.2 index 2680ae42965d..1b5cb16026a2 100644 --- a/metadata/md5-cache/kde-misc/kshutdown-5.2 +++ b/metadata/md5-cache/kde-misc/kshutdown-5.2 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 kde? ( kde-frameworks/kconfig:5 kde-frameworks/kconfigwidgets:5 kde-frameworks/kcoreaddons:5 kde-frameworks/kcrash:5 kde-frameworks/kdbusaddons:5 kde-frameworks/kglobalaccel:5 kde-frameworks/ki18n:5 kde-frameworks/kidletime:5 kde-frameworks/knotifications:5 kde-frameworks/knotifyconfig:5 kde-frameworks/kwidgetsaddons:5 kde-frameworks/kxmlgui:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) SLOT=5 SRC_URI=mirror://sourceforge/kshutdown/kshutdown-source-5.2.zip -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4f804af6649b7aed1f53f670ef199ed7 diff --git a/metadata/md5-cache/kde-misc/ktoshiba-5.3.1 b/metadata/md5-cache/kde-misc/ktoshiba-5.3.1 index c37af0fdd492..07083544319e 100644 --- a/metadata/md5-cache/kde-misc/ktoshiba-5.3.1 +++ b/metadata/md5-cache/kde-misc/ktoshiba-5.3.1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.12.3:5 >=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtwidgets-5.12.3:5 >=kde-frameworks/kauth-5.60.0:5 >=kde-frameworks/kcmutils-5.60.0:5 >=kde-frameworks/kconfig-5.60.0:5 >=kde-frameworks/kconfigwidgets-5.60.0:5 >=kde-frameworks/kcoreaddons-5.60.0:5 >=kde-frameworks/kdbusaddons-5.60.0:5 >=kde-frameworks/ki18n-5.60.0:5 >=kde-frameworks/knotifications-5.60.0:5 >=kde-frameworks/kwidgetsaddons-5.60.0:5 net-libs/libmnl || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=https://prdownloads.sourceforge.net/ktoshiba/ktoshiba-5.3.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6ea24f03bdb476341396f713861de5a8 diff --git a/metadata/md5-cache/kde-misc/kweather-22.11 b/metadata/md5-cache/kde-misc/kweather-22.11 index ec6e49f544a1..1c76efb15deb 100644 --- a/metadata/md5-cache/kde-misc/kweather-22.11 +++ b/metadata/md5-cache/kde-misc/kweather-22.11 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-libs/kirigami-addons-0.6:5 >=dev-libs/kweathercore-0.6:5 >=dev-qt/qtcharts-5.15.5:5[qml] >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kholidays-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kirigami-5.99.0:5 >=kde-frameworks/knotifications-5.99.0:5 >=kde-frameworks/plasma-5.99.0:5 >=dev-qt/qtgraphicaleffects-5.15.5:5 >=dev-qt/qtpositioning-5.15.5:5[geoclue] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma-mobile/22.11/kweather-22.11.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma-mobile.kde.org 6c6b74cf6c0c2b85a25d5aacb89a516d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma-mobile.kde.org 6c6b74cf6c0c2b85a25d5aacb89a516d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=62c94cd65c90a8a0ad72fa8600dd32f8 diff --git a/metadata/md5-cache/kde-misc/latte-dock-0.10.77_p20230115 b/metadata/md5-cache/kde-misc/latte-dock-0.10.77_p20230115 index 918779661238..70a573d09267 100644 --- a/metadata/md5-cache/kde-misc/latte-dock-0.10.77_p20230115 +++ b/metadata/md5-cache/kde-misc/latte-dock-0.10.77_p20230115 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-libs/wayland-1.21.0 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgraphicaleffects-5.15.5:5 >=dev-qt/qtgui-5.15.5:5[X] >=dev-qt/qtwayland-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=kde-frameworks/kactivities-5.99.0:5 >=kde-frameworks/karchive-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kcrash-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/kdeclarative-5.99.0:5 >=kde-frameworks/kglobalaccel-5.99.0:5 >=kde-frameworks/kguiaddons-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kiconthemes-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kirigami-5.99.0:5 >=kde-frameworks/knewstuff-5.99.0:5 >=kde-frameworks/knotifications-5.99.0:5 >=kde-frameworks/kpackage-5.99.0:5 >=kde-frameworks/kwayland-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5 >=kde-frameworks/kxmlgui-5.99.0:5 >=kde-frameworks/plasma-5.99.0:5[X(+)] x11-libs/libSM x11-libs/libX11 x11-libs/libxcb x11-libs/xcb-util >=dev-qt/qtquickcontrols-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 SRC_URI=mirror://gentoo/latte-dock-0.10.77_p20230115-957fece0.tar.gz https://invent.kde.org/kde/latte-dock/-/archive/957fece0ca2a5c56e301578c102191a33a1384f6/latte-dock-957fece0ca2a5c56e301578c102191a33a1384f6.tar.gz -> latte-dock-0.10.77_p20230115-957fece0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=441b18e73c17b60e370eee5871957edd diff --git a/metadata/md5-cache/kde-misc/markdownpart-22.08.3 b/metadata/md5-cache/kde-misc/markdownpart-22.08.3 index c58c22132db5..8d3266ce5134 100644 --- a/metadata/md5-cache/kde-misc/markdownpart-22.08.3 +++ b/metadata/md5-cache/kde-misc/markdownpart-22.08.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/markdownpart-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=78f59f7802739dd62aad2f1753ee19c8 diff --git a/metadata/md5-cache/kde-misc/markdownpart-22.12.3 b/metadata/md5-cache/kde-misc/markdownpart-22.12.3 index 0981d4dcdcc4..f69fbb65ca2b 100644 --- a/metadata/md5-cache/kde-misc/markdownpart-22.12.3 +++ b/metadata/md5-cache/kde-misc/markdownpart-22.12.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/markdownpart-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d90b7e4a670ee61fed39b72275f65dd5 diff --git a/metadata/md5-cache/kde-misc/openofficeorg-thumbnail-1.0.0-r500 b/metadata/md5-cache/kde-misc/openofficeorg-thumbnail-1.0.0-r500 index e9e0470ac0b9..944d7d83f035 100644 --- a/metadata/md5-cache/kde-misc/openofficeorg-thumbnail-1.0.0-r500 +++ b/metadata/md5-cache/kde-misc/openofficeorg-thumbnail-1.0.0-r500 @@ -12,5 +12,5 @@ LICENSE=LGPL-3 RDEPEND=>=dev-qt/qtgui-5.12.3:5 >=kde-frameworks/karchive-5.60.0:5 >=kde-frameworks/kio-5.60.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=http://arielch.fedorapeople.org/devel/src/OpenOfficeorgThumbnail-1.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea6788d5d385fac070e258a7eb313a06 diff --git a/metadata/md5-cache/kde-misc/plasma-applet-network-monitor-1.7.3-r1 b/metadata/md5-cache/kde-misc/plasma-applet-network-monitor-1.7.3-r1 index b1579af823f4..8725a7a55d80 100644 --- a/metadata/md5-cache/kde-misc/plasma-applet-network-monitor-1.7.3-r1 +++ b/metadata/md5-cache/kde-misc/plasma-applet-network-monitor-1.7.3-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=kde-frameworks/plasma-5.60.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=https://github.com/kotelnik/plasma-applet-network-monitor/archive/v1.7.3.tar.gz -> plasma-applet-network-monitor-1.7.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=365972f253a6778f5a11259c9127d9d7 diff --git a/metadata/md5-cache/kde-misc/plasma-pass-1.2.0-r1 b/metadata/md5-cache/kde-misc/plasma-pass-1.2.0-r1 index e22c9679467d..5d3cbf1e0ee2 100644 --- a/metadata/md5-cache/kde-misc/plasma-pass-1.2.0-r1 +++ b/metadata/md5-cache/kde-misc/plasma-pass-1.2.0-r1 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgraphicaleffects-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kitemmodels-5.82.0:5 >=kde-frameworks/plasma-5.82.0:5 sys-auth/oath-toolkit app-crypt/gnupg >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kirigami-5.82.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma-pass/plasma-pass-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0bca82d8f28ae7fb65fc140045f964a8 diff --git a/metadata/md5-cache/kde-misc/plasma-pass-1.2.1 b/metadata/md5-cache/kde-misc/plasma-pass-1.2.1 index 821bdf4c99a0..29ddf0354bcf 100644 --- a/metadata/md5-cache/kde-misc/plasma-pass-1.2.1 +++ b/metadata/md5-cache/kde-misc/plasma-pass-1.2.1 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1+ RDEPEND=app-crypt/gpgme:=[cxx,qt5] >=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgraphicaleffects-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kitemmodels-5.102.0:5 >=kde-frameworks/plasma-5.102.0:5 sys-auth/oath-toolkit >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kirigami-5.102.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma-pass/plasma-pass-1.2.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7b38c6a3af6a3fbb3e19b2c369d06d92 diff --git a/metadata/md5-cache/kde-misc/rsibreak-0.12.15 b/metadata/md5-cache/kde-misc/rsibreak-0.12.15 index eaf993328a20..0600c96bc9d2 100644 --- a/metadata/md5-cache/kde-misc/rsibreak-0.12.15 +++ b/metadata/md5-cache/kde-misc/rsibreak-0.12.15 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/rsibreak/0.12/rsibreak-0.12.15.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6cf6d3886b8b7fa56c9aa61dea934c8f diff --git a/metadata/md5-cache/kde-misc/skanlite-22.08.3 b/metadata/md5-cache/kde-misc/skanlite-22.08.3 index f80ab5a2845a..38ccb9cb809b 100644 --- a/metadata/md5-cache/kde-misc/skanlite-22.08.3 +++ b/metadata/md5-cache/kde-misc/skanlite-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libksane- RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/skanlite-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=19f8e918df7c55a34feb1a9243172364 diff --git a/metadata/md5-cache/kde-misc/skanlite-22.12.3 b/metadata/md5-cache/kde-misc/skanlite-22.12.3 index 9d36619943dd..cea1d123f8c7 100644 --- a/metadata/md5-cache/kde-misc/skanlite-22.12.3 +++ b/metadata/md5-cache/kde-misc/skanlite-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libksane- RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/skanlite-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=40872f175278933c9729e3568029e9e4 diff --git a/metadata/md5-cache/kde-misc/tellico-3.4.6 b/metadata/md5-cache/kde-misc/tellico-3.4.6 index 0818ba695e9e..b0d6952f0054 100644 --- a/metadata/md5-cache/kde-misc/tellico-3.4.6 +++ b/metadata/md5-cache/kde-misc/tellico-3.4.6 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libxml2 dev-libs/libxslt dev-qt/qtcharts:5 dev-qt/qtdbus:5 dev- RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://tellico-project.org/files/tellico-3.4.6.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a160e4576cc41843a8d320f2a0c85815 diff --git a/metadata/md5-cache/kde-misc/wacomtablet-3.2.0-r3 b/metadata/md5-cache/kde-misc/wacomtablet-3.2.0-r3 index c98e96ab03cf..e246ef44ea13 100644 --- a/metadata/md5-cache/kde-misc/wacomtablet-3.2.0-r3 +++ b/metadata/md5-cache/kde-misc/wacomtablet-3.2.0-r3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/libwacom-0.30:= >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtdeclarati RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/wacomtablet/3.2.0/wacomtablet-3.2.0.tar.xz https://dev.gentoo.org/~asturm/distfiles/wacomtablet-3.2.0-patchset-1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e38e41da5adfa6e52ea01e841d8b35b0 diff --git a/metadata/md5-cache/kde-misc/zanshin-22.08.3-r1 b/metadata/md5-cache/kde-misc/zanshin-22.08.3-r1 index 3c05334bed8a..27d328075ae3 100644 --- a/metadata/md5-cache/kde-misc/zanshin-22.08.3-r1 +++ b/metadata/md5-cache/kde-misc/zanshin-22.08.3-r1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/zanshin-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=23643888a9ca5b541e36393db547cebd diff --git a/metadata/md5-cache/kde-misc/zanshin-22.12.3 b/metadata/md5-cache/kde-misc/zanshin-22.12.3 index 5b4515a73dde..a33c18b0d154 100644 --- a/metadata/md5-cache/kde-misc/zanshin-22.12.3 +++ b/metadata/md5-cache/kde-misc/zanshin-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/zanshin-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0530cc9d96609e0efe5b4bf71dc9abcb diff --git a/metadata/md5-cache/kde-plasma/Manifest.gz b/metadata/md5-cache/kde-plasma/Manifest.gz index a3d9b9295c1d..81f7a307f1ed 100644 Binary files a/metadata/md5-cache/kde-plasma/Manifest.gz and b/metadata/md5-cache/kde-plasma/Manifest.gz differ diff --git a/metadata/md5-cache/kde-plasma/bluedevil-5.26.5-r1 b/metadata/md5-cache/kde-plasma/bluedevil-5.26.5-r1 index 815c46fa9f47..1631c0b8e4cb 100644 --- a/metadata/md5-cache/kde-plasma/bluedevil-5.26.5-r1 +++ b/metadata/md5-cache/kde-plasma/bluedevil-5.26.5-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/bluez-qt-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kdeclarative-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/knotifications-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5[X] >=kde-frameworks/plasma-5.99.0:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kirigami-5.99.0:5 >=kde-plasma/kde-cli-tools-5.26.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/bluedevil-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=75398c60b240778aac1228a810596348 diff --git a/metadata/md5-cache/kde-plasma/bluedevil-5.27.3 b/metadata/md5-cache/kde-plasma/bluedevil-5.27.3 index 79ff67e2cc19..67196e8ccca3 100644 --- a/metadata/md5-cache/kde-plasma/bluedevil-5.27.3 +++ b/metadata/md5-cache/kde-plasma/bluedevil-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/bluez-qt-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdeclarative-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/knotifications-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-frameworks/kwindowsystem-5.102.0:5[X] >=kde-frameworks/plasma-5.102.0:5 >=dev-qt/qtquickcontrols2-5.15.7:5 >=kde-frameworks/kirigami-5.102.0:5 >=kde-plasma/kde-cli-tools-5.27.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/bluedevil-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=542cf3ceb41b84e147aeac6ce1d95d8e diff --git a/metadata/md5-cache/kde-plasma/breeze-5.26.5 b/metadata/md5-cache/kde-plasma/breeze-5.26.5 index 40c96aca8de2..7f5373bcf661 100644 --- a/metadata/md5-cache/kde-plasma/breeze-5.26.5 +++ b/metadata/md5-cache/kde-plasma/breeze-5.26.5 @@ -13,5 +13,5 @@ PDEPEND=>=kde-frameworks/breeze-icons-5.99.0:5 >=kde-plasma/kde-cli-tools-5.26.5 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=kde-frameworks/frameworkintegration-5.99.0:5 >=kde-frameworks/kcmutils-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kguiaddons-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kiconthemes-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5 >=kde-plasma/kdecoration-5.26.5:5 X? ( x11-libs/libxcb ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/breeze-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=001efb0a4e74f7d396d37a393733badf diff --git a/metadata/md5-cache/kde-plasma/breeze-5.27.3 b/metadata/md5-cache/kde-plasma/breeze-5.27.3 index aba355a0e4fe..8f87838def8c 100644 --- a/metadata/md5-cache/kde-plasma/breeze-5.27.3 +++ b/metadata/md5-cache/kde-plasma/breeze-5.27.3 @@ -13,5 +13,5 @@ PDEPEND=>=kde-frameworks/breeze-icons-5.102.0:5 >=kde-plasma/kde-cli-tools-5.27. RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=dev-qt/qtx11extras-5.15.7:5 >=kde-frameworks/frameworkintegration-5.102.0:5 >=kde-frameworks/kcmutils-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kguiaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kiconthemes-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-plasma/kdecoration-5.27.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/breeze-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=acf71e0a4634796f1192bd0dc08de59f diff --git a/metadata/md5-cache/kde-plasma/breeze-gtk-5.26.5 b/metadata/md5-cache/kde-plasma/breeze-gtk-5.26.5 index 92b70a5c9676..c58ec830b833 100644 --- a/metadata/md5-cache/kde-plasma/breeze-gtk-5.26.5 +++ b/metadata/md5-cache/kde-plasma/breeze-gtk-5.26.5 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1+ RDEPEND=|| ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/breeze-gtk-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1232d6310215796730c98555d7a12329 diff --git a/metadata/md5-cache/kde-plasma/breeze-gtk-5.27.3 b/metadata/md5-cache/kde-plasma/breeze-gtk-5.27.3 index e99601ab8cc9..e533ebf9b0fa 100644 --- a/metadata/md5-cache/kde-plasma/breeze-gtk-5.27.3 +++ b/metadata/md5-cache/kde-plasma/breeze-gtk-5.27.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1+ RDEPEND=|| ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/breeze-gtk-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fc6605239839e47d93260bf5d617c702 diff --git a/metadata/md5-cache/kde-plasma/breeze-plymouth-5.26.5 b/metadata/md5-cache/kde-plasma/breeze-plymouth-5.26.5 index ec0c42698628..d648ccbc7e25 100644 --- a/metadata/md5-cache/kde-plasma/breeze-plymouth-5.26.5 +++ b/metadata/md5-cache/kde-plasma/breeze-plymouth-5.26.5 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ GPL-3+ RDEPEND=sys-boot/plymouth SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/breeze-plymouth-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=36aff6044f3bfc941b27621c95972c52 diff --git a/metadata/md5-cache/kde-plasma/breeze-plymouth-5.27.3 b/metadata/md5-cache/kde-plasma/breeze-plymouth-5.27.3 index d477b67fc24f..9a65b7991b9c 100644 --- a/metadata/md5-cache/kde-plasma/breeze-plymouth-5.27.3 +++ b/metadata/md5-cache/kde-plasma/breeze-plymouth-5.27.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ GPL-3+ RDEPEND=sys-boot/plymouth SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/breeze-plymouth-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9a04cd94a72bd896f5b9d7d733b1de0d diff --git a/metadata/md5-cache/kde-plasma/discover-5.26.5 b/metadata/md5-cache/kde-plasma/discover-5.26.5 index d13ae3c04429..f71e50c45739 100644 --- a/metadata/md5-cache/kde-plasma/discover-5.26.5 +++ b/metadata/md5-cache/kde-plasma/discover-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdecla RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/discover-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=760b737cb19035a7ff956377b41a5ab8 diff --git a/metadata/md5-cache/kde-plasma/discover-5.27.3 b/metadata/md5-cache/kde-plasma/discover-5.27.3 index fa405f4c783b..741106e9929a 100644 --- a/metadata/md5-cache/kde-plasma/discover-5.27.3 +++ b/metadata/md5-cache/kde-plasma/discover-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/appstream-0.15.3:= >=dev-qt/qtconcurrent-5.15.7:5 >=dev-qt/qt RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/discover-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef1a04b270185d380442544747d575aa diff --git a/metadata/md5-cache/kde-plasma/drkonqi-5.26.5 b/metadata/md5-cache/kde-plasma/drkonqi-5.26.5 index f9f54a51253d..5dc4275fb278 100644 --- a/metadata/md5-cache/kde-plasma/drkonqi-5.26.5 +++ b/metadata/md5-cache/kde-plasma/drkonqi-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcompletion-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kcrash-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kidletime-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kjobwidgets-5.99.0:5 >=kde-frameworks/knotifications-5.99.0:5 >=kde-frameworks/kwallet-5.99.0:5 >=kde-frameworks/kwayland-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5 >=kde-frameworks/syntax-highlighting-5.99.0:5 >=kde-frameworks/kirigami-5.99.0:5 >=kde-frameworks/kitemmodels-5.99.0:5[qml] || ( sys-devel/gdb dev-util/lldb ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/drkonqi-5.26.5.tar.xz https://dev.gentoo.org/~asturm/distfiles/drkonqi-5.26.2-revert-add-sentry-support.patch.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e89a60fbe822fd7e4a4ee24c975d460a diff --git a/metadata/md5-cache/kde-plasma/drkonqi-5.27.3 b/metadata/md5-cache/kde-plasma/drkonqi-5.27.3 index 15b0c3ae969c..27d28fb6117a 100644 --- a/metadata/md5-cache/kde-plasma/drkonqi-5.27.3 +++ b/metadata/md5-cache/kde-plasma/drkonqi-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=dev-qt/qtxml-5.15.7:5 >=kde-frameworks/kcompletion-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kcrash-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kidletime-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kjobwidgets-5.102.0:5 >=kde-frameworks/knotifications-5.102.0:5 >=kde-frameworks/kwallet-5.102.0:5 >=kde-frameworks/kwayland-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-frameworks/kwindowsystem-5.102.0:5 >=kde-frameworks/syntax-highlighting-5.102.0:5 >=kde-frameworks/kirigami-5.102.0:5 >=kde-frameworks/kitemmodels-5.102.0:5[qml] || ( sys-devel/gdb dev-util/lldb ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/drkonqi-5.27.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/drkonqi-5.27.1-revert-add-sentry-support.patch.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2a3225c709944ca8dbccdcd6a4b725a4 diff --git a/metadata/md5-cache/kde-plasma/flatpak-kcm-5.27.3 b/metadata/md5-cache/kde-plasma/flatpak-kcm-5.27.3 index 333dc7be8ef2..9052b05fcb5a 100644 --- a/metadata/md5-cache/kde-plasma/flatpak-kcm-5.27.3 +++ b/metadata/md5-cache/kde-plasma/flatpak-kcm-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 LGPL-2.1+ RDEPEND=dev-libs/glib:2 >=dev-qt/qtdeclarative-5.15.7:5[widgets] >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtsvg-5.15.7:5 >=kde-frameworks/kcmutils-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdeclarative-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=sys-apps/flatpak-0.11.8 >=dev-qt/qtquickcontrols2-5.15.7:5 >=kde-frameworks/kirigami-5.102.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/flatpak-kcm-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0b419f70a3c5ffc2eb3e60410c3e4f81 diff --git a/metadata/md5-cache/kde-plasma/kactivitymanagerd-5.26.5-r1 b/metadata/md5-cache/kde-plasma/kactivitymanagerd-5.26.5-r1 index 84c0841cbb9f..1aefe190981f 100644 --- a/metadata/md5-cache/kde-plasma/kactivitymanagerd-5.26.5-r1 +++ b/metadata/md5-cache/kde-plasma/kactivitymanagerd-5.26.5-r1 @@ -12,5 +12,5 @@ LICENSE=|| ( GPL-2 GPL-3 ) RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsql-5.15.5:5[sqlite] >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kcrash-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/kglobalaccel-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kservice-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5[X] >=kde-frameworks/kxmlgui-5.99.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kactivitymanagerd-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=77b7d6d819ecc425c538c822f80c71cc diff --git a/metadata/md5-cache/kde-plasma/kactivitymanagerd-5.27.3 b/metadata/md5-cache/kde-plasma/kactivitymanagerd-5.27.3 index da4bf2fc1e99..4bed755b414c 100644 --- a/metadata/md5-cache/kde-plasma/kactivitymanagerd-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kactivitymanagerd-5.27.3 @@ -12,5 +12,5 @@ LICENSE=|| ( GPL-2 GPL-3 ) RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtsql-5.15.7:5[sqlite] >=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kcrash-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/kglobalaccel-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kservice-5.102.0:5 >=kde-frameworks/kwindowsystem-5.102.0:5[X] >=kde-frameworks/kxmlgui-5.102.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kactivitymanagerd-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=23e71d97cb0013debd2c426f30c072c7 diff --git a/metadata/md5-cache/kde-plasma/kde-cli-tools-5.26.5 b/metadata/md5-cache/kde-plasma/kde-cli-tools-5.26.5 index 75a0533e65ec..472fae39bc18 100644 --- a/metadata/md5-cache/kde-plasma/kde-cli-tools-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kde-cli-tools-5.26.5 @@ -14,5 +14,5 @@ REQUIRED_USE=kdesu? ( X ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kde-cli-tools-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dd9c708abab9b7ea35ae0f2c1dd7fd96 diff --git a/metadata/md5-cache/kde-plasma/kde-cli-tools-5.27.3 b/metadata/md5-cache/kde-plasma/kde-cli-tools-5.27.3 index f1325dc9455b..a2f28471d144 100644 --- a/metadata/md5-cache/kde-plasma/kde-cli-tools-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kde-cli-tools-5.27.3 @@ -14,5 +14,5 @@ REQUIRED_USE=kdesu? ( X ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kde-cli-tools-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c7716265d71549df022037be5cda9f2a diff --git a/metadata/md5-cache/kde-plasma/kde-gtk-config-5.26.5 b/metadata/md5-cache/kde-plasma/kde-gtk-config-5.26.5 index f027de7e2a1a..8ba85ee1eaea 100644 --- a/metadata/md5-cache/kde-plasma/kde-gtk-config-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kde-gtk-config-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=dev-cpp/glibmm:2 dev-libs/glib:2 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kde-gtk-config-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fbd2e125d6f5c35791b806d0d3753944 diff --git a/metadata/md5-cache/kde-plasma/kde-gtk-config-5.27.3 b/metadata/md5-cache/kde-plasma/kde-gtk-config-5.27.3 index e0edb0cb8d48..cf3244b82854 100644 --- a/metadata/md5-cache/kde-plasma/kde-gtk-config-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kde-gtk-config-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=dev-cpp/glibmm:2 dev-libs/glib:2 >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtgui RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kde-gtk-config-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4d7ef982c8be8bf61cc97449efc2022 diff --git a/metadata/md5-cache/kde-plasma/kdecoration-5.26.5 b/metadata/md5-cache/kde-plasma/kdecoration-5.26.5 index 92c33a2977dd..ec4e540e991a 100644 --- a/metadata/md5-cache/kde-plasma/kdecoration-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kdecoration-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-fram RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kdecoration-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2ed85a43eb598c02bd28f08746af7ac1 diff --git a/metadata/md5-cache/kde-plasma/kdecoration-5.27.3 b/metadata/md5-cache/kde-plasma/kdecoration-5.27.3 index f89ed77ffd9d..96c8a074ddc8 100644 --- a/metadata/md5-cache/kde-plasma/kdecoration-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kdecoration-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.7:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-fra RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kdecoration-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d514a84cc648b3cf868979b045f20d99 diff --git a/metadata/md5-cache/kde-plasma/kdeplasma-addons-5.26.5 b/metadata/md5-cache/kde-plasma/kdeplasma-addons-5.26.5 index 02daecd73512..48e5624e7192 100644 --- a/metadata/md5-cache/kde-plasma/kdeplasma-addons-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kdeplasma-addons-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kdeplasma-addons-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b8cde5f473ef3d5d30eb32d09275e24b diff --git a/metadata/md5-cache/kde-plasma/kdeplasma-addons-5.27.3 b/metadata/md5-cache/kde-plasma/kdeplasma-addons-5.27.3 index 008cf8693154..761d7821e621 100644 --- a/metadata/md5-cache/kde-plasma/kdeplasma-addons-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kdeplasma-addons-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kdeplasma-addons-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57678b022663261562d07d2f241d06ac diff --git a/metadata/md5-cache/kde-plasma/kgamma-5.26.5 b/metadata/md5-cache/kde-plasma/kgamma-5.26.5 index b3fca6f1256f..65f9ca7c95b5 100644 --- a/metadata/md5-cache/kde-plasma/kgamma-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kgamma-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 x11-libs/libX11 x11-libs/libXxf86vm || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kgamma5-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3d7f0b40a9d90e99470c32c25d2b2c9a diff --git a/metadata/md5-cache/kde-plasma/kgamma-5.27.3 b/metadata/md5-cache/kde-plasma/kgamma-5.27.3 index a39905167bbe..cf6d8e63d912 100644 --- a/metadata/md5-cache/kde-plasma/kgamma-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kgamma-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 x11-libs/libX11 x11-libs/libXxf86vm || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kgamma5-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=02b0eda6b679bb2f9a2e3cf7a0ff7644 diff --git a/metadata/md5-cache/kde-plasma/khotkeys-5.26.5 b/metadata/md5-cache/kde-plasma/khotkeys-5.26.5 index 72f1799faf56..309b63631174 100644 --- a/metadata/md5-cache/kde-plasma/khotkeys-5.26.5 +++ b/metadata/md5-cache/kde-plasma/khotkeys-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=kde-frameworks/kcompletion-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/kdelibs4support-5.99.0:5[X] >=kde-frameworks/kglobalaccel-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kservice-5.99.0:5 >=kde-frameworks/ktextwidgets-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5 >=kde-frameworks/kxmlgui-5.99.0:5 >=kde-plasma/libkworkspace-5.26.5:5 x11-libs/libX11 x11-libs/libXtst >=kde-frameworks/kded-5.99.0:5 >=kde-plasma/kde-cli-tools-5.26.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/khotkeys-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=723c02aae351c1275f9f2672008052af diff --git a/metadata/md5-cache/kde-plasma/khotkeys-5.27.3 b/metadata/md5-cache/kde-plasma/khotkeys-5.27.3 index 6befeec21ed9..d0abf6594c7c 100644 --- a/metadata/md5-cache/kde-plasma/khotkeys-5.27.3 +++ b/metadata/md5-cache/kde-plasma/khotkeys-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=dev-qt/qtx11extras-5.15.7:5 >=kde-frameworks/kcompletion-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/kdelibs4support-5.102.0:5[X] >=kde-frameworks/kglobalaccel-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kservice-5.102.0:5 >=kde-frameworks/ktextwidgets-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-frameworks/kwindowsystem-5.102.0:5 >=kde-frameworks/kxmlgui-5.102.0:5 >=kde-plasma/libkworkspace-5.27.3:5 x11-libs/libX11 x11-libs/libXtst >=kde-frameworks/kded-5.102.0:5 >=kde-plasma/kde-cli-tools-5.27.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/khotkeys-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9923e49789246242d50843e598ad24a7 diff --git a/metadata/md5-cache/kde-plasma/kinfocenter-5.26.5 b/metadata/md5-cache/kde-plasma/kinfocenter-5.26.5 index 899fe4007a3b..18d15365e1dd 100644 --- a/metadata/md5-cache/kde-plasma/kinfocenter-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kinfocenter-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5[gles2-only=] >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcmutils-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kdeclarative-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kpackage-5.99.0:5 >=kde-frameworks/kservice-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/solid-5.99.0:5 gles2-only? ( media-libs/mesa[gles2] ) usb? ( virtual/libusb:1 ) >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kirigami-5.99.0:5 >=kde-plasma/kde-cli-tools-5.26.5:5 >=kde-plasma/systemsettings-5.26.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kinfocenter-5.26.5.tar.xz https://www.gentoo.org/assets/img/logo/gentoo-3d-small.png -> glogo-small.png -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1cec34d15850667ea045b1553debf941 diff --git a/metadata/md5-cache/kde-plasma/kinfocenter-5.27.3 b/metadata/md5-cache/kde-plasma/kinfocenter-5.27.3 index 329916b22f5a..bee9c52276cf 100644 --- a/metadata/md5-cache/kde-plasma/kinfocenter-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kinfocenter-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui-5.15.7:5[gles2-only=] >=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/kcmutils-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdeclarative-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kpackage-5.102.0:5 >=kde-frameworks/kservice-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-frameworks/solid-5.102.0:5 gles2-only? ( media-libs/mesa[gles2] ) usb? ( virtual/libusb:1 ) dev-qt/qdbus:* >=dev-qt/qtquickcontrols2-5.15.7:5 >=kde-frameworks/kirigami-5.102.0:5 >=kde-plasma/kde-cli-tools-5.27.3:5 >=kde-plasma/systemsettings-5.27.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kinfocenter-5.27.3.tar.xz https://www.gentoo.org/assets/img/logo/gentoo-3d-small.png -> glogo-small.png -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d93e0f527e0c9345aad9d854be1f5367 diff --git a/metadata/md5-cache/kde-plasma/kmenuedit-5.26.5 b/metadata/md5-cache/kde-plasma/kmenuedit-5.26.5 index f8d4c661d9eb..0d061283847c 100644 --- a/metadata/md5-cache/kde-plasma/kmenuedit-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kmenuedit-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcompletion-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/kglobalaccel-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kiconthemes-5.99.0:5 >=kde-frameworks/kitemviews-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kservice-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5 >=kde-frameworks/kxmlgui-5.99.0:5 >=kde-frameworks/sonnet-5.99.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kmenuedit-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f1c781903dcfe8f1bc9d9faa74e55653 diff --git a/metadata/md5-cache/kde-plasma/kmenuedit-5.27.3 b/metadata/md5-cache/kde-plasma/kmenuedit-5.27.3 index 5134e3de4509..a7c3a7884044 100644 --- a/metadata/md5-cache/kde-plasma/kmenuedit-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kmenuedit-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=dev-qt/qtxml-5.15.7:5 >=kde-frameworks/kcompletion-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/kglobalaccel-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kiconthemes-5.102.0:5 >=kde-frameworks/kitemviews-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kservice-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-frameworks/kwindowsystem-5.102.0:5 >=kde-frameworks/kxmlgui-5.102.0:5 >=kde-frameworks/sonnet-5.102.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kmenuedit-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=982eb06fcbda74b1f7edd30667c2c786 diff --git a/metadata/md5-cache/kde-plasma/kpipewire-5.26.5 b/metadata/md5-cache/kde-plasma/kpipewire-5.26.5 index 9a60c88be101..3d96594c4b9e 100644 --- a/metadata/md5-cache/kde-plasma/kpipewire-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kpipewire-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/wayland >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5: RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kpipewire-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d85bd302bf6d5ca8b861a30b41f5f0ff diff --git a/metadata/md5-cache/kde-plasma/kpipewire-5.27.3 b/metadata/md5-cache/kde-plasma/kpipewire-5.27.3 index 9a0f1e95b9af..4aea6c9c1a82 100644 --- a/metadata/md5-cache/kde-plasma/kpipewire-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kpipewire-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/wayland >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7: RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kpipewire-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea375a50635c64b624d686123f3fbb79 diff --git a/metadata/md5-cache/kde-plasma/kscreen-5.26.5 b/metadata/md5-cache/kde-plasma/kscreen-5.26.5 index bfea14dbd2b8..ec8eceebcde9 100644 --- a/metadata/md5-cache/kde-plasma/kscreen-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kscreen-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5[widgets] >=dev- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kscreen-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=262bc4a409bf8963c1276ef89d634427 diff --git a/metadata/md5-cache/kde-plasma/kscreen-5.27.3 b/metadata/md5-cache/kde-plasma/kscreen-5.27.3 index 4f09b8e4f4ee..80681e2a72ee 100644 --- a/metadata/md5-cache/kde-plasma/kscreen-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kscreen-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5[widgets] >=dev- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kscreen-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1eadcbd49a3bb80a0742583ce86b57ed diff --git a/metadata/md5-cache/kde-plasma/kscreenlocker-5.26.5 b/metadata/md5-cache/kde-plasma/kscreenlocker-5.26.5 index 9f20f5ec8780..509767240844 100644 --- a/metadata/md5-cache/kde-plasma/kscreenlocker-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kscreenlocker-5.26.5 @@ -14,5 +14,5 @@ RDEPEND=dev-libs/wayland >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5: RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kscreenlocker-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8809a8af52148693f56e2bb7c7e2e190 diff --git a/metadata/md5-cache/kde-plasma/kscreenlocker-5.27.3 b/metadata/md5-cache/kde-plasma/kscreenlocker-5.27.3 index 09fce7f34e38..5eb8f28091d6 100644 --- a/metadata/md5-cache/kde-plasma/kscreenlocker-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kscreenlocker-5.27.3 @@ -14,5 +14,5 @@ RDEPEND=dev-libs/wayland >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7: RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kscreenlocker-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1da9cea71514e3759c404d14be5cd3e1 diff --git a/metadata/md5-cache/kde-plasma/ksshaskpass-5.26.5 b/metadata/md5-cache/kde-plasma/ksshaskpass-5.26.5 index 596b8dde2bb5..053d7293b575 100644 --- a/metadata/md5-cache/kde-plasma/ksshaskpass-5.26.5 +++ b/metadata/md5-cache/kde-plasma/ksshaskpass-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kwallet-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/ksshaskpass-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=521248216bbbcac0e095fdbc76146fbf diff --git a/metadata/md5-cache/kde-plasma/ksshaskpass-5.27.3 b/metadata/md5-cache/kde-plasma/ksshaskpass-5.27.3 index 9b75085e2b1a..f72beaa37ebc 100644 --- a/metadata/md5-cache/kde-plasma/ksshaskpass-5.27.3 +++ b/metadata/md5-cache/kde-plasma/ksshaskpass-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kwallet-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/ksshaskpass-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=36245753b68337c508a3ceb7f19ae8ee diff --git a/metadata/md5-cache/kde-plasma/ksysguard-5.22.0-r1 b/metadata/md5-cache/kde-plasma/ksysguard-5.22.0-r1 index 12fbd0becbbf..916743b5113b 100644 --- a/metadata/md5-cache/kde-plasma/ksysguard-5.22.0-r1 +++ b/metadata/md5-cache/kde-plasma/ksysguard-5.22.0-r1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/ksysguard/5.22.0/ksysguard-5.22.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=739f1b53d156e97bc24bbbcee6ed2d3d diff --git a/metadata/md5-cache/kde-plasma/ksystemstats-5.26.5 b/metadata/md5-cache/kde-plasma/ksystemstats-5.26.5 index c273bc4c0fea..4a7f6ae91e18 100644 --- a/metadata/md5-cache/kde-plasma/ksystemstats-5.26.5 +++ b/metadata/md5-cache/kde-plasma/ksystemstats-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libnl:3 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >= RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/ksystemstats-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=414e77d676857062965c1e7b0fed348e diff --git a/metadata/md5-cache/kde-plasma/ksystemstats-5.27.3 b/metadata/md5-cache/kde-plasma/ksystemstats-5.27.3 index 11f31c8ef6e2..6bde11d39e20 100644 --- a/metadata/md5-cache/kde-plasma/ksystemstats-5.27.3 +++ b/metadata/md5-cache/kde-plasma/ksystemstats-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libnl:3 >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtnetwork-5.15.7:5 >= RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/ksystemstats-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c205ec33a6562f9580d9ea33d89e2d2e diff --git a/metadata/md5-cache/kde-plasma/kwallet-pam-5.26.5 b/metadata/md5-cache/kde-plasma/kwallet-pam-5.26.5 index bbc6f8004959..4202f5d68113 100644 --- a/metadata/md5-cache/kde-plasma/kwallet-pam-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kwallet-pam-5.26.5 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/libgcrypt:0= >=kde-frameworks/kwallet-5.99.0:5 sys-libs/pam net-misc/socat || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kwallet-pam-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b150ac030ae37fed966470cafca6d3ee diff --git a/metadata/md5-cache/kde-plasma/kwallet-pam-5.27.3 b/metadata/md5-cache/kde-plasma/kwallet-pam-5.27.3 index debe2a409ccd..b455ba542cf5 100644 --- a/metadata/md5-cache/kde-plasma/kwallet-pam-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kwallet-pam-5.27.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/libgcrypt:0= >=kde-frameworks/kwallet-5.102.0:5 sys-libs/pam net-misc/socat || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kwallet-pam-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2d06bcf7331638ae97ffec1ef8f5f62b diff --git a/metadata/md5-cache/kde-plasma/kwayland-integration-5.26.5 b/metadata/md5-cache/kde-plasma/kwayland-integration-5.26.5 index fa756c0d8816..6aa3702009a3 100644 --- a/metadata/md5-cache/kde-plasma/kwayland-integration-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kwayland-integration-5.26.5 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtgui-5.15.5:5= || ( >=dev-qt/qtgui-5.15.5:5[libinput] >=dev-qt/qtgui-5.15.5:5[X] ) >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtwayland-5.15.5:5= >=kde-frameworks/kwayland-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5= x11-libs/libxkbcommon || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kwayland-integration-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aa6ddc3453841725d7aac02571000a39 diff --git a/metadata/md5-cache/kde-plasma/kwayland-integration-5.27.3 b/metadata/md5-cache/kde-plasma/kwayland-integration-5.27.3 index 7082457e2fe1..ac96503dbaaa 100644 --- a/metadata/md5-cache/kde-plasma/kwayland-integration-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kwayland-integration-5.27.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtgui-5.15.7:5= || ( >=dev-qt/qtgui-5.15.7:5[libinput] >=dev-qt/qtgui-5.15.7:5[X] ) >=dev-qt/qtwidgets-5.15.7:5 >=dev-qt/qtwayland-5.15.7:5= >=kde-frameworks/kwayland-5.102.0:5 >=kde-frameworks/kwindowsystem-5.102.0:5= x11-libs/libxkbcommon || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kwayland-integration-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=928512e80d1cb534e7fd637a956d0a47 diff --git a/metadata/md5-cache/kde-plasma/kwayland-server-5.24.6 b/metadata/md5-cache/kde-plasma/kwayland-server-5.24.6 index 0d3feda348ba..5926ff3c2b46 100644 --- a/metadata/md5-cache/kde-plasma/kwayland-server-5.24.6 +++ b/metadata/md5-cache/kde-plasma/kwayland-server-5.24.6 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/wayland-1.19.0 >=dev-qt/qtconcurrent-5.15.4:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.24.6/kwayland-server-5.24.6.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=01b5702c7ce144757ed6f883d32e12c6 diff --git a/metadata/md5-cache/kde-plasma/kwin-5.26.5 b/metadata/md5-cache/kde-plasma/kwin-5.26.5 index ef00d3d9d357..c7b4f2ceff12 100644 --- a/metadata/md5-cache/kde-plasma/kwin-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kwin-5.26.5 @@ -14,5 +14,5 @@ RDEPEND=>=dev-libs/libinput-1.19 >=dev-libs/wayland-1.20.0 >=dev-qt/qtconcurrent RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kwin-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c18322d9aa9d51afa66e03d44111112 diff --git a/metadata/md5-cache/kde-plasma/kwin-5.27.3 b/metadata/md5-cache/kde-plasma/kwin-5.27.3 index 6224d6cbd1e9..417c8ffe55f3 100644 --- a/metadata/md5-cache/kde-plasma/kwin-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kwin-5.27.3 @@ -14,5 +14,5 @@ RDEPEND=>=dev-libs/libinput-1.19 >=dev-libs/wayland-1.21.0 >=dev-qt/qtconcurrent RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kwin-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3fc5d7a33e1fb18cf7701d6782889af4 diff --git a/metadata/md5-cache/kde-plasma/kwrited-5.26.5 b/metadata/md5-cache/kde-plasma/kwrited-5.26.5 index cc287971ef9c..7b746a6f495a 100644 --- a/metadata/md5-cache/kde-plasma/kwrited-5.26.5 +++ b/metadata/md5-cache/kde-plasma/kwrited-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/knotifications-5.99.0:5 >=kde-frameworks/kpty-5.99.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/kwrited-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6b44393ad22b3e994cadd5f4c64d542a diff --git a/metadata/md5-cache/kde-plasma/kwrited-5.27.3 b/metadata/md5-cache/kde-plasma/kwrited-5.27.3 index b3f3167f12aa..0dfae0cc43e6 100644 --- a/metadata/md5-cache/kde-plasma/kwrited-5.27.3 +++ b/metadata/md5-cache/kde-plasma/kwrited-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.15.7:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/knotifications-5.102.0:5 >=kde-frameworks/kpty-5.102.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/kwrited-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=665967d90e2d74e0665242b251960c29 diff --git a/metadata/md5-cache/kde-plasma/layer-shell-qt-5.26.5 b/metadata/md5-cache/kde-plasma/layer-shell-qt-5.26.5 index 6f4ba374e502..59c070e0e705 100644 --- a/metadata/md5-cache/kde-plasma/layer-shell-qt-5.26.5 +++ b/metadata/md5-cache/kde-plasma/layer-shell-qt-5.26.5 @@ -12,5 +12,5 @@ LICENSE=LGPL-3+ RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdeclarative-5.15.5:5 || ( >=dev-qt/qtgui-5.15.5:5[libinput] >=dev-qt/qtgui-5.15.5:5[X] ) >=dev-qt/qtwayland-5.15.5:5= x11-libs/libxkbcommon || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/layer-shell-qt-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7db75e7ab079b5b40d0066c6d43040b1 diff --git a/metadata/md5-cache/kde-plasma/layer-shell-qt-5.27.3 b/metadata/md5-cache/kde-plasma/layer-shell-qt-5.27.3 index 651333fd3310..bde95ea9c5dd 100644 --- a/metadata/md5-cache/kde-plasma/layer-shell-qt-5.27.3 +++ b/metadata/md5-cache/kde-plasma/layer-shell-qt-5.27.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-3+ RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdeclarative-5.15.7:5 || ( >=dev-qt/qtgui-5.15.7:5[libinput] >=dev-qt/qtgui-5.15.7:5[X] ) >=dev-qt/qtwayland-5.15.7:5= x11-libs/libxkbcommon || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/layer-shell-qt-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c7c6718e51de5fb78d754fda62ddf5e7 diff --git a/metadata/md5-cache/kde-plasma/libkscreen-5.26.5 b/metadata/md5-cache/kde-plasma/libkscreen-5.26.5 index cafba9d33fca..c609a66ff066 100644 --- a/metadata/md5-cache/kde-plasma/libkscreen-5.26.5 +++ b/metadata/md5-cache/kde-plasma/libkscreen-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/wayland >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev- RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/7 SRC_URI=mirror://kde/stable/plasma/5.26.5/libkscreen-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8fe3a0b1ca57d19139c8f8366759c8a4 diff --git a/metadata/md5-cache/kde-plasma/libkscreen-5.27.3 b/metadata/md5-cache/kde-plasma/libkscreen-5.27.3 index e475ebc7d52b..d2edc592876a 100644 --- a/metadata/md5-cache/kde-plasma/libkscreen-5.27.3 +++ b/metadata/md5-cache/kde-plasma/libkscreen-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/wayland >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev- RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5/8 SRC_URI=mirror://kde/stable/plasma/5.27.3/libkscreen-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9008449da3ef028e5ea08d672ad6354b diff --git a/metadata/md5-cache/kde-plasma/libksysguard-5.26.5-r1 b/metadata/md5-cache/kde-plasma/libksysguard-5.26.5-r1 index e83f02768697..5c4c8819aa69 100644 --- a/metadata/md5-cache/kde-plasma/libksysguard-5.26.5-r1 +++ b/metadata/md5-cache/kde-plasma/libksysguard-5.26.5-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libnl:3 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5: RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/9 SRC_URI=mirror://kde/stable/plasma/5.26.5/libksysguard-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4005cb808416ef7857df37fd6148565e diff --git a/metadata/md5-cache/kde-plasma/libksysguard-5.27.3 b/metadata/md5-cache/kde-plasma/libksysguard-5.27.3 index 85ccc07ebbb6..7e26fe8e409b 100644 --- a/metadata/md5-cache/kde-plasma/libksysguard-5.27.3 +++ b/metadata/md5-cache/kde-plasma/libksysguard-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libnl:3 >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7: RESTRICT=!test? ( test ) !test? ( test ) SLOT=5/9 SRC_URI=mirror://kde/stable/plasma/5.27.3/libksysguard-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=94b8dc8cdb6d1e2a5db700d6a41466fb diff --git a/metadata/md5-cache/kde-plasma/libkworkspace-5.26.5 b/metadata/md5-cache/kde-plasma/libkworkspace-5.26.5 index 5d2c58d27f15..e7243dfbef6c 100644 --- a/metadata/md5-cache/kde-plasma/libkworkspace-5.26.5 +++ b/metadata/md5-cache/kde-plasma/libkworkspace-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=kde-frameworks/ RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-workspace-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7415ff9d2625c1ef66adab9beb9d82a0 diff --git a/metadata/md5-cache/kde-plasma/libkworkspace-5.27.3 b/metadata/md5-cache/kde-plasma/libkworkspace-5.27.3 index 85336cfaa3ad..b1b9d53b0698 100644 --- a/metadata/md5-cache/kde-plasma/libkworkspace-5.27.3 +++ b/metadata/md5-cache/kde-plasma/libkworkspace-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtx11extras-5.15.7:5 >=kde-frameworks/ RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-workspace-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8d8461a4fbd70223092849f5c49f4c93 diff --git a/metadata/md5-cache/kde-plasma/milou-5.26.5 b/metadata/md5-cache/kde-plasma/milou-5.26.5 index 8693f17e6596..afcd907f0555 100644 --- a/metadata/md5-cache/kde-plasma/milou-5.26.5 +++ b/metadata/md5-cache/kde-plasma/milou-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidge RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/milou-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5405dc1313d98f50ab107cec895c79ab diff --git a/metadata/md5-cache/kde-plasma/milou-5.27.3 b/metadata/md5-cache/kde-plasma/milou-5.27.3 index fa49831eb6e0..d608fbbbe4af 100644 --- a/metadata/md5-cache/kde-plasma/milou-5.27.3 +++ b/metadata/md5-cache/kde-plasma/milou-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidge RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/milou-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c5ff5a7dd8a92921e01a6aca5508ef85 diff --git a/metadata/md5-cache/kde-plasma/oxygen-5.26.5 b/metadata/md5-cache/kde-plasma/oxygen-5.26.5 index e6ab6ee8db61..16f0fb3a0e8b 100644 --- a/metadata/md5-cache/kde-plasma/oxygen-5.26.5 +++ b/metadata/md5-cache/kde-plasma/oxygen-5.26.5 @@ -13,5 +13,5 @@ PDEPEND=>=kde-plasma/kde-cli-tools-5.26.5:5 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=kde-frameworks/frameworkintegration-5.99.0:5 >=kde-frameworks/kcmutils-5.99.0:5 >=kde-frameworks/kcompletion-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kguiaddons-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5 >=kde-plasma/kdecoration-5.26.5:5 x11-libs/libxcb wayland? ( >=kde-frameworks/kwayland-5.99.0:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/oxygen-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8d8d204f93ba9f8cfb713ff73f869afa diff --git a/metadata/md5-cache/kde-plasma/oxygen-5.27.3 b/metadata/md5-cache/kde-plasma/oxygen-5.27.3 index 074e2d0d9bb7..3a634b201d1d 100644 --- a/metadata/md5-cache/kde-plasma/oxygen-5.27.3 +++ b/metadata/md5-cache/kde-plasma/oxygen-5.27.3 @@ -13,5 +13,5 @@ PDEPEND=>=kde-plasma/kde-cli-tools-5.27.3:5 RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=dev-qt/qtx11extras-5.15.7:5 >=kde-frameworks/frameworkintegration-5.102.0:5 >=kde-frameworks/kcmutils-5.102.0:5 >=kde-frameworks/kcompletion-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kguiaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-frameworks/kwindowsystem-5.102.0:5 >=kde-plasma/kdecoration-5.27.3:5 x11-libs/libxcb || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/oxygen-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea01e07441fd3199769770b7a73df1a4 diff --git a/metadata/md5-cache/kde-plasma/oxygen-sounds-5.26.5 b/metadata/md5-cache/kde-plasma/oxygen-sounds-5.26.5 index 92ff38e54cb2..bae192b457f7 100644 --- a/metadata/md5-cache/kde-plasma/oxygen-sounds-5.26.5 +++ b/metadata/md5-cache/kde-plasma/oxygen-sounds-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=!=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/oxygen-sounds-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=031bce81864cf0314dbcc494156a9002 diff --git a/metadata/md5-cache/kde-plasma/oxygen-sounds-5.27.3 b/metadata/md5-cache/kde-plasma/oxygen-sounds-5.27.3 index 312e47c22e5c..c822edeb87b0 100644 --- a/metadata/md5-cache/kde-plasma/oxygen-sounds-5.27.3 +++ b/metadata/md5-cache/kde-plasma/oxygen-sounds-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=!=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/oxygen-sounds-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c01a5a6111f82802801d061ff2983c57 diff --git a/metadata/md5-cache/kde-plasma/plasma-browser-integration-5.26.5 b/metadata/md5-cache/kde-plasma/plasma-browser-integration-5.26.5 index ccab61fd9f5c..19872319f43c 100644 --- a/metadata/md5-cache/kde-plasma/plasma-browser-integration-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plasma-browser-integration-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kactivities-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kcrash-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/kfilemetadata-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kjobwidgets-5.99.0:5 >=kde-frameworks/knotifications-5.99.0:5 >=kde-frameworks/krunner-5.99.0:5 >=kde-frameworks/purpose-5.99.0:5 >=kde-plasma/plasma-workspace-5.26.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-browser-integration-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7fc547bae7dcc2258a8740063b994d41 diff --git a/metadata/md5-cache/kde-plasma/plasma-browser-integration-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-browser-integration-5.27.3 index bc975481d236..bb22be3e14fa 100644 --- a/metadata/md5-cache/kde-plasma/plasma-browser-integration-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-browser-integration-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/kactivities-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kcrash-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/kfilemetadata-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kjobwidgets-5.102.0:5 >=kde-frameworks/knotifications-5.102.0:5 >=kde-frameworks/krunner-5.102.0:5 >=kde-frameworks/purpose-5.102.0:5 >=kde-plasma/plasma-workspace-5.27.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-browser-integration-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b7d78e1e0e33b0c52b4812a5a93490a6 diff --git a/metadata/md5-cache/kde-plasma/plasma-desktop-5.26.5-r2 b/metadata/md5-cache/kde-plasma/plasma-desktop-5.26.5-r2 index 5c1721a0e62c..f158ce8e9002 100644 --- a/metadata/md5-cache/kde-plasma/plasma-desktop-5.26.5-r2 +++ b/metadata/md5-cache/kde-plasma/plasma-desktop-5.26.5-r2 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/wayland >=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-desktop-5.26.5.tar.xz https://dev.gentoo.org/~asturm/distfiles/plasma-desktop-override-include-dirs-2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dccb3238753c7b3831037da64a5092fd diff --git a/metadata/md5-cache/kde-plasma/plasma-desktop-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-desktop-5.27.3 index 62f1482e501c..e6061842e332 100644 --- a/metadata/md5-cache/kde-plasma/plasma-desktop-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-desktop-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/wayland >=dev-qt/qtconcurrent-5.15.7:5 >=dev-qt/qtdbus-5.15.7:5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-desktop-5.27.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/plasma-desktop-override-include-dirs-2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=948bfc7be7cd061dfc24ac585f66bdd9 diff --git a/metadata/md5-cache/kde-plasma/plasma-disks-5.26.5 b/metadata/md5-cache/kde-plasma/plasma-disks-5.26.5 index 11823e31f3b8..870dd0b3aa98 100644 --- a/metadata/md5-cache/kde-plasma/plasma-disks-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plasma-disks-5.26.5 @@ -12,5 +12,5 @@ LICENSE=|| ( GPL-3 GPL-2 ) RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/kauth-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/kdeclarative-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kjobwidgets-5.99.0:5 >=kde-frameworks/knotifications-5.99.0:5 >=kde-frameworks/kservice-5.99.0:5 >=kde-frameworks/solid-5.99.0:5 sys-apps/smartmontools kde-plasma/kinfocenter:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-disks-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a1aee42c6c58d37032440a934f7766f6 diff --git a/metadata/md5-cache/kde-plasma/plasma-disks-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-disks-5.27.3 index 87f00a397f16..00527d60e126 100644 --- a/metadata/md5-cache/kde-plasma/plasma-disks-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-disks-5.27.3 @@ -12,5 +12,5 @@ LICENSE=|| ( GPL-3 GPL-2 ) RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=kde-frameworks/kauth-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/kdeclarative-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kjobwidgets-5.102.0:5 >=kde-frameworks/knotifications-5.102.0:5 >=kde-frameworks/kservice-5.102.0:5 >=kde-frameworks/solid-5.102.0:5 sys-apps/smartmontools kde-plasma/kinfocenter:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-disks-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b5fabe370d3d790d40aa20362af88841 diff --git a/metadata/md5-cache/kde-plasma/plasma-firewall-5.26.5 b/metadata/md5-cache/kde-plasma/plasma-firewall-5.26.5 index 07f88f1a8d78..5f844270cc92 100644 --- a/metadata/md5-cache/kde-plasma/plasma-firewall-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plasma-firewall-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) || ( firewalld ufw ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-firewall-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=029bb428fbbbff16af8aa9203feda711 diff --git a/metadata/md5-cache/kde-plasma/plasma-firewall-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-firewall-5.27.3 index 34399b2363b4..11748a20712e 100644 --- a/metadata/md5-cache/kde-plasma/plasma-firewall-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-firewall-5.27.3 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-firewall-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e64f7e1f476169c035997e82183a881a diff --git a/metadata/md5-cache/kde-plasma/plasma-integration-5.26.5 b/metadata/md5-cache/kde-plasma/plasma-integration-5.26.5 index 9a9b3d2ca790..6d05166c209e 100644 --- a/metadata/md5-cache/kde-plasma/plasma-integration-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plasma-integration-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/wayland >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5=[dbus] RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-integration-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c9826889ce16047e5bafdfe56cd498e diff --git a/metadata/md5-cache/kde-plasma/plasma-integration-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-integration-5.27.3 index 1109db02288f..74c506c8a905 100644 --- a/metadata/md5-cache/kde-plasma/plasma-integration-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-integration-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/wayland >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtgui-5.15.7:5=[dbus] RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-integration-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ff34775c988e186b260e689ab60f4ef8 diff --git a/metadata/md5-cache/kde-plasma/plasma-nm-5.26.5 b/metadata/md5-cache/kde-plasma/plasma-nm-5.26.5 index abbecfa0f1eb..60e84688165c 100644 --- a/metadata/md5-cache/kde-plasma/plasma-nm-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plasma-nm-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdecl RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-nm-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa0d042d782a32afcc6001149d8639d6 diff --git a/metadata/md5-cache/kde-plasma/plasma-nm-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-nm-5.27.3 index dcfde3c4bdef..993f312358ed 100644 --- a/metadata/md5-cache/kde-plasma/plasma-nm-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-nm-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdecl RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-nm-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=99621564d8522209ef11a4db30687a60 diff --git a/metadata/md5-cache/kde-plasma/plasma-pa-5.26.5 b/metadata/md5-cache/kde-plasma/plasma-pa-5.26.5 index ee3c568e7801..f82f3cd39502 100644 --- a/metadata/md5-cache/kde-plasma/plasma-pa-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plasma-pa-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kdeclarative-5.99.0:5 >=kde-frameworks/kglobalaccel-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/plasma-5.99.0:5 media-libs/libcanberra media-libs/libpulse >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kirigami-5.99.0:5 x11-themes/sound-theme-freedesktop || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-pa-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=765788bb35c38a63c6238a149eafe549 diff --git a/metadata/md5-cache/kde-plasma/plasma-pa-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-pa-5.27.3 index 570c7cfd6a0b..3719cd90be1b 100644 --- a/metadata/md5-cache/kde-plasma/plasma-pa-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-pa-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdeclarative-5.102.0:5 >=kde-frameworks/kglobalaccel-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/plasma-5.102.0:5 media-libs/libcanberra media-libs/libpulse >=dev-qt/qtquickcontrols2-5.15.7:5 >=kde-frameworks/kirigami-5.102.0:5 x11-themes/sound-theme-freedesktop || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-pa-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5b593f81717dd0b36999df65440dcb00 diff --git a/metadata/md5-cache/kde-plasma/plasma-sdk-5.26.5 b/metadata/md5-cache/kde-plasma/plasma-sdk-5.26.5 index bc7dde6da1d8..eda04318f927 100644 --- a/metadata/md5-cache/kde-plasma/plasma-sdk-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plasma-sdk-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-sdk-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=014e32e9357762d0e623b6ee4cb39901 diff --git a/metadata/md5-cache/kde-plasma/plasma-sdk-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-sdk-5.27.3 index 0a1d5a021eae..5786057ee6cb 100644 --- a/metadata/md5-cache/kde-plasma/plasma-sdk-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-sdk-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui- RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-sdk-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=164fea1195fb6b254848c5634a12d11a diff --git a/metadata/md5-cache/kde-plasma/plasma-systemmonitor-5.26.5 b/metadata/md5-cache/kde-plasma/plasma-systemmonitor-5.26.5 index 63bb8d6b790c..20b94a253cc9 100644 --- a/metadata/md5-cache/kde-plasma/plasma-systemmonitor-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plasma-systemmonitor-5.26.5 @@ -12,5 +12,5 @@ LICENSE=|| ( GPL-3 GPL-2 ) RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/kdeclarative-5.99.0:5 >=kde-frameworks/kglobalaccel-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kitemmodels-5.99.0:5 >=kde-frameworks/knewstuff-5.99.0:5 >=kde-frameworks/kservice-5.99.0:5 >=kde-plasma/libksysguard-5.26.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kirigami-5.99.0:5 >=kde-frameworks/kitemmodels-5.99.0:5[qml] >=kde-frameworks/kquickcharts-5.99.0:5 >=kde-plasma/ksystemstats-5.26.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-systemmonitor-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ed7c073792c53fe44394d2471461ea8e diff --git a/metadata/md5-cache/kde-plasma/plasma-systemmonitor-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-systemmonitor-5.27.3 index 80f0e421d8ce..65eb58306795 100644 --- a/metadata/md5-cache/kde-plasma/plasma-systemmonitor-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-systemmonitor-5.27.3 @@ -12,5 +12,5 @@ LICENSE=|| ( GPL-3 GPL-2 ) RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/kdeclarative-5.102.0:5 >=kde-frameworks/kglobalaccel-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kitemmodels-5.102.0:5 >=kde-frameworks/knewstuff-5.102.0:5 >=kde-frameworks/kservice-5.102.0:5 >=kde-plasma/libksysguard-5.27.3:5 >=dev-qt/qtquickcontrols2-5.15.7:5 >=kde-frameworks/kirigami-5.102.0:5 >=kde-frameworks/kitemmodels-5.102.0:5[qml] >=kde-frameworks/kquickcharts-5.102.0:5 >=kde-plasma/ksystemstats-5.27.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-systemmonitor-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=33ecd3c25ef42bf52cc60793a8cfa9be diff --git a/metadata/md5-cache/kde-plasma/plasma-thunderbolt-5.26.5 b/metadata/md5-cache/kde-plasma/plasma-thunderbolt-5.26.5 index 40993ac46442..65c2c1fc302c 100644 --- a/metadata/md5-cache/kde-plasma/plasma-thunderbolt-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plasma-thunderbolt-5.26.5 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-thunderbolt-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7b97d60274fa84cc3cbf87a5a472aa93 diff --git a/metadata/md5-cache/kde-plasma/plasma-thunderbolt-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-thunderbolt-5.27.3 index 0c2fadb815a7..41c43e593cd1 100644 --- a/metadata/md5-cache/kde-plasma/plasma-thunderbolt-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-thunderbolt-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtgui- RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-thunderbolt-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=640fbc021cea09929112f07d9495cef7 diff --git a/metadata/md5-cache/kde-plasma/plasma-vault-5.26.5 b/metadata/md5-cache/kde-plasma/plasma-vault-5.26.5 index 9567a5de191a..b55a5d977cc8 100644 --- a/metadata/md5-cache/kde-plasma/plasma-vault-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plasma-vault-5.26.5 @@ -12,5 +12,5 @@ LICENSE=LGPL-3 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kactivities-5.99.0:5 >=kde-frameworks/kcodecs-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/plasma-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-plasma/libksysguard-5.26.5:5 networkmanager? ( >=kde-frameworks/networkmanager-qt-5.99.0:5 ) >=dev-qt/qtquickcontrols2-5.15.5:5 || ( >=sys-fs/cryfs-0.9.9 >=sys-fs/encfs-1.9.2 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-vault-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=61f1d310be0a691f5466a6b2bb6a519b diff --git a/metadata/md5-cache/kde-plasma/plasma-vault-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-vault-5.27.3 index 232417c10498..074e50eb6c94 100644 --- a/metadata/md5-cache/kde-plasma/plasma-vault-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-vault-5.27.3 @@ -12,5 +12,5 @@ LICENSE=LGPL-3 RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/kactivities-5.102.0:5 >=kde-frameworks/kcodecs-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/plasma-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-plasma/libksysguard-5.27.3:5 networkmanager? ( >=kde-frameworks/networkmanager-qt-5.102.0:5 ) >=dev-qt/qtquickcontrols2-5.15.7:5 || ( >=sys-fs/cryfs-0.9.9 >=sys-fs/encfs-1.9.2 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-vault-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c8d3fa1469b2ef405c947ce039acac2a diff --git a/metadata/md5-cache/kde-plasma/plasma-welcome-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-welcome-5.27.3 index c802e7102a9f..dd986bdf4505 100644 --- a/metadata/md5-cache/kde-plasma/plasma-welcome-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-welcome-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdeclarative-5.15.7:5[widgets] >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtnetwork-5.15.7:5 >=dev-qt/qtquickcontrols2-5.15.7:5 >=dev-qt/qtsvg-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 kde-apps/kaccounts-integration:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kirigami-5.102.0:5 >=kde-frameworks/knewstuff-5.102.0:5 >=kde-frameworks/knotifications-5.102.0:5 >=kde-frameworks/kservice-5.102.0:5 >=kde-frameworks/kwindowsystem-5.102.0:5 telemetry? ( dev-libs/kuserfeedback:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-welcome-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ce0e5da1c95f9b63ff695b631174b0a diff --git a/metadata/md5-cache/kde-plasma/plasma-workspace-5.26.5-r1 b/metadata/md5-cache/kde-plasma/plasma-workspace-5.26.5-r1 index 39bbb0476c82..87f6e3ae357c 100644 --- a/metadata/md5-cache/kde-plasma/plasma-workspace-5.26.5-r1 +++ b/metadata/md5-cache/kde-plasma/plasma-workspace-5.26.5-r1 @@ -15,5 +15,5 @@ REQUIRED_USE=gps? ( geolocation ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-workspace-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aceda10d7e1ede11236300280cf704d9 diff --git a/metadata/md5-cache/kde-plasma/plasma-workspace-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-workspace-5.27.3 index b91d99dc1e2a..b9c3eff776f6 100644 --- a/metadata/md5-cache/kde-plasma/plasma-workspace-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-workspace-5.27.3 @@ -15,5 +15,5 @@ REQUIRED_USE=gps? ( geolocation ) RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-workspace-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57d8739ed228f682396b47939f0e82cb diff --git a/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-5.26.5 b/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-5.26.5 index 84e29f4c0f3a..ec30d07bd4ba 100644 --- a/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-5.26.5 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86 LICENSE=GPL-2 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-workspace-wallpapers-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c96558cb5a5b408fe896920534e5f4c2 diff --git a/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-5.27.3 b/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-5.27.3 index 3ce7932f0e41..ef0bed24ee4d 100644 --- a/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-5.27.3 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-workspace-wallpapers-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1dbc43604de589828ff95a65aaa3b115 diff --git a/metadata/md5-cache/kde-plasma/plymouth-kcm-5.26.5 b/metadata/md5-cache/kde-plasma/plymouth-kcm-5.26.5 index e2a9810d7f34..7c38b62d20ea 100644 --- a/metadata/md5-cache/kde-plasma/plymouth-kcm-5.26.5 +++ b/metadata/md5-cache/kde-plasma/plymouth-kcm-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtquickcontrols-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/karchive-5.99.0:5 >=kde-frameworks/kauth-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kdeclarative-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/knewstuff-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 sys-boot/plymouth >=kde-plasma/kde-cli-tools-5.26.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plymouth-kcm-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4578395f40ad6016dbd9dd6437def916 diff --git a/metadata/md5-cache/kde-plasma/plymouth-kcm-5.27.3 b/metadata/md5-cache/kde-plasma/plymouth-kcm-5.27.3 index 8eff14797207..0821a307e220 100644 --- a/metadata/md5-cache/kde-plasma/plymouth-kcm-5.27.3 +++ b/metadata/md5-cache/kde-plasma/plymouth-kcm-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdeclarative-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtquickcontrols-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/karchive-5.102.0:5 >=kde-frameworks/kauth-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdeclarative-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/knewstuff-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 sys-boot/plymouth >=kde-plasma/kde-cli-tools-5.27.3:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plymouth-kcm-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=27208e920aca70035b31a09c381cb65b diff --git a/metadata/md5-cache/kde-plasma/polkit-kde-agent-5.26.5 b/metadata/md5-cache/kde-plasma/polkit-kde-agent-5.26.5 index 0af484e2ab94..54dfb5022704 100644 --- a/metadata/md5-cache/kde-plasma/polkit-kde-agent-5.26.5 +++ b/metadata/md5-cache/kde-plasma/polkit-kde-agent-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kcrash-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kiconthemes-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5 >=sys-auth/polkit-qt-0.113.0[qt5(+)] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/polkit-kde-agent-1-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca344535e4914cd036f56672c63cc08f diff --git a/metadata/md5-cache/kde-plasma/polkit-kde-agent-5.27.3 b/metadata/md5-cache/kde-plasma/polkit-kde-agent-5.27.3 index af7c51df067d..12a99deb53a8 100644 --- a/metadata/md5-cache/kde-plasma/polkit-kde-agent-5.27.3 +++ b/metadata/md5-cache/kde-plasma/polkit-kde-agent-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kcrash-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kiconthemes-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-frameworks/kwindowsystem-5.102.0:5 >=sys-auth/polkit-qt-0.113.0[qt5(+)] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/polkit-kde-agent-1-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a2a9fbbd53c5be7a5411f1980055804c diff --git a/metadata/md5-cache/kde-plasma/powerdevil-5.26.5 b/metadata/md5-cache/kde-plasma/powerdevil-5.26.5 index 144998cc7858..9852c6ee1e97 100644 --- a/metadata/md5-cache/kde-plasma/powerdevil-5.26.5 +++ b/metadata/md5-cache/kde-plasma/powerdevil-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=kde-frameworks/kactivities-5.99.0:5 >=kde-frameworks/kauth-5.99.0:5[policykit] >=kde-frameworks/kcompletion-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kcrash-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/kglobalaccel-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kidletime-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kirigami-5.99.0:5 >=kde-frameworks/knotifications-5.99.0:5 >=kde-frameworks/knotifyconfig-5.99.0:5 >=kde-frameworks/kservice-5.99.0:5 >=kde-frameworks/kwayland-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/kxmlgui-5.99.0:5 >=kde-frameworks/solid-5.99.0:5 >=kde-plasma/libkscreen-5.26.5:5 >=kde-plasma/libkworkspace-5.26.5:5 virtual/libudev:= x11-libs/libxcb brightness-control? ( app-misc/ddcutil:= ) caps? ( sys-libs/libcap ) wireless? ( >=kde-frameworks/bluez-qt-5.99.0:5 >=kde-frameworks/networkmanager-qt-5.99.0:5 ) >=kde-plasma/kde-cli-tools-5.26.5:5 >=sys-power/upower-0.9.23 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/powerdevil-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f042199a4686f5a9a32a3d1c8f8ad4b9 diff --git a/metadata/md5-cache/kde-plasma/powerdevil-5.27.3 b/metadata/md5-cache/kde-plasma/powerdevil-5.27.3 index 38e08178fcd1..9267c718ef4e 100644 --- a/metadata/md5-cache/kde-plasma/powerdevil-5.27.3 +++ b/metadata/md5-cache/kde-plasma/powerdevil-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=dev-qt/qtx11extras-5.15.7:5 >=kde-frameworks/kactivities-5.102.0:5 >=kde-frameworks/kauth-5.102.0:5[policykit] >=kde-frameworks/kcompletion-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kcrash-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/kglobalaccel-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kidletime-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kirigami-5.102.0:5 >=kde-frameworks/knotifications-5.102.0:5 >=kde-frameworks/knotifyconfig-5.102.0:5 >=kde-frameworks/kservice-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-frameworks/kxmlgui-5.102.0:5 >=kde-frameworks/solid-5.102.0:5 >=kde-plasma/libkscreen-5.27.3:5 >=kde-plasma/libkworkspace-5.27.3:5 virtual/libudev:= x11-libs/libxcb brightness-control? ( app-misc/ddcutil:= ) caps? ( sys-libs/libcap ) wireless? ( >=kde-frameworks/bluez-qt-5.102.0:5 >=kde-frameworks/networkmanager-qt-5.102.0:5 ) >=kde-plasma/kde-cli-tools-5.27.3:5 >=sys-power/upower-0.9.23 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/powerdevil-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=77e36503826d7cbfedb55ed596c8a9c0 diff --git a/metadata/md5-cache/kde-plasma/sddm-kcm-5.26.5 b/metadata/md5-cache/kde-plasma/sddm-kcm-5.26.5 index 01cf8fe7a9e0..9b1bd6019018 100644 --- a/metadata/md5-cache/kde-plasma/sddm-kcm-5.26.5 +++ b/metadata/md5-cache/kde-plasma/sddm-kcm-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5[widgets] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/karchive-5.99.0:5 >=kde-frameworks/kauth-5.99.0:5 >=kde-frameworks/kcmutils-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kdeclarative-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/knewstuff-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/kirigami-5.99.0:5 >=kde-frameworks/kitemmodels-5.99.0:5[qml] >=kde-plasma/kde-cli-tools-5.26.5:5 x11-misc/sddm || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/sddm-kcm-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f9206b35ced77fae71dada789b6392c6 diff --git a/metadata/md5-cache/kde-plasma/sddm-kcm-5.27.3 b/metadata/md5-cache/kde-plasma/sddm-kcm-5.27.3 index 3cb6aff33ed7..3e74499362b8 100644 --- a/metadata/md5-cache/kde-plasma/sddm-kcm-5.27.3 +++ b/metadata/md5-cache/kde-plasma/sddm-kcm-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdeclarative-5.15.7:5[widgets] >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/karchive-5.102.0:5 >=kde-frameworks/kauth-5.102.0:5 >=kde-frameworks/kcmutils-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kdeclarative-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/knewstuff-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=dev-qt/qtquickcontrols2-5.15.7:5 >=kde-frameworks/kirigami-5.102.0:5 >=kde-frameworks/kitemmodels-5.102.0:5[qml] >=kde-plasma/kde-cli-tools-5.27.3:5 x11-misc/sddm || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/sddm-kcm-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4491e98a66a4018de3a4a246571c007f diff --git a/metadata/md5-cache/kde-plasma/systemsettings-5.26.5 b/metadata/md5-cache/kde-plasma/systemsettings-5.26.5 index f212424e81e6..567bda7e3ddb 100644 --- a/metadata/md5-cache/kde-plasma/systemsettings-5.26.5 +++ b/metadata/md5-cache/kde-plasma/systemsettings-5.26.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5[widgets] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kactivities-5.99.0:5 >=kde-frameworks/kactivities-stats-5.99.0:5 >=kde-frameworks/kauth-5.99.0:5 >=kde-frameworks/kcmutils-5.99.0:5 >=kde-frameworks/kcompletion-5.99.0:5 >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kconfigwidgets-5.99.0:5 >=kde-frameworks/kcoreaddons-5.99.0:5 >=kde-frameworks/kcrash-5.99.0:5 >=kde-frameworks/kdbusaddons-5.99.0:5 >=kde-frameworks/kguiaddons-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kiconthemes-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kirigami-5.99.0:5 >=kde-frameworks/kitemmodels-5.99.0:5 >=kde-frameworks/kitemviews-5.99.0:5 >=kde-frameworks/knotifications-5.99.0:5 >=kde-frameworks/kpackage-5.99.0:5 >=kde-frameworks/krunner-5.99.0:5 >=kde-frameworks/kservice-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5 >=kde-frameworks/kxmlgui-5.99.0:5 >=kde-plasma/libkworkspace-5.26.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/systemsettings-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3bba48084e5cd36011311aa3e0cc5838 diff --git a/metadata/md5-cache/kde-plasma/systemsettings-5.27.3 b/metadata/md5-cache/kde-plasma/systemsettings-5.27.3 index 797d9527c587..e6b3d5b8be2b 100644 --- a/metadata/md5-cache/kde-plasma/systemsettings-5.27.3 +++ b/metadata/md5-cache/kde-plasma/systemsettings-5.27.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative-5.15.7:5[widgets] >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtwidgets-5.15.7:5 >=kde-frameworks/kactivities-5.102.0:5 >=kde-frameworks/kauth-5.102.0:5 >=kde-frameworks/kcmutils-5.102.0:5 >=kde-frameworks/kcompletion-5.102.0:5 >=kde-frameworks/kconfig-5.102.0:5 >=kde-frameworks/kconfigwidgets-5.102.0:5 >=kde-frameworks/kcoreaddons-5.102.0:5 >=kde-frameworks/kcrash-5.102.0:5 >=kde-frameworks/kdbusaddons-5.102.0:5 >=kde-frameworks/kguiaddons-5.102.0:5 >=kde-frameworks/ki18n-5.102.0:5 >=kde-frameworks/kiconthemes-5.102.0:5 >=kde-frameworks/kio-5.102.0:5 >=kde-frameworks/kirigami-5.102.0:5 >=kde-frameworks/kitemmodels-5.102.0:5 >=kde-frameworks/kitemviews-5.102.0:5 >=kde-frameworks/knotifications-5.102.0:5 >=kde-frameworks/kpackage-5.102.0:5 >=kde-frameworks/krunner-5.102.0:5 >=kde-frameworks/kservice-5.102.0:5 >=kde-frameworks/kwidgetsaddons-5.102.0:5 >=kde-frameworks/kwindowsystem-5.102.0:5 >=kde-frameworks/kxmlgui-5.102.0:5 >=kde-plasma/libkworkspace-5.27.3:5 >=dev-qt/qtquickcontrols2-5.15.7:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/systemsettings-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=64c9859da1abadfd1ed772cbb23d3ab8 diff --git a/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.26.5 b/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.26.5 index b8ba9ee4c1c1..c7af974f7ae8 100644 --- a/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.26.5 +++ b/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.26.5 @@ -12,5 +12,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5[cups] >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kcoreaddons-5.99.0:5[dbus] >=kde-frameworks/kconfig-5.99.0:5 >=kde-frameworks/kdeclarative-5.99.0:5 >=kde-frameworks/ki18n-5.99.0:5 >=kde-frameworks/kiconthemes-5.99.0:5 >=kde-frameworks/kio-5.99.0:5 >=kde-frameworks/kirigami-5.99.0:5 >=kde-frameworks/knotifications-5.99.0:5 >=kde-frameworks/kwidgetsaddons-5.99.0:5 >=kde-frameworks/kwindowsystem-5.99.0:5 >=kde-frameworks/kwayland-5.99.0:5 >=kde-frameworks/plasma-5.99.0:5 kde-misc/kio-fuse:5 sys-apps/xdg-desktop-portal || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/xdg-desktop-portal-kde-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=122ea3e981937d24767d64b110e640b9 diff --git a/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.27.3 b/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.27.3 index 30764c57c399..78bc90260111 100644 --- a/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.27.3 +++ b/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-5.27.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtdeclarative- RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/xdg-desktop-portal-kde-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bc25c6b2aecce9aeb857adc60407eb73 diff --git a/metadata/md5-cache/kde-plasma/xembed-sni-proxy-5.26.5 b/metadata/md5-cache/kde-plasma/xembed-sni-proxy-5.26.5 index 8458f7293b04..cfabc1a888bb 100644 --- a/metadata/md5-cache/kde-plasma/xembed-sni-proxy-5.26.5 +++ b/metadata/md5-cache/kde-plasma/xembed-sni-proxy-5.26.5 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtcore-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=kde-frameworks/kwindowsystem-5.99.0:5[X] x11-libs/libxcb x11-libs/libXtst x11-libs/xcb-util-image !kde-plasma/xembed-sni-proxy:0 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.26.5/plasma-workspace-5.26.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=36f1e1a168ca7db8dfcd53339206f4ac diff --git a/metadata/md5-cache/kde-plasma/xembed-sni-proxy-5.27.3 b/metadata/md5-cache/kde-plasma/xembed-sni-proxy-5.27.3 index a5916f4a14df..3fe5cee8ba8b 100644 --- a/metadata/md5-cache/kde-plasma/xembed-sni-proxy-5.27.3 +++ b/metadata/md5-cache/kde-plasma/xembed-sni-proxy-5.27.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtcore-5.15.7:5 >=dev-qt/qtdbus-5.15.7:5 >=dev-qt/qtgui-5.15.7:5 >=dev-qt/qtx11extras-5.15.7:5 >=kde-frameworks/kwindowsystem-5.102.0:5[X] x11-libs/libxcb x11-libs/libXtst x11-libs/xcb-util-image !kde-plasma/xembed-sni-proxy:0 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.3/plasma-workspace-5.27.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma.kde.org 53d92c8467317e55e197227d2ddef69a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=18c62924c988fbf94198f888235433aa diff --git a/metadata/md5-cache/lxqt-base/Manifest.gz b/metadata/md5-cache/lxqt-base/Manifest.gz index a3282db3f4b2..43437417f22a 100644 Binary files a/metadata/md5-cache/lxqt-base/Manifest.gz and b/metadata/md5-cache/lxqt-base/Manifest.gz differ diff --git a/metadata/md5-cache/lxqt-base/liblxqt-1.1.0 b/metadata/md5-cache/lxqt-base/liblxqt-1.1.0 index 9370f0ab409f..427edc594407 100644 --- a/metadata/md5-cache/lxqt-base/liblxqt-1.1.0 +++ b/metadata/md5-cache/lxqt-base/liblxqt-1.1.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ BSD RDEPEND=>=dev-libs/libqtxdg-3.9.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=dev-qt/qtxml-5.15:5 kde-frameworks/kwindowsystem:5[X] x11-libs/libX11 x11-libs/libXScrnSaver backlight? ( sys-auth/polkit-qt ) SLOT=0/1.1 SRC_URI=https://github.com/lxqt/liblxqt/releases/download/1.1.0/liblxqt-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d1eca829107d01a09c64b46b7a3b52bd diff --git a/metadata/md5-cache/lxqt-base/liblxqt-1.2.0 b/metadata/md5-cache/lxqt-base/liblxqt-1.2.0 index ad572e46d7d2..39b8c353116e 100644 --- a/metadata/md5-cache/lxqt-base/liblxqt-1.2.0 +++ b/metadata/md5-cache/lxqt-base/liblxqt-1.2.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ BSD RDEPEND=>=dev-libs/libqtxdg-3.10.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=dev-qt/qtxml-5.15:5 kde-frameworks/kwindowsystem:5[X] x11-libs/libX11 x11-libs/libXScrnSaver backlight? ( sys-auth/polkit-qt ) SLOT=0/1.2 SRC_URI=https://github.com/lxqt/liblxqt/releases/download/1.2.0/liblxqt-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1261043095ac8569354b656875233cef diff --git a/metadata/md5-cache/lxqt-base/libsysstat-0.4.6 b/metadata/md5-cache/lxqt-base/libsysstat-0.4.6 index 18eac01cc073..88952e759a42 100644 --- a/metadata/md5-cache/lxqt-base/libsysstat-0.4.6 +++ b/metadata/md5-cache/lxqt-base/libsysstat-0.4.6 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=>=dev-qt/qtcore-5.15:5 SLOT=0 SRC_URI=https://github.com/lxqt/libsysstat/releases/download/0.4.6/libsysstat-0.4.6.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0de4ed19133cbea4737e69e91ce77891 diff --git a/metadata/md5-cache/lxqt-base/lxqt-about-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-about-1.1.0 index 156e7540f427..bce4875eae20 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-about-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-about-1.1.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-libs/libqtxdg-3.9.0 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 =lxqt-base/liblxqt-1.1*:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-about/releases/download/1.1.0/lxqt-about-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=522ffbe13a12f124e5f875744b4212f5 diff --git a/metadata/md5-cache/lxqt-base/lxqt-about-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-about-1.2.0 index 27c86c3efafd..dd508e570406 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-about-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-about-1.2.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-libs/libqtxdg-3.10.0 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 =lxqt-base/liblxqt-1.2*:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-about/releases/download/1.2.0/lxqt-about-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=04b4b2ec3f66a42118b645fcbc2e7a17 diff --git a/metadata/md5-cache/lxqt-base/lxqt-admin-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-admin-1.1.0 index 5a3acec7b811..b827fdf86a02 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-admin-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-admin-1.1.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.1* kde-frameworks/kwindowsystem:5 >=sys-auth/polkit-qt-0.113.0 =lxqt-base/liblxqt-1.1*:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-admin/releases/download/1.1.0/lxqt-admin-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1103df6311a3b4fdd90db4844bd747e6 diff --git a/metadata/md5-cache/lxqt-base/lxqt-admin-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-admin-1.2.0 index 16a76cee058e..fd941a9376a5 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-admin-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-admin-1.2.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.2* kde-frameworks/kwindowsystem:5 >=sys-auth/polkit-qt-0.113.0 =lxqt-base/liblxqt-1.2*:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-admin/releases/download/1.2.0/lxqt-admin-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=52c7c2c7aeec0cf156ec15dcaf2eb85f diff --git a/metadata/md5-cache/lxqt-base/lxqt-config-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-config-1.1.0 index 958ef305e500..c73eeb9dd497 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-config-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-config-1.1.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 GPL-2+ GPL-3 LGPL-2 LGPL-2+ LGPL-2.1+ WTFPL-2 RDEPEND=>=dev-libs/libqtxdg-3.9.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=dev-qt/qtxml-5.15:5 =lxqt-base/liblxqt-1.1*:= sys-libs/zlib:= x11-apps/setxkbmap x11-libs/libxcb:= x11-libs/libX11 x11-libs/libXcursor x11-libs/libXfixes monitor? ( kde-plasma/libkscreen:5= ) touchpad? ( virtual/libudev:= x11-drivers/xf86-input-libinput x11-libs/libXi ) SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-config/releases/download/1.1.0/lxqt-config-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e539614ad50c77e7d4edc0e0911a27ed diff --git a/metadata/md5-cache/lxqt-base/lxqt-config-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-config-1.2.0 index 50a0964fe184..a0dd93831ee5 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-config-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-config-1.2.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 GPL-2+ GPL-3 LGPL-2 LGPL-2+ LGPL-2.1+ WTFPL-2 RDEPEND=>=dev-libs/libqtxdg-3.10.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=dev-qt/qtxml-5.15:5 =lxqt-base/liblxqt-1.2*:= sys-libs/zlib:= x11-apps/setxkbmap x11-libs/libxcb:= x11-libs/libX11 x11-libs/libXcursor x11-libs/libXfixes monitor? ( kde-plasma/libkscreen:5= ) touchpad? ( virtual/libudev:= x11-drivers/xf86-input-libinput x11-libs/libXi ) SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-config/releases/download/1.2.0/lxqt-config-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c727cbd5cec54d94d665563a35e12f14 diff --git a/metadata/md5-cache/lxqt-base/lxqt-config-1.2.0-r1 b/metadata/md5-cache/lxqt-base/lxqt-config-1.2.0-r1 index 39ba2fa39ded..8b8dfa61b9d0 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-config-1.2.0-r1 +++ b/metadata/md5-cache/lxqt-base/lxqt-config-1.2.0-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 GPL-2+ GPL-3 LGPL-2 LGPL-2+ LGPL-2.1+ WTFPL-2 RDEPEND=>=dev-libs/libqtxdg-3.10.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=dev-qt/qtxml-5.15:5 =lxqt-base/liblxqt-1.2*:= sys-libs/zlib:= x11-apps/setxkbmap x11-libs/libxcb:= x11-libs/libX11 x11-libs/libXcursor x11-libs/libXfixes monitor? ( kde-plasma/libkscreen:5= ) touchpad? ( virtual/libudev:= x11-drivers/xf86-input-libinput x11-libs/libXi ) SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-config/releases/download/1.2.0/lxqt-config-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=169a1fb635d19409b00c96c22967195c diff --git a/metadata/md5-cache/lxqt-base/lxqt-globalkeys-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-globalkeys-1.1.0 index d78c236aab39..6ee6612f5d6f 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-globalkeys-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-globalkeys-1.1.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.1*:= x11-libs/libX11 SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-globalkeys/releases/download/1.1.0/lxqt-globalkeys-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f74a7df4bb6da721be2ee74eefe212c9 diff --git a/metadata/md5-cache/lxqt-base/lxqt-globalkeys-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-globalkeys-1.2.0 index 041c3a2671d1..ece63c734d5b 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-globalkeys-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-globalkeys-1.2.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.2*:= x11-libs/libX11 SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-globalkeys/releases/download/1.2.0/lxqt-globalkeys-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=353b4a33877ec1b8764f7b449ee4b1ae diff --git a/metadata/md5-cache/lxqt-base/lxqt-notificationd-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-notificationd-1.1.0 index d0b097f6f16a..6b5b618f237b 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-notificationd-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-notificationd-1.1.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-libs/libqtxdg-3.9.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.1*:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-notificationd/releases/download/1.1.0/lxqt-notificationd-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=39e9034f0fb969cb51c6d2c584c86646 diff --git a/metadata/md5-cache/lxqt-base/lxqt-notificationd-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-notificationd-1.2.0 index 3b0cf5c0a015..988fbb94df73 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-notificationd-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-notificationd-1.2.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-libs/libqtxdg-3.10.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.2*:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-notificationd/releases/download/1.2.0/lxqt-notificationd-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f414a6b86795593c7ef24527aad83120 diff --git a/metadata/md5-cache/lxqt-base/lxqt-openssh-askpass-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-openssh-askpass-1.1.0 index b8665b652735..71077951158e 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-openssh-askpass-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-openssh-askpass-1.1.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.1*:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-openssh-askpass/releases/download/1.1.0/lxqt-openssh-askpass-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a90e532dfce42357f0c42cbf890681b3 diff --git a/metadata/md5-cache/lxqt-base/lxqt-openssh-askpass-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-openssh-askpass-1.2.0 index df4fe8c104a5..618025a2d573 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-openssh-askpass-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-openssh-askpass-1.2.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.2*:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-openssh-askpass/releases/download/1.2.0/lxqt-openssh-askpass-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a90e532dfce42357f0c42cbf890681b3 diff --git a/metadata/md5-cache/lxqt-base/lxqt-panel-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-panel-1.1.0 index ab038a92040c..b4f73fef03f1 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-panel-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-panel-1.1.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libqtxdg-3.9.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 REQUIRED_USE=|| ( desktopswitch mainmenu showdesktop taskbar ) volume? ( || ( alsa pulseaudio ) ) SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-panel/releases/download/1.1.0/lxqt-panel-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f7e7d72f8695cd4b32aa23fe8a72a30 diff --git a/metadata/md5-cache/lxqt-base/lxqt-panel-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-panel-1.2.0 index d426e87cae04..939e98229feb 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-panel-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-panel-1.2.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libqtxdg-3.10.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 REQUIRED_USE=|| ( desktopswitch mainmenu showdesktop taskbar ) volume? ( || ( alsa pulseaudio ) ) SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-panel/releases/download/1.2.0/lxqt-panel-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f34eb8ad59c609bf57751141d1207a0e diff --git a/metadata/md5-cache/lxqt-base/lxqt-policykit-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-policykit-1.1.0 index 2853fe83d84a..3d8303c67b02 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-policykit-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-policykit-1.1.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.1*:= >=sys-auth/polkit-qt-0.113.0 SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-policykit/releases/download/1.1.0/lxqt-policykit-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5e38bba86b43e77266ed2748541a08b9 diff --git a/metadata/md5-cache/lxqt-base/lxqt-policykit-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-policykit-1.2.0 index 459ca10f689c..5c29e795de43 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-policykit-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-policykit-1.2.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.2*:= >=sys-auth/polkit-qt-0.113.0 SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-policykit/releases/download/1.2.0/lxqt-policykit-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=283e629ca4299c0baaf91e4ed979afd9 diff --git a/metadata/md5-cache/lxqt-base/lxqt-powermanagement-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-powermanagement-1.1.0 index b439d808f519..a6025a3dbdd7 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-powermanagement-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-powermanagement-1.1.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-libs/libqtxdg-3.9.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 kde-frameworks/kidletime:5 kde-frameworks/solid:5 =lxqt-base/liblxqt-1.1*:= =lxqt-base/lxqt-globalkeys-1.1* sys-power/upower SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-powermanagement/releases/download/1.1.0/lxqt-powermanagement-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=21d0fbd02cb24bfe0e85b098bec1660d diff --git a/metadata/md5-cache/lxqt-base/lxqt-powermanagement-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-powermanagement-1.2.0 index 19fb457e63b7..58427f0cba20 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-powermanagement-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-powermanagement-1.2.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-libs/libqtxdg-3.10.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 kde-frameworks/kidletime:5 kde-frameworks/solid:5 =lxqt-base/liblxqt-1.2*:= =lxqt-base/lxqt-globalkeys-1.2* sys-power/upower SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-powermanagement/releases/download/1.2.0/lxqt-powermanagement-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1694b9c4989bfc9b67816a941865789a diff --git a/metadata/md5-cache/lxqt-base/lxqt-qtplugin-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-qtplugin-1.1.0 index 78e10ae8fe72..57bbb8d118b1 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-qtplugin-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-qtplugin-1.1.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1+ RDEPEND=dev-libs/libdbusmenu-qt[qt5(+)] >=dev-libs/libqtxdg-3.9.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5= >=dev-qt/qtwidgets-5.15:5 =x11-libs/libfm-qt-1.1* SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-qtplugin/releases/download/1.1.0/lxqt-qtplugin-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6363ec4db6282c1c6ed6649528ff7f19 diff --git a/metadata/md5-cache/lxqt-base/lxqt-qtplugin-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-qtplugin-1.2.0 index 16b07788a68c..b6bd7214528f 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-qtplugin-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-qtplugin-1.2.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1+ RDEPEND=dev-libs/libdbusmenu-qt[qt5(+)] >=dev-libs/libqtxdg-3.10.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5= >=dev-qt/qtwidgets-5.15:5 =x11-libs/libfm-qt-1.2* SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-qtplugin/releases/download/1.2.0/lxqt-qtplugin-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2489c02e096d004634b3e675848384b1 diff --git a/metadata/md5-cache/lxqt-base/lxqt-runner-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-runner-1.1.0 index 47c23a1d6210..6541f7bd96ed 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-runner-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-runner-1.1.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-cpp/muParser-2.2.3 >=dev-libs/libqtxdg-3.9.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtxml-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.1*:= =lxqt-base/lxqt-globalkeys-1.1* SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-runner/releases/download/1.1.0/lxqt-runner-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=45b3875e53cfbba1ad52dfceda47a176 diff --git a/metadata/md5-cache/lxqt-base/lxqt-runner-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-runner-1.2.0 index c0a43f97b4eb..5c39bd1fda5d 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-runner-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-runner-1.2.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=dev-cpp/muParser-2.2.3 >=dev-libs/libqtxdg-3.10.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtxml-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.2*:= =lxqt-base/lxqt-globalkeys-1.2* SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-runner/releases/download/1.2.0/lxqt-runner-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=15a08583c29d6ac55b8a7c2e36899f93 diff --git a/metadata/md5-cache/lxqt-base/lxqt-session-1.1.1 b/metadata/md5-cache/lxqt-base/lxqt-session-1.1.1 index 8a69cfe8a3b5..189c5ef348c1 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-session-1.1.1 +++ b/metadata/md5-cache/lxqt-base/lxqt-session-1.1.1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=app-misc/qtxdg-tools-3.9.1 >=dev-libs/libqtxdg-3.9.1 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 kde-frameworks/kwindowsystem:5[X] =lxqt-base/liblxqt-1.1*:= sys-process/procps:= x11-libs/libX11 x11-misc/xdg-user-dirs udev? ( virtual/libudev:= ) SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-session/releases/download/1.1.1/lxqt-session-1.1.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c0999ccb3db63f10b5734cd70023616b diff --git a/metadata/md5-cache/lxqt-base/lxqt-session-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-session-1.2.0 index cdb143e8b08e..2233db1907e1 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-session-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-session-1.2.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=>=app-misc/qtxdg-tools-3.10.0 >=dev-libs/libqtxdg-3.10.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 kde-frameworks/kwindowsystem:5[X] =lxqt-base/liblxqt-1.2*:= sys-process/procps:= x11-libs/libX11 x11-misc/xdg-user-dirs udev? ( virtual/libudev:= ) SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-session/releases/download/1.2.0/lxqt-session-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8f7a3dda25b6e26c0e770ee97001e71c diff --git a/metadata/md5-cache/lxqt-base/lxqt-sudo-1.1.0 b/metadata/md5-cache/lxqt-base/lxqt-sudo-1.1.0 index d007840313f7..04eba297eede 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-sudo-1.1.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-sudo-1.1.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=app-admin/sudo >=dev-qt/qtgui-5.15:5 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 ~lxqt-base/liblxqt-1.1.0:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-sudo/releases/download/1.1.0/lxqt-sudo-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=868f9db425b488137b5e9962e7f3b3e2 diff --git a/metadata/md5-cache/lxqt-base/lxqt-sudo-1.2.0 b/metadata/md5-cache/lxqt-base/lxqt-sudo-1.2.0 index 8ec30728db2c..49a40263f77d 100644 --- a/metadata/md5-cache/lxqt-base/lxqt-sudo-1.2.0 +++ b/metadata/md5-cache/lxqt-base/lxqt-sudo-1.2.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 LGPL-2.1+ RDEPEND=app-admin/sudo >=dev-qt/qtgui-5.15:5 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 ~lxqt-base/liblxqt-1.2.0:= SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-sudo/releases/download/1.2.0/lxqt-sudo-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aed88033f7774605c8fbab4bfd6658d2 diff --git a/metadata/md5-cache/mail-client/Manifest.gz b/metadata/md5-cache/mail-client/Manifest.gz index 8e420860e719..a24fe37bdc0e 100644 Binary files a/metadata/md5-cache/mail-client/Manifest.gz and b/metadata/md5-cache/mail-client/Manifest.gz differ diff --git a/metadata/md5-cache/mail-client/evolution-3.46.3-r1 b/metadata/md5-cache/mail-client/evolution-3.46.3-r1 index b2de87d4556a..d14e8647ad79 100644 --- a/metadata/md5-cache/mail-client/evolution-3.46.3-r1 +++ b/metadata/md5-cache/mail-client/evolution-3.46.3-r1 @@ -12,5 +12,5 @@ LICENSE=|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP RDEPEND=>=app-text/enchant-2.2.0:2 >=dev-db/sqlite-3.7.17:3 >=dev-libs/glib-2.66:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.46.3:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-3.0:3.0 >=net-libs/webkit-gtk-2.38.0:4.1=[spell?] >=x11-libs/cairo-1.9.15[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.22:3 >=x11-libs/libnotify-0.7 >=x11-misc/shared-mime-info-0.22 app-text/cmark:= >=app-text/iso-codes-0.49 >=app-accessibility/at-spi2-core-2.46.0:2 gnome-base/dconf x11-libs/libSM x11-libs/libICE archive? ( >=app-arch/gnome-autoar-0.1.1[gtk] ) bogofilter? ( mail-filter/bogofilter ) geolocation? ( >=media-libs/libchamplain-0.12.21:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.26.3:2 ) ldap? ( >=net-nds/openldap-2:= ) spamassassin? ( mail-filter/spamassassin ) spell? ( >=app-text/gspell-1.8:= ) ssl? ( >=dev-libs/nspr-4.6.1 >=dev-libs/nss-3.11 ) weather? ( >=dev-libs/libgweather-4.2.0:4= >=sci-geosciences/geocode-glib-3.26.3:2 ) ytnef? ( net-mail/ytnef ) highlight? ( app-text/highlight ) SLOT=2.0 SRC_URI=mirror://gnome/sources/evolution/3.46/evolution-3.46.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=289119007dba1b011282e75bc5212c9c diff --git a/metadata/md5-cache/mail-client/evolution-3.46.4 b/metadata/md5-cache/mail-client/evolution-3.46.4 index 9ff565659a19..742c9c7496b8 100644 --- a/metadata/md5-cache/mail-client/evolution-3.46.4 +++ b/metadata/md5-cache/mail-client/evolution-3.46.4 @@ -12,5 +12,5 @@ LICENSE=|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP RDEPEND=>=app-text/enchant-2.2.0:2 >=dev-db/sqlite-3.7.17:3 >=dev-libs/glib-2.66:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.46.4:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-3.0:3.0 >=net-libs/webkit-gtk-2.38.0:4.1=[spell?] >=x11-libs/cairo-1.9.15[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.22:3 >=x11-libs/libnotify-0.7 >=x11-misc/shared-mime-info-0.22 app-text/cmark:= >=app-text/iso-codes-0.49 >=app-accessibility/at-spi2-core-2.46.0:2 gnome-base/dconf x11-libs/libSM x11-libs/libICE archive? ( >=app-arch/gnome-autoar-0.1.1[gtk] ) bogofilter? ( mail-filter/bogofilter ) geolocation? ( >=media-libs/libchamplain-0.12.21:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.26.3:2 ) ldap? ( >=net-nds/openldap-2:= ) spamassassin? ( mail-filter/spamassassin ) spell? ( >=app-text/gspell-1.8:= ) ssl? ( >=dev-libs/nspr-4.6.1 >=dev-libs/nss-3.11 ) weather? ( >=dev-libs/libgweather-4.2.0:4= >=sci-geosciences/geocode-glib-3.26.3:2 ) ytnef? ( net-mail/ytnef ) highlight? ( app-text/highlight ) SLOT=2.0 SRC_URI=mirror://gnome/sources/evolution/3.46/evolution-3.46.4.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d0a42f13be7dab83ee0e1314bbda954a diff --git a/metadata/md5-cache/mail-client/evolution-3.48.0 b/metadata/md5-cache/mail-client/evolution-3.48.0 new file mode 100644 index 000000000000..d267c0a4c4d8 --- /dev/null +++ b/metadata/md5-cache/mail-client/evolution-3.48.0 @@ -0,0 +1,16 @@ +BDEPEND=app-text/docbook-xml-dtd:4.1.2 dev-util/gdbus-codegen dev-util/glib-utils dev-util/itstool gtk-doc? ( dev-util/gtk-doc app-text/docbook-xml-dtd:4.3 ) >=dev-util/intltool-0.40.0 >=sys-devel/gettext-0.18.3 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 >=app-portage/elt-patches-20170815 app-arch/xz-utils +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=app-text/enchant-2.2.0:2 >=dev-db/sqlite-3.7.17:3 >=dev-libs/glib-2.66:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.48.0:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-3.0:3.0 >=net-libs/webkit-gtk-2.38.0:4.1=[spell?] >=x11-libs/cairo-1.9.15[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.22:3 >=x11-libs/libnotify-0.7 >=x11-misc/shared-mime-info-0.22 app-text/cmark:= >=app-text/iso-codes-0.49 >=app-accessibility/at-spi2-core-2.46.0:2 gnome-base/dconf x11-libs/libSM x11-libs/libICE archive? ( >=app-arch/gnome-autoar-0.1.1[gtk] ) bogofilter? ( mail-filter/bogofilter ) geolocation? ( >=media-libs/libchamplain-0.12.21:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.26.3:2 ) ldap? ( >=net-nds/openldap-2:= ) spamassassin? ( mail-filter/spamassassin ) spell? ( >=app-text/gspell-1.8:= ) ssl? ( >=dev-libs/nspr-4.6.1 >=dev-libs/nss-3.11 ) weather? ( >=dev-libs/libgweather-4.2.0:4= >=sci-geosciences/geocode-glib-3.26.3:2 ) ytnef? ( net-mail/ytnef ) +DESCRIPTION=Integrated mail, addressbook and calendaring functionality +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Evolution https://gitlab.gnome.org/GNOME/evolution +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=cmake gnome2 readme.gentoo-r1 +IUSE=archive +bogofilter geolocation gtk-doc highlight ldap spamassassin spell ssl +weather ytnef +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP +RDEPEND=>=app-text/enchant-2.2.0:2 >=dev-db/sqlite-3.7.17:3 >=dev-libs/glib-2.66:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.48.0:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-3.0:3.0 >=net-libs/webkit-gtk-2.38.0:4.1=[spell?] >=x11-libs/cairo-1.9.15[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.22:3 >=x11-libs/libnotify-0.7 >=x11-misc/shared-mime-info-0.22 app-text/cmark:= >=app-text/iso-codes-0.49 >=app-accessibility/at-spi2-core-2.46.0:2 gnome-base/dconf x11-libs/libSM x11-libs/libICE archive? ( >=app-arch/gnome-autoar-0.1.1[gtk] ) bogofilter? ( mail-filter/bogofilter ) geolocation? ( >=media-libs/libchamplain-0.12.21:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.26.3:2 ) ldap? ( >=net-nds/openldap-2:= ) spamassassin? ( mail-filter/spamassassin ) spell? ( >=app-text/gspell-1.8:= ) ssl? ( >=dev-libs/nspr-4.6.1 >=dev-libs/nss-3.11 ) weather? ( >=dev-libs/libgweather-4.2.0:4= >=sci-geosciences/geocode-glib-3.26.3:2 ) ytnef? ( net-mail/ytnef ) highlight? ( app-text/highlight ) +SLOT=2.0 +SRC_URI=mirror://gnome/sources/evolution/3.48/evolution-3.48.0.tar.xz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=7c34521fa8760d833175f82f3733df03 diff --git a/metadata/md5-cache/mail-client/kube-0.7.0-r1 b/metadata/md5-cache/mail-client/kube-0.7.0-r1 index 4745667fcf39..fca1ee5fd1f2 100644 --- a/metadata/md5-cache/mail-client/kube-0.7.0-r1 +++ b/metadata/md5-cache/mail-client/kube-0.7.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=app-crypt/gpgme-1.7.1:=[cxx,qt5] dev-libs/kasync:5 >=dev-libs/sink-0.7 RESTRICT=test SLOT=5 SRC_URI=mirror://kde/unstable/kube/0.7.0/src/kube-0.7.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=28bc2813af4917b88b3a1da122a61eab diff --git a/metadata/md5-cache/mail-filter/Manifest.gz b/metadata/md5-cache/mail-filter/Manifest.gz index 4df0dc5e4d83..aa2d26316294 100644 Binary files a/metadata/md5-cache/mail-filter/Manifest.gz and b/metadata/md5-cache/mail-filter/Manifest.gz differ diff --git a/metadata/md5-cache/mail-filter/maildrop-3.0.0-r1 b/metadata/md5-cache/mail-filter/maildrop-3.0.0-r1 deleted file mode 100644 index 92df28483e4b..000000000000 --- a/metadata/md5-cache/mail-filter/maildrop-3.0.0-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=configure install prepare -DEPEND=!mail-mta/courier net-mail/mailbase dev-libs/libpcre net-dns/libidn:0= >=net-libs/courier-unicode-2.0:= gdbm? ( >=sys-libs/gdbm-1.8.0:= ) mysql? ( net-libs/courier-authlib ) postgres? ( net-libs/courier-authlib ) ldap? ( net-libs/courier-authlib ) authlib? ( net-libs/courier-authlib ) fam? ( virtual/fam ) !gdbm? ( berkdb? ( >=sys-libs/db-3:= ) ) tools? ( !mail-mta/netqmail !net-mail/courier-imap !mail-mta/mini-qmail !mail-mta/qmail-ldap ) -DESCRIPTION=Mail delivery agent/filter -EAPI=7 -HOMEPAGE=https://www.courier-mta.org/maildrop/ -INHERIT=flag-o-matic autotools -IUSE=berkdb debug dovecot fam gdbm ldap mysql postgres static-libs authlib +tools trashquota -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~s390 sparc x86 -LICENSE=GPL-3 -RDEPEND=!mail-mta/courier net-mail/mailbase dev-libs/libpcre net-dns/libidn:0= >=net-libs/courier-unicode-2.0:= gdbm? ( >=sys-libs/gdbm-1.8.0:= ) mysql? ( net-libs/courier-authlib ) postgres? ( net-libs/courier-authlib ) ldap? ( net-libs/courier-authlib ) authlib? ( net-libs/courier-authlib ) fam? ( virtual/fam ) !gdbm? ( berkdb? ( >=sys-libs/db-3:= ) ) tools? ( !mail-mta/netqmail !net-mail/courier-imap !mail-mta/mini-qmail !mail-mta/qmail-ldap ) dev-lang/perl dovecot? ( net-mail/dovecot ) -REQUIRED_USE=mysql? ( authlib ) postgres? ( authlib ) ldap? ( authlib ) -SLOT=0 -SRC_URI=mirror://sourceforge/courier/maildrop-3.0.0.tar.bz2 -_eclasses_=autotools b5529dc611971a61a30153916014f616 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=bb8a185b6b63dd1e03183bcc6ced0f79 diff --git a/metadata/md5-cache/mail-filter/postsrsd-1.12 b/metadata/md5-cache/mail-filter/postsrsd-1.12 index 2c8b85fb3864..50de8a55e3cb 100644 --- a/metadata/md5-cache/mail-filter/postsrsd-1.12 +++ b/metadata/md5-cache/mail-filter/postsrsd-1.12 @@ -8,5 +8,5 @@ KEYWORDS=amd64 x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://github.com/roehling/postsrsd/archive/1.12.tar.gz -> postsrsd-1.12.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1fe9f769363562fe3d34fbf4e8e8386b diff --git a/metadata/md5-cache/mail-filter/rspamd-3.4-r2 b/metadata/md5-cache/mail-filter/rspamd-3.4-r2 index 8d5ce64b0642..bae5c0ae9928 100644 --- a/metadata/md5-cache/mail-filter/rspamd-3.4-r2 +++ b/metadata/md5-cache/mail-filter/rspamd-3.4-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_t RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rspamd/rspamd/archive/3.4.tar.gz -> rspamd-3.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=5dc87812a42a6a4d3740f9890f5d01ef +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=bb967e1e262a4ce7b098e839b1d2b3cc diff --git a/metadata/md5-cache/mail-filter/rspamd-3.5 b/metadata/md5-cache/mail-filter/rspamd-3.5 new file mode 100644 index 000000000000..33b02ee86af3 --- /dev/null +++ b/metadata/md5-cache/mail-filter/rspamd-3.5 @@ -0,0 +1,17 @@ +BDEPEND=dev-lang/perl dev-util/ragel virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) lua_single_target_luajit? ( dev-lua/LuaBitOp[lua_targets_luajit(-)] dev-lua/lua-argparse[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/LuaBitOp[lua_targets_lua5-1(-)] dev-lua/lua-argparse[lua_targets_lua5-1(-)] ) lua_single_target_lua5-3? ( dev-lua/LuaBitOp[lua_targets_lua5-3(-)] dev-lua/lua-argparse[lua_targets_lua5-3(-)] ) lua_single_target_lua5-4? ( dev-lua/LuaBitOp[lua_targets_lua5-4(-)] dev-lua/lua-argparse[lua_targets_lua5-4(-)] ) acct-group/rspamd acct-user/rspamd app-arch/zstd:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libfmt:= dev-libs/libpcre2:=[jit=] dev-libs/libsodium:= dev-libs/openssl:0=[-bindist(-)] dev-libs/snowball-stemmer:= >=dev-libs/xxhash-0.8.0 sys-apps/file sys-libs/zlib blas? ( virtual/blas virtual/lapack ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc:= ) selinux? ( sec-policy/selinux-spamassassin ) dev-cpp/doctest +DESCRIPTION=Rapid spam filtering system +EAPI=8 +HOMEPAGE=https://rspamd.com https://github.com/rspamd/rspamd +INHERIT=cmake lua-single pax-utils systemd tmpfiles +IUSE=blas cpu_flags_x86_ssse3 jemalloc +jit selinux test lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 Boost-1.0 BSD BSD-1 BSD-2 CC0-1.0 LGPL-3 MIT public-domain unicode ZLIB +RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) lua_single_target_luajit? ( dev-lua/LuaBitOp[lua_targets_luajit(-)] dev-lua/lua-argparse[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/LuaBitOp[lua_targets_lua5-1(-)] dev-lua/lua-argparse[lua_targets_lua5-1(-)] ) lua_single_target_lua5-3? ( dev-lua/LuaBitOp[lua_targets_lua5-3(-)] dev-lua/lua-argparse[lua_targets_lua5-3(-)] ) lua_single_target_lua5-4? ( dev-lua/LuaBitOp[lua_targets_lua5-4(-)] dev-lua/lua-argparse[lua_targets_lua5-4(-)] ) acct-group/rspamd acct-user/rspamd app-arch/zstd:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libfmt:= dev-libs/libpcre2:=[jit=] dev-libs/libsodium:= dev-libs/openssl:0=[-bindist(-)] dev-libs/snowball-stemmer:= >=dev-libs/xxhash-0.8.0 sys-apps/file sys-libs/zlib blas? ( virtual/blas virtual/lapack ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc:= ) selinux? ( sec-policy/selinux-spamassassin ) virtual/tmpfiles +REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) test? ( lua_single_target_luajit ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/rspamd/rspamd/archive/3.5.tar.gz -> rspamd-3.5.tar.gz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=49c75de6dbfa50e1227332aea04ab78c diff --git a/metadata/md5-cache/mail-filter/rspamd-9999 b/metadata/md5-cache/mail-filter/rspamd-9999 index 95290d65d2e5..3c65a910edb4 100644 --- a/metadata/md5-cache/mail-filter/rspamd-9999 +++ b/metadata/md5-cache/mail-filter/rspamd-9999 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1 REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) test? ( lua_single_target_luajit ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=e8ffd7088eb884e5ecf80069f78676a6 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=dc3c88ac88e7fb09916d14d608b67642 diff --git a/metadata/md5-cache/mail-filter/spamassassin-4.0.0-r1 b/metadata/md5-cache/mail-filter/spamassassin-4.0.0-r1 index 65d647b7f55a..e8bafadfe1b2 100644 --- a/metadata/md5-cache/mail-filter/spamassassin-4.0.0-r1 +++ b/metadata/md5-cache/mail-filter/spamassassin-4.0.0-r1 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://spamassassin.apache.org/ INHERIT=perl-functions systemd toolchain-funcs verify-sig IUSE=berkdb cron ipv6 ldap mysql postgres qmail sqlite ssl test verify-sig -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 GPL-2 RDEPEND=acct-user/spamd acct-group/spamd dev-lang/perl:= dev-perl/HTML-Parser dev-perl/Net-DNS dev-perl/NetAddr-IP virtual/perl-Digest-SHA ssl? ( dev-libs/openssl:0= ) app-crypt/gnupg dev-perl/Archive-Zip dev-perl/BSD-Resource dev-perl/Digest-SHA1 dev-perl/Email-Address-XS dev-perl/Encode-Detect || ( dev-perl/GeoIP2 dev-perl/Geo-IP ) dev-perl/IO-String dev-perl/Mail-DKIM dev-perl/Mail-DMARC dev-perl/Mail-SPF dev-perl/Net-Patricia dev-perl/Net-LibIDN2 dev-util/re2c || ( net-misc/wget[ssl] net-misc/curl[ssl] ) virtual/perl-MIME-Base64 dev-perl/Pod-Parser berkdb? ( virtual/perl-DB_File ) ipv6? ( dev-perl/IO-Socket-INET6 ) ldap? ( dev-perl/perl-ldap ) mysql? ( dev-perl/DBI dev-perl/DBD-mysql ) postgres? ( dev-perl/DBI dev-perl/DBD-Pg ) sqlite? ( dev-perl/DBI dev-perl/DBD-SQLite ) ssl? ( dev-perl/IO-Socket-SSL ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://apache/spamassassin/source/Mail-SpamAssassin-4.0.0.tar.bz2 verify-sig? ( https://downloads.apache.org/spamassassin/source/Mail-SpamAssassin-4.0.0.tar.bz2.asc ) _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 perl-functions c3fca037246e877693badea0df3b0ef8 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=88aa2ce2eec79d2ed52b972b40011917 +_md5_=e8904d3cb4ab0aacf3a020624f4b9ffc diff --git a/metadata/md5-cache/mail-filter/spamassassin-4.0.0-r2 b/metadata/md5-cache/mail-filter/spamassassin-4.0.0-r2 new file mode 100644 index 000000000000..ee35146891c6 --- /dev/null +++ b/metadata/md5-cache/mail-filter/spamassassin-4.0.0-r2 @@ -0,0 +1,16 @@ +BDEPEND=acct-user/spamd acct-group/spamd dev-lang/perl:= dev-perl/HTML-Parser dev-perl/Net-DNS dev-perl/NetAddr-IP virtual/perl-Digest-SHA ssl? ( dev-libs/openssl:0= ) app-crypt/gnupg dev-perl/Archive-Zip dev-perl/BSD-Resource dev-perl/Digest-SHA1 dev-perl/Email-Address-XS dev-perl/Encode-Detect || ( dev-perl/GeoIP2 dev-perl/Geo-IP ) dev-perl/IO-String dev-perl/Mail-DKIM dev-perl/Mail-DMARC dev-perl/Mail-SPF dev-perl/Net-Patricia dev-perl/Net-LibIDN2 dev-util/re2c || ( net-misc/wget[ssl] net-misc/curl[ssl] ) virtual/perl-MIME-Base64 dev-perl/Pod-Parser berkdb? ( virtual/perl-DB_File ) ipv6? ( dev-perl/IO-Socket-INET6 ) ldap? ( dev-perl/perl-ldap ) mysql? ( dev-perl/DBI dev-perl/DBD-mysql ) postgres? ( dev-perl/DBI dev-perl/DBD-Pg ) sqlite? ( dev-perl/DBI dev-perl/DBD-SQLite ) ssl? ( dev-perl/IO-Socket-SSL ) verify-sig? ( sec-keys/openpgp-keys-spamassassin ) virtual/pkgconfig verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=compile configure install postinst preinst prepare test unpack +DEPEND=acct-user/spamd acct-group/spamd dev-lang/perl:= dev-perl/HTML-Parser dev-perl/Net-DNS dev-perl/NetAddr-IP virtual/perl-Digest-SHA ssl? ( dev-libs/openssl:0= ) test? ( app-crypt/gnupg dev-perl/Archive-Zip dev-perl/BSD-Resource dev-perl/Digest-SHA1 dev-perl/Email-Address-XS dev-perl/Encode-Detect || ( dev-perl/GeoIP2 dev-perl/Geo-IP ) dev-perl/IO-String dev-perl/Mail-DKIM dev-perl/Mail-DMARC dev-perl/Mail-SPF dev-perl/Net-Patricia dev-perl/Net-LibIDN2 dev-util/re2c || ( net-misc/wget[ssl] net-misc/curl[ssl] ) virtual/perl-MIME-Base64 dev-perl/Pod-Parser berkdb? ( virtual/perl-DB_File ) ipv6? ( dev-perl/IO-Socket-INET6 ) ldap? ( dev-perl/perl-ldap ) mysql? ( dev-perl/DBI dev-perl/DBD-mysql ) postgres? ( dev-perl/DBI dev-perl/DBD-Pg ) sqlite? ( dev-perl/DBI dev-perl/DBD-SQLite ) ssl? ( dev-perl/IO-Socket-SSL ) virtual/perl-Test-Harness ) +DESCRIPTION=An extensible mail filter which can identify and tag spam +EAPI=8 +HOMEPAGE=https://spamassassin.apache.org/ +INHERIT=perl-functions systemd toolchain-funcs verify-sig autotools +IUSE=berkdb cron ipv6 ldap mysql postgres qmail sqlite ssl test verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 GPL-2 +RDEPEND=acct-user/spamd acct-group/spamd dev-lang/perl:= dev-perl/HTML-Parser dev-perl/Net-DNS dev-perl/NetAddr-IP virtual/perl-Digest-SHA ssl? ( dev-libs/openssl:0= ) app-crypt/gnupg dev-perl/Archive-Zip dev-perl/BSD-Resource dev-perl/Digest-SHA1 dev-perl/Email-Address-XS dev-perl/Encode-Detect || ( dev-perl/GeoIP2 dev-perl/Geo-IP ) dev-perl/IO-String dev-perl/Mail-DKIM dev-perl/Mail-DMARC dev-perl/Mail-SPF dev-perl/Net-Patricia dev-perl/Net-LibIDN2 dev-util/re2c || ( net-misc/wget[ssl] net-misc/curl[ssl] ) virtual/perl-MIME-Base64 dev-perl/Pod-Parser berkdb? ( virtual/perl-DB_File ) ipv6? ( dev-perl/IO-Socket-INET6 ) ldap? ( dev-perl/perl-ldap ) mysql? ( dev-perl/DBI dev-perl/DBD-mysql ) postgres? ( dev-perl/DBI dev-perl/DBD-Pg ) sqlite? ( dev-perl/DBI dev-perl/DBD-SQLite ) ssl? ( dev-perl/IO-Socket-SSL ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://apache/spamassassin/source/Mail-SpamAssassin-4.0.0.tar.bz2 verify-sig? ( https://downloads.apache.org/spamassassin/source/Mail-SpamAssassin-4.0.0.tar.bz2.asc ) +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 perl-functions c3fca037246e877693badea0df3b0ef8 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 +_md5_=dcc00b7839dac5ac217fa3e42cabc735 diff --git a/metadata/md5-cache/media-fonts/Manifest.gz b/metadata/md5-cache/media-fonts/Manifest.gz index e27b279ecf90..52a58f5b9d03 100644 Binary files a/metadata/md5-cache/media-fonts/Manifest.gz and b/metadata/md5-cache/media-fonts/Manifest.gz differ diff --git a/metadata/md5-cache/media-fonts/noto-emoji-20220912 b/metadata/md5-cache/media-fonts/noto-emoji-20220912 deleted file mode 100644 index 3b1245a43573..000000000000 --- a/metadata/md5-cache/media-fonts/noto-emoji-20220912 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=buildfont? ( || ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) app-arch/zopfli || ( ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/fonttools-4.7.0[python_targets_python3_10(-)] >=dev-python/nototools-0.2.13[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/fonttools-4.7.0[python_targets_python3_9(-)] >=dev-python/nototools-0.2.13[python_targets_python3_9(-)] ) ) media-gfx/pngquant x11-libs/cairo || ( media-gfx/imagemagick[png] media-gfx/graphicsmagick[png] ) ) X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings ) -DEFINED_PHASES=compile install postinst postrm prepare setup -DESCRIPTION=Google Noto Emoji fonts -EAPI=8 -HOMEPAGE=https://www.google.com/get/noto/ https://github.com/googlefonts/noto-emoji -INHERIT=font python-any-r1 -IUSE=buildfont X -KEYWORDS=amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86 -LICENSE=Apache-2.0 OFL-1.1 -RESTRICT=binchecks strip -SLOT=0 -SRC_URI=https://github.com/googlefonts/noto-emoji/archive/e8073ab740292f8d5f19b5de144087ac58044d06.tar.gz -> noto-emoji-20220912.tar.gz -_eclasses_=font aa113a3df9cd0a9693a1c1ee7c34a6eb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=780754fbb4e3b3ae24a6da9ad02d60ca diff --git a/metadata/md5-cache/media-fonts/oxygen-fonts-5.4.3-r1 b/metadata/md5-cache/media-fonts/oxygen-fonts-5.4.3-r1 index ed807ffab71f..5a625d4be343 100644 --- a/metadata/md5-cache/media-fonts/oxygen-fonts-5.4.3-r1 +++ b/metadata/md5-cache/media-fonts/oxygen-fonts-5.4.3-r1 @@ -9,5 +9,5 @@ KEYWORDS=amd64 ~arm ~loong x86 LICENSE=OFL-1.1 SLOT=5 SRC_URI=mirror://kde/Attic/plasma/5.4.3/oxygen-fonts-5.4.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 font aa113a3df9cd0a9693a1c1ee7c34a6eb kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 font aa113a3df9cd0a9693a1c1ee7c34a6eb kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=79973ed12df1d43f840a32f6ed34ef98 diff --git a/metadata/md5-cache/media-gfx/Manifest.gz b/metadata/md5-cache/media-gfx/Manifest.gz index 5bb89bf7a889..03b221514281 100644 Binary files a/metadata/md5-cache/media-gfx/Manifest.gz and b/metadata/md5-cache/media-gfx/Manifest.gz differ diff --git a/metadata/md5-cache/media-gfx/alembic-1.8.4 b/metadata/md5-cache/media-gfx/alembic-1.8.4 index d2888a05e56a..6900ad6c14c3 100644 --- a/metadata/md5-cache/media-gfx/alembic-1.8.4 +++ b/metadata/md5-cache/media-gfx/alembic-1.8.4 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/alembic/alembic/archive/1.8.4.tar.gz -> alembic-1.8.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8587261ca83d7f13f33b476eecc7706a diff --git a/metadata/md5-cache/media-gfx/ansilove-4.1.5 b/metadata/md5-cache/media-gfx/ansilove-4.1.5 index 17ab1c410730..b296ad1baa0f 100644 --- a/metadata/md5-cache/media-gfx/ansilove-4.1.5 +++ b/metadata/md5-cache/media-gfx/ansilove-4.1.5 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=dev-libs/libansilove SLOT=0 SRC_URI=https://github.com/ansilove/ansilove/archive/refs/tags/4.1.5.tar.gz -> ansilove-4.1.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=27fd7a04f09e6138c2b8b42a262b921d diff --git a/metadata/md5-cache/media-gfx/ansilove-4.1.6 b/metadata/md5-cache/media-gfx/ansilove-4.1.6 index 554e0c285b9d..98ab678f77e8 100644 --- a/metadata/md5-cache/media-gfx/ansilove-4.1.6 +++ b/metadata/md5-cache/media-gfx/ansilove-4.1.6 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=dev-libs/libansilove SLOT=0 SRC_URI=https://github.com/ansilove/ansilove/archive/refs/tags/4.1.6.tar.gz -> ansilove-4.1.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a3d840db1198d983f5b8cb75cc0eb4f7 diff --git a/metadata/md5-cache/media-gfx/ansilove-9999 b/metadata/md5-cache/media-gfx/ansilove-9999 index 0844c11dd15a..91aeabc7e4ba 100644 --- a/metadata/md5-cache/media-gfx/ansilove-9999 +++ b/metadata/md5-cache/media-gfx/ansilove-9999 @@ -9,5 +9,5 @@ LICENSE=BSD-2 PROPERTIES=live RDEPEND=dev-libs/libansilove SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=27fd7a04f09e6138c2b8b42a262b921d diff --git a/metadata/md5-cache/media-gfx/apngasm-3.1.10 b/metadata/md5-cache/media-gfx/apngasm-3.1.10 index f5c0d12e2ae7..bdb3085acb63 100644 --- a/metadata/md5-cache/media-gfx/apngasm-3.1.10 +++ b/metadata/md5-cache/media-gfx/apngasm-3.1.10 @@ -10,5 +10,5 @@ LICENSE=ZLIB RDEPEND=dev-libs/boost:= media-libs/libpng:0= sys-libs/zlib:= SLOT=0 SRC_URI=https://github.com/apngasm/apngasm/archive/refs/tags/3.1.10.tar.gz -> apngasm-3.1.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4a71950ec46e22bf5e473ddf15723a0d diff --git a/metadata/md5-cache/media-gfx/arss-0.2.3-r1 b/metadata/md5-cache/media-gfx/arss-0.2.3-r1 index 18b50263e689..351fc7623384 100644 --- a/metadata/md5-cache/media-gfx/arss-0.2.3-r1 +++ b/metadata/md5-cache/media-gfx/arss-0.2.3-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=sci-libs/fftw:3.0= SLOT=0 SRC_URI=mirror://sourceforge/arss/arss-0.2.3-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0b7e6a9221e47106dbcadcecd247d569 diff --git a/metadata/md5-cache/media-gfx/autopano-sift-C-2.5.1-r1 b/metadata/md5-cache/media-gfx/autopano-sift-C-2.5.1-r1 index b37d2cfc00f3..36bf69f13221 100644 --- a/metadata/md5-cache/media-gfx/autopano-sift-C-2.5.1-r1 +++ b/metadata/md5-cache/media-gfx/autopano-sift-C-2.5.1-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/libxml2 media-libs/libjpeg-turbo:= media-libs/libpano13:= media-libs/libpng:= media-libs/tiff:= sys-libs/zlib !media-gfx/autopano-sift SLOT=0 SRC_URI=mirror://sourceforge/hugin/autopano-sift-C-2.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=79124f7b54fa778da4c7ecb77975a605 diff --git a/metadata/md5-cache/media-gfx/blender-2.93.13 b/metadata/md5-cache/media-gfx/blender-2.93.13 index e63c0d0a7397..0041d7fec206 100644 --- a/metadata/md5-cache/media-gfx/blender-2.93.13 +++ b/metadata/md5-cache/media-gfx/blender-2.93.13 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=2.93 SRC_URI=https://download.blender.org/source/blender-2.93.13.tar.xz https://dev.gentoo.org/~sam/distfiles/media-gfx/blender/blender-3.0.1-ffmpeg-5.0.patch.bz2 test? ( https://dev.gentoo.org/~sam/distfiles/media-gfx/blender/blender-2.93.0-tests.tar.bz2 ) -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3cb01322b6f5b55c63aaeea3da879c9b diff --git a/metadata/md5-cache/media-gfx/blender-2.93.14 b/metadata/md5-cache/media-gfx/blender-2.93.14 index adf84478d09a..084037fddf8c 100644 --- a/metadata/md5-cache/media-gfx/blender-2.93.14 +++ b/metadata/md5-cache/media-gfx/blender-2.93.14 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=2.93 SRC_URI=https://download.blender.org/source/blender-2.93.14.tar.xz https://dev.gentoo.org/~sam/distfiles/media-gfx/blender/blender-3.0.1-ffmpeg-5.0.patch.bz2 test? ( https://dev.gentoo.org/~sam/distfiles/media-gfx/blender/blender-2.93.0-tests.tar.bz2 ) -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=edb1c8f8b581f5083336f44726b75d85 diff --git a/metadata/md5-cache/media-gfx/blender-3.3.2 b/metadata/md5-cache/media-gfx/blender-3.3.2 index 1d3610d15b23..b488a6b04dd6 100644 --- a/metadata/md5-cache/media-gfx/blender-3.3.2 +++ b/metadata/md5-cache/media-gfx/blender-3.3.2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 ) alembic? ( openexr ) cuda? ( RESTRICT=!test? ( test ) test SLOT=3.3 SRC_URI=https://download.blender.org/source/blender-3.3.2.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e1259902845a320c6839f9866007b42a diff --git a/metadata/md5-cache/media-gfx/blender-3.3.3 b/metadata/md5-cache/media-gfx/blender-3.3.3 index fbc5917a8590..21bdebbff506 100644 --- a/metadata/md5-cache/media-gfx/blender-3.3.3 +++ b/metadata/md5-cache/media-gfx/blender-3.3.3 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 ) alembic? ( openexr ) cuda? ( RESTRICT=!test? ( test ) test SLOT=3.3 SRC_URI=https://download.blender.org/source/blender-3.3.3.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e182b1c53a0d82c62b0c21c75ffc4512 diff --git a/metadata/md5-cache/media-gfx/blender-3.4.1 b/metadata/md5-cache/media-gfx/blender-3.4.1 index a235c0d29a12..8b98302aff13 100644 --- a/metadata/md5-cache/media-gfx/blender-3.4.1 +++ b/metadata/md5-cache/media-gfx/blender-3.4.1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 ) alembic? ( openexr ) cuda? ( RESTRICT=!test? ( test ) SLOT=3.4 SRC_URI=https://download.blender.org/source/blender-3.4.1.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7eab65049bf2d2d2fc1723088b3afc72 diff --git a/metadata/md5-cache/media-gfx/blender-9999 b/metadata/md5-cache/media-gfx/blender-9999 index e274f343a414..8384b7b74634 100644 --- a/metadata/md5-cache/media-gfx/blender-9999 +++ b/metadata/md5-cache/media-gfx/blender-9999 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) de REQUIRED_USE=^^ ( python_single_target_python3_10 ) alembic? ( openexr ) cuda? ( cycles ) cycles? ( openexr tiff openimageio ) fluid? ( tbb ) openvdb? ( tbb ) optix? ( cuda ) osl? ( cycles ) test? ( color-management ) RESTRICT=!test? ( test ) SLOT=9999 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 subversion a98eebf2efc83b38f8d1982b8a522e75 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 subversion a98eebf2efc83b38f8d1982b8a522e75 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e239507ad503e5b7d7cb6c3362d87679 diff --git a/metadata/md5-cache/media-gfx/cairosvg-2.5.2 b/metadata/md5-cache/media-gfx/cairosvg-2.5.2 deleted file mode 100644 index b41ca122bffc..000000000000 --- a/metadata/md5-cache/media-gfx/cairosvg-2.5.2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/cairocffi[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cssselect2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/defusedxml[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pillow[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tinycss2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/setuptools-65.7.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=CLI and library to export SVG to PDF, PostScript, and PNG -EAPI=7 -HOMEPAGE=https://cairosvg.org/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~riscv x86 -LICENSE=LGPL-3 -RDEPEND=dev-python/cairocffi[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cssselect2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/defusedxml[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pillow[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/tinycss2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/C/CairoSVG/CairoSVG-2.5.2.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b eapi8-dosym 741bfa77afb2a9321261501aca58c208 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=8026de9e19c7cd1e37f3cd5bfddcf355 diff --git a/metadata/md5-cache/media-gfx/cairosvg-2.6.0 b/metadata/md5-cache/media-gfx/cairosvg-2.6.0 index a5ae03083884..6c8eed81e41e 100644 --- a/metadata/md5-cache/media-gfx/cairosvg-2.6.0 +++ b/metadata/md5-cache/media-gfx/cairosvg-2.6.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://cairosvg.org/ INHERIT=distutils-r1 IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~riscv ~x86 +KEYWORDS=amd64 ~riscv x86 LICENSE=LGPL-3 RDEPEND=dev-python/cairocffi[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/cssselect2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/defusedxml[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pillow[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/tinycss2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/C/CairoSVG/CairoSVG-2.6.0.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f63a359455088292dd9d760ffc51d848 +_md5_=74137ffa1076dc1c4141217515d301df diff --git a/metadata/md5-cache/media-gfx/converseen-0.9.10.0 b/metadata/md5-cache/media-gfx/converseen-0.9.10.0 index 9814ebd998bd..434a68e69d43 100644 --- a/metadata/md5-cache/media-gfx/converseen-0.9.10.0 +++ b/metadata/md5-cache/media-gfx/converseen-0.9.10.0 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-gfx/imagemagick:=[cxx] SLOT=0 SRC_URI=https://github.com/Faster3ck/Converseen/archive/v0.9.10.0.tar.gz -> converseen-0.9.10.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=41907e72ce119b59a2727ec5ae7f878a diff --git a/metadata/md5-cache/media-gfx/converseen-0.9.9.8 b/metadata/md5-cache/media-gfx/converseen-0.9.9.8 index 6c6f9bfb7d12..e26b796a276a 100644 --- a/metadata/md5-cache/media-gfx/converseen-0.9.9.8 +++ b/metadata/md5-cache/media-gfx/converseen-0.9.9.8 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-gfx/imagemagick:=[cxx] SLOT=0 SRC_URI=https://github.com/Faster3ck/Converseen/archive/v0.9.9.8.tar.gz -> converseen-0.9.9.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2e4e57b01df77c7b76187832f16eb741 diff --git a/metadata/md5-cache/media-gfx/cura-4.13.1-r1 b/metadata/md5-cache/media-gfx/cura-4.13.1-r1 index 0a6ec95fc7cc..6c6b7cdb2cc6 100644 --- a/metadata/md5-cache/media-gfx/cura-4.13.1-r1 +++ b/metadata/md5-cache/media-gfx/cura-4.13.1-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Ultimaker/cura/archive/4.13.1.tar.gz -> cura-4.13.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=87093cdf4d1d29f15279d862e3d5be8f diff --git a/metadata/md5-cache/media-gfx/curaengine-4.13.1 b/metadata/md5-cache/media-gfx/curaengine-4.13.1 index ec33f4c18870..347c55a386e4 100644 --- a/metadata/md5-cache/media-gfx/curaengine-4.13.1 +++ b/metadata/md5-cache/media-gfx/curaengine-4.13.1 @@ -12,5 +12,5 @@ RDEPEND=arcus? ( ~dev-libs/libarcus-4.13.1:* dev-libs/protobuf:= ) dev-libs/clip RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Ultimaker/CuraEngine/archive/4.13.1.tar.gz -> curaengine-4.13.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b1166f4a64ff2adf2afed5bb2a659858 diff --git a/metadata/md5-cache/media-gfx/darktable-4.0.1-r1 b/metadata/md5-cache/media-gfx/darktable-4.0.1-r1 index a47b19ce0b19..d01957d00fd7 100644 --- a/metadata/md5-cache/media-gfx/darktable-4.0.1-r1 +++ b/metadata/md5-cache/media-gfx/darktable-4.0.1-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-4 ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/darktable-org/darktable/releases/download/release-4.0.1/darktable-4.0.1.tar.xz doc? ( https://docs.darktable.org/usermanual/4.0/en/darktable_user_manual.pdf -> darktable-usermanual-4.0.en.pdf l10n_uk? ( https://docs.darktable.org/usermanual/4.0/uk/darktable_user_manual.pdf -> darktable-usermanual-4.0.uk.pdf ) ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c5f154d0dc7a1abade55bc09fd62707e diff --git a/metadata/md5-cache/media-gfx/darktable-4.2.0 b/metadata/md5-cache/media-gfx/darktable-4.2.0 index d8a2d0bb3a1d..964e139e6c2b 100644 --- a/metadata/md5-cache/media-gfx/darktable-4.2.0 +++ b/metadata/md5-cache/media-gfx/darktable-4.2.0 @@ -14,5 +14,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-4 ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/darktable-org/darktable/releases/download/release-4.2.0/darktable-4.2.0.tar.xz doc? ( https://docs.darktable.org/usermanual/4.2/en/darktable_user_manual.pdf -> darktable-usermanual-4.2.en.pdf l10n_uk? ( https://docs.darktable.org/usermanual/4.2/uk/darktable_user_manual.pdf -> darktable-usermanual-4.2.uk.pdf ) ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c6d0114c94e58c5221c7fd8e5109afbc diff --git a/metadata/md5-cache/media-gfx/darktable-4.2.1 b/metadata/md5-cache/media-gfx/darktable-4.2.1 index 50ab89b004b7..19ef28a3ab81 100644 --- a/metadata/md5-cache/media-gfx/darktable-4.2.1 +++ b/metadata/md5-cache/media-gfx/darktable-4.2.1 @@ -14,5 +14,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-4 ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/darktable-org/darktable/releases/download/release-4.2.1/darktable-4.2.1.tar.xz doc? ( https://docs.darktable.org/usermanual/4.2/en/darktable_user_manual.pdf -> darktable-usermanual-4.2.en.pdf l10n_uk? ( https://docs.darktable.org/usermanual/4.2/uk/darktable_user_manual.pdf -> darktable-usermanual-4.2.uk.pdf ) ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=16b2e1a68642e9e2370a2ba388b3c422 diff --git a/metadata/md5-cache/media-gfx/digikam-7.9.0-r1 b/metadata/md5-cache/media-gfx/digikam-7.9.0-r1 index eddef36d4d64..3245c48215ac 100644 --- a/metadata/md5-cache/media-gfx/digikam-7.9.0-r1 +++ b/metadata/md5-cache/media-gfx/digikam-7.9.0-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/expat >=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdbus-5.15.5:5 > RESTRICT=test SLOT=5 SRC_URI=mirror://kde/stable/digikam/7.9.0/digiKam-7.9.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aecc2e152b133499c1f7f47fb5daefae diff --git a/metadata/md5-cache/media-gfx/enblend-4.2.0_p20161007-r5 b/metadata/md5-cache/media-gfx/enblend-4.2.0_p20161007-r5 index 4e96fd339386..07d919b6af08 100644 --- a/metadata/md5-cache/media-gfx/enblend-4.2.0_p20161007-r5 +++ b/metadata/md5-cache/media-gfx/enblend-4.2.0_p20161007-r5 @@ -12,5 +12,5 @@ RDEPEND=media-libs/lcms:2 media-libs/tiff:= media-libs/vigra[openexr] sci-libs/g REQUIRED_USE=tcmalloc? ( !debug ) SLOT=0 SRC_URI=https://dev.gentoo.org/~soap/distfiles/enblend-4.2.0_p20161007.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0a7e74e8f3b723374eff61f389d5bbad diff --git a/metadata/md5-cache/media-gfx/eog-44.0 b/metadata/md5-cache/media-gfx/eog-44.0 new file mode 100644 index 000000000000..c6f89d07eeb6 --- /dev/null +++ b/metadata/md5-cache/media-gfx/eog-44.0 @@ -0,0 +1,17 @@ +BDEPEND=gtk-doc? ( dev-util/gi-docgen app-text/docbook-xml-dtd:4.1.2 ) dev-util/glib-utils dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=>=dev-libs/glib-2.53.4:2 >=dev-libs/libpeas-0.7.4[gtk] >=gnome-base/gnome-desktop-2.91.2:3= >=gnome-base/gsettings-desktop-schemas-42_beta >=x11-misc/shared-mime-info-0.20 >=x11-libs/gdk-pixbuf-2.36.5:2[jpeg?,tiff?] >=x11-libs/gtk+-3.24.15:3[introspection,X] >=gui-libs/libhandy-1.5.0:1 sys-libs/zlib exif? ( >=media-libs/libexif-0.6.14 ) lcms? ( media-libs/lcms:2 ) xmp? ( media-libs/exempi:2= ) jpeg? ( media-libs/libjpeg-turbo:= ) introspection? ( >=dev-libs/gobject-introspection-1.54:= ) svg? ( >=gnome-base/librsvg-2.44.0:2 ) x11-libs/libX11 +DESCRIPTION=The Eye of GNOME image viewer +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/EyeOfGnome https://gitlab.gnome.org/GNOME/eog +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson xdg +IUSE=+exif gtk-doc +introspection +jpeg lcms +svg xmp tiff +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.53.4:2 >=dev-libs/libpeas-0.7.4[gtk] >=gnome-base/gnome-desktop-2.91.2:3= >=gnome-base/gsettings-desktop-schemas-42_beta >=x11-misc/shared-mime-info-0.20 >=x11-libs/gdk-pixbuf-2.36.5:2[jpeg?,tiff?] >=x11-libs/gtk+-3.24.15:3[introspection,X] >=gui-libs/libhandy-1.5.0:1 sys-libs/zlib exif? ( >=media-libs/libexif-0.6.14 ) lcms? ( media-libs/lcms:2 ) xmp? ( media-libs/exempi:2= ) jpeg? ( media-libs/libjpeg-turbo:= ) introspection? ( >=dev-libs/gobject-introspection-1.54:= ) svg? ( >=gnome-base/librsvg-2.44.0:2 ) x11-libs/libX11 +REQUIRED_USE=exif? ( jpeg ) gtk-doc? ( introspection ) +SLOT=1 +SRC_URI=mirror://gnome/sources/eog/44/eog-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=ca543141fc29254e33ccbdc0cd4781bc diff --git a/metadata/md5-cache/media-gfx/eog-plugins-44.0 b/metadata/md5-cache/media-gfx/eog-plugins-44.0 new file mode 100644 index 000000000000..653799b2126b --- /dev/null +++ b/metadata/md5-cache/media-gfx/eog-plugins-44.0 @@ -0,0 +1,17 @@ +BDEPEND=>=sys-devel/gettext-0.19.7 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install setup test +DEPEND=>=dev-libs/glib-2.53.4:2 >=dev-libs/libpeas-1.14.1 >=media-gfx/eog-41.0:1 exif? ( >=media-libs/libexif-0.6.16 ) map? ( media-libs/libchamplain:0.12[gtk] >=media-libs/clutter-1.9.4:1.0 >=media-libs/clutter-gtk-1.1.2:1.0 ) picasa? ( >=dev-libs/libgdata-0.9.1:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-libs/glib[dbus] dev-libs/libpeas:=[gtk,python,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] ) gnome-base/gsettings-desktop-schemas media-gfx/eog[introspection] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] ) test? ( dev-libs/appstream-glib ) +DESCRIPTION=Eye of GNOME plugins +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/EyeOfGnome/Plugins https://gitlab.gnome.org/GNOME/eog-plugins +INHERIT=gnome.org meson python-single-r1 +IUSE=+exif map picasa +python test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-libs/glib-2.53.4:2 >=dev-libs/libpeas-1.14.1 >=media-gfx/eog-41.0:1 exif? ( >=media-libs/libexif-0.6.16 ) map? ( media-libs/libchamplain:0.12[gtk] >=media-libs/clutter-1.9.4:1.0 >=media-libs/clutter-gtk-1.1.2:1.0 ) picasa? ( >=dev-libs/libgdata-0.9.1:= ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-libs/glib[dbus] dev-libs/libpeas:=[gtk,python,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] ) gnome-base/gsettings-desktop-schemas media-gfx/eog[introspection] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] ) +REQUIRED_USE=map? ( exif ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://gnome/sources/eog-plugins/44/eog-plugins-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=8a1d2a9def46cc425661151baa5c8507 diff --git a/metadata/md5-cache/media-gfx/exiv2-0.27.6 b/metadata/md5-cache/media-gfx/exiv2-0.27.6 index 3a02b9ce3417..fa070dfd86e2 100644 --- a/metadata/md5-cache/media-gfx/exiv2-0.27.6 +++ b/metadata/md5-cache/media-gfx/exiv2-0.27.6 @@ -12,5 +12,5 @@ RDEPEND=>=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,ab RESTRICT=!test? ( test ) SLOT=0/27.5 SRC_URI=https://github.com/Exiv2/exiv2/releases/download/v0.27.6/exiv2-0.27.6-Source.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3e1fabb155f29e82216bdb3cb239a5cc diff --git a/metadata/md5-cache/media-gfx/fdm-materials-4.13.0 b/metadata/md5-cache/media-gfx/fdm-materials-4.13.0 index 52b262f1e6f7..57f046563f26 100644 --- a/metadata/md5-cache/media-gfx/fdm-materials-4.13.0 +++ b/metadata/md5-cache/media-gfx/fdm-materials-4.13.0 @@ -9,5 +9,5 @@ KEYWORDS=amd64 ~arm64 ~x86 LICENSE=CC0-1.0 SLOT=0 SRC_URI=https://github.com/Ultimaker/fdm_materials/archive/4.13.0.tar.gz -> fdm-materials-4.13.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0393d6c0344717a7fc68099225a61cef diff --git a/metadata/md5-cache/media-gfx/feh-3.7.2 b/metadata/md5-cache/media-gfx/feh-3.7.2 deleted file mode 100644 index 878cf5d74e89..000000000000 --- a/metadata/md5-cache/media-gfx/feh-3.7.2 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm setup -DEPEND=media-libs/imlib2[X] >=media-libs/libpng-1.2:0= x11-libs/libX11 curl? ( net-misc/curl ) exif? ( media-libs/libexif ) xinerama? ( x11-libs/libXinerama ) x11-base/xorg-proto x11-libs/libXt test? ( >=dev-lang/perl-5.10 dev-perl/Test-Command media-libs/imlib2[gif,jpeg,png] ) -DESCRIPTION=A fast, lightweight imageviewer using imlib2 -EAPI=7 -HOMEPAGE=https://feh.finalrewind.org/ -INHERIT=toolchain-funcs xdg-utils -IUSE=debug curl exif test xinerama inotify -KEYWORDS=amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv x86 -LICENSE=feh -RDEPEND=media-libs/imlib2[X] >=media-libs/libpng-1.2:0= x11-libs/libX11 curl? ( net-misc/curl ) exif? ( media-libs/libexif ) xinerama? ( x11-libs/libXinerama ) virtual/jpeg:0 -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://feh.finalrewind.org/feh-3.7.2.tar.bz2 -_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=e7d6fad597a0a1123398dd48986eb048 diff --git a/metadata/md5-cache/media-gfx/feh-3.9-r1 b/metadata/md5-cache/media-gfx/feh-3.9-r1 deleted file mode 100644 index e02d100e987e..000000000000 --- a/metadata/md5-cache/media-gfx/feh-3.9-r1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm setup -DEPEND=media-libs/imlib2[X] >=media-libs/libpng-1.2:0= x11-libs/libX11 curl? ( net-misc/curl ) exif? ( media-libs/libexif ) xinerama? ( x11-libs/libXinerama ) x11-base/xorg-proto x11-libs/libXt test? ( >=dev-lang/perl-5.10 dev-perl/Test-Command media-libs/imlib2[gif,jpeg,png] ) -DESCRIPTION=A fast, lightweight imageviewer using imlib2 -EAPI=8 -HOMEPAGE=https://feh.finalrewind.org/ -INHERIT=toolchain-funcs xdg-utils -IUSE=debug curl exif test xinerama inotify -KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 -LICENSE=feh -RDEPEND=media-libs/imlib2[X] >=media-libs/libpng-1.2:0= x11-libs/libX11 curl? ( net-misc/curl ) exif? ( media-libs/libexif ) xinerama? ( x11-libs/libXinerama ) media-libs/libjpeg-turbo:0 -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://feh.finalrewind.org/feh-3.9.tar.bz2 -_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=5fb60cef6101e707d0f54e8887e9a964 diff --git a/metadata/md5-cache/media-gfx/feh-3.9.1-r1 b/metadata/md5-cache/media-gfx/feh-3.9.1-r1 new file mode 100644 index 000000000000..57091c3c4207 --- /dev/null +++ b/metadata/md5-cache/media-gfx/feh-3.9.1-r1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm setup +DEPEND=|| ( >=media-libs/imlib2-1.11.0[X,text] =media-libs/libpng-1.2:0= x11-libs/libX11 curl? ( net-misc/curl ) exif? ( media-libs/libexif ) xinerama? ( x11-libs/libXinerama ) x11-base/xorg-proto x11-libs/libXt test? ( >=dev-lang/perl-5.10 dev-perl/Test-Command media-libs/imlib2[gif,jpeg,png] ) +DESCRIPTION=A fast, lightweight imageviewer using imlib2 +EAPI=8 +HOMEPAGE=https://feh.finalrewind.org/ +INHERIT=toolchain-funcs xdg-utils +IUSE=debug curl exif test xinerama inotify +KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 +LICENSE=feh +RDEPEND=|| ( >=media-libs/imlib2-1.11.0[X,text] =media-libs/libpng-1.2:0= x11-libs/libX11 curl? ( net-misc/curl ) exif? ( media-libs/libexif ) xinerama? ( x11-libs/libXinerama ) media-libs/libjpeg-turbo:0 +RESTRICT=test +SLOT=0 +SRC_URI=https://feh.finalrewind.org/feh-3.9.1.tar.bz2 +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=af0427651854bbd85bf650ecf60a14df diff --git a/metadata/md5-cache/media-gfx/flameshot-0.10.2 b/metadata/md5-cache/media-gfx/flameshot-0.10.2 index 8264028048c6..0e319198b2de 100644 --- a/metadata/md5-cache/media-gfx/flameshot-0.10.2 +++ b/metadata/md5-cache/media-gfx/flameshot-0.10.2 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 Free-Art-1.3 GPL-3+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 =dev-qt/qtsingleapplication-2.6*[qt5(+),X] dev-qt/qtwidgets:5 dev-qt/qtsvg:5 dev-qt/qtnetwork:5 dev-qt/qtdbus:5 sys-apps/dbus dev-libs/spdlog:= SLOT=0 SRC_URI=https://github.com/flameshot-org/flameshot/archive/v0.10.2.tar.gz -> flameshot-0.10.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=338eb22b1aa8163306250a385b3bd8ec diff --git a/metadata/md5-cache/media-gfx/flameshot-11.0.0 b/metadata/md5-cache/media-gfx/flameshot-11.0.0 index a5ba783898da..51c49c828bcb 100644 --- a/metadata/md5-cache/media-gfx/flameshot-11.0.0 +++ b/metadata/md5-cache/media-gfx/flameshot-11.0.0 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 Free-Art-1.3 GPL-3+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 =dev-qt/qtsingleapplication-2.6*[qt5(+),X] dev-qt/qtwidgets:5 dev-qt/qtsvg:5 dev-qt/qtnetwork:5 dev-qt/qtdbus:5 sys-apps/dbus SLOT=0 SRC_URI=https://github.com/flameshot-org/flameshot/archive/v11.0.0.tar.gz -> flameshot-11.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cabc46ccc2b9aca7d980b6c589d0ea16 diff --git a/metadata/md5-cache/media-gfx/flameshot-12.0.0 b/metadata/md5-cache/media-gfx/flameshot-12.0.0 index 9d8947cc2eed..bab8a590a5ff 100644 --- a/metadata/md5-cache/media-gfx/flameshot-12.0.0 +++ b/metadata/md5-cache/media-gfx/flameshot-12.0.0 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 Free-Art-1.3 GPL-3+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 =dev-qt/qtsingleapplication-2.6*[qt5(+),X] dev-qt/qtwidgets:5 dev-qt/qtsvg:5 dev-qt/qtnetwork:5 dev-qt/qtdbus:5 sys-apps/dbus SLOT=0 SRC_URI=https://github.com/flameshot-org/flameshot/archive/v12.0.0.tar.gz -> flameshot-12.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cabc46ccc2b9aca7d980b6c589d0ea16 diff --git a/metadata/md5-cache/media-gfx/flameshot-12.1.0 b/metadata/md5-cache/media-gfx/flameshot-12.1.0 index 49dfc485243d..9e3f27498682 100644 --- a/metadata/md5-cache/media-gfx/flameshot-12.1.0 +++ b/metadata/md5-cache/media-gfx/flameshot-12.1.0 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 Free-Art-1.3 GPL-3+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 =dev-qt/qtsingleapplication-2.6*[qt5(+),X] dev-qt/qtwidgets:5 dev-qt/qtsvg:5 dev-qt/qtnetwork:5 dev-qt/qtdbus:5 sys-apps/dbus SLOT=0 SRC_URI=https://github.com/flameshot-org/flameshot/archive/v12.1.0.tar.gz -> flameshot-12.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d31167b3297b100a0a0295e04a78f73 diff --git a/metadata/md5-cache/media-gfx/fontforge-20220308-r1 b/metadata/md5-cache/media-gfx/fontforge-20220308-r1 index d1e1abb2d6eb..1ffd069e2bf2 100644 --- a/metadata/md5-cache/media-gfx/fontforge-20220308-r1 +++ b/metadata/md5-cache/media-gfx/fontforge-20220308-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fontforge/fontforge/releases/download/20220308/fontforge-20220308.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9eb62fd65a785be2cefb5c1f79de346b diff --git a/metadata/md5-cache/media-gfx/fontforge-20230101 b/metadata/md5-cache/media-gfx/fontforge-20230101 index 12e061a3c046..b51f6ce30dec 100644 --- a/metadata/md5-cache/media-gfx/fontforge-20230101 +++ b/metadata/md5-cache/media-gfx/fontforge-20230101 @@ -14,5 +14,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fontforge/fontforge/releases/download/20230101/fontforge-20230101.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d7f12e8392e16ebffec96ad7c69717ad diff --git a/metadata/md5-cache/media-gfx/freecad-0.20.2 b/metadata/md5-cache/media-gfx/freecad-0.20.2 index 319bdf6af02d..aa192680feb8 100644 --- a/metadata/md5-cache/media-gfx/freecad-0.20.2 +++ b/metadata/md5-cache/media-gfx/freecad-0.20.2 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/FreeCAD/FreeCAD/archive/refs/tags/0.20.2.tar.gz -> freecad-0.20.2.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=743afd6c5dce03fa29ec9191dec0e963 diff --git a/metadata/md5-cache/media-gfx/freecad-0.20.2-r1 b/metadata/md5-cache/media-gfx/freecad-0.20.2-r1 index c94d8680dfe5..9b6c51b51fd5 100644 --- a/metadata/md5-cache/media-gfx/freecad-0.20.2-r1 +++ b/metadata/md5-cache/media-gfx/freecad-0.20.2-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/FreeCAD/FreeCAD/archive/refs/tags/0.20.2.tar.gz -> freecad-0.20.2.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=716e4834c577493aef55861934d01691 diff --git a/metadata/md5-cache/media-gfx/freecad-9999 b/metadata/md5-cache/media-gfx/freecad-9999 index f8019d9bba36..0ba8761214cc 100644 --- a/metadata/md5-cache/media-gfx/freecad-9999 +++ b/metadata/md5-cache/media-gfx/freecad-9999 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) designer? ( gui ) inspection? ( points ) path? ( robot ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=024da6e0cc42532e5ed75096097f9fed diff --git a/metadata/md5-cache/media-gfx/freepv-0.3.0-r5 b/metadata/md5-cache/media-gfx/freepv-0.3.0-r5 index c3f93d85d336..8b8933356bc2 100644 --- a/metadata/md5-cache/media-gfx/freepv-0.3.0-r5 +++ b/metadata/md5-cache/media-gfx/freepv-0.3.0-r5 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/libxml2 media-libs/libpng:0= media-libs/freeglut sys-libs/zlib virtual/jpeg:0 x11-libs/libXmu x11-libs/libXt x11-libs/libXxf86vm SLOT=0 SRC_URI=mirror://sourceforge/freepv/freepv-0.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=392e18a2a64f236cb13ada52e6bd69c1 diff --git a/metadata/md5-cache/media-gfx/gnome-font-viewer-44.0 b/metadata/md5-cache/media-gfx/gnome-font-viewer-44.0 new file mode 100644 index 000000000000..6f9e50795c31 --- /dev/null +++ b/metadata/md5-cache/media-gfx/gnome-font-viewer-44.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-libs/appstream-glib dev-libs/libxml2:2 >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=>=dev-libs/glib-2.56.0:2 >=gui-libs/gtk-4.5.0:4 >=gui-libs/libadwaita-1.2.0:1 >=media-libs/harfbuzz-0.9.9:= media-libs/fontconfig:1.0 media-libs/freetype:2 gnome-base/gnome-desktop:4= dev-libs/fribidi +DESCRIPTION=Font viewer utility for GNOME +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/gnome-font-viewer +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org meson xdg +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2+ LGPL-2.1+ +RDEPEND=>=dev-libs/glib-2.56.0:2 >=gui-libs/gtk-4.5.0:4 >=gui-libs/libadwaita-1.2.0:1 >=media-libs/harfbuzz-0.9.9:= media-libs/fontconfig:1.0 media-libs/freetype:2 gnome-base/gnome-desktop:4= dev-libs/fribidi +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-font-viewer/44/gnome-font-viewer-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=98b28083b2bfebcbd5da7fa927da9bee diff --git a/metadata/md5-cache/media-gfx/graphite2-1.3.14_p20210810-r2 b/metadata/md5-cache/media-gfx/graphite2-1.3.14_p20210810-r2 index 0e7de9df3aa2..8348bcc7cfa1 100644 --- a/metadata/md5-cache/media-gfx/graphite2-1.3.14_p20210810-r2 +++ b/metadata/md5-cache/media-gfx/graphite2-1.3.14_p20210810-r2 @@ -12,5 +12,5 @@ RDEPEND=perl? ( dev-lang/perl:= ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/silnrsi/graphite/archive/80c52493ef42e6fe605a69dcddd2a691cd8a1380.tar.gz -> graphite2-1.3.14_p20210810.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bbd26f302cd5b85e7ee17377281161cb diff --git a/metadata/md5-cache/media-gfx/graphite2-1.3.14_p20210810-r3 b/metadata/md5-cache/media-gfx/graphite2-1.3.14_p20210810-r3 index 02cc637f1a6b..2e2c6b522161 100644 --- a/metadata/md5-cache/media-gfx/graphite2-1.3.14_p20210810-r3 +++ b/metadata/md5-cache/media-gfx/graphite2-1.3.14_p20210810-r3 @@ -12,5 +12,5 @@ RDEPEND=perl? ( dev-lang/perl:= ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/silnrsi/graphite/archive/80c52493ef42e6fe605a69dcddd2a691cd8a1380.tar.gz -> graphite2-1.3.14_p20210810.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=91e5d98e14f5816fb13c53c8adb51af8 diff --git a/metadata/md5-cache/media-gfx/hugin-2022.0.0 b/metadata/md5-cache/media-gfx/hugin-2022.0.0 index c3234a0cf500..7218573930c5 100644 --- a/metadata/md5-cache/media-gfx/hugin-2022.0.0 +++ b/metadata/md5-cache/media-gfx/hugin-2022.0.0 @@ -12,5 +12,5 @@ RDEPEND=dev-db/sqlite:3 dev-libs/boost:= dev-libs/zthread >=media-gfx/enblend-4. REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 SRC_URI=mirror://sourceforge/hugin/hugin-2022.0.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=35e39e6ce9121fd68ffb865fd08ed4d8 diff --git a/metadata/md5-cache/media-gfx/hugin-9999 b/metadata/md5-cache/media-gfx/hugin-9999 index 5bdd5389b9eb..5678984d2217 100644 --- a/metadata/md5-cache/media-gfx/hugin-9999 +++ b/metadata/md5-cache/media-gfx/hugin-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-db/sqlite:3 dev-libs/boost:= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2:= media-libs/freeglut media-libs/glew:= media-libs/libjpeg-turbo:= >=media-libs/libpano13-2.9.19_beta1:= media-libs/libpng:= media-libs/openexr:= media-libs/tiff:= >=media-libs/vigra-1.11.1-r5[openexr] sci-libs/fftw:3.0= sci-libs/flann sys-libs/zlib virtual/glu virtual/opengl x11-libs/wxGTK:3.0-gtk3=[X,opengl] lapack? ( virtual/blas virtual/lapack ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) sift? ( media-gfx/autopano-sift-C ) media-libs/exiftool raw? ( media-gfx/dcraw ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 mercurial 9d4fc47e076850b06fede471ee147ec5 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 mercurial 9d4fc47e076850b06fede471ee147ec5 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cce6580919b2a15b64dcbb22f24bff52 diff --git a/metadata/md5-cache/media-gfx/inkscape-1.2.1-r2 b/metadata/md5-cache/media-gfx/inkscape-1.2.1-r2 index a4adce5d37ff..8573e48b4ef1 100644 --- a/metadata/md5-cache/media-gfx/inkscape-1.2.1-r2 +++ b/metadata/md5-cache/media-gfx/inkscape-1.2.1-r2 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://media.inkscape.org/dl/resources/file/inkscape-1.2.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=862be388e79ae7db4d54766eb7b4e1cc diff --git a/metadata/md5-cache/media-gfx/inkscape-1.2.2 b/metadata/md5-cache/media-gfx/inkscape-1.2.2 index 11b36f8afa1f..b9e3ef646866 100644 --- a/metadata/md5-cache/media-gfx/inkscape-1.2.2 +++ b/metadata/md5-cache/media-gfx/inkscape-1.2.2 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://media.inkscape.org/dl/resources/file/inkscape-1.2.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b15731b8f20494a91046197c75656b5f diff --git a/metadata/md5-cache/media-gfx/inkscape-9999 b/metadata/md5-cache/media-gfx/inkscape-9999 index 1209de59c144..b6ec923f1738 100644 --- a/metadata/md5-cache/media-gfx/inkscape-9999 +++ b/metadata/md5-cache/media-gfx/inkscape-9999 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[xml(+) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0f4f21db31d06d658c118039bca21511 diff --git a/metadata/md5-cache/media-gfx/kcoloredit-2.0.0_p20171121-r1 b/metadata/md5-cache/media-gfx/kcoloredit-2.0.0_p20171121-r1 index 5085de146cd4..19dfc44b3842 100644 --- a/metadata/md5-cache/media-gfx/kcoloredit-2.0.0_p20171121-r1 +++ b/metadata/md5-cache/media-gfx/kcoloredit-2.0.0_p20171121-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtwidgets-5.12.3:5 >=kde-frameworks/kactivities-5.60.0:5 >=kde-frameworks/kcompletion-5.60.0:5 >=kde-frameworks/kconfig-5.60.0:5 >=kde-frameworks/kconfigwidgets-5.60.0:5 >=kde-frameworks/kcoreaddons-5.60.0:5 >=kde-frameworks/kdelibs4support-5.60.0:5 >=kde-frameworks/kguiaddons-5.60.0:5 >=kde-frameworks/ki18n-5.60.0:5 >=kde-frameworks/kiconthemes-5.60.0:5 >=kde-frameworks/kio-5.60.0:5 >=kde-frameworks/ktextwidgets-5.60.0:5 >=kde-frameworks/kwidgetsaddons-5.60.0:5 >=kde-frameworks/kxmlgui-5.60.0:5 !media-gfx/kcoloredit:4 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 SRC_URI=mirror://gentoo/kcoloredit-2.0.0_p20171121-50ac0509.tar.gz https://invent.kde.org/unmaintained/kcoloredit/-/archive/50ac0509891343bc01a0aeffda5a44a1e65d9d04/kcoloredit-50ac0509891343bc01a0aeffda5a44a1e65d9d04.tar.gz -> kcoloredit-2.0.0_p20171121-50ac0509.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d0ce3f5aa1d3a9f442a3099b2f283845 diff --git a/metadata/md5-cache/media-gfx/kgeotag-1.4.0 b/metadata/md5-cache/media-gfx/kgeotag-1.4.0 index d9d215b5adfd..82ab3a9ce972 100644 --- a/metadata/md5-cache/media-gfx/kgeotag-1.4.0 +++ b/metadata/md5-cache/media-gfx/kgeotag-1.4.0 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libkexiv2-21.12.0:5 >=kde-apps/marble-21.12.0:5 >=kde-frameworks/kconfig-5.82.0:5 >=kde-frameworks/kconfigwidgets-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/kcrash-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kxmlgui-5.82.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/kgeotag/1.4.0/kgeotag-1.4.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9192ba28fe7b3295b9ac659a5303630f diff --git a/metadata/md5-cache/media-gfx/kgraphviewer-2.4.3-r2 b/metadata/md5-cache/media-gfx/kgraphviewer-2.4.3-r2 index e65f3c8bbf47..258d8f26e418 100644 --- a/metadata/md5-cache/media-gfx/kgraphviewer-2.4.3-r2 +++ b/metadata/md5-cache/media-gfx/kgraphviewer-2.4.3-r2 @@ -12,5 +12,5 @@ LICENSE=GPL-2 GPL-2+ LGPL-2+ LGPL-2.1+ handbook? ( FDL-1.2 ) RDEPEND=>=dev-qt/qtdbus-5.12.3:5 >=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtprintsupport-5.12.3:5 >=dev-qt/qtsvg-5.12.3:5 >=dev-qt/qtwidgets-5.12.3:5 >=kde-frameworks/kconfig-5.60.0:5 >=kde-frameworks/kconfigwidgets-5.60.0:5 >=kde-frameworks/kcoreaddons-5.60.0:5 >=kde-frameworks/ki18n-5.60.0:5 >=kde-frameworks/kparts-5.60.0:5 >=kde-frameworks/kwidgetsaddons-5.60.0:5 >=kde-frameworks/kxmlgui-5.60.0:5 >=media-gfx/graphviz-2.30 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/kgraphviewer/2.4.3/kgraphviewer-2.4.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=59bb233d312d7686a2da484e2f1df2b0 diff --git a/metadata/md5-cache/media-gfx/kphotoalbum-5.9.1-r1 b/metadata/md5-cache/media-gfx/kphotoalbum-5.9.1-r1 index dcb70164503e..dd129ca9fd44 100644 --- a/metadata/md5-cache/media-gfx/kphotoalbum-5.9.1-r1 +++ b/metadata/md5-cache/media-gfx/kphotoalbum-5.9.1-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( phonon qtav vlc ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kphotoalbum/5.9.1/kphotoalbum-5.9.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a3893a01d0e7faeb83359ee1f468df01 diff --git a/metadata/md5-cache/media-gfx/krita-5.1.5 b/metadata/md5-cache/media-gfx/krita-5.1.5 index a7e1d28d5f1a..38358bd72d90 100644 --- a/metadata/md5-cache/media-gfx/krita-5.1.5 +++ b/metadata/md5-cache/media-gfx/krita-5.1.5 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/krita/5.1.5/krita-5.1.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aafc0357472d5c073f32f17d965d0b51 diff --git a/metadata/md5-cache/media-gfx/kuickshow-0.10.2 b/metadata/md5-cache/media-gfx/kuickshow-0.10.2 index f925f5e39767..34ad01e758e1 100644 --- a/metadata/md5-cache/media-gfx/kuickshow-0.10.2 +++ b/metadata/md5-cache/media-gfx/kuickshow-0.10.2 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtprintsupport-5.12.3:5 >=dev-qt/qtwidgets-5.12.3:5 >=dev-qt/qtx11extras-5.12.3:5 >=kde-frameworks/kcompletion-5.76.0:5 >=kde-frameworks/kconfig-5.76.0:5 >=kde-frameworks/kconfigwidgets-5.76.0:5 >=kde-frameworks/kcoreaddons-5.76.0:5 >=kde-frameworks/ki18n-5.76.0:5 >=kde-frameworks/kiconthemes-5.76.0:5 >=kde-frameworks/kinit-5.76.0:5 >=kde-frameworks/kio-5.76.0:5 >=kde-frameworks/kjobwidgets-5.76.0:5 >=kde-frameworks/kwidgetsaddons-5.76.0:5 >=kde-frameworks/kwindowsystem-5.76.0:5 >=kde-frameworks/kxmlgui-5.76.0:5 media-libs/imlib x11-libs/libX11 !media-gfx/kuickshow:4 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/kuickshow/kuickshow-0.10.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fbc573c08f9d2487997997431a3d6caa diff --git a/metadata/md5-cache/media-gfx/kxstitch-2.2.0-r1 b/metadata/md5-cache/media-gfx/kxstitch-2.2.0-r1 index 7525a980f169..5fa323753a5c 100644 --- a/metadata/md5-cache/media-gfx/kxstitch-2.2.0-r1 +++ b/metadata/md5-cache/media-gfx/kxstitch-2.2.0-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kcompletion-5.82.0:5 >=kde-frameworks/kconfig-5.82.0:5 >=kde-frameworks/kconfigwidgets-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/kguiaddons-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kio-5.82.0:5 >=kde-frameworks/ktextwidgets-5.82.0:5 >=kde-frameworks/kwidgetsaddons-5.82.0:5 >=kde-frameworks/kxmlgui-5.82.0:5 media-gfx/imagemagick[cxx] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/kxstitch/2.2.0/kxstitch-2.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5e08bebb748a1deabeac706923b4e834 diff --git a/metadata/md5-cache/media-gfx/luminance-hdr-2.6.1.1-r1 b/metadata/md5-cache/media-gfx/luminance-hdr-2.6.1.1-r1 index 1c330c5fd8f1..db6bd0da8d72 100644 --- a/metadata/md5-cache/media-gfx/luminance-hdr-2.6.1.1-r1 +++ b/metadata/md5-cache/media-gfx/luminance-hdr-2.6.1.1-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclarat RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/qtpfsgui/luminance-hdr-2.6.1.1.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0b58f8ad0d9290e11fc2caa65edede5f diff --git a/metadata/md5-cache/media-gfx/lximage-qt-1.1.0 b/metadata/md5-cache/media-gfx/lximage-qt-1.1.0 index ed9993ee88de..038fda3602ad 100644 --- a/metadata/md5-cache/media-gfx/lximage-qt-1.1.0 +++ b/metadata/md5-cache/media-gfx/lximage-qt-1.1.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtnetwork-5.15:5 >=dev-qt/qtprintsupport-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 media-libs/libexif =x11-libs/libfm-qt-1.1*:= x11-libs/libX11 x11-libs/libXfixes SLOT=0 SRC_URI=https://github.com/lxqt/lximage-qt/releases/download/1.1.0/lximage-qt-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0726bee0cc328ccd922f6df24072b855 diff --git a/metadata/md5-cache/media-gfx/lximage-qt-1.2.0 b/metadata/md5-cache/media-gfx/lximage-qt-1.2.0 index d3a8bc135d5d..158a0c6bca83 100644 --- a/metadata/md5-cache/media-gfx/lximage-qt-1.2.0 +++ b/metadata/md5-cache/media-gfx/lximage-qt-1.2.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtnetwork-5.15:5 >=dev-qt/qtprintsupport-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 media-libs/libexif =x11-libs/libfm-qt-1.2*:= x11-libs/libX11 x11-libs/libXfixes SLOT=0 SRC_URI=https://github.com/lxqt/lximage-qt/releases/download/1.2.0/lximage-qt-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8b2e9c126f40b08838dc7765db1da7f0 diff --git a/metadata/md5-cache/media-gfx/maim-5.7.4 b/metadata/md5-cache/media-gfx/maim-5.7.4 index 0e59927011bd..1fca6c96c6b3 100644 --- a/metadata/md5-cache/media-gfx/maim-5.7.4 +++ b/metadata/md5-cache/media-gfx/maim-5.7.4 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ MIT RDEPEND=media-libs/libjpeg-turbo:= media-libs/libpng:0= media-libs/libwebp:= virtual/opengl x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXrender >=x11-misc/slop-7.5:= icu? ( dev-libs/icu:= ) SLOT=0 SRC_URI=https://github.com/naelstrof/maim/archive/v5.7.4.tar.gz -> maim-5.7.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1380cff50e86ecad2029cac68e12f825 diff --git a/metadata/md5-cache/media-gfx/meshlab-2020.12-r1 b/metadata/md5-cache/media-gfx/meshlab-2020.12-r1 index a2a6ee9e894d..93a6d131a2fc 100644 --- a/metadata/md5-cache/media-gfx/meshlab-2020.12-r1 +++ b/metadata/md5-cache/media-gfx/meshlab-2020.12-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-cpp/eigen:3 dev-cpp/muParser dev-libs/gmp:= >=dev-qt/qtcore-5.12:5 >=dev-qt/qtdeclarative-5.12:5 >=dev-qt/qtopengl-5.12:5 >=dev-qt/qtscript-5.12:5 >=dev-qt/qtxml-5.12:5 >=dev-qt/qtxmlpatterns-5.12:5 media-libs/glew:0= =media-libs/lib3ds-1* media-libs/openctm:= media-libs/qhull:= sci-libs/levmar sci-libs/mpir:= SLOT=0 SRC_URI=https://github.com/cnr-isti-vclab/meshlab/archive/Meshlab-2020.12.tar.gz -> meshlab-2020.12.tar.gz https://github.com/cnr-isti-vclab/vcglib/archive/2020.12.tar.gz -> vcglib-2020.12.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=37ff1d6d1840fbd548b2bff25201323b diff --git a/metadata/md5-cache/media-gfx/netgen-6.2.2301 b/metadata/md5-cache/media-gfx/netgen-6.2.2301 index 6b6c23fc846a..9a46babfad09 100644 --- a/metadata/md5-cache/media-gfx/netgen-6.2.2301 +++ b/metadata/md5-cache/media-gfx/netgen-6.2.2301 @@ -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/NGSolve/netgen/archive/refs/tags/v6.2.2301.tar.gz -> netgen-6.2.2301.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ada008df2b2c1c2cce05bf60651741eb diff --git a/metadata/md5-cache/media-gfx/nomacs-3.16.224-r5 b/metadata/md5-cache/media-gfx/nomacs-3.16.224-r5 index 8f93cdaad36b..2b8d0f8761d8 100644 --- a/metadata/md5-cache/media-gfx/nomacs-3.16.224-r5 +++ b/metadata/md5-cache/media-gfx/nomacs-3.16.224-r5 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5[jpeg?] dev-qt/qtnet REQUIRED_USE=raw? ( opencv ) tiff? ( opencv ) SLOT=0 SRC_URI=https://github.com/nomacs/nomacs/archive/3.16.224.tar.gz -> nomacs-3.16.224.tar.gz plugins? ( https://github.com/nomacs/nomacs-plugins/archive/3.16.tar.gz -> nomacs-plugins-3.16.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e02199f7621f95ba8c078344959edea4 diff --git a/metadata/md5-cache/media-gfx/openmesh-7.1-r1 b/metadata/md5-cache/media-gfx/openmesh-7.1-r1 index d3d3ceae085a..d4d015464764 100644 --- a/metadata/md5-cache/media-gfx/openmesh-7.1-r1 +++ b/metadata/md5-cache/media-gfx/openmesh-7.1-r1 @@ -12,5 +12,5 @@ RDEPEND=qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtwidgets RESTRICT=!test? ( test ) SLOT=4 SRC_URI=https://openmesh.org/media/Releases/7.1/OpenMesh-7.1.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9008b15e2100d6d05979552cb2927faf diff --git a/metadata/md5-cache/media-gfx/openscad-9999 b/metadata/md5-cache/media-gfx/openscad-9999 index a6ded92c98d0..3d976f74a5dd 100644 --- a/metadata/md5-cache/media-gfx/openscad-9999 +++ b/metadata/md5-cache/media-gfx/openscad-9999 @@ -13,5 +13,5 @@ RDEPEND=dev-cpp/eigen:3 dev-libs/boost:= dev-libs/double-conversion:= dev-libs/g REQUIRED_USE=headless? ( !dbus !gamepad !spacenav ) RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e297ef1195c87be3f50dfba688c83b88 diff --git a/metadata/md5-cache/media-gfx/opentoonz-1.6.0 b/metadata/md5-cache/media-gfx/opentoonz-1.6.0 index a851f6c5d4ba..de10f4241b8f 100644 --- a/metadata/md5-cache/media-gfx/opentoonz-1.6.0 +++ b/metadata/md5-cache/media-gfx/opentoonz-1.6.0 @@ -10,5 +10,5 @@ LICENSE=BSD libtiff RDEPEND=app-arch/lz4:= dev-libs/boost:= dev-libs/lzo:2 >=dev-qt/qtcore-5.9:5 >=dev-qt/qtgui-5.9:5 >=dev-qt/qtmultimedia-5.9:5[widgets] >=dev-qt/qtnetwork-5.9:5 >=dev-qt/qtopengl-5.9:5 >=dev-qt/qtprintsupport-5.9:5 >=dev-qt/qtscript-5.9:5 >=dev-qt/qtserialport-5.9:5 >=dev-qt/qtsvg-5.9:5 >=dev-qt/qtwidgets-5.9:5 >=dev-qt/qtxml-5.9:5 media-libs/freeglut media-libs/freetype:2 media-libs/glew:= media-libs/libjpeg-turbo >=media-libs/libmypaint-1.3.0:= media-libs/libpng:= media-libs/opencv:= >=sci-libs/superlu-4.1:= sys-libs/zlib virtual/cblas virtual/libusb:1 virtual/opengl SLOT=0 SRC_URI=https://github.com/opentoonz/opentoonz/archive/v1.6.0.tar.gz -> opentoonz-1.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7949cbc55118bcf53c1b34b6ad2dd32d diff --git a/metadata/md5-cache/media-gfx/openvdb-10.0.1 b/metadata/md5-cache/media-gfx/openvdb-10.0.1 index 31d072fad082..d609bd57044c 100644 --- a/metadata/md5-cache/media-gfx/openvdb-10.0.1 +++ b/metadata/md5-cache/media-gfx/openvdb-10.0.1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( abi8-compat abi9-compat abi10-compat ) cpu_flags_x86_avx? ( cp RESTRICT=!test? ( test ) SLOT=0/10.0.1 SRC_URI=https://github.com/AcademySoftwareFoundation/openvdb/archive/v10.0.1.tar.gz -> openvdb-10.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=58abe4e90f05962e2624847961aef10f diff --git a/metadata/md5-cache/media-gfx/photoqt-2.9.1-r1 b/metadata/md5-cache/media-gfx/photoqt-2.9.1-r1 index f14929752142..a491573e938b 100644 --- a/metadata/md5-cache/media-gfx/photoqt-2.9.1-r1 +++ b/metadata/md5-cache/media-gfx/photoqt-2.9.1-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=app-arch/libarchive:= app-arch/unrar dev-libs/pugixml dev-qt/qtdbus:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5[jpeg] dev-qt/qtimageformats:5 dev-qt/qtmultimedia:5[qml] dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 devil? ( media-libs/devil ) exif? ( media-gfx/exiv2:= ) freeimage? ( media-libs/freeimage ) imagemagick? ( !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) ) mpv? ( media-video/mpv:=[libmpv] ) pdf? ( app-text/poppler[qt5] ) raw? ( media-libs/libraw:= ) dev-qt/qtgraphicaleffects:5 dev-qt/qtquickcontrols:5 dev-qt/qtquickcontrols2:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 SRC_URI=https://photoqt.org/pkgs/photoqt-2.9.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=31db2150c4be06414d18f7129c481109 diff --git a/metadata/md5-cache/media-gfx/photoqt-2.9.1-r2 b/metadata/md5-cache/media-gfx/photoqt-2.9.1-r2 index 7bbcc0df50cd..34d7e008688a 100644 --- a/metadata/md5-cache/media-gfx/photoqt-2.9.1-r2 +++ b/metadata/md5-cache/media-gfx/photoqt-2.9.1-r2 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=app-arch/libarchive:= app-arch/unrar dev-libs/pugixml dev-qt/qtdbus:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5[jpeg] dev-qt/qtimageformats:5 dev-qt/qtmultimedia:5[qml] dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 devil? ( media-libs/devil ) exif? ( media-gfx/exiv2:= ) freeimage? ( media-libs/freeimage ) imagemagick? ( !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) ) mpv? ( media-video/mpv:=[libmpv] ) pdf? ( app-text/poppler[qt5] ) raw? ( media-libs/libraw:= ) dev-qt/qtgraphicaleffects:5 dev-qt/qtquickcontrols:5 dev-qt/qtquickcontrols2:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 SRC_URI=https://photoqt.org/pkgs/photoqt-2.9.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=66cf87da5b7217fecd5c440a7a6d1f11 diff --git a/metadata/md5-cache/media-gfx/prusaslicer-2.5.0-r1 b/metadata/md5-cache/media-gfx/prusaslicer-2.5.0-r1 index 65baaca264a8..3878097b6888 100644 --- a/metadata/md5-cache/media-gfx/prusaslicer-2.5.0-r1 +++ b/metadata/md5-cache/media-gfx/prusaslicer-2.5.0-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-cpp/eigen:3 dev-cpp/tbb:= dev-libs/boost:=[nls] dev-libs/cereal dev- RESTRICT=test SLOT=0 SRC_URI=https://github.com/prusa3d/PrusaSlicer/archive/refs/tags/version_2.5.0.tar.gz -> prusaslicer-2.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=88576f23269466cb0bd766f99e196fce diff --git a/metadata/md5-cache/media-gfx/prusaslicer-2.5.0-r2 b/metadata/md5-cache/media-gfx/prusaslicer-2.5.0-r2 index a62987cf9a0e..b64dadf21b43 100644 --- a/metadata/md5-cache/media-gfx/prusaslicer-2.5.0-r2 +++ b/metadata/md5-cache/media-gfx/prusaslicer-2.5.0-r2 @@ -13,5 +13,5 @@ RDEPEND=dev-cpp/eigen:3 dev-cpp/tbb:= dev-libs/boost:=[nls] dev-libs/cereal dev- RESTRICT=test SLOT=0 SRC_URI=https://github.com/prusa3d/PrusaSlicer/archive/refs/tags/version_2.5.0.tar.gz -> prusaslicer-2.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=feca04d5ff38eb1ef404c1f080b0e0d1 diff --git a/metadata/md5-cache/media-gfx/qimgv-1.0.2-r1 b/metadata/md5-cache/media-gfx/qimgv-1.0.2-r1 index 981be40b18f2..c0d14686e635 100644 --- a/metadata/md5-cache/media-gfx/qimgv-1.0.2-r1 +++ b/metadata/md5-cache/media-gfx/qimgv-1.0.2-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-3 BSD RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 exif? ( media-gfx/exiv2:= ) kde? ( kde-frameworks/kwindowsystem:5 ) opencv? ( media-libs/opencv:= ) video? ( media-video/mpv:=[libmpv] ) SLOT=0 SRC_URI=https://github.com/easymodo/qimgv/archive/v1.0.2.tar.gz -> qimgv-1.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9df95d6630d464be3beee46512aaabbb diff --git a/metadata/md5-cache/media-gfx/rawtherapee-5.9-r2 b/metadata/md5-cache/media-gfx/rawtherapee-5.9-r2 index d931cc68ddb3..ac9630ab16f1 100644 --- a/metadata/md5-cache/media-gfx/rawtherapee-5.9-r2 +++ b/metadata/md5-cache/media-gfx/rawtherapee-5.9-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-cpp/atkmm:0 dev-cpp/cairomm:= dev-cpp/glibmm:= dev-cpp/gtkmm:3.0 dev-cpp/pangomm:= dev-libs/expat dev-libs/glib:= dev-libs/libsigc++:2 gnome-base/librsvg media-libs/lcms:2 media-libs/lensfun media-libs/libcanberra[gtk3] media-libs/libiptcdata media-libs/libjpeg-turbo:= media-libs/libpng:0= media-libs/tiff:= sci-libs/fftw:3.0= sys-libs/zlib x11-libs/gtk+:3 tcmalloc? ( dev-util/google-perftools ) SLOT=0 SRC_URI=https://rawtherapee.com/shared/source/rawtherapee-5.9.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f8f8737fa25fdf78c46c552db4f938b1 diff --git a/metadata/md5-cache/media-gfx/rawtherapee-5.9-r3 b/metadata/md5-cache/media-gfx/rawtherapee-5.9-r3 index 6ec2ad512257..325ff178a188 100644 --- a/metadata/md5-cache/media-gfx/rawtherapee-5.9-r3 +++ b/metadata/md5-cache/media-gfx/rawtherapee-5.9-r3 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-cpp/atkmm:0 dev-cpp/cairomm:0 dev-cpp/glibmm:2 dev-cpp/gtkmm:3.0 dev-cpp/pangomm:1.4 dev-libs/expat dev-libs/glib:2 dev-libs/libsigc++:2 gnome-base/librsvg:2 media-libs/lcms:2 media-libs/lensfun media-libs/libcanberra[gtk3] media-libs/libiptcdata media-libs/libjpeg-turbo:= media-libs/libpng:0= media-libs/tiff:= sci-libs/fftw:3.0= sys-libs/zlib x11-libs/gtk+:3 tcmalloc? ( dev-util/google-perftools ) SLOT=0 SRC_URI=https://rawtherapee.com/shared/source/rawtherapee-5.9.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=858c53e1a3bf9d9b53815e4c39a35ac3 diff --git a/metadata/md5-cache/media-gfx/realesrgan-ncnn-vulkan-0.2.0-r1 b/metadata/md5-cache/media-gfx/realesrgan-ncnn-vulkan-0.2.0-r1 index 916ba99cb5c3..4aabc17163bf 100644 --- a/metadata/md5-cache/media-gfx/realesrgan-ncnn-vulkan-0.2.0-r1 +++ b/metadata/md5-cache/media-gfx/realesrgan-ncnn-vulkan-0.2.0-r1 @@ -10,5 +10,5 @@ LICENSE=MIT BSD RDEPEND=dev-libs/ncnn:=[vulkan] media-libs/libwebp:= media-libs/vulkan-loader SLOT=0 SRC_URI=https://github.com/xinntao/Real-ESRGAN-ncnn-vulkan/archive/refs/tags/v0.2.0.tar.gz -> realesrgan-ncnn-vulkan-0.2.0.tar.gz https://dev.gentoo.org/~slashbeast/distfiles/realesrgan-ncnn-vulkan/realesrgan-ncnn-vulkan-models.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=efde0dc6de752f3dd75488f70be5aa4f diff --git a/metadata/md5-cache/media-gfx/renderdoc-1.24 b/metadata/md5-cache/media-gfx/renderdoc-1.24 index 1150ea1bb923..546a3f236805 100644 --- a/metadata/md5-cache/media-gfx/renderdoc-1.24 +++ b/metadata/md5-cache/media-gfx/renderdoc-1.24 @@ -13,5 +13,5 @@ RDEPEND=app-arch/lz4:= app-arch/zstd:= dev-libs/miniz:= >=dev-util/glslang-1.3.2 REQUIRED_USE=doc? ( qt5 ) pyside2? ( qt5 ) qt5? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 SRC_URI=https://github.com/baldurk/renderdoc/archive/refs/tags/v1.24.tar.gz -> renderdoc-1.24.tar.gz qt5? ( https://github.com/baldurk/swig/archive/renderdoc-modified-7.tar.gz -> swig-renderdoc-7.tar.gz ) verify-sig? ( https://github.com/baldurk/renderdoc/releases/download/v1.24/v1.24.tar.gz.asc -> renderdoc-1.24.tar.gz.asc ) -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=984486a3817699ec70b8c7a33af6218e diff --git a/metadata/md5-cache/media-gfx/scantailor-advanced-1.0.16-r3 b/metadata/md5-cache/media-gfx/scantailor-advanced-1.0.16-r3 index dadbbd6c65cd..07d8a64f651d 100644 --- a/metadata/md5-cache/media-gfx/scantailor-advanced-1.0.16-r3 +++ b/metadata/md5-cache/media-gfx/scantailor-advanced-1.0.16-r3 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 dev- RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/4lex4/scantailor-advanced/archive/v1.0.16.tar.gz -> scantailor-advanced-1.0.16.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2c7ae97ec829479040b8b4f5b971f0ca diff --git a/metadata/md5-cache/media-gfx/simple-scan-44.0 b/metadata/md5-cache/media-gfx/simple-scan-44.0 new file mode 100644 index 000000000000..462dc5164c2f --- /dev/null +++ b/metadata/md5-cache/media-gfx/simple-scan-44.0 @@ -0,0 +1,16 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) || ( dev-lang/vala:0.56 ) dev-libs/libxml2:2 dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig gui-libs/libhandy:1[vala] dev-libs/libgusb[vala] colord? ( x11-misc/colord[vala] ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=dev-libs/glib-2.38:2 >=x11-libs/gtk+-3.24:3 >=gui-libs/libhandy-1.6.0:1 >=sys-libs/zlib-1.2.3.1:= x11-libs/cairo x11-libs/gdk-pixbuf:2 >=dev-libs/libgusb-0.2.7 colord? ( >=x11-misc/colord-0.1.24:=[udev(+)] ) webp? ( media-libs/libwebp:= ) >=media-gfx/sane-backends-1.0.20 +DESCRIPTION=Simple document scanning utility +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/simple-scan +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson python-any-r1 vala xdg +IUSE=colord webp +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 +LICENSE=GPL-3+ +RDEPEND=>=dev-libs/glib-2.38:2 >=x11-libs/gtk+-3.24:3 >=gui-libs/libhandy-1.6.0:1 >=sys-libs/zlib-1.2.3.1:= x11-libs/cairo x11-libs/gdk-pixbuf:2 >=dev-libs/libgusb-0.2.7 colord? ( >=x11-misc/colord-0.1.24:=[udev(+)] ) webp? ( media-libs/libwebp:= ) >=media-gfx/sane-backends-1.0.20 x11-misc/xdg-utils +SLOT=0 +SRC_URI=mirror://gnome/sources/simple-scan/44/simple-scan-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=1ee2321592e96cc05c7042fc0d4e10da diff --git a/metadata/md5-cache/media-gfx/skanpage-22.08.3 b/metadata/md5-cache/media-gfx/skanpage-22.08.3 index 71cef3cbfc5f..f9187e4a29f1 100644 --- a/metadata/md5-cache/media-gfx/skanpage-22.08.3 +++ b/metadata/md5-cache/media-gfx/skanpage-22.08.3 @@ -12,5 +12,5 @@ LICENSE=|| ( GPL-2 GPL-3 ) CC0-1.0 RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libksane-22.08.3:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kirigami-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=kde-frameworks/purpose-5.96.0:5 >=media-libs/ksanecore-22.08.3:5 ocr? ( app-text/tesseract:= media-libs/leptonica:= ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/skanpage-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=370a28f89ee61e4f5634d62c7c75c264 diff --git a/metadata/md5-cache/media-gfx/skanpage-22.12.3 b/metadata/md5-cache/media-gfx/skanpage-22.12.3 index f9b6f9cdb53f..105d2ee05a0f 100644 --- a/metadata/md5-cache/media-gfx/skanpage-22.12.3 +++ b/metadata/md5-cache/media-gfx/skanpage-22.12.3 @@ -12,5 +12,5 @@ LICENSE=|| ( GPL-2 GPL-3 ) CC0-1.0 RDEPEND=>=dev-qt/qtconcurrent-5.15.5:5 >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-apps/libksane-22.12.3:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kirigami-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=kde-frameworks/purpose-5.101.0:5 >=media-libs/ksanecore-22.12.3:5 ocr? ( app-text/tesseract:= media-libs/leptonica:= ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/skanpage-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a3bdc3395938291c722cbfedf12888d diff --git a/metadata/md5-cache/media-gfx/solvespace-3.1-r1 b/metadata/md5-cache/media-gfx/solvespace-3.1-r1 index 95af84e9caf1..1d9c410f29f2 100644 --- a/metadata/md5-cache/media-gfx/solvespace-3.1-r1 +++ b/metadata/md5-cache/media-gfx/solvespace-3.1-r1 @@ -12,5 +12,5 @@ LICENSE=BitstreamVera GPL-2+ GPL-3+ !system-mimalloc? ( MIT ) RDEPEND=dev-cpp/atkmm:0 dev-cpp/glibmm:2 dev-cpp/gtkmm:3.0[X] dev-cpp/pangomm:1.4 dev-libs/glib:2 dev-libs/json-c:= dev-libs/libsigc++:2 dev-libs/libspnav[X] media-libs/fontconfig media-libs/freetype:2[X] media-libs/libpng:0= sys-libs/zlib virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] system-mimalloc? ( dev-libs/mimalloc:= ) SLOT=0 SRC_URI=https://github.com/solvespace/solvespace/archive/v3.1.tar.gz -> solvespace-3.1.tar.gz https://github.com/solvespace/libdxfrw/archive/0b7b7b709d9299565db603f878214656ef5e9ddf.tar.gz -> libdxfrw-0.6.3-0b7b7b709d9299565db603f878214656ef5e9ddf.tar.gz !system-mimalloc? ( https://github.com/microsoft/mimalloc/archive/f819dbb4e4813fab464aee16770f39f11476bfea.tar.gz -> mimalloc-2.0.6-f819dbb4e4813fab464aee16770f39f11476bfea.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=52c5d4aa97da0c87ff3dda00be714250 diff --git a/metadata/md5-cache/media-gfx/superslicer-2.5.59.0-r3 b/metadata/md5-cache/media-gfx/superslicer-2.5.59.0-r3 index 29b11550385c..d6432b4a6b44 100644 --- a/metadata/md5-cache/media-gfx/superslicer-2.5.59.0-r3 +++ b/metadata/md5-cache/media-gfx/superslicer-2.5.59.0-r3 @@ -13,5 +13,5 @@ RDEPEND=dev-cpp/eigen:3 dev-cpp/tbb:= dev-libs/boost:=[nls] dev-libs/cereal dev- RESTRICT=test SLOT=0 SRC_URI=https://github.com/supermerill/SuperSlicer/archive/refs/tags/2.5.59.0.tar.gz -> superslicer-2.5.59.0.tar.gz https://github.com/slic3r/slic3r-profiles/archive/748fbdfd2ac077e4e415868e7bc963740b92aa8e.tar.gz -> superslicer-2.5.59.0-profiles.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=58cca0227ce4bd05db7729736715de70 diff --git a/metadata/md5-cache/media-gfx/symboleditor-2.1.0 b/metadata/md5-cache/media-gfx/symboleditor-2.1.0 index fc6d2125f9ca..cfbdbc822c46 100644 --- a/metadata/md5-cache/media-gfx/symboleditor-2.1.0 +++ b/metadata/md5-cache/media-gfx/symboleditor-2.1.0 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtwidgets-5.12.3:5 >=kde-frameworks/kconfig-5.60.0:5 >=kde-frameworks/kconfigwidgets-5.60.0:5 >=kde-frameworks/kcoreaddons-5.60.0:5 >=kde-frameworks/ki18n-5.60.0:5 >=kde-frameworks/kio-5.60.0:5 >=kde-frameworks/kwidgetsaddons-5.60.0:5 >=kde-frameworks/kxmlgui-5.60.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/symboleditor/2.1.0/symboleditor-2.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bf39d5dc51250f6c9bcac5ffc35e8ac3 diff --git a/metadata/md5-cache/media-gfx/waifu2x-ncnn-vulkan-20220728 b/metadata/md5-cache/media-gfx/waifu2x-ncnn-vulkan-20220728 index 97b42e142bd4..eec22c7e07cd 100644 --- a/metadata/md5-cache/media-gfx/waifu2x-ncnn-vulkan-20220728 +++ b/metadata/md5-cache/media-gfx/waifu2x-ncnn-vulkan-20220728 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/ncnn:=[vulkan] media-libs/libwebp:= media-libs/vulkan-loader SLOT=0 SRC_URI=https://github.com/nihui/waifu2x-ncnn-vulkan/archive/20220728.tar.gz -> waifu2x-ncnn-vulkan-20220728.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=72164f22534f152af5ad3870d1f54743 diff --git a/metadata/md5-cache/media-gfx/xsane-0.999-r4 b/metadata/md5-cache/media-gfx/xsane-0.999-r5 similarity index 65% rename from metadata/md5-cache/media-gfx/xsane-0.999-r4 rename to metadata/md5-cache/media-gfx/xsane-0.999-r5 index 46bfc7d90b1f..17379a2f9fa4 100644 --- a/metadata/md5-cache/media-gfx/xsane-0.999-r4 +++ b/metadata/md5-cache/media-gfx/xsane-0.999-r5 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=configure install prepare -DEPEND=media-gfx/sane-backends x11-libs/gtk+:2 x11-misc/xdg-utils jpeg? ( media-libs/libjpeg-turbo:= ) png? ( media-libs/libpng:= ) tiff? ( media-libs/tiff:= ) gimp? ( media-gfx/gimp:0/2 ) lcms? ( media-libs/lcms:2 ) +DEPEND=dev-libs/glib:2 media-gfx/sane-backends sys-libs/zlib x11-libs/gtk+:2 x11-misc/xdg-utils jpeg? ( media-libs/libjpeg-turbo:= ) png? ( media-libs/libpng:= ) tiff? ( media-libs/tiff:= ) gimp? ( media-gfx/gimp:0/2 ) lcms? ( media-libs/lcms:2 ) DESCRIPTION=Graphical scanning frontend EAPI=8 HOMEPAGE=http://www.xsane.org/ @@ -9,8 +9,8 @@ IUSE=nls jpeg png tiff gimp lcms ocr KEYWORDS=~alpha amd64 arm ~arm64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 PDEPEND=ocr? ( app-text/gocr ) -RDEPEND=media-gfx/sane-backends x11-libs/gtk+:2 x11-misc/xdg-utils jpeg? ( media-libs/libjpeg-turbo:= ) png? ( media-libs/libpng:= ) tiff? ( media-libs/tiff:= ) gimp? ( media-gfx/gimp:0/2 ) lcms? ( media-libs/lcms:2 ) +RDEPEND=dev-libs/glib:2 media-gfx/sane-backends sys-libs/zlib x11-libs/gtk+:2 x11-misc/xdg-utils jpeg? ( media-libs/libjpeg-turbo:= ) png? ( media-libs/libpng:= ) tiff? ( media-libs/tiff:= ) gimp? ( media-gfx/gimp:0/2 ) lcms? ( media-libs/lcms:2 ) SLOT=0 SRC_URI=http://www.xsane.org/download/xsane-0.999.tar.gz https://dev.gentoo.org/~soap/distfiles/xsane-0.998-patches-3.tar.xz https://dev.gentoo.org/~pacho/xsane/xsane-256x256.png _eclasses_=autotools b5529dc611971a61a30153916014f616 desktop 021728fdc1b03b36357dbc89489e0f0d gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=bd21c7e5c43d807ea7ca6d88cd2620a0 +_md5_=33ebdec413d6d985c493a6820e95cd69 diff --git a/metadata/md5-cache/media-gfx/yafaray-3.5.1-r4 b/metadata/md5-cache/media-gfx/yafaray-3.5.1-r4 index 5d307eefd21e..30f3741ddbd9 100644 --- a/metadata/md5-cache/media-gfx/yafaray-3.5.1-r4 +++ b/metadata/md5-cache/media-gfx/yafaray-3.5.1-r4 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/YafaRay/libYafaRay/archive/v3.5.1.tar.gz -> yafaray-3.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c7294c9fdc0472532ee4f5295259091e diff --git a/metadata/md5-cache/media-libs/Field3D-1.7.2-r3 b/metadata/md5-cache/media-libs/Field3D-1.7.2-r3 index c16ac19703e8..6d95ef61c737 100644 --- a/metadata/md5-cache/media-libs/Field3D-1.7.2-r3 +++ b/metadata/md5-cache/media-libs/Field3D-1.7.2-r3 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=dev-libs/boost:= >=dev-libs/imath-3.1.4-r2:= >=media-libs/openexr-3:0= sci-libs/hdf5:= mpi? ( virtual/mpi ) SLOT=0 SRC_URI=https://github.com/imageworks/Field3D/archive/v1.7.2.tar.gz -> Field3D-1.7.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4acd4e9f071f4566e587942917676727 diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index 0a27c1502f4b..7ca11777d1f6 100644 Binary files a/metadata/md5-cache/media-libs/Manifest.gz and b/metadata/md5-cache/media-libs/Manifest.gz differ diff --git a/metadata/md5-cache/media-libs/SoQt-1.6.0 b/metadata/md5-cache/media-libs/SoQt-1.6.0 index 55c4d93abbac..645893e202d1 100644 --- a/metadata/md5-cache/media-libs/SoQt-1.6.0 +++ b/metadata/md5-cache/media-libs/SoQt-1.6.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=media-libs/coin dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtopengl:5 virtual/opengl x11-libs/libX11 x11-libs/libXi SLOT=0 SRC_URI=https://github.com/coin3d/soqt/releases/download/SoQt-1.6.0/SoQt-1.6.0-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d86c46c5af7f65347fcd3024625fbc32 diff --git a/metadata/md5-cache/media-libs/SoXt-1.4.0 b/metadata/md5-cache/media-libs/SoXt-1.4.0 index cbc95f209dcf..052d93830a9d 100644 --- a/metadata/md5-cache/media-libs/SoXt-1.4.0 +++ b/metadata/md5-cache/media-libs/SoXt-1.4.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=media-libs/coin x11-libs/motif:0 virtual/opengl SLOT=0 SRC_URI=https://github.com/coin3d/soxt/releases/download/SoXt-1.4.0/SoXt-1.4.0-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4dbaaafe1bd494fb00fbf930626dfdaa diff --git a/metadata/md5-cache/media-libs/aften-0.0.8-r2 b/metadata/md5-cache/media-libs/aften-0.0.8-r2 index ca354ce1c510..b408c49dcabf 100644 --- a/metadata/md5-cache/media-libs/aften-0.0.8-r2 +++ b/metadata/md5-cache/media-libs/aften-0.0.8-r2 @@ -9,5 +9,5 @@ KEYWORDS=amd64 ppc x86 LICENSE=LGPL-2.1 BSD SLOT=0 SRC_URI=mirror://sourceforge/aften/aften-0.0.8.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aa842634e5fec3656c5558b330219fb8 diff --git a/metadata/md5-cache/media-libs/allegro-4.4.3.1-r1 b/metadata/md5-cache/media-libs/allegro-4.4.3.1-r1 index c8e4a71d8b0f..dccce1c74a06 100644 --- a/metadata/md5-cache/media-libs/allegro-4.4.3.1-r1 +++ b/metadata/md5-cache/media-libs/allegro-4.4.3.1-r1 @@ -11,5 +11,5 @@ LICENSE=Allegro MIT GPL-2+ ZLIB RDEPEND=alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) png? ( media-libs/libpng: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(-)?] ) svga? ( media-libs/svgalib ) vorbis? ( media-libs/libvorbis[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[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/libXcursor[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[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/libXpm[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/libXt[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/libXxf86dga[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[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] opengl? ( virtual/glu[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/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) SLOT=0 SRC_URI=https://github.com/liballeg/allegro5/releases/download/4.4.3.1/allegro-4.4.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4a3d46cc935139f9b83d9d7cc169f7f2 diff --git a/metadata/md5-cache/media-libs/allegro-5.2.7.0-r1 b/metadata/md5-cache/media-libs/allegro-5.2.7.0-r1 index 553012277a9e..91c740e3ed84 100644 --- a/metadata/md5-cache/media-libs/allegro-5.2.7.0-r1 +++ b/metadata/md5-cache/media-libs/allegro-5.2.7.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=X? ( opengl ) xinerama? ( X ) || ( alsa openal oss pulseaudio ) RESTRICT=!test? ( test ) SLOT=5 SRC_URI=https://github.com/liballeg/allegro5/releases/download/5.2.7.0/allegro-5.2.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=71997c814c3391770f3e2cce7617eb4a diff --git a/metadata/md5-cache/media-libs/alure-1.2-r3 b/metadata/md5-cache/media-libs/alure-1.2-r3 index f3f54cf58373..1ea3d115063e 100644 --- a/metadata/md5-cache/media-libs/alure-1.2-r3 +++ b/metadata/md5-cache/media-libs/alure-1.2-r3 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=>=media-libs/openal-1.1 dumb? ( media-libs/dumb:= ) flac? ( media-libs/flac:= ) fluidsynth? ( >=media-sound/fluidsynth-1.1.1:= ) mp3? ( media-sound/mpg123 ) sndfile? ( media-libs/libsndfile ) vorbis? ( media-libs/libvorbis ) SLOT=0 SRC_URI=https://kcat.strangesoft.net/alure-releases/alure-1.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=41feb0cff144685f0d5cd3731a1549ca diff --git a/metadata/md5-cache/media-libs/ampache_browser-1.0.4 b/metadata/md5-cache/media-libs/ampache_browser-1.0.4 index 4dbaecc5bd55..e8d02c22aade 100644 --- a/metadata/md5-cache/media-libs/ampache_browser-1.0.4 +++ b/metadata/md5-cache/media-libs/ampache_browser-1.0.4 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://github.com/ampache-browser/ampache_browser/archive/v1.0.4.tar.gz -> ampache_browser-1.0.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=979a9575965eaa9690e5d52139339d65 diff --git a/metadata/md5-cache/media-libs/ampache_browser-1.0.5 b/metadata/md5-cache/media-libs/ampache_browser-1.0.5 index 8169b98cd026..2ab06f93d28a 100644 --- a/metadata/md5-cache/media-libs/ampache_browser-1.0.5 +++ b/metadata/md5-cache/media-libs/ampache_browser-1.0.5 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=qt6? ( dev-qt/qtbase:6[concurrent,gui,widgets] ) !qt6? ( dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) SLOT=0/1.0.5 SRC_URI=https://github.com/ampache-browser/ampache_browser/archive/v1.0.5.tar.gz -> ampache_browser-1.0.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ece7e8e3df864d2e5aa431b58aff395b diff --git a/metadata/md5-cache/media-libs/assimp-5.2.5-r1 b/metadata/md5-cache/media-libs/assimp-5.2.5-r1 index 5196d6468ea4..1b6b790e94d7 100644 --- a/metadata/md5-cache/media-libs/assimp-5.2.5-r1 +++ b/metadata/md5-cache/media-libs/assimp-5.2.5-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= sys-libs/zlib[minizip] samples? ( media-libs/freeglut v RESTRICT=!test? ( test ) SLOT=0/5.2.5 SRC_URI=https://github.com/assimp/assimp/archive/v5.2.5.tar.gz -> assimp-5.2.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b80faa0df3a818cf689c2e16955503fe diff --git a/metadata/md5-cache/media-libs/avidemux-core-2.8.1-r1 b/metadata/md5-cache/media-libs/avidemux-core-2.8.1-r1 index 9c04a80dfc9f..f014176e27bb 100644 --- a/metadata/md5-cache/media-libs/avidemux-core-2.8.1-r1 +++ b/metadata/md5-cache/media-libs/avidemux-core-2.8.1-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 MIT PSF-2 LGPL-2 OFL-1.1 RDEPEND=dev-db/sqlite:3 sys-libs/zlib nvenc? ( amd64? ( media-libs/nv-codec-headers ) ) sdl? ( media-libs/libsdl ) system-ffmpeg? ( >=media-video/ffmpeg-9:0[mp3,theora] ) vaapi? ( media-libs/libva:= ) vdpau? ( x11-libs/libvdpau ) xv? ( x11-libs/libXv ) ! avidemux-2.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=02c3f608c46cbd52aee4812dc80007c9 diff --git a/metadata/md5-cache/media-libs/avidemux-plugins-2.8.1-r1 b/metadata/md5-cache/media-libs/avidemux-plugins-2.8.1-r1 index aeae20590616..792a9e22520a 100644 --- a/metadata/md5-cache/media-libs/avidemux-plugins-2.8.1-r1 +++ b/metadata/md5-cache/media-libs/avidemux-plugins-2.8.1-r1 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=2.7 SRC_URI=https://github.com/mean00/avidemux2/archive/2.8.1.tar.gz -> avidemux-2.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1bdf8a6a21ad0f9fc5981a2ce011aa77 diff --git a/metadata/md5-cache/media-libs/bcg729-1.1.1 b/metadata/md5-cache/media-libs/bcg729-1.1.1 index 3354f5428ca9..f33d065a7a69 100644 --- a/metadata/md5-cache/media-libs/bcg729-1.1.1 +++ b/metadata/md5-cache/media-libs/bcg729-1.1.1 @@ -11,5 +11,5 @@ RDEPEND=!media-plugins/mediastreamer-bcg729 RESTRICT=test SLOT=0 SRC_URI=https://github.com/BelledonneCommunications/bcg729/archive/1.1.1.tar.gz -> bcg729-1.1.1.tar.gz test? ( http://www.belledonne-communications.com/bc-downloads/bcg729-patterns.zip -> bcg729-tests-20210101.zip ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7119ccc3022c4629424b21494d241683 diff --git a/metadata/md5-cache/media-libs/chromaprint-1.5.1-r2 b/metadata/md5-cache/media-libs/chromaprint-1.5.1-r2 index f7ab7f62d7cf..fabfe2e39e5f 100644 --- a/metadata/md5-cache/media-libs/chromaprint-1.5.1-r2 +++ b/metadata/md5-cache/media-libs/chromaprint-1.5.1-r2 @@ -12,5 +12,5 @@ RDEPEND=tools? ( gtest-1.10.0.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5693ee9bc71462f553b198badb472a67 diff --git a/metadata/md5-cache/media-libs/codec2-1.0.5 b/metadata/md5-cache/media-libs/codec2-1.0.5 index 3c4774f0926e..2a98bddd6647 100644 --- a/metadata/md5-cache/media-libs/codec2-1.0.5 +++ b/metadata/md5-cache/media-libs/codec2-1.0.5 @@ -5,10 +5,10 @@ EAPI=8 HOMEPAGE=https://freedv.org/ https://www.rowetel.com/?page_id=452 https://github.com/drowe67/codec2 INHERIT=cmake-multilib IUSE=examples test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86 LICENSE=LGPL-2.1 RESTRICT=test SLOT=0/1.0 SRC_URI=https://github.com/drowe67/codec2/archive/v1.0.5.tar.gz -> codec2-1.0.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=43856597308fe34b3f25f7d4229bd04f +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=395726c013bfcf85b33f9358a9e2a353 diff --git a/metadata/md5-cache/media-libs/coin-4.0.0 b/metadata/md5-cache/media-libs/coin-4.0.0 index b2bb97950704..95cf834c3673 100644 --- a/metadata/md5-cache/media-libs/coin-4.0.0 +++ b/metadata/md5-cache/media-libs/coin-4.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=man? ( doc ) qthelp? ( doc ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/coin3d/coin/releases/download/Coin-4.0.0/coin-4.0.0-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e7a966941ce8dbfb3e5dbc647e456c3d diff --git a/metadata/md5-cache/media-libs/ctl-1.5.2_p20221224 b/metadata/md5-cache/media-libs/ctl-1.5.2_p20221224 index 66345563c50a..15853ce9a425 100644 --- a/metadata/md5-cache/media-libs/ctl-1.5.2_p20221224 +++ b/metadata/md5-cache/media-libs/ctl-1.5.2_p20221224 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/imath:= >=media-libs/openexr-3:=[threads] media-libs/tiff:= !me RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ampas/CTL/archive/3fc4ae7a8af35d380654e573d895216fd5ba407e.tar.gz -> ctl-1.5.2_p20221224.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ff05a87f578daa58059bacb1b83f7c94 diff --git a/metadata/md5-cache/media-libs/cubeb-0.2_p20220922 b/metadata/md5-cache/media-libs/cubeb-0.2_p20220922 index ec264e1f6a25..c21f7d2b39e4 100644 --- a/metadata/md5-cache/media-libs/cubeb-0.2_p20220922 +++ b/metadata/md5-cache/media-libs/cubeb-0.2_p20220922 @@ -12,5 +12,5 @@ RDEPEND=media-libs/speexdsp alsa? ( media-libs/alsa-lib ) jack? ( virtual/jack ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mozilla/cubeb/archive/93d1fa3fccdc22da37aa59f67b213591797db369.tar.gz -> cubeb-0.2_p20220922.tar.gz pulseaudio? ( rust? ( https://github.com/mozilla/cubeb-pulse-rs/archive/f32b3ef708c0bfb2c414c08971d638527353d376.tar.gz -> cubeb-pulse-rs-f32b3ef708.tar.gz https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/cache-padded/1.2.0/download -> cache-padded-1.2.0.crate https://crates.io/api/v1/crates/cc/1.0.73/download -> cc-1.0.73.crate https://crates.io/api/v1/crates/cmake/0.1.48/download -> cmake-0.1.48.crate https://crates.io/api/v1/crates/cubeb-backend/0.10.1/download -> cubeb-backend-0.10.1.crate https://crates.io/api/v1/crates/cubeb-core/0.10.1/download -> cubeb-core-0.10.1.crate https://crates.io/api/v1/crates/cubeb-sys/0.10.1/download -> cubeb-sys-0.10.1.crate https://crates.io/api/v1/crates/libc/0.2.133/download -> libc-0.2.133.crate https://crates.io/api/v1/crates/pkg-config/0.3.25/download -> pkg-config-0.3.25.crate https://crates.io/api/v1/crates/ringbuf/0.2.8/download -> ringbuf-0.2.8.crate https://crates.io/api/v1/crates/semver/1.0.14/download -> semver-1.0.14.crate ) ) -_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3031b8965b5a6f4b0e97880c6091956d diff --git a/metadata/md5-cache/media-libs/dumb-2.0.3 b/metadata/md5-cache/media-libs/dumb-2.0.3 index e8e0f5da0aa2..fc6ffb8ac8fe 100644 --- a/metadata/md5-cache/media-libs/dumb-2.0.3 +++ b/metadata/md5-cache/media-libs/dumb-2.0.3 @@ -11,5 +11,5 @@ LICENSE=DUMB-0.9.3 RDEPEND=allegro? ( media-libs/allegro: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/aldumb ) examples? ( >=dev-libs/argtable-2 media-libs/libsdl2[sound] ) SLOT=0/2 SRC_URI=https://github.com/kode54/dumb/archive/2.0.3.tar.gz -> dumb-2.0.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2f039480cd5d5117fadc041c96bb917b diff --git a/metadata/md5-cache/media-libs/embree-3.13.4 b/metadata/md5-cache/media-libs/embree-3.13.4 index a66ba7d52326..fc762db6228b 100644 --- a/metadata/md5-cache/media-libs/embree-3.13.4 +++ b/metadata/md5-cache/media-libs/embree-3.13.4 @@ -12,5 +12,5 @@ RDEPEND=>=media-libs/glfw-3.2.1 virtual/opengl ispc? ( dev-lang/ispc ) tbb? ( de REQUIRED_USE=amd64? ( cpu_flags_x86_sse2 ) x86? ( cpu_flags_x86_sse2 ) SLOT=3 SRC_URI=https://github.com/embree/embree/archive/v3.13.4.tar.gz -> embree-3.13.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0fd237b42a6f312afe618e724a108888 diff --git a/metadata/md5-cache/media-libs/freeglut-3.4.0 b/metadata/md5-cache/media-libs/freeglut-3.4.0 index 3f1aa68788b4..3fb04dbd5c3a 100644 --- a/metadata/md5-cache/media-libs/freeglut-3.4.0 +++ b/metadata/md5-cache/media-libs/freeglut-3.4.0 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=>=virtual/glu-9.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(-)?] >=virtual/opengl-7.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(-)?] >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXi-1.7.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/libXrandr-1.4.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(-)?] SLOT=0 SRC_URI=mirror://sourceforge/freeglut/freeglut-3.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=539514ac319f7146d6e0bf60e686d699 diff --git a/metadata/md5-cache/media-libs/game-music-emu-0.6.3 b/metadata/md5-cache/media-libs/game-music-emu-0.6.3 index 8a4038e4b70c..ffa2949736d1 100644 --- a/metadata/md5-cache/media-libs/game-music-emu-0.6.3 +++ b/metadata/md5-cache/media-libs/game-music-emu-0.6.3 @@ -9,5 +9,5 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv x86 LICENSE=LGPL-2.1 SLOT=0 SRC_URI=https://bitbucket.org/mpyne/game-music-emu/downloads/game-music-emu-0.6.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=db01ba390459e8028ac132020cdc05cb diff --git a/metadata/md5-cache/media-libs/glfw-3.3.8 b/metadata/md5-cache/media-libs/glfw-3.3.8 index adf9fdff58dd..df028de7b6a3 100644 --- a/metadata/md5-cache/media-libs/glfw-3.3.8 +++ b/metadata/md5-cache/media-libs/glfw-3.3.8 @@ -11,5 +11,5 @@ LICENSE=ZLIB RDEPEND=media-libs/libglvnd[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland-only? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !wayland-only? ( media-libs/libglvnd[X] x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 SRC_URI=https://github.com/glfw/glfw/archive/3.3.8.tar.gz -> glfw-3.3.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=135bd6e23866502d7855411ec8b05ce6 diff --git a/metadata/md5-cache/media-libs/glm-0.9.9.8-r1 b/metadata/md5-cache/media-libs/glm-0.9.9.8-r1 index dc396d3d6aa0..a65bb1fc7fab 100644 --- a/metadata/md5-cache/media-libs/glm-0.9.9.8-r1 +++ b/metadata/md5-cache/media-libs/glm-0.9.9.8-r1 @@ -10,5 +10,5 @@ LICENSE=|| ( HappyBunny MIT ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/g-truc/glm/archive/0.9.9.8.tar.gz -> glm-0.9.9.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0046d0f290639b83afe8e2b89434a244 diff --git a/metadata/md5-cache/media-libs/glpng-1.46-r1 b/metadata/md5-cache/media-libs/glpng-1.46-r1 index 52289891bfd8..f4a80a5e55e5 100644 --- a/metadata/md5-cache/media-libs/glpng-1.46-r1 +++ b/metadata/md5-cache/media-libs/glpng-1.46-r1 @@ -11,5 +11,5 @@ LICENSE=ZLIB RDEPEND=media-libs/libpng: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/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(-)?] virtual/glu[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/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=https://repo.or.cz/w/glpng.git/snapshot/v1.46.tar.gz -> glpng-1.46.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f6b9bae9acd40bf086642233ac7f4a21 diff --git a/metadata/md5-cache/media-libs/glyr-1.0.10-r1 b/metadata/md5-cache/media-libs/glyr-1.0.10-r1 index 95792ac09408..1a86bcb08651 100644 --- a/metadata/md5-cache/media-libs/glyr-1.0.10-r1 +++ b/metadata/md5-cache/media-libs/glyr-1.0.10-r1 @@ -10,5 +10,5 @@ LICENSE=LGPL-3 RDEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.10:2 net-misc/curl SLOT=0 SRC_URI=https://github.com/sahib/glyr/archive/1.0.10.tar.gz -> glyr-1.0.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8593b53f0705d5737dace1f7bccbaad7 diff --git a/metadata/md5-cache/media-libs/gmmlib-22.3.0 b/metadata/md5-cache/media-libs/gmmlib-22.3.0 index dd6ac077671c..15cd5d2cd9d2 100644 --- a/metadata/md5-cache/media-libs/gmmlib-22.3.0 +++ b/metadata/md5-cache/media-libs/gmmlib-22.3.0 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/12.3 SRC_URI=https://github.com/intel/gmmlib/archive/intel-gmmlib-22.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a57a18f0e48ab946de41fc8c47c83170 diff --git a/metadata/md5-cache/media-libs/gmmlib-22.3.3 b/metadata/md5-cache/media-libs/gmmlib-22.3.3 index 6ab86710f393..14c873e34191 100644 --- a/metadata/md5-cache/media-libs/gmmlib-22.3.3 +++ b/metadata/md5-cache/media-libs/gmmlib-22.3.3 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/12.3 SRC_URI=https://github.com/intel/gmmlib/archive/intel-gmmlib-22.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7eb08d071ee486c99c41d3ccac3bb661 diff --git a/metadata/md5-cache/media-libs/gmmlib-22.3.4 b/metadata/md5-cache/media-libs/gmmlib-22.3.4 index a525e727dbb5..73ca326d6793 100644 --- a/metadata/md5-cache/media-libs/gmmlib-22.3.4 +++ b/metadata/md5-cache/media-libs/gmmlib-22.3.4 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/12.3 SRC_URI=https://github.com/intel/gmmlib/archive/intel-gmmlib-22.3.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2c85f11627687912d2bcd05c8bfa4396 diff --git a/metadata/md5-cache/media-libs/gmmlib-9999 b/metadata/md5-cache/media-libs/gmmlib-9999 index b2385a9b58a0..f668b3fbaaac 100644 --- a/metadata/md5-cache/media-libs/gmmlib-9999 +++ b/metadata/md5-cache/media-libs/gmmlib-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0/12.3 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=02f347cb4320bd8b6023922e43aa0803 diff --git a/metadata/md5-cache/media-libs/iir1-1.9.3 b/metadata/md5-cache/media-libs/iir1-1.9.3 index 3f2d06b6bde2..31b8b836bd77 100644 --- a/metadata/md5-cache/media-libs/iir1-1.9.3 +++ b/metadata/md5-cache/media-libs/iir1-1.9.3 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/berndporr/iir1/archive/refs/tags/1.9.3.tar.gz -> iir1-1.9.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cedb461d1b0ba586220374dfab7fd32c diff --git a/metadata/md5-cache/media-libs/iir1-1.9.4 b/metadata/md5-cache/media-libs/iir1-1.9.4 index fb6b44a3cf14..ca17d15843b5 100644 --- a/metadata/md5-cache/media-libs/iir1-1.9.4 +++ b/metadata/md5-cache/media-libs/iir1-1.9.4 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/berndporr/iir1/archive/refs/tags/1.9.4.tar.gz -> iir1-1.9.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=06357a3d68ab39b651ed4836b616c585 diff --git a/metadata/md5-cache/media-libs/intel-mediasdk-22.6.5 b/metadata/md5-cache/media-libs/intel-mediasdk-22.6.5 index 35af9f4d7832..b25dd6692cf6 100644 --- a/metadata/md5-cache/media-libs/intel-mediasdk-22.6.5 +++ b/metadata/md5-cache/media-libs/intel-mediasdk-22.6.5 @@ -13,5 +13,5 @@ REQUIRED_USE=dri? ( X ) wayland? ( tools ) X? ( tools ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/Intel-Media-SDK/MediaSDK/archive/intel-mediasdk-22.6.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5efa6460d4c1929156b5ec47b74cdaee diff --git a/metadata/md5-cache/media-libs/intel-mediasdk-23.1.2 b/metadata/md5-cache/media-libs/intel-mediasdk-23.1.2 index 9c7b60b2de7d..0046ec72fd53 100644 --- a/metadata/md5-cache/media-libs/intel-mediasdk-23.1.2 +++ b/metadata/md5-cache/media-libs/intel-mediasdk-23.1.2 @@ -13,5 +13,5 @@ REQUIRED_USE=dri? ( X ) wayland? ( tools ) X? ( tools ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/Intel-Media-SDK/MediaSDK/archive/intel-mediasdk-23.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dac40ecec49e576b285ee80212078722 diff --git a/metadata/md5-cache/media-libs/intel-mediasdk-9999 b/metadata/md5-cache/media-libs/intel-mediasdk-9999 index a1006d7ae2bd..9fa1f6344939 100644 --- a/metadata/md5-cache/media-libs/intel-mediasdk-9999 +++ b/metadata/md5-cache/media-libs/intel-mediasdk-9999 @@ -12,5 +12,5 @@ RDEPEND=x11-libs/libpciaccess >=media-libs/libva-intel-media-driver-9999 media-l REQUIRED_USE=dri? ( X ) wayland? ( tools ) X? ( tools ) RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5efa6460d4c1929156b5ec47b74cdaee diff --git a/metadata/md5-cache/media-libs/kcolorpicker-0.1.6 b/metadata/md5-cache/media-libs/kcolorpicker-0.1.6 index 6bad73eec8a3..1d8409daf59c 100644 --- a/metadata/md5-cache/media-libs/kcolorpicker-0.1.6 +++ b/metadata/md5-cache/media-libs/kcolorpicker-0.1.6 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5[png] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ksnip/kColorPicker/archive/v0.1.6.tar.gz -> kColorPicker-0.1.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fccf5b5d98289b35b88a373e09f019cc diff --git a/metadata/md5-cache/media-libs/kcolorpicker-0.2.0 b/metadata/md5-cache/media-libs/kcolorpicker-0.2.0 index 7038b3fe306c..d407529b697b 100644 --- a/metadata/md5-cache/media-libs/kcolorpicker-0.2.0 +++ b/metadata/md5-cache/media-libs/kcolorpicker-0.2.0 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5[png] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ksnip/kColorPicker/archive/v0.2.0.tar.gz -> kColorPicker-0.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=04a0fb891a34a766603933a8741fc39c diff --git a/metadata/md5-cache/media-libs/kimageannotator-0.5.3 b/metadata/md5-cache/media-libs/kimageannotator-0.5.3 index a41cd204e11d..b4e164a5fcd3 100644 --- a/metadata/md5-cache/media-libs/kimageannotator-0.5.3 +++ b/metadata/md5-cache/media-libs/kimageannotator-0.5.3 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5[png] >= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ksnip/kImageAnnotator/archive/v0.5.3.tar.gz -> kImageAnnotator-0.5.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=38de74ad6484c0facc7272d28fa714f3 diff --git a/metadata/md5-cache/media-libs/kimageannotator-0.6.0 b/metadata/md5-cache/media-libs/kimageannotator-0.6.0 index 277808fee303..1d6e88253c4e 100644 --- a/metadata/md5-cache/media-libs/kimageannotator-0.6.0 +++ b/metadata/md5-cache/media-libs/kimageannotator-0.6.0 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5[png] >= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ksnip/kImageAnnotator/archive/v0.6.0.tar.gz -> kImageAnnotator-0.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8281a21636dbb7e339354b264a4b493 diff --git a/metadata/md5-cache/media-libs/kquickimageeditor-0.2.0 b/metadata/md5-cache/media-libs/kquickimageeditor-0.2.0 index b183e256d15a..3eb09d70dd5c 100644 --- a/metadata/md5-cache/media-libs/kquickimageeditor-0.2.0 +++ b/metadata/md5-cache/media-libs/kquickimageeditor-0.2.0 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-qt/qtdeclarative-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtgraphicaleffects-5.15.2:5 >=kde-frameworks/kirigami-5.82.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/kquickimageeditor/kquickimageeditor-0.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5bd1494def3b93b2190db43431dc7621 diff --git a/metadata/md5-cache/media-libs/ksanecore-22.08.3 b/metadata/md5-cache/media-libs/ksanecore-22.08.3 index c4b72d074c2d..55fc532f3408 100644 --- a/metadata/md5-cache/media-libs/ksanecore-22.08.3 +++ b/metadata/md5-cache/media-libs/ksanecore-22.08.3 @@ -12,5 +12,5 @@ LICENSE=|| ( LGPL-2.1 LGPL-3 ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/ki18n-5.96.0:5 media-gfx/sane-backends || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ksanecore-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=04d1a1eb09c8e34172ddda1fd53f8796 diff --git a/metadata/md5-cache/media-libs/ksanecore-22.12.3 b/metadata/md5-cache/media-libs/ksanecore-22.12.3 index 3060be9debfc..785e1116128f 100644 --- a/metadata/md5-cache/media-libs/ksanecore-22.12.3 +++ b/metadata/md5-cache/media-libs/ksanecore-22.12.3 @@ -12,5 +12,5 @@ LICENSE=|| ( LGPL-2.1 LGPL-3 ) RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=kde-frameworks/ki18n-5.101.0:5 media-gfx/sane-backends || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ksanecore-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=456851d63abfea0140e812896eb8e6b8 diff --git a/metadata/md5-cache/media-libs/kvazaar-2.2.0 b/metadata/md5-cache/media-libs/kvazaar-2.2.0 new file mode 100644 index 000000000000..1b619fd23c8e --- /dev/null +++ b/metadata/md5-cache/media-libs/kvazaar-2.2.0 @@ -0,0 +1,16 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=compile configure install prepare test +DEPEND=test? ( media-video/ffmpeg media-video/hevc-hm ) abi_x86_32? ( >=dev-lang/yasm-1.2.0 ) abi_x86_64? ( >=dev-lang/yasm-1.2.0 ) +DESCRIPTION=Open-source HEVC encoder +EAPI=8 +HOMEPAGE=http://ultravideo.cs.tut.fi/ https://github.com/ultravideo/kvazaar +INHERIT=autotools flag-o-matic multilib-minimal +IUSE=static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~amd64 ~mips ~riscv +LICENSE=LGPL-2.1 +REQUIRED_USE=test? ( static-libs ) +RESTRICT=!test? ( test ) +SLOT=0/6 +SRC_URI=https://github.com/ultravideo/kvazaar/archive/v2.2.0.tar.gz -> kvazaar-2.2.0.tar.gz test? ( https://github.com/silentbicycle/greatest/archive/v1.2.1.tar.gz -> greatest-1.2.1.tar.gz ) +_eclasses_=autotools b5529dc611971a61a30153916014f616 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=b25e186095c22fe371cae013e925af0d diff --git a/metadata/md5-cache/media-libs/kvazaar-9999 b/metadata/md5-cache/media-libs/kvazaar-9999 index a1fc4c3dec06..bba4e39fc85d 100644 --- a/metadata/md5-cache/media-libs/kvazaar-9999 +++ b/metadata/md5-cache/media-libs/kvazaar-9999 @@ -1,8 +1,8 @@ BDEPEND=>=dev-vcs/git-1.8.2.1[curl] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=test? ( media-video/ffmpeg ) abi_x86_32? ( >=dev-lang/yasm-1.2.0 ) abi_x86_64? ( >=dev-lang/yasm-1.2.0 ) +DEPEND=test? ( media-video/ffmpeg media-video/hevc-hm ) abi_x86_32? ( >=dev-lang/yasm-1.2.0 ) abi_x86_64? ( >=dev-lang/yasm-1.2.0 ) DESCRIPTION=Open-source HEVC encoder -EAPI=7 +EAPI=8 HOMEPAGE=http://ultravideo.cs.tut.fi/ https://github.com/ultravideo/kvazaar INHERIT=git-r3 autotools flag-o-matic multilib-minimal IUSE=static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 @@ -11,5 +11,5 @@ PROPERTIES=live REQUIRED_USE=test? ( static-libs ) RESTRICT=!test? ( test ) SLOT=0/6 -_eclasses_=autotools b5529dc611971a61a30153916014f616 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=bad13aef13259a1d241ac5058285d64f +_eclasses_=autotools b5529dc611971a61a30153916014f616 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=6b1e37f661842b0f51433b149903ef82 diff --git a/metadata/md5-cache/media-libs/lasi-1.1.3 b/metadata/md5-cache/media-libs/lasi-1.1.3 index bd4a4308dfe7..6a02ea9b603d 100644 --- a/metadata/md5-cache/media-libs/lasi-1.1.3 +++ b/metadata/md5-cache/media-libs/lasi-1.1.3 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 media-libs/freetype:2 x11-libs/pango SLOT=0/2 SRC_URI=mirror://sourceforge/lasi/libLASi-1.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a4783c14112329376fe761b0b74818af diff --git a/metadata/md5-cache/media-libs/lensfun-0.3.3 b/metadata/md5-cache/media-libs/lensfun-0.3.3 index fcdefeb26541..ea0beb5f6504 100644 --- a/metadata/md5-cache/media-libs/lensfun-0.3.3 +++ b/metadata/md5-cache/media-libs/lensfun-0.3.3 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/lensfun/lensfun/archive/v0.3.3.tar.gz -> lensfun-0.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f299f97748d1e43fa9ab1023809d6d59 diff --git a/metadata/md5-cache/media-libs/lensfun-0.3.4_rc1 b/metadata/md5-cache/media-libs/lensfun-0.3.4_rc1 index bad8631bfef1..2676d739af41 100644 --- a/metadata/md5-cache/media-libs/lensfun-0.3.4_rc1 +++ b/metadata/md5-cache/media-libs/lensfun-0.3.4_rc1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/lensfun/lensfun/archive/refs/tags/v0.3.4-RC1.tar.gz -> lensfun-0.3.4_rc1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2ee975dbda25eae883076a4b51ba1c21 diff --git a/metadata/md5-cache/media-libs/lib3mf-2.2.0 b/metadata/md5-cache/media-libs/lib3mf-2.2.0 index 102808b94f1b..d0df2f44db76 100644 --- a/metadata/md5-cache/media-libs/lib3mf-2.2.0 +++ b/metadata/md5-cache/media-libs/lib3mf-2.2.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libzip:= sys-apps/util-linux sys-libs/zlib RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/3MFConsortium/lib3mf/archive/v2.2.0.tar.gz -> lib3mf-2.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4d0f86c64755efe1867d6c75356d8a41 diff --git a/metadata/md5-cache/media-libs/libaom-3.4.0 b/metadata/md5-cache/media-libs/libaom-3.4.0 index 73863f1c160c..bb41f711eeb4 100644 --- a/metadata/md5-cache/media-libs/libaom-3.4.0 +++ b/metadata/md5-cache/media-libs/libaom-3.4.0 @@ -11,5 +11,5 @@ REQUIRED_USE=cpu_flags_x86_sse2? ( cpu_flags_x86_mmx ) cpu_flags_x86_ssse3? ( cp RESTRICT=!test? ( test ) test SLOT=0/3 SRC_URI=https://storage.googleapis.com/aom-releases/libaom-3.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dc3ff9c78c9cb2e409aeaff2e2cbc9b3 diff --git a/metadata/md5-cache/media-libs/libaom-3.5.0 b/metadata/md5-cache/media-libs/libaom-3.5.0 index 7730547e1234..c502b3d5cf41 100644 --- a/metadata/md5-cache/media-libs/libaom-3.5.0 +++ b/metadata/md5-cache/media-libs/libaom-3.5.0 @@ -11,5 +11,5 @@ REQUIRED_USE=cpu_flags_x86_sse2? ( cpu_flags_x86_mmx ) cpu_flags_x86_ssse3? ( cp RESTRICT=!test? ( test ) test SLOT=0/3 SRC_URI=https://storage.googleapis.com/aom-releases/libaom-3.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=37f19d01d0376d3a59c25dc43c096151 diff --git a/metadata/md5-cache/media-libs/libaom-3.6.0 b/metadata/md5-cache/media-libs/libaom-3.6.0 index 8c206e5be6f4..1df3bdb87427 100644 --- a/metadata/md5-cache/media-libs/libaom-3.6.0 +++ b/metadata/md5-cache/media-libs/libaom-3.6.0 @@ -8,8 +8,8 @@ IUSE=doc +examples test cpu_flags_x86_mmx cpu_flags_x86_sse cpu_flags_x86_sse2 c KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=BSD-2 REQUIRED_USE=cpu_flags_x86_sse2? ( cpu_flags_x86_mmx ) cpu_flags_x86_ssse3? ( cpu_flags_x86_sse2 ) -RESTRICT=!test? ( test ) test +RESTRICT=!test? ( test ) SLOT=0/3 -SRC_URI=https://storage.googleapis.com/aom-releases/libaom-3.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=7a115164396f7b862a3dd7ecb993569a +SRC_URI=https://storage.googleapis.com/aom-releases/libaom-3.6.0.tar.gz test? ( https://dev.gentoo.org/~ionen/distfiles/libaom-3.6.0-testdata.tar.gz ) +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=e18b334b9ef32557c13b97d9b8dc03a1 diff --git a/metadata/md5-cache/media-libs/libaom-9999 b/metadata/md5-cache/media-libs/libaom-9999 index 0bc284f1fbff..e3a6a70de12c 100644 --- a/metadata/md5-cache/media-libs/libaom-9999 +++ b/metadata/md5-cache/media-libs/libaom-9999 @@ -8,7 +8,7 @@ IUSE=doc +examples test cpu_flags_x86_mmx cpu_flags_x86_sse cpu_flags_x86_sse2 c LICENSE=BSD-2 PROPERTIES=live REQUIRED_USE=cpu_flags_x86_sse2? ( cpu_flags_x86_mmx ) cpu_flags_x86_ssse3? ( cpu_flags_x86_sse2 ) -RESTRICT=!test? ( test ) test +RESTRICT=!test? ( test ) SLOT=0/3 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=7a115164396f7b862a3dd7ecb993569a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=e18b334b9ef32557c13b97d9b8dc03a1 diff --git a/metadata/md5-cache/media-libs/libavif-0.10.1 b/metadata/md5-cache/media-libs/libavif-0.10.1 index f4f065234d5a..65f789cc78b3 100644 --- a/metadata/md5-cache/media-libs/libavif-0.10.1 +++ b/metadata/md5-cache/media-libs/libavif-0.10.1 @@ -12,5 +12,5 @@ RDEPEND=media-libs/libpng[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips REQUIRED_USE=|| ( aom dav1d ) SLOT=0/0.10.1 SRC_URI=https://github.com/AOMediaCodec/libavif/archive/v0.10.1.tar.gz -> libavif-0.10.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a89a6337a8395683f0811486887f173d diff --git a/metadata/md5-cache/media-libs/libavif-0.11.1 b/metadata/md5-cache/media-libs/libavif-0.11.1 index 68aa841fe6ea..76c85916d21f 100644 --- a/metadata/md5-cache/media-libs/libavif-0.11.1 +++ b/metadata/md5-cache/media-libs/libavif-0.11.1 @@ -12,5 +12,5 @@ RDEPEND=media-libs/libjpeg-turbo[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,a REQUIRED_USE=|| ( aom dav1d ) SLOT=0/0.11.1 SRC_URI=https://github.com/AOMediaCodec/libavif/archive/v0.11.1.tar.gz -> libavif-0.11.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=53ba86074f146642c5f6b52549eef1d0 diff --git a/metadata/md5-cache/media-libs/libavif-9999 b/metadata/md5-cache/media-libs/libavif-9999 index a8b92f584532..d4f8a55681c5 100644 --- a/metadata/md5-cache/media-libs/libavif-9999 +++ b/metadata/md5-cache/media-libs/libavif-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=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(-)?] media-libs/libpng[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/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(-)?] aom? ( >=media-libs/libaom-3.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(-)?] ) dav1d? ( >=media-libs/dav1d-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(-)?] ) extras? ( dev-cpp/gtest ) gdk-pixbuf? ( x11-libs/gdk-pixbuf: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(-)?] ) rav1e? ( >=media-video/rav1e-0.5.1[capi] ) svt-av1? ( >=media-libs/svt-av1-0.9.1 ) REQUIRED_USE=|| ( aom dav1d ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4960a47a6438feb9b54ca0bc7dc99c93 diff --git a/metadata/md5-cache/media-libs/libcue-2.2.1 b/metadata/md5-cache/media-libs/libcue-2.2.1 index 2699535b5061..a9eeab12ca57 100644 --- a/metadata/md5-cache/media-libs/libcue-2.2.1 +++ b/metadata/md5-cache/media-libs/libcue-2.2.1 @@ -8,5 +8,5 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 SLOT=0/2 SRC_URI=https://github.com/lipnitsk/libcue/archive/v2.2.1.tar.gz -> libcue-2.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=704f4df27221a007f7020c7a4e56801f diff --git a/metadata/md5-cache/media-libs/libcuefile-477-r2 b/metadata/md5-cache/media-libs/libcuefile-477-r2 index ec1af2b9ddcf..2839988256ad 100644 --- a/metadata/md5-cache/media-libs/libcuefile-477-r2 +++ b/metadata/md5-cache/media-libs/libcuefile-477-r2 @@ -8,5 +8,5 @@ KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=LGPL-2.1 SLOT=0 SRC_URI=https://dev.gentoo.org/~ssuominen/libcuefile-477.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9485e12e5bc4804c9980ea525dd7c051 diff --git a/metadata/md5-cache/media-libs/libebur128-1.2.6 b/metadata/md5-cache/media-libs/libebur128-1.2.6 index 9ce2a588d75a..bf1914243f78 100644 --- a/metadata/md5-cache/media-libs/libebur128-1.2.6 +++ b/metadata/md5-cache/media-libs/libebur128-1.2.6 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/jiixyj/libebur128/archive/v1.2.6.tar.gz -> libebur128-1.2.6.tar.gz test? ( https://tech.ebu.ch/files/live/sites/tech/files/shared/testmaterial/ebu-loudness-test-setv05.zip ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b66ccc34cc39b0a76bac94d7c2b406cf diff --git a/metadata/md5-cache/media-libs/libharu-2.4.2-r1 b/metadata/md5-cache/media-libs/libharu-2.4.2-r1 index 54a5eb0b6b29..3904057d0421 100644 --- a/metadata/md5-cache/media-libs/libharu-2.4.2-r1 +++ b/metadata/md5-cache/media-libs/libharu-2.4.2-r1 @@ -10,5 +10,5 @@ LICENSE=ZLIB RDEPEND=media-libs/libpng:= sys-libs/zlib:= SLOT=0/2.4.2 SRC_URI=https://github.com/libharu/libharu/archive/v2.4.2.tar.gz -> libharu-2.4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=180bfba0bc296dfed7127ab0550fe1bd diff --git a/metadata/md5-cache/media-libs/libid3tag-0.16.2 b/metadata/md5-cache/media-libs/libid3tag-0.16.2 index e6da888fc547..924e188a6bff 100644 --- a/metadata/md5-cache/media-libs/libid3tag-0.16.2 +++ b/metadata/md5-cache/media-libs/libid3tag-0.16.2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0/0.16.2 SRC_URI=https://github.com/tenacityteam/libid3tag/archive/refs/tags/0.16.2.tar.gz -> libid3tag-0.16.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=773053695e9816b2915bd5226260effa diff --git a/metadata/md5-cache/media-libs/libilbc-3.0.4 b/metadata/md5-cache/media-libs/libilbc-3.0.4 index 2e868b200542..0365b6b868b7 100644 --- a/metadata/md5-cache/media-libs/libilbc-3.0.4 +++ b/metadata/md5-cache/media-libs/libilbc-3.0.4 @@ -9,5 +9,5 @@ KEYWORDS=amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86 LICENSE=BSD SLOT=0/3 SRC_URI=https://github.com/TimothyGu/libilbc/releases/download/v3.0.4/libilbc-3.0.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=604dcfdbdaeda5b8e69c3ebf6a760c28 diff --git a/metadata/md5-cache/media-libs/libilbc-9999 b/metadata/md5-cache/media-libs/libilbc-9999 index 3b64acf4e46d..5a5532569198 100644 --- a/metadata/md5-cache/media-libs/libilbc-9999 +++ b/metadata/md5-cache/media-libs/libilbc-9999 @@ -8,5 +8,5 @@ IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 ab LICENSE=BSD PROPERTIES=live SLOT=0/3 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=77c81f604b099e67ef77e5d2961efde7 diff --git a/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.3 b/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.3 index 264e7967f05b..699b7ef1c138 100644 --- a/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.3 +++ b/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.3 @@ -11,5 +11,5 @@ LICENSE=BSD IJG ZLIB RDEPEND=!media-libs/jpeg:0 !media-libs/jpeg:62 java? ( >=virtual/jre-1.8:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/0.2 SRC_URI=mirror://sourceforge/libjpeg-turbo/libjpeg-turbo-2.1.3.tar.gz mirror://gentoo/libjpeg8_8d-2.debian.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cece60a5498f7dcab8bb88861af044a8 diff --git a/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.4 b/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.4 index 4cd91b15feb2..f52057a361f9 100644 --- a/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.4 +++ b/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.4 @@ -11,5 +11,5 @@ LICENSE=BSD IJG ZLIB RDEPEND=!media-libs/jpeg:0 !media-libs/jpeg:62 java? ( >=virtual/jre-1.8:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/0.2 SRC_URI=mirror://sourceforge/libjpeg-turbo/libjpeg-turbo-2.1.4.tar.gz mirror://gentoo/libjpeg8_8d-2.debian.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4f65db56c80c9d50be7dd636e84734f0 diff --git a/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.5.1 b/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.5.1 index 4d140afbdb9c..b8e29dc722b7 100644 --- a/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.5.1 +++ b/metadata/md5-cache/media-libs/libjpeg-turbo-2.1.5.1 @@ -11,5 +11,5 @@ LICENSE=BSD IJG ZLIB RDEPEND=!media-libs/jpeg:0 !media-libs/jpeg:62 java? ( >=virtual/jre-1.8:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/0.2 SRC_URI=mirror://sourceforge/libjpeg-turbo/libjpeg-turbo-2.1.5.1.tar.gz mirror://gentoo/libjpeg8_8d-2.debian.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3411f1a7eef129fbb54d209b2c016529 diff --git a/metadata/md5-cache/media-libs/libjxl-0.7.0 b/metadata/md5-cache/media-libs/libjxl-0.7.0 index b9a314da60c4..b010bae345b4 100644 --- a/metadata/md5-cache/media-libs/libjxl-0.7.0 +++ b/metadata/md5-cache/media-libs/libjxl-0.7.0 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=app-arch/brotli:=[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-cpp/highway-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(-)?] media-libs/giflib:=[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/lcms-2.13:=[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/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(-)?] media-libs/libpng:=[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/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(-)?] >=x11-misc/shared-mime-info-2.2 openexr? ( media-libs/openexr:= ) SLOT=0 SRC_URI=https://github.com/libjxl/libjxl/archive/refs/tags/v0.7.0.tar.gz -> libjxl-0.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=94eacae83fb37526568b43a672a9b2b1 diff --git a/metadata/md5-cache/media-libs/libjxl-0.7.0_pre20220825 b/metadata/md5-cache/media-libs/libjxl-0.7.0_pre20220825 index eab64660d037..9b6efff29afa 100644 --- a/metadata/md5-cache/media-libs/libjxl-0.7.0_pre20220825 +++ b/metadata/md5-cache/media-libs/libjxl-0.7.0_pre20220825 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=app-arch/brotli:=[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-cpp/gflags:=[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-cpp/highway-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(-)?] media-libs/giflib:=[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/lcms-2.13:=[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/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(-)?] media-libs/libpng:=[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/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(-)?] >=x11-misc/shared-mime-info-2.2 openexr? ( media-libs/openexr:= ) SLOT=0 SRC_URI=https://api.github.com/repos/libjxl/libjxl/tarball/4c31ef03e3fd5239d6b794771d4ae7daa7815b28 -> libjxl-0.7.0_pre20220825.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e3142b90003355ea4d09d40d4967cd95 diff --git a/metadata/md5-cache/media-libs/libjxl-0.8.0 b/metadata/md5-cache/media-libs/libjxl-0.8.0 index 257edc308e07..d2ee9456fb2b 100644 --- a/metadata/md5-cache/media-libs/libjxl-0.8.0 +++ b/metadata/md5-cache/media-libs/libjxl-0.8.0 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=app-arch/brotli:=[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-cpp/highway-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(-)?] media-libs/giflib:=[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/lcms-2.13:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/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(-)?] media-libs/libpng:=[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-misc/shared-mime-info-2.2 openexr? ( media-libs/openexr:= ) SLOT=0 SRC_URI=https://github.com/libjxl/libjxl/archive/refs/tags/v0.8.0.tar.gz -> libjxl-0.8.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c9f2f503415cd271d739974266516099 diff --git a/metadata/md5-cache/media-libs/libjxl-0.8.1 b/metadata/md5-cache/media-libs/libjxl-0.8.1 index 02081dc5801a..0d6e9587316a 100644 --- a/metadata/md5-cache/media-libs/libjxl-0.8.1 +++ b/metadata/md5-cache/media-libs/libjxl-0.8.1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=app-arch/brotli:=[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-cpp/highway-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(-)?] media-libs/giflib:=[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/lcms-2.13:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/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(-)?] media-libs/libpng:=[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-misc/shared-mime-info-2.2 openexr? ( media-libs/openexr:= ) SLOT=0 SRC_URI=https://github.com/libjxl/libjxl/archive/refs/tags/v0.8.1.tar.gz -> libjxl-0.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3169bb8135f871f62bba9de877cc84ce diff --git a/metadata/md5-cache/media-libs/libjxl-9999 b/metadata/md5-cache/media-libs/libjxl-9999 index c66745822056..d67464d7bd89 100644 --- a/metadata/md5-cache/media-libs/libjxl-9999 +++ b/metadata/md5-cache/media-libs/libjxl-9999 @@ -10,5 +10,5 @@ LICENSE=BSD PROPERTIES=live RDEPEND=app-arch/brotli:=[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-cpp/highway-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(-)?] media-libs/giflib:=[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/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(-)?] media-libs/libpng:=[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-misc/shared-mime-info-2.2 gdk-pixbuf? ( dev-libs/glib:2 x11-libs/gdk-pixbuf:2 ) openexr? ( media-libs/openexr:= ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5dd55af96fcc30a7d745d9b12d5f71f3 diff --git a/metadata/md5-cache/media-libs/libkeyfinder-2.2.7 b/metadata/md5-cache/media-libs/libkeyfinder-2.2.7 index 21f753bfbdc8..6a3eea92e6ae 100644 --- a/metadata/md5-cache/media-libs/libkeyfinder-2.2.7 +++ b/metadata/md5-cache/media-libs/libkeyfinder-2.2.7 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=sci-libs/fftw:3.0 SLOT=0 SRC_URI=https://github.com/mixxxdj/libkeyfinder/archive/refs/tags/2.2.7.tar.gz -> libkeyfinder-2.2.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=438b4d7ba680675c0ca70b9dfb995cc0 diff --git a/metadata/md5-cache/media-libs/liblastfm-1.1.0_pre20190625 b/metadata/md5-cache/media-libs/liblastfm-1.1.0_pre20190625 index e234bdf81824..896df3c8cc65 100644 --- a/metadata/md5-cache/media-libs/liblastfm-1.1.0_pre20190625 +++ b/metadata/md5-cache/media-libs/liblastfm-1.1.0_pre20190625 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtxml:5 f RESTRICT=test SLOT=0/0 SRC_URI=https://github.com/lastfm/liblastfm/archive/f867df52757c569d97d9755c911ac9dec146f365.tar.gz -> liblastfm-1.1.0_pre20190625.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fab3eda287e64c2fb0c992f4fcf8561b diff --git a/metadata/md5-cache/media-libs/libldac-2.0.2.3-r1 b/metadata/md5-cache/media-libs/libldac-2.0.2.3-r1 index b91985354715..ed02ccc71198 100644 --- a/metadata/md5-cache/media-libs/libldac-2.0.2.3-r1 +++ b/metadata/md5-cache/media-libs/libldac-2.0.2.3-r1 @@ -9,5 +9,5 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86 ~ LICENSE=Apache-2.0 SLOT=0 SRC_URI=https://github.com/EHfive/ldacBT/releases/download/v2.0.2.3/ldacBT-2.0.2.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0d79f8acba25205b6123093c9089bf61 diff --git a/metadata/md5-cache/media-libs/liblscp-0.9.8 b/metadata/md5-cache/media-libs/liblscp-0.9.8 index 6fb9ddd3583e..d902350926c2 100644 --- a/metadata/md5-cache/media-libs/liblscp-0.9.8 +++ b/metadata/md5-cache/media-libs/liblscp-0.9.8 @@ -9,5 +9,5 @@ KEYWORDS=amd64 ~ppc x86 LICENSE=LGPL-2.1 SLOT=0 SRC_URI=https://www.rncbc.org/archive/liblscp-0.9.8.tar.gz https://download.linuxsampler.org/packages/liblscp-0.9.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2985ee371c59f6b2eb76575d6036adef diff --git a/metadata/md5-cache/media-libs/liblscp-9999 b/metadata/md5-cache/media-libs/liblscp-9999 index df246ae1fcfd..f25bd631bc60 100644 --- a/metadata/md5-cache/media-libs/liblscp-9999 +++ b/metadata/md5-cache/media-libs/liblscp-9999 @@ -8,5 +8,5 @@ IUSE=doc LICENSE=LGPL-2.1 PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b subversion a98eebf2efc83b38f8d1982b8a522e75 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b subversion a98eebf2efc83b38f8d1982b8a522e75 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=602ccd183929f91a9ceee7bc98c62d9f diff --git a/metadata/md5-cache/media-libs/libmatroska-1.7.1 b/metadata/md5-cache/media-libs/libmatroska-1.7.1 index 128cca525c40..12bc96fe9bf5 100644 --- a/metadata/md5-cache/media-libs/libmatroska-1.7.1 +++ b/metadata/md5-cache/media-libs/libmatroska-1.7.1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/libebml-1.4.3:= SLOT=0/7 SRC_URI=https://dl.matroska.org/downloads/libmatroska/libmatroska-1.7.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=53b6e428196f230ff7282f5f0fad96b1 diff --git a/metadata/md5-cache/media-libs/libmygpo-qt-1.1.0 b/metadata/md5-cache/media-libs/libmygpo-qt-1.1.0 index d9daff6e2e37..3e3dbf3c5f35 100644 --- a/metadata/md5-cache/media-libs/libmygpo-qt-1.1.0 +++ b/metadata/md5-cache/media-libs/libmygpo-qt-1.1.0 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtnetwork:5 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/gpodder/libmygpo-qt/archive/1.1.0.tar.gz -> libmygpo-qt-1.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0015fd89c9f5e75f83c938f36510d307 diff --git a/metadata/md5-cache/media-libs/libmygpo-qt-9999 b/metadata/md5-cache/media-libs/libmygpo-qt-9999 index 6b6b4dbe1e96..fa395b5746a5 100644 --- a/metadata/md5-cache/media-libs/libmygpo-qt-9999 +++ b/metadata/md5-cache/media-libs/libmygpo-qt-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtnetwork:5 RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=77f2d547509e69f8ebef65489d27e958 diff --git a/metadata/md5-cache/media-libs/libopenglrecorder-0.1.0 b/metadata/md5-cache/media-libs/libopenglrecorder-0.1.0 index 15b683eb7be5..f392453a5eb0 100644 --- a/metadata/md5-cache/media-libs/libopenglrecorder-0.1.0 +++ b/metadata/md5-cache/media-libs/libopenglrecorder-0.1.0 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=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(-)?] openh264? ( media-libs/openh264[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sound? ( media-libs/libvorbis[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-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( media-libs/libvpx:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 SRC_URI=https://github.com/Benau/libopenglrecorder/archive/v0.1.0.tar.gz -> libopenglrecorder-0.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2da456c3d14bdc8e916f047c76f1340c diff --git a/metadata/md5-cache/media-libs/libopenshot-0.2.7-r1 b/metadata/md5-cache/media-libs/libopenshot-0.2.7-r1 index 52369bb9586e..a4558206fffe 100644 --- a/metadata/md5-cache/media-libs/libopenshot-0.2.7-r1 +++ b/metadata/md5-cache/media-libs/libopenshot-0.2.7-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/21 SRC_URI=https://github.com/OpenShot/libopenshot/archive/v0.2.7.tar.gz -> libopenshot-0.2.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa771258646876272025e22603f2b120 diff --git a/metadata/md5-cache/media-libs/libopenshot-audio-0.2.2 b/metadata/md5-cache/media-libs/libopenshot-audio-0.2.2 index ab364f11f787..de6b164edcc7 100644 --- a/metadata/md5-cache/media-libs/libopenshot-audio-0.2.2 +++ b/metadata/md5-cache/media-libs/libopenshot-audio-0.2.2 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=media-libs/alsa-lib media-libs/freetype sys-libs/zlib x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr SLOT=0/8 SRC_URI=https://github.com/OpenShot/libopenshot-audio/archive/v0.2.2.tar.gz -> libopenshot-audio-0.2.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f6381a7054b5c46d77cae05480db4763 diff --git a/metadata/md5-cache/media-libs/libpano13-2.9.21-r1 b/metadata/md5-cache/media-libs/libpano13-2.9.21-r1 index a68ad122d0e1..4b86e0f273f1 100644 --- a/metadata/md5-cache/media-libs/libpano13-2.9.21-r1 +++ b/metadata/md5-cache/media-libs/libpano13-2.9.21-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=media-libs/libpng:= media-libs/tiff:= media-libs/libjpeg-turbo:= sys-libs/zlib java? ( >=virtual/jdk-1.8:* ) suitesparse? ( sci-libs/suitesparse ) SLOT=0/3 SRC_URI=mirror://sourceforge/panotools/libpano13-2.9.21.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bff7780c02bb02c8d2630baac664fde1 diff --git a/metadata/md5-cache/media-libs/libpano13-2.9.21-r2 b/metadata/md5-cache/media-libs/libpano13-2.9.21-r2 index 1651d9443b76..379b3da4cf23 100644 --- a/metadata/md5-cache/media-libs/libpano13-2.9.21-r2 +++ b/metadata/md5-cache/media-libs/libpano13-2.9.21-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=media-libs/libpng:= media-libs/tiff:= media-libs/libjpeg-turbo:= sys-libs/zlib java? ( >=virtual/jdk-1.8:* ) suitesparse? ( sci-libs/suitesparse ) SLOT=0/3 SRC_URI=mirror://sourceforge/panotools/libpano13-2.9.21.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8463cb154a3368522ed5604fed7353b5 diff --git a/metadata/md5-cache/media-libs/libqaccessibilityclient-0.4.1 b/metadata/md5-cache/media-libs/libqaccessibilityclient-0.4.1 index f12f8f874dd3..6a930ce3d2f6 100644 --- a/metadata/md5-cache/media-libs/libqaccessibilityclient-0.4.1 +++ b/metadata/md5-cache/media-libs/libqaccessibilityclient-0.4.1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.12.3:5 >=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtwidgets-5.12 RESTRICT=test !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/libqaccessibilityclient/libqaccessibilityclient-0.4.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e75ebc2ba180948924465efd4dea95a2 diff --git a/metadata/md5-cache/media-libs/libreplaygain-477-r2 b/metadata/md5-cache/media-libs/libreplaygain-477-r2 index 410351259247..cfa68f36de99 100644 --- a/metadata/md5-cache/media-libs/libreplaygain-477-r2 +++ b/metadata/md5-cache/media-libs/libreplaygain-477-r2 @@ -8,5 +8,5 @@ KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=LGPL-2.1 SLOT=0 SRC_URI=https://dev.gentoo.org/~ssuominen/libreplaygain-477.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=91af04de4d3597f21fcf33256b59470a diff --git a/metadata/md5-cache/media-libs/librtprocess-0.12.0-r1 b/metadata/md5-cache/media-libs/librtprocess-0.12.0-r1 index 3f3a2413dff0..2dc79ad95202 100644 --- a/metadata/md5-cache/media-libs/librtprocess-0.12.0-r1 +++ b/metadata/md5-cache/media-libs/librtprocess-0.12.0-r1 @@ -9,5 +9,5 @@ KEYWORDS=amd64 x86 LICENSE=GPL-3+ SLOT=0 SRC_URI=https://github.com/CarVac/librtprocess/archive/refs/tags/0.12.0.tar.gz -> librtprocess-0.12.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=179f937cdcba9737026291624efa9019 diff --git a/metadata/md5-cache/media-libs/libsdl-1.2.60 b/metadata/md5-cache/media-libs/libsdl-1.2.60 index 48d9d0406eec..c0fd1fc08d62 100644 --- a/metadata/md5-cache/media-libs/libsdl-1.2.60 +++ b/metadata/md5-cache/media-libs/libsdl-1.2.60 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( joystick opengl sound video ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/libsdl-org/sdl12-compat/archive/refs/tags/release-1.2.60.tar.gz -> libsdl-1.2.60.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e59f6f58b59e487a63e2661ac365c9c7 diff --git a/metadata/md5-cache/media-libs/libsfml-2.5.1-r1 b/metadata/md5-cache/media-libs/libsfml-2.5.1-r1 index 80ef1b9665af..77acf59ccfa8 100644 --- a/metadata/md5-cache/media-libs/libsfml-2.5.1-r1 +++ b/metadata/md5-cache/media-libs/libsfml-2.5.1-r1 @@ -11,5 +11,5 @@ LICENSE=ZLIB RDEPEND=media-libs/flac:= media-libs/freetype:2 media-libs/libjpeg-turbo:= media-libs/libpng:= media-libs/libogg media-libs/libvorbis media-libs/openal sys-libs/zlib virtual/opengl kernel_linux? ( virtual/libudev:= ) !kernel_Winnt? ( x11-libs/libX11 x11-libs/libXrandr x11-libs/libxcb x11-libs/xcb-util-image ) SLOT=0/2.5 SRC_URI=https://github.com/SFML/SFML/archive/2.5.1.tar.gz -> libsfml-2.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=645fe8eb6ebc8ba73ef1e65bbed8c780 diff --git a/metadata/md5-cache/media-libs/libsoundio-2.0.0 b/metadata/md5-cache/media-libs/libsoundio-2.0.0 index dbc1b931648d..f8f8c282054c 100644 --- a/metadata/md5-cache/media-libs/libsoundio-2.0.0 +++ b/metadata/md5-cache/media-libs/libsoundio-2.0.0 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0/2 SRC_URI=https://github.com/andrewrk/libsoundio/archive/2.0.0.tar.gz -> libsoundio-2.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd62e2f243b4bb22f5ff1c1ec6ae4532 diff --git a/metadata/md5-cache/media-libs/libuvc-0.0.6-r2 b/metadata/md5-cache/media-libs/libuvc-0.0.6-r2 index 1ce36c3dbed3..616d7c53f1e2 100644 --- a/metadata/md5-cache/media-libs/libuvc-0.0.6-r2 +++ b/metadata/md5-cache/media-libs/libuvc-0.0.6-r2 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=virtual/jpeg:0 virtual/libusb:1 virtual/udev SLOT=0 SRC_URI=https://github.com/ktossell/libuvc/archive/v0.0.6.tar.gz -> libuvc-0.0.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=968b86b3f5a703f158ad8c71493a3a1d diff --git a/metadata/md5-cache/media-libs/libv4l-1.24.1 b/metadata/md5-cache/media-libs/libv4l-1.24.1 new file mode 100644 index 000000000000..c05ed399d641 --- /dev/null +++ b/metadata/md5-cache/media-libs/libv4l-1.24.1 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/gettext virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=dvb? ( virtual/libudev[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !elibc_glibc? ( sys-libs/argp-standalone ) jpeg? ( >=virtual/jpeg-0-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !media-tv/v4l2-ctl !=virtual/jpeg-0-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !media-tv/v4l2-ctl !=media-libs/gmmlib-22.1.8:= >=media-libs/libva-2.14.0[X?] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/intel/media-driver/archive/intel-media-22.5.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9f6b8b0d6a464b9f6ad195e2c48b4e38 diff --git a/metadata/md5-cache/media-libs/libva-intel-media-driver-22.6.6 b/metadata/md5-cache/media-libs/libva-intel-media-driver-22.6.6 index ec1025210e26..2c7c84d4d162 100644 --- a/metadata/md5-cache/media-libs/libva-intel-media-driver-22.6.6 +++ b/metadata/md5-cache/media-libs/libva-intel-media-driver-22.6.6 @@ -12,5 +12,5 @@ RDEPEND=>=media-libs/gmmlib-22.3.0:= >=media-libs/libva-2.14.0[X?] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/intel/media-driver/archive/intel-media-22.6.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d28f26e93a40e9a1536b384e1e0bc808 diff --git a/metadata/md5-cache/media-libs/libva-intel-media-driver-23.1.2 b/metadata/md5-cache/media-libs/libva-intel-media-driver-23.1.2 index a2fb68cba2e7..1fd2b5be2dba 100644 --- a/metadata/md5-cache/media-libs/libva-intel-media-driver-23.1.2 +++ b/metadata/md5-cache/media-libs/libva-intel-media-driver-23.1.2 @@ -12,5 +12,5 @@ RDEPEND=>=media-libs/gmmlib-22.3.0:= >=media-libs/libva-2.14.0[X?] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/intel/media-driver/archive/intel-media-23.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3f41d9fab9f85ce8f7ec0ed2055c2523 diff --git a/metadata/md5-cache/media-libs/libva-intel-media-driver-9999 b/metadata/md5-cache/media-libs/libva-intel-media-driver-9999 index 5a960b58ae5f..7a82d0a1bb06 100644 --- a/metadata/md5-cache/media-libs/libva-intel-media-driver-9999 +++ b/metadata/md5-cache/media-libs/libva-intel-media-driver-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=media-libs/gmmlib-22.1.8:= >=media-libs/libva-2.14.0[X?] RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6c3312960c723375f10ecc49c411b605 diff --git a/metadata/md5-cache/media-libs/libvisual-0.4.2 b/metadata/md5-cache/media-libs/libvisual-0.4.2 new file mode 100644 index 000000000000..9bdc37541999 --- /dev/null +++ b/metadata/md5-cache/media-libs/libvisual-0.4.2 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig nls? ( sys-devel/gettext ) +DEFINED_PHASES=compile configure install postinst test +DEPEND=media-libs/libsdl +DESCRIPTION=Abstraction library between applications and audio visualisation plugins +EAPI=8 +HOMEPAGE=http://libvisual.org/ +INHERIT=multilib-minimal optfeature +IUSE=debug nls threads abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-2.1 +RDEPEND=media-libs/libsdl +SLOT=0.4 +SRC_URI=https://github.com/Libvisual/libvisual/releases/download/libvisual-0.4.2/libvisual-0.4.2.tar.bz2 +_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=06d6e8ab16c8d6fe6154e66c6c64e14c diff --git a/metadata/md5-cache/media-libs/mlt-7.12.0 b/metadata/md5-cache/media-libs/mlt-7.12.0 index b1c7a8cb4b1d..6a3160ae6f44 100644 --- a/metadata/md5-cache/media-libs/mlt-7.12.0 +++ b/metadata/md5-cache/media-libs/mlt-7.12.0 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=test SLOT=0/7 SRC_URI=https://github.com/mltframework/mlt/releases/download/v7.12.0/mlt-7.12.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e773dd136cd1fa10135e35be6af5931b diff --git a/metadata/md5-cache/media-libs/munt-mt32emu-2.7.0 b/metadata/md5-cache/media-libs/munt-mt32emu-2.7.0 index 2afe4b77a6e3..cad4b4b2b0b3 100644 --- a/metadata/md5-cache/media-libs/munt-mt32emu-2.7.0 +++ b/metadata/md5-cache/media-libs/munt-mt32emu-2.7.0 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 LICENSE=LGPL-2.1 SLOT=0 SRC_URI=https://github.com/munt/munt/archive/libmt32emu_2_7_0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bfbe566e5f240942482416277eb5c3ba diff --git a/metadata/md5-cache/media-libs/musicbrainz-5.1.0 b/metadata/md5-cache/media-libs/musicbrainz-5.1.0 index 3619f17b0b6a..38a32341f2f7 100644 --- a/metadata/md5-cache/media-libs/musicbrainz-5.1.0 +++ b/metadata/md5-cache/media-libs/musicbrainz-5.1.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libxml2 net-libs/neon RESTRICT=!test? ( test ) SLOT=5/1 SRC_URI=https://github.com/metabrainz/libmusicbrainz/releases/download/release-5.1.0/libmusicbrainz-5.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a00242f792d5a9fecb02e92caf5cdf4c diff --git a/metadata/md5-cache/media-libs/netpbm-10.86.37 b/metadata/md5-cache/media-libs/netpbm-10.86.37 new file mode 100644 index 000000000000..bf711028e4fd --- /dev/null +++ b/metadata/md5-cache/media-libs/netpbm-10.86.37 @@ -0,0 +1,15 @@ +BDEPEND=app-arch/xz-utils sys-devel/flex virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl jbig? ( media-libs/jbigkit:= ) jpeg? ( media-libs/libjpeg-turbo:=[static-libs?] ) png? ( >=media-libs/libpng-1.4:0= sys-libs/zlib ) postscript? ( app-text/ghostscript-gpl sys-libs/zlib ) rle? ( media-libs/urt:= ) svga? ( media-libs/svgalib ) tiff? ( >=media-libs/tiff-3.5.5:= ) xml? ( dev-libs/libxml2 ) X? ( x11-libs/libX11 ) x11-base/xorg-proto +DESCRIPTION=A set of utilities for converting to/from the netpbm (and related) formats +EAPI=8 +HOMEPAGE=https://netpbm.sourceforge.net/ +INHERIT=flag-o-matic multilib toolchain-funcs +IUSE=jbig jpeg png postscript rle cpu_flags_x86_sse2 static-libs svga tiff X xml +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=Artistic BSD GPL-2 IJG LGPL-2.1 MIT public-domain +RDEPEND=dev-lang/perl jbig? ( media-libs/jbigkit:= ) jpeg? ( media-libs/libjpeg-turbo:=[static-libs?] ) png? ( >=media-libs/libpng-1.4:0= sys-libs/zlib ) postscript? ( app-text/ghostscript-gpl sys-libs/zlib ) rle? ( media-libs/urt:= ) svga? ( media-libs/svgalib ) tiff? ( >=media-libs/tiff-3.5.5:= ) xml? ( dev-libs/libxml2 ) X? ( x11-libs/libX11 ) +SLOT=0/stable +SRC_URI=https://dev.gentoo.org/~ceamac/media-libs/netpbm/netpbm-10.86.37.tar.xz +_eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=c1165e10d70a41b5ea7411570e57a989 diff --git a/metadata/md5-cache/media-libs/netpbm-11.1.0-r2 b/metadata/md5-cache/media-libs/netpbm-11.1.1 similarity index 99% rename from metadata/md5-cache/media-libs/netpbm-11.1.0-r2 rename to metadata/md5-cache/media-libs/netpbm-11.1.1 index 03db336c08f8..6c7ac55a9da7 100644 --- a/metadata/md5-cache/media-libs/netpbm-11.1.0-r2 +++ b/metadata/md5-cache/media-libs/netpbm-11.1.1 @@ -10,6 +10,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~r LICENSE=Artistic BSD GPL-2 IJG LGPL-2.1 MIT public-domain RDEPEND=dev-lang/perl jbig? ( media-libs/jbigkit:= ) jpeg? ( media-libs/libjpeg-turbo:=[static-libs?] ) png? ( >=media-libs/libpng-1.4:0= sys-libs/zlib ) postscript? ( app-text/ghostscript-gpl sys-libs/zlib ) rle? ( media-libs/urt:= ) svga? ( media-libs/svgalib ) tiff? ( >=media-libs/tiff-3.5.5:= ) xml? ( dev-libs/libxml2 ) X? ( x11-libs/libX11 ) SLOT=0/advanced -SRC_URI=https://dev.gentoo.org/~ceamac/media-libs/netpbm/netpbm-11.1.0.tar.xz +SRC_URI=https://dev.gentoo.org/~ceamac/media-libs/netpbm/netpbm-11.1.1.tar.xz _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b _md5_=cddfde99fc3a666c31b0e5775939aafe diff --git a/metadata/md5-cache/media-libs/noise-suppression-for-voice-0.91 b/metadata/md5-cache/media-libs/noise-suppression-for-voice-0.91 index d67f04a618a2..809908771f3e 100644 --- a/metadata/md5-cache/media-libs/noise-suppression-for-voice-0.91 +++ b/metadata/md5-cache/media-libs/noise-suppression-for-voice-0.91 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-3+ SLOT=0 SRC_URI=https://github.com/werman/noise-suppression-for-voice/archive/v0.91.tar.gz -> noise-suppression-for-voice-0.91.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9db2b140c16e9b2e2cc0ddf75d6d0adc diff --git a/metadata/md5-cache/media-libs/noise-suppression-for-voice-9999 b/metadata/md5-cache/media-libs/noise-suppression-for-voice-9999 index 5dd881721a2f..38ed2ba7137c 100644 --- a/metadata/md5-cache/media-libs/noise-suppression-for-voice-9999 +++ b/metadata/md5-cache/media-libs/noise-suppression-for-voice-9999 @@ -7,5 +7,5 @@ INHERIT=cmake git-r3 LICENSE=GPL-3+ PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9db2b140c16e9b2e2cc0ddf75d6d0adc diff --git a/metadata/md5-cache/media-libs/oidn-1.4.2 b/metadata/md5-cache/media-libs/oidn-1.4.2 index 926d655091be..801f49ed5bc3 100644 --- a/metadata/md5-cache/media-libs/oidn-1.4.2 +++ b/metadata/md5-cache/media-libs/oidn-1.4.2 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://github.com/OpenImageDenoise/oidn/releases/download/v1.4.2/oidn-1.4.2.src.tar.gz -> oidn-1.4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2a765b4774cb6582561cacb358e7b354 diff --git a/metadata/md5-cache/media-libs/oidn-1.4.3 b/metadata/md5-cache/media-libs/oidn-1.4.3 index c41038687d5f..dd9426f27cfd 100644 --- a/metadata/md5-cache/media-libs/oidn-1.4.3 +++ b/metadata/md5-cache/media-libs/oidn-1.4.3 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://github.com/OpenImageDenoise/oidn/releases/download/v1.4.3/oidn-1.4.3.src.tar.gz -> oidn-1.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ad9f29e54a511d3fcc8fea1e880d62ba diff --git a/metadata/md5-cache/media-libs/oneVPL-2023.1.1 b/metadata/md5-cache/media-libs/oneVPL-2023.1.1 index e1309b9c2367..d7489fe0abc3 100644 --- a/metadata/md5-cache/media-libs/oneVPL-2023.1.1 +++ b/metadata/md5-cache/media-libs/oneVPL-2023.1.1 @@ -13,5 +13,5 @@ REQUIRED_USE=dri? ( X drm ) drm? ( tools ) X? ( tools vaapi ) wayland? ( tools d RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/oneapi-src/oneVPL/archive/refs/tags/v2023.1.1.tar.gz -> oneVPL-2023.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7bbaec4a0789508f93a35da9d95dd949 diff --git a/metadata/md5-cache/media-libs/oneVPL-2023.1.2 b/metadata/md5-cache/media-libs/oneVPL-2023.1.2 index 4dc5b5be6982..928eb5055e14 100644 --- a/metadata/md5-cache/media-libs/oneVPL-2023.1.2 +++ b/metadata/md5-cache/media-libs/oneVPL-2023.1.2 @@ -13,5 +13,5 @@ REQUIRED_USE=dri? ( X drm ) drm? ( tools ) X? ( tools vaapi ) wayland? ( tools d RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/oneapi-src/oneVPL/archive/refs/tags/v2023.1.2.tar.gz -> oneVPL-2023.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7bbaec4a0789508f93a35da9d95dd949 diff --git a/metadata/md5-cache/media-libs/oneVPL-2023.1.3 b/metadata/md5-cache/media-libs/oneVPL-2023.1.3 index 884765052458..adb977f5e89d 100644 --- a/metadata/md5-cache/media-libs/oneVPL-2023.1.3 +++ b/metadata/md5-cache/media-libs/oneVPL-2023.1.3 @@ -13,5 +13,5 @@ REQUIRED_USE=dri? ( X drm ) drm? ( tools ) X? ( tools vaapi ) wayland? ( tools d RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/oneapi-src/oneVPL/archive/refs/tags/v2023.1.3.tar.gz -> oneVPL-2023.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7bbaec4a0789508f93a35da9d95dd949 diff --git a/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.1 b/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.1 index 71849726d18a..aeefc84eb577 100644 --- a/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.1 +++ b/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( openh264 x264 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/oneapi-src/oneVPL-cpu/archive/refs/tags/v2023.1.1.tar.gz -> oneVPL-cpu-2023.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=daa1f298cd5245896d5905c0de8f0253 diff --git a/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.2 b/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.2 index be489b6e8b4e..108c491fb2d7 100644 --- a/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.2 +++ b/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( openh264 x264 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/oneapi-src/oneVPL-cpu/archive/refs/tags/v2023.1.2.tar.gz -> oneVPL-cpu-2023.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=daa1f298cd5245896d5905c0de8f0253 diff --git a/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.3 b/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.3 index 84a3f1a7f21c..f4f1d8e42e90 100644 --- a/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.3 +++ b/metadata/md5-cache/media-libs/oneVPL-cpu-2023.1.3 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( openh264 x264 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/oneapi-src/oneVPL-cpu/archive/refs/tags/v2023.1.3.tar.gz -> oneVPL-cpu-2023.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=daa1f298cd5245896d5905c0de8f0253 diff --git a/metadata/md5-cache/media-libs/oneVPL-intel-gpu-22.6.5 b/metadata/md5-cache/media-libs/oneVPL-intel-gpu-22.6.5 index bff1c75deeab..0e7273c715d9 100644 --- a/metadata/md5-cache/media-libs/oneVPL-intel-gpu-22.6.5 +++ b/metadata/md5-cache/media-libs/oneVPL-intel-gpu-22.6.5 @@ -12,5 +12,5 @@ RDEPEND=media-libs/libva x11-libs/libdrm[video_cards_intel] >=media-libs/libva-i RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/oneapi-src/oneVPL-intel-gpu/archive/refs/tags/intel-onevpl-22.6.5.tar.gz -> oneVPL-intel-gpu-22.6.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cbcce4a03c5fabd6d9198d82da8ace2d diff --git a/metadata/md5-cache/media-libs/oneVPL-intel-gpu-23.1.2 b/metadata/md5-cache/media-libs/oneVPL-intel-gpu-23.1.2 index 4c348d5a2979..dd09e6dee1c6 100644 --- a/metadata/md5-cache/media-libs/oneVPL-intel-gpu-23.1.2 +++ b/metadata/md5-cache/media-libs/oneVPL-intel-gpu-23.1.2 @@ -12,5 +12,5 @@ RDEPEND=media-libs/libva x11-libs/libdrm[video_cards_intel] >=media-libs/libva-i RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/oneapi-src/oneVPL-intel-gpu/archive/refs/tags/intel-onevpl-23.1.2.tar.gz -> oneVPL-intel-gpu-23.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cbcce4a03c5fabd6d9198d82da8ace2d diff --git a/metadata/md5-cache/media-libs/openal-1.22.2-r1 b/metadata/md5-cache/media-libs/openal-1.22.2-r1 index d6d2ba54c56b..b00931aff6fb 100644 --- a/metadata/md5-cache/media-libs/openal-1.22.2-r1 +++ b/metadata/md5-cache/media-libs/openal-1.22.2-r1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ BSD RDEPEND=alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pipewire? ( >=media-video/pipewire-0.3.50[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) portaudio? ( media-libs/portaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) sdl? ( media-libs/libsdl2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sndio? ( media-sound/sndio:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 SRC_URI=https://www.openal-soft.org/openal-releases/openal-soft-1.22.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea58a52b7ee57f04a1eff0ab9c33583c diff --git a/metadata/md5-cache/media-libs/openal-1.23.0 b/metadata/md5-cache/media-libs/openal-1.23.0 index da3ff4065f12..dc4040e783eb 100644 --- a/metadata/md5-cache/media-libs/openal-1.23.0 +++ b/metadata/md5-cache/media-libs/openal-1.23.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2+ BSD RDEPEND=alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pipewire? ( media-video/pipewire[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) portaudio? ( media-libs/portaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) sdl? ( media-libs/libsdl2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sndio? ( media-sound/sndio:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 SRC_URI=https://www.openal-soft.org/openal-releases/openal-soft-1.23.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=95d58ba3acd83d1dcb812c244e14d26d diff --git a/metadata/md5-cache/media-libs/opencollada-1.6.68 b/metadata/md5-cache/media-libs/opencollada-1.6.68 index 7e7cc4f48875..af9af78ee1dc 100644 --- a/metadata/md5-cache/media-libs/opencollada-1.6.68 +++ b/metadata/md5-cache/media-libs/opencollada-1.6.68 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/libpcre:= dev-libs/libxml2:= dev-libs/zziplib media-libs/lib3ds sys-libs/zlib SLOT=0 SRC_URI=https://github.com/KhronosGroup/OpenCOLLADA/archive/v1.6.68.tar.gz -> opencollada-1.6.68.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a1db54ae5847a10c5d3aa76e2dc02ec diff --git a/metadata/md5-cache/media-libs/opencolorio-2.1.1-r7 b/metadata/md5-cache/media-libs/opencolorio-2.1.1-r7 index e8c5353e2246..ffed10345f14 100644 --- a/metadata/md5-cache/media-libs/opencolorio-2.1.1-r7 +++ b/metadata/md5-cache/media-libs/opencolorio-2.1.1-r7 @@ -13,5 +13,5 @@ REQUIRED_USE=doc? ( python ) python? ( ^^ ( python_single_target_python3_9 pytho RESTRICT=test SLOT=0/2.1.1 SRC_URI=https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/refs/tags/v2.1.1.tar.gz -> opencolorio-2.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ce83963bc16a42f5a23b31ecbeb644f0 diff --git a/metadata/md5-cache/media-libs/opencolorio-2.1.2 b/metadata/md5-cache/media-libs/opencolorio-2.1.2 index ae6e9fc80e86..d533905f0966 100644 --- a/metadata/md5-cache/media-libs/opencolorio-2.1.2 +++ b/metadata/md5-cache/media-libs/opencolorio-2.1.2 @@ -13,5 +13,5 @@ REQUIRED_USE=doc? ( python ) python? ( ^^ ( python_single_target_python3_9 pytho RESTRICT=test SLOT=0/2.1.1 SRC_URI=https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/refs/tags/v2.1.2.tar.gz -> opencolorio-2.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=addb3c4471123fb930d8013b1de8830d diff --git a/metadata/md5-cache/media-libs/opencv-4.6.0-r4 b/metadata/md5-cache/media-libs/opencv-4.6.0-r4 index dbba8c507c7e..fef1ef31c5d9 100644 --- a/metadata/md5-cache/media-libs/opencv-4.6.0-r4 +++ b/metadata/md5-cache/media-libs/opencv-4.6.0-r4 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n3 REQUIRED_USE=cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) cuda? ( contrib tesseract? ( opencl ) ) dnnsamples? ( examples ) gflags? ( contrib ) glog? ( contrib ) contribcvv? ( contrib qt5 ) contribdnn? ( contrib ) contribfreetype? ( contrib ) contribhdf? ( contrib ) contribovis? ( contrib ) contribsfm? ( contrib eigen gflags glog ) contribxfeatures2d? ( contrib download ) examples? ( contribdnn ) java? ( python ) opengl? ( qt5 ) python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) tesseract? ( contrib ) ?? ( gtk3 qt5 ) SLOT=0/4.6.0 SRC_URI=https://github.com/opencv/opencv/archive/4.6.0.tar.gz -> opencv-4.6.0.tar.gz dnnsamples? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-res10_300x300-caffeemodel.tar.gz ) download? ( https://github.com/rossbridger/opencv-extdep/archive/4.4.0.tar.gz -> opencv-4.4.0_extdep.tar.gz ) contrib? ( https://github.com/opencv/opencv_contrib/archive/4.6.0.tar.gz -> opencv-4.6.0_contrib.tar.gz contribdnn? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-face_landmark_model.tar.gz ) contribxfeatures2d? ( https://dev.gentoo.org/~amynka/snap/vgg_boostdesc-3.2.0.tar.gz ) ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-ant-2 f9b70c3474c0b326c8102814719dc554 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-ant-2 f9b70c3474c0b326c8102814719dc554 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6f22b0ea3473060f4bdbf7205cc3589b diff --git a/metadata/md5-cache/media-libs/opencv-4.7.0 b/metadata/md5-cache/media-libs/opencv-4.7.0 index ff874ccd5ecb..354760fb27ac 100644 --- a/metadata/md5-cache/media-libs/opencv-4.7.0 +++ b/metadata/md5-cache/media-libs/opencv-4.7.0 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n3 REQUIRED_USE=cpu_flags_x86_avx2? ( cpu_flags_x86_f16c ) cpu_flags_x86_f16c? ( cpu_flags_x86_avx ) cuda? ( contrib tesseract? ( opencl ) ) dnnsamples? ( examples ) gflags? ( contrib ) glog? ( contrib ) contribcvv? ( contrib qt5 ) contribdnn? ( contrib ) contribfreetype? ( contrib ) contribhdf? ( contrib ) contribovis? ( contrib ) contribsfm? ( contrib eigen gflags glog ) contribxfeatures2d? ( contrib download ) examples? ( contribdnn ) java? ( python ) opengl? ( qt5 ) python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) tesseract? ( contrib ) ?? ( gtk3 qt5 ) SLOT=0/4.7.0 SRC_URI=https://github.com/opencv/opencv/archive/4.7.0.tar.gz -> opencv-4.7.0.tar.gz dnnsamples? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-res10_300x300-caffeemodel.tar.gz ) download? ( https://github.com/rossbridger/opencv-extdep/archive/4.4.0.tar.gz -> opencv-4.4.0_extdep.tar.gz ) contrib? ( https://github.com/opencv/opencv_contrib/archive/4.7.0.tar.gz -> opencv-4.7.0_contrib.tar.gz contribdnn? ( https://dev.gentoo.org/~amynka/snap/opencv-3.4.0-face_landmark_model.tar.gz ) contribxfeatures2d? ( https://dev.gentoo.org/~amynka/snap/vgg_boostdesc-3.2.0.tar.gz ) ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-ant-2 f9b70c3474c0b326c8102814719dc554 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-ant-2 f9b70c3474c0b326c8102814719dc554 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=49b55159fa49cb1be9245953178809cc diff --git a/metadata/md5-cache/media-libs/openexr-3.1.5-r1 b/metadata/md5-cache/media-libs/openexr-3.1.5-r1 index 6778249e0f7a..f0b504a7a7b5 100644 --- a/metadata/md5-cache/media-libs/openexr-3.1.5-r1 +++ b/metadata/md5-cache/media-libs/openexr-3.1.5-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/imath-3.1.5:= sys-libs/zlib !media-libs/openexr:3 !media-libs RESTRICT=!test? ( test ) SLOT=0/30 SRC_URI=https://github.com/AcademySoftwareFoundation/openexr/archive/refs/tags/v3.1.5.tar.gz -> openexr-3.1.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a4592439e47446adf5d5727bcc598385 diff --git a/metadata/md5-cache/media-libs/openimageio-2.3.21.0-r1 b/metadata/md5-cache/media-libs/openimageio-2.3.21.0-r1 index 2bbd496acb62..85fe3b92f71e 100644 --- a/metadata/md5-cache/media-libs/openimageio-2.3.21.0-r1 +++ b/metadata/md5-cache/media-libs/openimageio-2.3.21.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) test SLOT=0/2.3.1 SRC_URI=https://github.com/OpenImageIO/oiio/archive/v2.3.21.0.tar.gz -> openimageio-2.3.21.0.tar.gz test? ( https://github.com/OpenImageIO/oiio-images/archive/245e50edede2792205080eadc1dedce33ff5c1e4.tar.gz -> openimageio-oiio-test-image-245e50edede2792205080eadc1dedce33ff5c1e4.tar.gz https://github.com/AcademySoftwareFoundation/openexr-images/archive/f17e353fbfcde3406fe02675f4d92aeae422a560.tar.gz -> openimageio-oexr-test-image-f17e353fbfcde3406fe02675f4d92aeae422a560.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 font aa113a3df9cd0a9693a1c1ee7c34a6eb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 font aa113a3df9cd0a9693a1c1ee7c34a6eb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f6b0fa439913421ee9aefc4bba8a66ac diff --git a/metadata/md5-cache/media-libs/openimageio-2.4.6.0-r1 b/metadata/md5-cache/media-libs/openimageio-2.4.6.0-r1 index 1363cb84bdf5..af30fb267cdb 100644 --- a/metadata/md5-cache/media-libs/openimageio-2.4.6.0-r1 +++ b/metadata/md5-cache/media-libs/openimageio-2.4.6.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/2.4 SRC_URI=https://github.com/OpenImageIO/oiio/archive/v2.4.6.0.tar.gz -> openimageio-2.4.6.0.tar.gz test? ( https://github.com/OpenImageIO/oiio-images/archive/245e50edede2792205080eadc1dedce33ff5c1e4.tar.gz -> openimageio-oiio-test-image-245e50edede2792205080eadc1dedce33ff5c1e4.tar.gz https://github.com/AcademySoftwareFoundation/openexr-images/archive/f17e353fbfcde3406fe02675f4d92aeae422a560.tar.gz -> openimageio-oexr-test-image-f17e353fbfcde3406fe02675f4d92aeae422a560.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 font aa113a3df9cd0a9693a1c1ee7c34a6eb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 font aa113a3df9cd0a9693a1c1ee7c34a6eb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8dd887c516e163ddcc43898df821f704 diff --git a/metadata/md5-cache/media-libs/openjpeg-2.5.0-r4 b/metadata/md5-cache/media-libs/openjpeg-2.5.0-r4 index 006d211935b2..891fb45acc03 100644 --- a/metadata/md5-cache/media-libs/openjpeg-2.5.0-r4 +++ b/metadata/md5-cache/media-libs/openjpeg-2.5.0-r4 @@ -12,5 +12,5 @@ RDEPEND=media-libs/lcms:2 media-libs/libpng:0= media-libs/tiff:= sys-libs/zlib:= RESTRICT=!test? ( test ) SLOT=2/7 SRC_URI=https://github.com/uclouvain/openjpeg/archive/v2.5.0.tar.gz -> openjpeg-2.5.0.tar.gz test? ( https://github.com/uclouvain/openjpeg-data/archive/1f3d093030f9a0b43353ec6b48500f65786ff57a.tar.gz -> openjpeg-data_20210926.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9f6c940c5218d6f3c07be318c9029164 diff --git a/metadata/md5-cache/media-libs/opensubdiv-3.4.4-r3 b/metadata/md5-cache/media-libs/opensubdiv-3.4.4-r3 index 1f8f12aa3f49..787f95722586 100644 --- a/metadata/md5-cache/media-libs/opensubdiv-3.4.4-r3 +++ b/metadata/md5-cache/media-libs/opensubdiv-3.4.4-r3 @@ -12,5 +12,5 @@ RDEPEND=media-libs/glew:= media-libs/glfw:= x11-libs/libXinerama cuda? ( dev-uti RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v3_4_4.tar.gz -> opensubdiv-3.4.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7f698219806221660ab514e86e4eeb78 diff --git a/metadata/md5-cache/media-libs/osl-1.12.7.0 b/metadata/md5-cache/media-libs/osl-1.12.7.0 index a499265828d3..21e3d454b847 100644 --- a/metadata/md5-cache/media-libs/osl-1.12.7.0 +++ b/metadata/md5-cache/media-libs/osl-1.12.7.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/imageworks/OpenShadingLanguage/archive/v1.12.7.0.tar.gz -> osl-1.12.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f38f53a06ec34bc0262889ec2dcd138d diff --git a/metadata/md5-cache/media-libs/partio-1.14.6 b/metadata/md5-cache/media-libs/partio-1.14.6 index 68ec4c5f3ef9..ac71b5ee1d16 100644 --- a/metadata/md5-cache/media-libs/partio-1.14.6 +++ b/metadata/md5-cache/media-libs/partio-1.14.6 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://github.com/wdas/partio/archive/v1.14.6.tar.gz -> partio-1.14.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=840f75a972ad3b6eff0e7194f30ea2bf diff --git a/metadata/md5-cache/media-libs/phonon-4.11.1-r2 b/metadata/md5-cache/media-libs/phonon-4.11.1-r2 index 75b675d417b4..6b1b67ce921f 100644 --- a/metadata/md5-cache/media-libs/phonon-4.11.1-r2 +++ b/metadata/md5-cache/media-libs/phonon-4.11.1-r2 @@ -13,5 +13,5 @@ PDEPEND=gstreamer? ( >=media-libs/phonon-gstreamer-4.9.60 ) vlc? ( >=media-libs/ RDEPEND=dev-qt/qtgui:5 dev-qt/qtwidgets:5 designer? ( dev-qt/designer:5 ) pulseaudio? ( dev-libs/glib:2 media-libs/libpulse[glib] ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 SRC_URI=mirror://kde/stable/phonon/4.11.1/phonon-4.11.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bcc5bd6e572d78924335a4c7a5ec5013 diff --git a/metadata/md5-cache/media-libs/phonon-gstreamer-4.10.0-r1 b/metadata/md5-cache/media-libs/phonon-gstreamer-4.10.0-r1 index af52946444a8..314f7acd4c48 100644 --- a/metadata/md5-cache/media-libs/phonon-gstreamer-4.10.0-r1 +++ b/metadata/md5-cache/media-libs/phonon-gstreamer-4.10.0-r1 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1+ || ( LGPL-2.1 LGPL-3 ) RDEPEND=dev-libs/glib:2 dev-libs/libxml2:2 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-libs/gst-plugins-base:1.0 media-libs/gstreamer:1.0 >=media-libs/phonon-4.10.60 media-plugins/gst-plugins-meta:1.0[alsa?,ogg,vorbis] virtual/opengl network? ( media-plugins/gst-plugins-soup:1.0 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 SRC_URI=mirror://kde/stable/phonon/phonon-backend-gstreamer/4.10.0/phonon-backend-gstreamer-4.10.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cc3ca6257d48dca18399c119729de337 diff --git a/metadata/md5-cache/media-libs/phonon-vlc-0.11.3-r1 b/metadata/md5-cache/media-libs/phonon-vlc-0.11.3-r1 index 0ebdb11be386..2d04e61e5764 100644 --- a/metadata/md5-cache/media-libs/phonon-vlc-0.11.3-r1 +++ b/metadata/md5-cache/media-libs/phonon-vlc-0.11.3-r1 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1+ || ( LGPL-2.1 LGPL-3 ) RDEPEND=dev-qt/qtgui:5 dev-qt/qtwidgets:5 >=media-libs/phonon-4.11.0 media-video/vlc:=[dbus,ogg,vorbis(+)] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=0 SRC_URI=mirror://kde/stable/phonon/phonon-backend-vlc/0.11.3/phonon-backend-vlc-0.11.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2ec4e0deaa046515c65348b768a0c49 diff --git a/metadata/md5-cache/media-libs/portmidi-234-r2 b/metadata/md5-cache/media-libs/portmidi-234-r2 index c5090305b9c1..31279cc53254 100644 --- a/metadata/md5-cache/media-libs/portmidi-234-r2 +++ b/metadata/md5-cache/media-libs/portmidi-234-r2 @@ -12,5 +12,5 @@ LICENSE=MIT RDEPEND=media-libs/alsa-lib java? ( >=virtual/jre-1.8:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=mirror://sourceforge/project/portmedia/portmedia-code-r234.zip -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9184c6c39ff31e827e91a9c5f2987219 diff --git a/metadata/md5-cache/media-libs/portsmf-239 b/metadata/md5-cache/media-libs/portsmf-239 index e711a4f3e23b..e06d327f8758 100644 --- a/metadata/md5-cache/media-libs/portsmf-239 +++ b/metadata/md5-cache/media-libs/portsmf-239 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://codeberg.org/tenacityteam/portsmf/archive/239.tar.gz -> portsmf-239.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=777cdf5875fb2e6772302062785134e3 diff --git a/metadata/md5-cache/media-libs/ptex-2.3.2 b/metadata/md5-cache/media-libs/ptex-2.3.2 index 956fac0cc613..7b7d64ec0520 100644 --- a/metadata/md5-cache/media-libs/ptex-2.3.2 +++ b/metadata/md5-cache/media-libs/ptex-2.3.2 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib RESTRICT=test SLOT=0 SRC_URI=https://github.com/wdas/ptex/archive/v2.3.2.tar.gz -> ptex-2.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e6fac84dbedf680f02bcb742eab36191 diff --git a/metadata/md5-cache/media-libs/ptex-2.4.2 b/metadata/md5-cache/media-libs/ptex-2.4.2 index 317278cb20a8..e823e031e34e 100644 --- a/metadata/md5-cache/media-libs/ptex-2.4.2 +++ b/metadata/md5-cache/media-libs/ptex-2.4.2 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib RESTRICT=test SLOT=0 SRC_URI=https://github.com/wdas/ptex/archive/refs/tags/v2.4.2.tar.gz -> ptex-2.4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ab35c729ffa9a26788d4068eddbb423e diff --git a/metadata/md5-cache/media-libs/pulseaudio-qt-1.3-r2 b/metadata/md5-cache/media-libs/pulseaudio-qt-1.3-r2 index acc7e9c182d0..0d9351fc7388 100644 --- a/metadata/md5-cache/media-libs/pulseaudio-qt-1.3-r2 +++ b/metadata/md5-cache/media-libs/pulseaudio-qt-1.3-r2 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 media-libs/libpulse || RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=mirror://kde/stable/pulseaudio-qt/pulseaudio-qt-1.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ce4342481c70c2f6d648a2b2b664297f diff --git a/metadata/md5-cache/media-libs/pulseaudio-qt-1.3-r3 b/metadata/md5-cache/media-libs/pulseaudio-qt-1.3-r3 index 1c8e1540a41a..d670021582f7 100644 --- a/metadata/md5-cache/media-libs/pulseaudio-qt-1.3-r3 +++ b/metadata/md5-cache/media-libs/pulseaudio-qt-1.3-r3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 media-libs/libpulse || RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=mirror://kde/stable/pulseaudio-qt/pulseaudio-qt-1.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=25b39f3dc5eec3cd5a75473073dc02c3 diff --git a/metadata/md5-cache/media-libs/qhull-2020.2-r3 b/metadata/md5-cache/media-libs/qhull-2020.2-r3 index af308679d288..1af22cc1d7c1 100644 --- a/metadata/md5-cache/media-libs/qhull-2020.2-r3 +++ b/metadata/md5-cache/media-libs/qhull-2020.2-r3 @@ -9,5 +9,5 @@ KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x LICENSE=BSD SLOT=0/8 SRC_URI=https://github.com/qhull/qhull/archive/2020.2.tar.gz -> qhull-2020.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8736352578eb9e77d49610348657e2e6 diff --git a/metadata/md5-cache/media-libs/quarter-1.1.0-r1 b/metadata/md5-cache/media-libs/quarter-1.1.0-r1 index 6c328ae1a01c..7237023361e2 100644 --- a/metadata/md5-cache/media-libs/quarter-1.1.0-r1 +++ b/metadata/md5-cache/media-libs/quarter-1.1.0-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 medi REQUIRED_USE=man? ( doc ) qthelp? ( doc ) SLOT=0 SRC_URI=https://github.com/coin3d/quarter/releases/download/Quarter-1.1.0/quarter-1.1.0-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7f888df0b8c8c0b88f4048d917fe6077 diff --git a/metadata/md5-cache/media-libs/raspberrypi-userland-0_pre20160424 b/metadata/md5-cache/media-libs/raspberrypi-userland-0_pre20160424 index 00d83b5c412c..9ad04c8b5d1f 100644 --- a/metadata/md5-cache/media-libs/raspberrypi-userland-0_pre20160424 +++ b/metadata/md5-cache/media-libs/raspberrypi-userland-0_pre20160424 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=!media-libs/raspberrypi-userland-bin wayland? ( dev-libs/wayland ) SLOT=0 SRC_URI=https://github.com/raspberrypi/userland/tarball/dff5760 -> raspberrypi-userland-0_pre20160424.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c7694cdfa4941ddc4cecb0b2f0652e2a diff --git a/metadata/md5-cache/media-libs/raspberrypi-userland-0_pre20201022 b/metadata/md5-cache/media-libs/raspberrypi-userland-0_pre20201022 index 356ea54dd5bb..45680090fd70 100644 --- a/metadata/md5-cache/media-libs/raspberrypi-userland-0_pre20201022 +++ b/metadata/md5-cache/media-libs/raspberrypi-userland-0_pre20201022 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=acct-group/video !media-libs/raspberrypi-userland-bin SLOT=0 SRC_URI=https://github.com/raspberrypi/userland/archive/e432bc3400401064e2d8affa5d1454aac2cf4a00.tar.gz -> raspberrypi-userland-0_pre20201022.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=749f0540f8bfda5a583b3a30f325c158 diff --git a/metadata/md5-cache/media-libs/raspberrypi-userland-9999 b/metadata/md5-cache/media-libs/raspberrypi-userland-9999 index fa11f5295b0b..393dd580eefb 100644 --- a/metadata/md5-cache/media-libs/raspberrypi-userland-9999 +++ b/metadata/md5-cache/media-libs/raspberrypi-userland-9999 @@ -8,5 +8,5 @@ LICENSE=BSD PROPERTIES=live RDEPEND=acct-group/video !media-libs/raspberrypi-userland-bin SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e038f9f8263dd9b851e6c15df525a08 diff --git a/metadata/md5-cache/media-libs/rtmidi-5.0.0 b/metadata/md5-cache/media-libs/rtmidi-5.0.0 index 7382bea52944..83ed5eaf8c50 100644 --- a/metadata/md5-cache/media-libs/rtmidi-5.0.0 +++ b/metadata/md5-cache/media-libs/rtmidi-5.0.0 @@ -11,5 +11,5 @@ LICENSE=RtMidi RDEPEND=alsa? ( media-libs/alsa-lib ) jack? ( virtual/jack ) SLOT=0 SRC_URI=https://www.music.mcgill.ca/~gary/rtmidi/release/rtmidi-5.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=70ce7a6e23efc817cd4ccf28cddf7fcd diff --git a/metadata/md5-cache/media-libs/rubberband-3.1.2 b/metadata/md5-cache/media-libs/rubberband-3.1.2 index b6f3e2a9a630..22057f44cdf1 100644 --- a/metadata/md5-cache/media-libs/rubberband-3.1.2 +++ b/metadata/md5-cache/media-libs/rubberband-3.1.2 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://www.breakfastquay.com/rubberband/ INHERIT=meson-multilib flag-o-matic toolchain-funcs IUSE=ladspa lv2 jni static-libs +programs test vamp abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=GPL-2 RDEPEND=media-libs/libsamplerate[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sci-libs/fftw: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(-)?] jni? ( >=virtual/jdk-1.8:* ) ladspa? ( media-libs/ladspa-sdk[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lv2? ( media-libs/lv2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) programs? ( media-libs/libsndfile[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vamp? ( media-libs/vamp-plugin-sdk[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-devel/gcc:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://breakfastquay.com/files/releases/rubberband-3.1.2.tar.bz2 _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 meson cd2865332c8d99e1da0655523ff4a28f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=e6135686e154bb134a9706edaa5cd241 +_md5_=c9e75283a32a24f2a2e0bdf26890cad6 diff --git a/metadata/md5-cache/media-libs/sdl2-ttf-2.20.0 b/metadata/md5-cache/media-libs/sdl2-ttf-2.20.0 index c7a9fc0760fe..15e27f6051f5 100644 --- a/metadata/md5-cache/media-libs/sdl2-ttf-2.20.0 +++ b/metadata/md5-cache/media-libs/sdl2-ttf-2.20.0 @@ -11,5 +11,5 @@ LICENSE=ZLIB RDEPEND=>=media-libs/libsdl2-2.0.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/freetype-2.10.4[harfbuzz?,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/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] harfbuzz? ( >=media-libs/harfbuzz-2.8.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 SRC_URI=https://github.com/libsdl-org/SDL_ttf/releases/download/release-2.20.0/SDL2_ttf-2.20.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e5e90253a1793370edd913936ab20c66 diff --git a/metadata/md5-cache/media-libs/sdl2-ttf-2.20.2 b/metadata/md5-cache/media-libs/sdl2-ttf-2.20.2 index 6145f2a1896f..5e53dec30cf1 100644 --- a/metadata/md5-cache/media-libs/sdl2-ttf-2.20.2 +++ b/metadata/md5-cache/media-libs/sdl2-ttf-2.20.2 @@ -11,5 +11,5 @@ LICENSE=ZLIB RDEPEND=>=media-libs/libsdl2-2.0.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/freetype-2.10.4[harfbuzz?,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/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] harfbuzz? ( >=media-libs/harfbuzz-2.8.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 SRC_URI=https://github.com/libsdl-org/SDL_ttf/releases/download/release-2.20.2/SDL2_ttf-2.20.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=65dd067cd5b9652942c738e9818a6454 diff --git a/metadata/md5-cache/media-libs/sdl_audiolib-0_p20220622-r1 b/metadata/md5-cache/media-libs/sdl_audiolib-0_p20220622-r1 index affcda467783..754fc7b41d90 100644 --- a/metadata/md5-cache/media-libs/sdl_audiolib-0_p20220622-r1 +++ b/metadata/md5-cache/media-libs/sdl_audiolib-0_p20220622-r1 @@ -11,5 +11,5 @@ LICENSE=LGPL-3+ BSD-2 || ( MIT Unlicense ) RDEPEND=dev-libs/libfmt:= media-libs/libsdl2[sound] flac? ( media-libs/flac:= ) fluidsynth? ( media-sound/fluidsynth:= ) libsamplerate? ( media-libs/libsamplerate ) modplug? ( media-libs/libmodplug ) mpg123? ( media-sound/mpg123 ) musepack? ( media-sound/musepack-tools ) openmpt? ( media-libs/libopenmpt ) opus? ( media-libs/opusfile ) sndfile? ( media-libs/libsndfile ) soxr? ( media-libs/soxr ) vorbis? ( media-libs/libvorbis ) wildmidi? ( media-sound/wildmidi ) SLOT=0 SRC_URI=https://github.com/realnc/SDL_audiolib/archive/b66a66fedf8f65cacc5ce2ff8ed8d10649c6de31.tar.gz -> sdl_audiolib-0_p20220622.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=15b913e577768ab0a09ae00660cd4c97 diff --git a/metadata/md5-cache/media-libs/sdl_audiolib-9999 b/metadata/md5-cache/media-libs/sdl_audiolib-9999 index 9592b456266a..a85c0f1eadf8 100644 --- a/metadata/md5-cache/media-libs/sdl_audiolib-9999 +++ b/metadata/md5-cache/media-libs/sdl_audiolib-9999 @@ -10,5 +10,5 @@ LICENSE=LGPL-3+ BSD-2 || ( MIT Unlicense ) PROPERTIES=live RDEPEND=dev-libs/libfmt:= media-libs/libsdl2[sound] flac? ( media-libs/flac:= ) fluidsynth? ( media-sound/fluidsynth:= ) libsamplerate? ( media-libs/libsamplerate ) modplug? ( media-libs/libmodplug ) mpg123? ( media-sound/mpg123 ) musepack? ( media-sound/musepack-tools ) openmpt? ( media-libs/libopenmpt ) opus? ( media-libs/opusfile ) sndfile? ( media-libs/libsndfile ) soxr? ( media-libs/soxr ) vorbis? ( media-libs/libvorbis ) wildmidi? ( media-sound/wildmidi ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b39dae8cebf643bb2e963dadc231b258 diff --git a/metadata/md5-cache/media-libs/shaderc-2022.3 b/metadata/md5-cache/media-libs/shaderc-2022.3 index 48fafc784452..32fb26826f35 100644 --- a/metadata/md5-cache/media-libs/shaderc-2022.3 +++ b/metadata/md5-cache/media-libs/shaderc-2022.3 @@ -12,5 +12,5 @@ RDEPEND=>=dev-util/glslang-1.3.231:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(- RESTRICT=test SLOT=0 SRC_URI=https://github.com/google/shaderc/archive/v2022.3.tar.gz -> shaderc-2022.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f02abd5f2eb224d285b4dcd84448a643 diff --git a/metadata/md5-cache/media-libs/shaderc-2023.2 b/metadata/md5-cache/media-libs/shaderc-2023.2 index 1973883bde0f..89b2ffeb2194 100644 --- a/metadata/md5-cache/media-libs/shaderc-2023.2 +++ b/metadata/md5-cache/media-libs/shaderc-2023.2 @@ -12,5 +12,5 @@ RDEPEND=>=dev-util/glslang-1.3.239:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(- RESTRICT=test SLOT=0 SRC_URI=https://github.com/google/shaderc/archive/v2023.2.tar.gz -> shaderc-2023.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a17c4664b35a2e61af22076f8216cefb diff --git a/metadata/md5-cache/media-libs/simage-1.8.1-r3 b/metadata/md5-cache/media-libs/simage-1.8.1-r3 index 05be507f263e..652640f32676 100644 --- a/metadata/md5-cache/media-libs/simage-1.8.1-r3 +++ b/metadata/md5-cache/media-libs/simage-1.8.1-r3 @@ -12,5 +12,5 @@ RDEPEND=gif? ( media-libs/giflib:= ) jpeg? ( media-libs/libjpeg-turbo:= ) png? ( RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/coin3d/simage/releases/download/v1.8.1/simage-1.8.1-src.tar.gz -> simage-1.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f115ca1e562854689ab47100ee48e9ed diff --git a/metadata/md5-cache/media-libs/simage-9999 b/metadata/md5-cache/media-libs/simage-9999 index 47a49e76acd0..2a6aab1dace2 100644 --- a/metadata/md5-cache/media-libs/simage-9999 +++ b/metadata/md5-cache/media-libs/simage-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=gif? ( media-libs/giflib:= ) jpeg? ( media-libs/libjpeg-turbo:= ) png? ( media-libs/libpng:= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 ) sndfile? ( media-libs/libsndfile media-libs/flac:= ) tiff? ( media-libs/tiff:=[lzma,zstd] app-arch/xz-utils app-arch/zstd:= ) vorbis? ( media-libs/libogg media-libs/libvorbis media-libs/opus ) zlib? ( sys-libs/zlib:= ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d840d60a76c767317a98216e88b06bcc diff --git a/metadata/md5-cache/media-libs/soxr-0.1.3-r1 b/metadata/md5-cache/media-libs/soxr-0.1.3-r1 index 5d9affce679e..bc7a29d8d6fd 100644 --- a/metadata/md5-cache/media-libs/soxr-0.1.3-r1 +++ b/metadata/md5-cache/media-libs/soxr-0.1.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=test? ( examples ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/soxr/soxr-0.1.3-Source.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d99cee17a30b566fece5f12d004d3f0b diff --git a/metadata/md5-cache/media-libs/svt-av1-1.1.0 b/metadata/md5-cache/media-libs/svt-av1-1.1.0 index 025a7bbd06e3..5ca810e233d0 100644 --- a/metadata/md5-cache/media-libs/svt-av1-1.1.0 +++ b/metadata/md5-cache/media-libs/svt-av1-1.1.0 @@ -9,5 +9,5 @@ KEYWORDS=amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 LICENSE=BSD-2 Apache-2.0 BSD ISC LGPL-2.1+ MIT SLOT=0 SRC_URI=https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v1.1.0/SVT-AV1-v1.1.0.tar.gz -> svt-av1-1.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=89c16e498c217710073be80d938b68d7 diff --git a/metadata/md5-cache/media-libs/svt-av1-9999 b/metadata/md5-cache/media-libs/svt-av1-9999 index 291f8573077f..da2a58db68d6 100644 --- a/metadata/md5-cache/media-libs/svt-av1-9999 +++ b/metadata/md5-cache/media-libs/svt-av1-9999 @@ -8,5 +8,5 @@ IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 ab LICENSE=BSD-2 Apache-2.0 BSD ISC LGPL-2.1+ MIT PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=832868bd89ffcaac39c1db2112f90274 diff --git a/metadata/md5-cache/media-libs/svt-hevc-1.5.1 b/metadata/md5-cache/media-libs/svt-hevc-1.5.1 index 74e3a4aa24ee..fae41368df23 100644 --- a/metadata/md5-cache/media-libs/svt-hevc-1.5.1 +++ b/metadata/md5-cache/media-libs/svt-hevc-1.5.1 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 LICENSE=AOM BSD-2 SLOT=0 SRC_URI=https://github.com/OpenVisualCloud/SVT-HEVC/archive/v1.5.1.tar.gz -> svt-hevc-1.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43605faca8ba234adc80f8ebd296fb0f diff --git a/metadata/md5-cache/media-libs/svt-hevc-9999 b/metadata/md5-cache/media-libs/svt-hevc-9999 index aae15406d621..bde10ab639db 100644 --- a/metadata/md5-cache/media-libs/svt-hevc-9999 +++ b/metadata/md5-cache/media-libs/svt-hevc-9999 @@ -7,5 +7,5 @@ INHERIT=flag-o-matic cmake git-r3 LICENSE=AOM BSD-2 PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43605faca8ba234adc80f8ebd296fb0f diff --git a/metadata/md5-cache/media-libs/taglib-1.13 b/metadata/md5-cache/media-libs/taglib-1.13 index 1a2357e301dd..6d8aee2ef6e5 100644 --- a/metadata/md5-cache/media-libs/taglib-1.13 +++ b/metadata/md5-cache/media-libs/taglib-1.13 @@ -12,5 +12,5 @@ RDEPEND=>=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,a RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/taglib/taglib/archive/v1.13.tar.gz -> taglib-1.13.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bb99483d21688ba6e3f1ae88f6816824 diff --git a/metadata/md5-cache/media-libs/taglib-extras-1.0.1-r1 b/metadata/md5-cache/media-libs/taglib-extras-1.0.1-r1 index 503f80ee1340..400cebe2745f 100644 --- a/metadata/md5-cache/media-libs/taglib-extras-1.0.1-r1 +++ b/metadata/md5-cache/media-libs/taglib-extras-1.0.1-r1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=media-libs/taglib SLOT=0 SRC_URI=mirror://kde/stable/taglib-extras/1.0.1/src/taglib-extras-1.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=39517cdbf1e689b12f35096eab7ab100 diff --git a/metadata/md5-cache/media-libs/tg_owt-0_pre20220507 b/metadata/md5-cache/media-libs/tg_owt-0_pre20220507 index 660ba8c61494..c4db15458b0c 100644 --- a/metadata/md5-cache/media-libs/tg_owt-0_pre20220507 +++ b/metadata/md5-cache/media-libs/tg_owt-0_pre20220507 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=>=dev-cpp/abseil-cpp-20211102.0:=[cxx17(+)] dev-libs/openssl:= dev-libs/protobuf:= media-libs/libjpeg-turbo:= >=media-libs/libvpx-1.10.0:= media-libs/openh264:= media-libs/opus media-video/ffmpeg:= dev-libs/crc32c screencast? ( dev-libs/glib:2 media-video/pipewire:= ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXrandr x11-libs/libXtst ) SLOT=0/20220507 SRC_URI=https://github.com/desktop-app/tg_owt/archive/10d5f4bf77333ef6b43516f90d2ce13273255f41.tar.gz -> tg_owt-0_pre20220507.tar.gz https://archive.org/download/libyuv-ad890067f661dc747a975bc55ba3767fe30d4452.tar/libyuv-ad890067f661dc747a975bc55ba3767fe30d4452.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=834077422fd34ec59669f205c01198ce diff --git a/metadata/md5-cache/media-libs/tg_owt-0_pre20230105 b/metadata/md5-cache/media-libs/tg_owt-0_pre20230105 index e26cb6a4025a..655f2cbfe1d4 100644 --- a/metadata/md5-cache/media-libs/tg_owt-0_pre20230105 +++ b/metadata/md5-cache/media-libs/tg_owt-0_pre20230105 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=>=dev-cpp/abseil-cpp-20220623.1:= dev-libs/openssl:= dev-libs/protobuf:= media-libs/libjpeg-turbo:= >=media-libs/libvpx-1.10.0:= media-libs/openh264:= media-libs/opus media-video/ffmpeg:= dev-libs/crc32c screencast? ( dev-libs/glib:2 media-video/pipewire:= ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXrandr x11-libs/libXtst ) SLOT=0/20230105 SRC_URI=https://github.com/desktop-app/tg_owt/archive/5098730b9eb6173f0b52068fe2555b7c1015123a.tar.gz -> tg_owt-0_pre20230105.tar.gz https://gitlab.com/chromiumsrc/libyuv/-/archive/00950840d1c9bcbb3eb6ebc5aac5793e71166c8b/libyuv-00950840d1c9bcbb3eb6ebc5aac5793e71166c8b.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2cdf6b23c5503b725965550ebe26c8de diff --git a/metadata/md5-cache/media-libs/vidstab-1.1.0-r2 b/metadata/md5-cache/media-libs/vidstab-1.1.0-r2 index c54ccf48fa50..441b0b350422 100644 --- a/metadata/md5-cache/media-libs/vidstab-1.1.0-r2 +++ b/metadata/md5-cache/media-libs/vidstab-1.1.0-r2 @@ -9,5 +9,5 @@ KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86 LICENSE=GPL-2+ SLOT=0 SRC_URI=https://github.com/georgmartius/vid.stab/archive/v1.1.0.tar.gz -> vidstab-1.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a99476266ff62166e5f8b380fb9168d1 diff --git a/metadata/md5-cache/media-libs/vidstab-1.1.1 b/metadata/md5-cache/media-libs/vidstab-1.1.1 index 3cf9c239cc43..2f8decba3fe1 100644 --- a/metadata/md5-cache/media-libs/vidstab-1.1.1 +++ b/metadata/md5-cache/media-libs/vidstab-1.1.1 @@ -9,5 +9,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc LICENSE=GPL-2+ SLOT=0 SRC_URI=https://github.com/georgmartius/vid.stab/archive/v1.1.1.tar.gz -> vidstab-1.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ffd4fd7d6dbbc5523a5f2ebbb1adc41 diff --git a/metadata/md5-cache/media-libs/vidstab-9999 b/metadata/md5-cache/media-libs/vidstab-9999 index b69d251be863..3ed8de3ac6d5 100644 --- a/metadata/md5-cache/media-libs/vidstab-9999 +++ b/metadata/md5-cache/media-libs/vidstab-9999 @@ -8,5 +8,5 @@ IUSE=openmp cpu_flags_x86_sse2 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 ab LICENSE=GPL-2+ PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8c5c23891b3d802d33f9e26fc4879918 diff --git a/metadata/md5-cache/media-libs/vigra-1.11.1-r8 b/metadata/md5-cache/media-libs/vigra-1.11.1-r8 index 90bed32f6ac3..0cbb2ac175de 100644 --- a/metadata/md5-cache/media-libs/vigra-1.11.1-r8 +++ b/metadata/md5-cache/media-libs/vigra-1.11.1-r8 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( hdf5 || ( python_targets_python3_9 python_targets_python3 RESTRICT=test SLOT=0 SRC_URI=https://github.com/ukoethe/vigra/releases/download/Version-1-11-1/vigra-1.11.1-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2c44cb69370770393d4a61e3aa6c7bf0 diff --git a/metadata/md5-cache/media-libs/vigra-9999 b/metadata/md5-cache/media-libs/vigra-9999 index b0fb3ebd21ef..63757231cb05 100644 --- a/metadata/md5-cache/media-libs/vigra-9999 +++ b/metadata/md5-cache/media-libs/vigra-9999 @@ -12,5 +12,5 @@ RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+),x REQUIRED_USE=python? ( hdf5 || ( python_targets_python3_9 python_targets_python3_10 ) ) test? ( hdf5 python fftw ) RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=39e98a03988a52cba7108d44506d1dfa diff --git a/metadata/md5-cache/media-libs/vulkan-layers-1.3.239 b/metadata/md5-cache/media-libs/vulkan-layers-1.3.239 index 22c56d1acb62..e315d176cb9b 100644 --- a/metadata/md5-cache/media-libs/vulkan-layers-1.3.239 +++ b/metadata/md5-cache/media-libs/vulkan-layers-1.3.239 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=~dev-util/spirv-tools-1.3.239:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/sdk-1.3.239.0.tar.gz -> vulkan-layers-1.3.239.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a221ca56bd546d3870ed8801a4ffd885 diff --git a/metadata/md5-cache/media-libs/vulkan-layers-1.3.239-r1 b/metadata/md5-cache/media-libs/vulkan-layers-1.3.239-r1 index a1a214acc0f1..857038989d82 100644 --- a/metadata/md5-cache/media-libs/vulkan-layers-1.3.239-r1 +++ b/metadata/md5-cache/media-libs/vulkan-layers-1.3.239-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=~dev-util/spirv-tools-1.3.239:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/sdk-1.3.239.0.tar.gz -> vulkan-layers-1.3.239.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ae5472d8abb89ea7cd970ece8be81392 diff --git a/metadata/md5-cache/media-libs/vulkan-layers-9999 b/metadata/md5-cache/media-libs/vulkan-layers-9999 index 067ae75c2485..e49ba3bc8149 100644 --- a/metadata/md5-cache/media-libs/vulkan-layers-9999 +++ b/metadata/md5-cache/media-libs/vulkan-layers-9999 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 PROPERTIES=live RDEPEND=~dev-util/spirv-tools-99999999:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bee71278f09c5048222efef7820456b2 diff --git a/metadata/md5-cache/media-libs/vulkan-loader-1.3.239 b/metadata/md5-cache/media-libs/vulkan-loader-1.3.239 index ef5a7435a235..10f0081fafc1 100644 --- a/metadata/md5-cache/media-libs/vulkan-loader-1.3.239 +++ b/metadata/md5-cache/media-libs/vulkan-loader-1.3.239 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 PDEPEND=layers? ( media-libs/vulkan-layers:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-Loader/archive/sdk-1.3.239.tar.gz -> vulkan-loader-1.3.239.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bc13dc024d4fece6b140f62af4f55a70 diff --git a/metadata/md5-cache/media-libs/vulkan-loader-9999 b/metadata/md5-cache/media-libs/vulkan-loader-9999 index 23139cff3a50..c030fbbb6bb8 100644 --- a/metadata/md5-cache/media-libs/vulkan-loader-9999 +++ b/metadata/md5-cache/media-libs/vulkan-loader-9999 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 PDEPEND=layers? ( media-libs/vulkan-layers:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef23c4fd849fccc1e4f654c3640c402d diff --git a/metadata/md5-cache/media-libs/woff2-1.0.2-r5 b/metadata/md5-cache/media-libs/woff2-1.0.2-r5 index 8ef889403285..438c4792bba8 100644 --- a/metadata/md5-cache/media-libs/woff2-1.0.2-r5 +++ b/metadata/md5-cache/media-libs/woff2-1.0.2-r5 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=app-arch/brotli:= SLOT=0 SRC_URI=https://github.com/google/woff2/archive/v1.0.2.tar.gz -> woff2-1.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a883d9acb43a82d5db3edf851a938686 diff --git a/metadata/md5-cache/media-libs/x265-3.5-r2 b/metadata/md5-cache/media-libs/x265-3.5-r2 index 8f7f9ccd30f7..a9921edda65e 100644 --- a/metadata/md5-cache/media-libs/x265-3.5-r2 +++ b/metadata/md5-cache/media-libs/x265-3.5-r2 @@ -12,5 +12,5 @@ RDEPEND=numa? ( >=sys-process/numactl-2.0.10-r1[abi_x86_32(-)?,abi_x86_64(-)?,ab RESTRICT=!test? ( test ) SLOT=0/199 SRC_URI=https://bitbucket.org/multicoreware/x265_git/downloads/x265_3.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fdd74575f7905e1998a0818e42967071 diff --git a/metadata/md5-cache/media-libs/x265-9999 b/metadata/md5-cache/media-libs/x265-9999 index c28a500052fe..25b2c8a1ddb1 100644 --- a/metadata/md5-cache/media-libs/x265-9999 +++ b/metadata/md5-cache/media-libs/x265-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=numa? ( >=sys-process/numactl-2.0.10-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) RESTRICT=!test? ( test ) SLOT=0/207 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=56088c225cc2faaf0bb02c82debc00f6 diff --git a/metadata/md5-cache/media-libs/zmusic-1.1.4 b/metadata/md5-cache/media-libs/zmusic-1.1.4 index 35001dc8cd41..59ef31e99ad9 100644 --- a/metadata/md5-cache/media-libs/zmusic-1.1.4 +++ b/metadata/md5-cache/media-libs/zmusic-1.1.4 @@ -11,5 +11,5 @@ LICENSE=BSD DUMB-0.9.3 GPL-3 LGPL-2.1+ LGPL-3 MIT RDEPEND=sys-libs/zlib alsa? ( media-libs/alsa-lib ) fluidsynth? ( media-sound/fluidsynth:= ) mpg123? ( media-sound/mpg123 ) sndfile? ( media-libs/libsndfile ) SLOT=0 SRC_URI=https://github.com/coelckers/ZMusic/archive/1.1.4.tar.gz -> zmusic-1.1.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a3feddacd87f979cfb2d34f96b03d536 diff --git a/metadata/md5-cache/media-libs/zxing-cpp-1.4.0 b/metadata/md5-cache/media-libs/zxing-cpp-1.4.0 index ef5e4c3b38c7..9762a32ab0ea 100644 --- a/metadata/md5-cache/media-libs/zxing-cpp-1.4.0 +++ b/metadata/md5-cache/media-libs/zxing-cpp-1.4.0 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86 LICENSE=Apache-2.0 SLOT=0/1.4 SRC_URI=https://github.com/nu-book/zxing-cpp/archive/v1.4.0.tar.gz -> zxing-cpp-1.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2ac41b1075cb0624e5c96b297b4790ab diff --git a/metadata/md5-cache/media-libs/zxing-cpp-2.0.0 b/metadata/md5-cache/media-libs/zxing-cpp-2.0.0 index 49592e463055..d21c2657e93b 100644 --- a/metadata/md5-cache/media-libs/zxing-cpp-2.0.0 +++ b/metadata/md5-cache/media-libs/zxing-cpp-2.0.0 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86 LICENSE=Apache-2.0 SLOT=0/3 SRC_URI=https://github.com/nu-book/zxing-cpp/archive/v2.0.0.tar.gz -> zxing-cpp-2.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=765da90f4dd94263eb9d73f603265b06 diff --git a/metadata/md5-cache/media-plugins/Manifest.gz b/metadata/md5-cache/media-plugins/Manifest.gz index c457b76eae66..032cc4889851 100644 Binary files a/metadata/md5-cache/media-plugins/Manifest.gz and b/metadata/md5-cache/media-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/media-plugins/frei0r-plugins-1.7.0-r2 b/metadata/md5-cache/media-plugins/frei0r-plugins-1.7.0-r2 index 215c1166757c..793c99201771 100644 --- a/metadata/md5-cache/media-plugins/frei0r-plugins-1.7.0-r2 +++ b/metadata/md5-cache/media-plugins/frei0r-plugins-1.7.0-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/cairo[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] facedetect? ( >=media-libs/opencv-2.3.0:=[contribdnn,features2d,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scale0tilt? ( >=media-libs/gavl-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(-)?] ) SLOT=0 SRC_URI=https://files.dyne.org/frei0r/releases/frei0r-plugins-1.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=27a36c800dc3f4df50f0f2d614213672 diff --git a/metadata/md5-cache/media-plugins/frei0r-plugins-1.8.0 b/metadata/md5-cache/media-plugins/frei0r-plugins-1.8.0 index eb73eeddb831..784d2ffce721 100644 --- a/metadata/md5-cache/media-plugins/frei0r-plugins-1.8.0 +++ b/metadata/md5-cache/media-plugins/frei0r-plugins-1.8.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/cairo[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] facedetect? ( >=media-libs/opencv-2.3.0:=[contribdnn,features2d,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) scale0tilt? ( >=media-libs/gavl-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(-)?] ) SLOT=0 SRC_URI=https://files.dyne.org/frei0r/releases/frei0r-plugins-1.8.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1657bf3b9c5142e2a53f1cb4cb17a344 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-modplug-3.0.0 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-modplug-3.0.0 index 3dc20d18a741..910d8f4d6f55 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-modplug-3.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-modplug-3.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-libs/libmodplug-0.8.9.0 SLOT=0 SRC_URI=https://github.com/xbmc/audiodecoder.modplug/archive/3.0.0-Matrix.tar.gz -> kodi-audiodecoder-modplug-3.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=217c055b74395997e56139df4e52d178 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-modplug-9999 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-modplug-9999 index 1a8ada46b223..ab48264c923f 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-modplug-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-modplug-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/libmodplug-0.8.9.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=217c055b74395997e56139df4e52d178 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-3.0.0 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-3.0.0 index 3ba2a29ab2a3..7521f8c147ec 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-3.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-3.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/xbmc/audiodecoder.nosefart/archive/3.0.0-Matrix.tar.gz -> kodi-audiodecoder-nosefart-3.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c34f88411da870c7d7c508252013cd0b diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-9999 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-9999 index 880da2eeb7c6..bb4bbb177315 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b1573b46fabab110d166d428240172ea diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sacd-0.1.1 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-sacd-0.1.1 index b814ba0ac45c..d8a1caad8294 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sacd-0.1.1 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-sacd-0.1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* media-sound/wavpack virtual/libiconv SLOT=0 SRC_URI=https://github.com/xbmc/audiodecoder.sacd/archive/0.1.1-Matrix.tar.gz -> kodi-audiodecoder-sacd-0.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=174a7c2fa4f0695dd12845f87fc608a3 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sacd-9999 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-sacd-9999 index 78d475f25247..be3a42785915 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sacd-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-sacd-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 media-sound/wavpack virtual/libiconv SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=174a7c2fa4f0695dd12845f87fc608a3 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-3.0.0 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-3.0.0 index b7a72fa6ccd9..7c06dbf00d98 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-3.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-3.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* media-libs/libsidplay:2 SLOT=0 SRC_URI=https://github.com/xbmc/audiodecoder.sidplay/archive/3.0.0-Matrix.tar.gz -> kodi-audiodecoder-sidplay-3.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f7620a2b76cf36e8245c127fe869aa7a diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-9999 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-9999 index cfc9acc9404a..ab75082ecd98 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 media-libs/libsidplay:2 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=26fbc6a442445c0be1956d5ce5d20005 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-3.0.0 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-3.0.0 index a28bca660e85..cc99aa604456 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-3.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-3.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/xbmc/audiodecoder.snesapu/archive/3.0.0-Matrix.tar.gz -> kodi-audiodecoder-snesapu-3.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9035dbbc65f5b78eece52352876a9448 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-9999 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-9999 index a92aad0737c7..1d4ce3a3ee95 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f541b876f25f2e08ca6be443d14dfca3 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-3.0.0 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-3.0.0 index 71639b754b11..79af1452d33e 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-3.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-3.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/xbmc/audiodecoder.stsound/archive/3.0.0-Matrix.tar.gz -> kodi-audiodecoder-stsound-3.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c8e476996b1ea9a66e79f924594884d3 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-9999 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-9999 index 7b8c6ee64800..c5332cf66e08 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=553b79585ba9f85b877804ce9b0fe346 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-3.0.0 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-3.0.0 index 875871ef474e..9e5ee0de5e08 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-3.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-3.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/xbmc/audiodecoder.timidity/archive/3.0.0-Matrix.tar.gz -> kodi-audiodecoder-timidity-3.0.0-Matrix.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=056f4cce952c3d1f97105a7577aa311a diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-9999 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-9999 index f1ef0f8d8576..5021c1eb5bb2 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a8fbbdb76e0fae835ad01f5adb956edc diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-3.0.0 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-3.0.0 index 795587ed4f0c..ed8cc5dfdd63 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-3.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-3.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/xbmc/audiodecoder.vgmstream/archive/3.0.0-Matrix.tar.gz -> kodi-audiodecoder-vgmstream-3.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cd822441b63c906c11d821c6b3b29916 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-9999 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-9999 index e13e437cb2c0..9a0934a55888 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=07e556d5cab6f8f4e98a774bc96b1e12 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-19.0.0-r1 b/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-19.0.0-r1 index 1b97c7ffda6c..d3db266dfeeb 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-19.0.0-r1 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-19.0.0-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-libs/libogg-1.3.5 media-libs/flac:= SLOT=0 SRC_URI=https://github.com/xbmc/audioencoder.flac/archive/19.0.0-Matrix.tar.gz -> kodi-audioencoder-flac-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9d4c59f9b4602a8063a8f8972edf95c1 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-3.0.0-r1 b/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-3.0.0-r1 index 30933f35d0c7..5f221a83cfc0 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-3.0.0-r1 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-3.0.0-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-libs/libogg-1.3.4 media-libs/flac:= SLOT=0 SRC_URI=https://github.com/xbmc/audioencoder.flac/archive/3.0.0-Matrix.tar.gz -> kodi-audioencoder-flac-3.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c9269b05d8505b01eefd6a6fd9b1a4bc diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-9999 b/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-9999 index 976c84824350..74aed4c28f1a 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/libogg-1.3.5 media-libs/flac:= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9d4c59f9b4602a8063a8f8972edf95c1 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-19.0.0 b/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-19.0.0 index 90b2a5b09e73..130dae69f14c 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-sound/lame-3.100 SLOT=0 SRC_URI=https://github.com/xbmc/audioencoder.lame/archive/19.0.0-Matrix.tar.gz -> kodi-audioencoder-lame-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=25eba38c709604c823e45235fac6710c diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-3.0.2 b/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-3.0.2 index 004a036d4d49..8c2a7d3d3e97 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-3.0.2 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-3.0.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-sound/lame-3.100 SLOT=0 SRC_URI=https://github.com/xbmc/audioencoder.lame/archive/3.0.2-Matrix.tar.gz -> kodi-audioencoder-lame-3.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=25eba38c709604c823e45235fac6710c diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-9999 b/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-9999 index cf7b31dad011..050d29af59da 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-sound/lame-3.100 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=396941fb6bfd38f0135c8d6699257107 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-19.0.0 b/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-19.0.0 index 54557c70a08f..ed1afbd2f489 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-libs/libogg-1.3.5 >=media-libs/libvorbis-1.3.6 SLOT=0 SRC_URI=https://github.com/xbmc/audioencoder.vorbis/archive/19.0.0-Matrix.tar.gz -> kodi-audioencoder-vorbis-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a34455158b0802a1fb66fc33598158e8 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-3.0.1 b/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-3.0.1 index 16cf3f6ed691..b746fde77484 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-3.0.1 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-3.0.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-libs/libogg-1.3.4 >=media-libs/libvorbis-1.3.6 SLOT=0 SRC_URI=https://github.com/xbmc/audioencoder.vorbis/archive/3.0.1-Matrix.tar.gz -> kodi-audioencoder-vorbis-3.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=49d921238bae7eee1b0711a4132007d0 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-9999 b/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-9999 index ec625d817f6f..dabda91b41ed 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/libogg-1.3.5 >=media-libs/libvorbis-1.3.6 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a34455158b0802a1fb66fc33598158e8 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-19.0.0 b/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-19.0.0 index 6f55991fb7ac..884916830571 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/xbmc/audioencoder.wav/archive/19.0.0-Matrix.tar.gz -> kodi-audioencoder-wav-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0fb2c511b3c6e1bf19c4fc20f6419ac7 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-3.0.0 b/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-3.0.0 index a63fb27ff198..c99183bb0238 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-3.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-3.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/xbmc/audioencoder.wav/archive/3.0.0-Matrix.tar.gz -> kodi-audioencoder-wav-3.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ae135ec47c89c09900fb17fcf3a935d diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-9999 b/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-9999 index 136625f432eb..0bd0fa8b033d 100644 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-9999 +++ b/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f68412babd0b4401950279d88bab254e diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-19.0.0 b/metadata/md5-cache/media-plugins/kodi-game-libretro-19.0.0 index 2ca4e8885aa2..8f007e8f22d4 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/kodi-game/game.libretro/archive/19.0.0-Matrix.tar.gz -> kodi-game-libretro-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e1c96805943f2eb0fa8fb7bdfb49f17 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-2.2.0 b/metadata/md5-cache/media-plugins/kodi-game-libretro-2.2.0 index 5dde22322f9c..74d1b8662de9 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-2.2.0 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-2.2.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/kodi-game/game.libretro/archive/2.2.0-Matrix.tar.gz -> kodi-game-libretro-2.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=12078c24f0e0791b35bcc8ef557aa05b diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-9999 b/metadata/md5-cache/media-plugins/kodi-game-libretro-9999 index e126bbe41908..78920bec0910 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-9999 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ebe35956bfc45a3ef368ba718004eb9f diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.8 b/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.8 index c0ac1638455e..d93139b30904 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.8 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.8 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-19* games-emulation/libretro-bnes SLOT=0 SRC_URI=https://github.com/kodi-game/game.libretro.bnes/archive/0.83.0.8-Matrix.tar.gz -> kodi-game-libretro-bnes-0.83.0.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=183d227e31bbd4035621db12b2975929 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-9999 b/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-9999 index a0429678edd7..cd7789c8e52f 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-9999 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=media-plugins/kodi-game-libretro ~media-tv/kodi-9999 games-emulation/libretro-bnes SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=183d227e31bbd4035621db12b2975929 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.9 b/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.9 index 62eafc2ebd90..0303f02d23ba 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.9 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.9 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-19* games-emulation/libretro-dosbox SLOT=0 SRC_URI=https://github.com/kodi-game/game.libretro.dosbox/archive/0.74.0.9-Matrix.tar.gz -> kodi-game-libretro-dosbox-0.74.0.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fe3ae42420c385b42ed9879b7bc6b7fa diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-9999 b/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-9999 index aed574b1be44..877da154ed74 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-9999 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=media-plugins/kodi-game-libretro ~media-tv/kodi-9999 games-emulation/libretro-dosbox SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=622ae2eb306e3b319c73a4246669fda2 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-1.51.0.16 b/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-1.51.0.16 index ea8c84dd8c22..ff24440fd114 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-1.51.0.16 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-1.51.0.16 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-19* games-emulation/libretro-nestopia SLOT=0 SRC_URI=https://github.com/kodi-game/game.libretro.nestopia/archive/1.51.0.16-Matrix.tar.gz -> kodi-game-libretro-nestopia-1.51.0.16.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a74d1174748878f24cc8778097254db diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-9999 b/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-9999 index 00b4df7a6cda..1791058a8343 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-9999 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=media-plugins/kodi-game-libretro ~media-tv/kodi-9999 games-emulation/libretro-nestopia SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a74d1174748878f24cc8778097254db diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.20 b/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.20 index b290c7b89ff4..c84d337f5e87 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.20 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.20 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-19* games-emulation/libretro-snes9x SLOT=0 SRC_URI=https://github.com/kodi-game/game.libretro.snes9x/archive/1.60.0.20-Matrix.tar.gz -> kodi-game-libretro-snes9x-1.60.0.20.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=95f0178e252f2bfcd77dcc6d6d897823 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-9999 b/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-9999 index 27e3e55f9378..ae1584fd9525 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-9999 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=media-plugins/kodi-game-libretro ~media-tv/kodi-9999 games-emulation/libretro-snes9x SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=95f0178e252f2bfcd77dcc6d6d897823 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-twentyfortyeight-1.0.0.118 b/metadata/md5-cache/media-plugins/kodi-game-libretro-twentyfortyeight-1.0.0.118 index b58a289a5452..188db2079426 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-twentyfortyeight-1.0.0.118 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-twentyfortyeight-1.0.0.118 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-19* games-emulation/libretro-twentyfortyeight SLOT=0 SRC_URI=https://github.com/kodi-game/game.libretro.2048/archive/1.0.0.118-Matrix.tar.gz -> kodi-game-libretro-twentyfortyeight-1.0.0.118.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e5dc9ab1e5ae4b501a1d72fd686c2d8b diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-twentyfortyeight-9999 b/metadata/md5-cache/media-plugins/kodi-game-libretro-twentyfortyeight-9999 index 98f93f3196b9..3076ca8b1ee3 100644 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-twentyfortyeight-9999 +++ b/metadata/md5-cache/media-plugins/kodi-game-libretro-twentyfortyeight-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=media-plugins/kodi-game-libretro ~media-tv/kodi-9999 games-emulation/libretro-twentyfortyeight SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=04f9ade6d1e9c2af766fd356a856855f diff --git a/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-1.3.0 b/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-1.3.0 index 8d7885493b6e..eb69daf0ed94 100644 --- a/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-1.3.0 +++ b/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-1.3.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-libs/libde265-1.0.5 >=media-libs/libheif-1.6.2 SLOT=0 SRC_URI=https://github.com/xbmc/imagedecoder.heif/archive/1.3.0-Matrix.tar.gz -> kodi-imagedecoder-heif-1.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=49e1ad9883808d8e8544c910cae78a1d diff --git a/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-1.4.0 b/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-1.4.0 index 128c966500b3..ff11c170e8f0 100644 --- a/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-1.4.0 +++ b/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-1.4.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-libs/libde265-1.0.8 >=media-libs/libheif-1.6.2 SLOT=0 SRC_URI=https://github.com/xbmc/imagedecoder.heif/archive/1.4.0-Matrix.tar.gz -> kodi-imagedecoder-heif-1.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0bd5fd15327394a53d5f464e2a221326 diff --git a/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-19.0.0 b/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-19.0.0 index 153623d89c91..7c51c4c79b8e 100644 --- a/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-libs/libde265-1.0.8 >=media-libs/libheif-1.12.0 SLOT=0 SRC_URI=https://github.com/xbmc/imagedecoder.heif/archive/19.0.0-Matrix.tar.gz -> kodi-imagedecoder-heif-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=557ca67d7749114bd6fec352af6daa25 diff --git a/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-9999 b/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-9999 index 38fc93befbea..22ff011c41af 100644 --- a/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-9999 +++ b/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND==media-tv/kodi-9999* >=media-libs/libde265-1.0.8 >=media-libs/libheif-1.6.2 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0bd5fd15327394a53d5f464e2a221326 diff --git a/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-19.0.0 b/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-19.0.0 index 32c31a05cdd8..e2bb288e2ac2 100644 --- a/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-libs/libjpeg-turbo-2.1.1 >=media-libs/libraw-0.20.2[jpeg,lcms] >=media-libs/lcms-2.12 SLOT=0 SRC_URI=https://github.com/xbmc/imagedecoder.raw/archive/19.0.0-Matrix.tar.gz -> kodi-imagedecoder-raw-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=979681db7b27a1d3ecd5dddc91240cd3 diff --git a/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-3.0.1 b/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-3.0.1 index 84010bdf933d..00da1921e745 100644 --- a/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-3.0.1 +++ b/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-3.0.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* >=media-libs/libraw-0.19.5[jpeg,lcms] >=media-libs/lcms-2.9 SLOT=0 SRC_URI=https://github.com/xbmc/imagedecoder.raw/archive/3.0.1-Matrix.tar.gz -> kodi-imagedecoder-raw-3.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=064c37ae7c4b8fc3b8845b34cafda8ba diff --git a/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-9999 b/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-9999 index 53b99e17037a..7f29bacc14d8 100644 --- a/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-9999 +++ b/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/libjpeg-turbo-2.1.1 >=media-libs/libraw-0.20.2[jpeg,lcms] >=media-libs/lcms-2.12 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=979681db7b27a1d3ecd5dddc91240cd3 diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-19.0.0 b/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-19.0.0 index c64dbf6c2600..91d39366afb2 100644 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-19.0.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/expat =media-tv/kodi-19* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/peak3d/inputstream.adaptive/archive/19.0.0-Matrix.tar.gz -> kodi-inputstream-adaptive-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=82bb3fa48c656cba4d23f725cf0e0f09 diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-9999 b/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-9999 index e93a8928404f..a4f8029e6f00 100644 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-9999 +++ b/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/expat =media-tv/kodi-19* RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=82bb3fa48c656cba4d23f725cf0e0f09 diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-ffmpegdirect-19.0.0 b/metadata/md5-cache/media-plugins/kodi-inputstream-ffmpegdirect-19.0.0 index 26ddcc43497d..98d9f560c9bd 100644 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-ffmpegdirect-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-inputstream-ffmpegdirect-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=media-video/ffmpeg[encode,libxml2,zlib] virtual/libiconv app-arch/bzip2 =media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/xbmc/inputstream.ffmpegdirect/archive/19.0.0-Matrix.tar.gz -> kodi-inputstream-ffmpegdirect-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bf65a151be4dae0ffa39770724c6601a diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-ffmpegdirect-9999 b/metadata/md5-cache/media-plugins/kodi-inputstream-ffmpegdirect-9999 index 6d9b38d85aba..aa4d3f7b0de6 100644 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-ffmpegdirect-9999 +++ b/metadata/md5-cache/media-plugins/kodi-inputstream-ffmpegdirect-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=media-video/ffmpeg[encode,libxml2,zlib] virtual/libiconv app-arch/bzip2 =media-tv/kodi-19* SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea929365174840d95df724a875230488 diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-19.0.0 b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-19.0.0 index cc2e4dad01d3..f1eabe38fe65 100644 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= media-video/rtmpdump[ssl] SLOT=0 SRC_URI=https://github.com/xbmc/inputstream.rtmp/archive/19.0.0-Matrix.tar.gz -> kodi-inputstream-rtmp-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=804b475e5a6f7b44d7b6f58fca78a5ed diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.1.1-r1 b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.1.1-r1 index fd5b61217c6b..26130fad2edd 100644 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.1.1-r1 +++ b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.1.1-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= media-video/rtmpdump[ssl] SLOT=0 SRC_URI=https://github.com/xbmc/inputstream.rtmp/archive/3.1.1-Matrix.tar.gz -> kodi-inputstream-rtmp-3.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=51aa8e0d6e6ce35ea74895abb738758c diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.3.0 b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.3.0 index 73b2e6d5eb20..afeea0b02ef9 100644 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.3.0 +++ b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.3.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= media-video/rtmpdump[ssl] SLOT=0 SRC_URI=https://github.com/xbmc/inputstream.rtmp/archive/3.3.0-Matrix.tar.gz -> kodi-inputstream-rtmp-3.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=51aa8e0d6e6ce35ea74895abb738758c diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.4.0 b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.4.0 index c5b113630ec4..ea44482d6949 100644 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.4.0 +++ b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-3.4.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= media-video/rtmpdump[ssl] SLOT=0 SRC_URI=https://github.com/xbmc/inputstream.rtmp/archive/3.4.0-Matrix.tar.gz -> kodi-inputstream-rtmp-3.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=51aa8e0d6e6ce35ea74895abb738758c diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-9999 b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-9999 index cb2b79c5bcaa..846ca0d26c12 100644 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-9999 +++ b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 media-video/rtmpdump[ssl] SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=51aa8e0d6e6ce35ea74895abb738758c diff --git a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.7.2 b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.7.2 index 6dc2705d71a5..e28008e97c30 100644 --- a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.7.2 +++ b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.7.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/libpcre dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/xbmc/peripheral.joystick/archive/1.7.2-Matrix.tar.gz -> kodi-peripheral-joystick-1.7.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd45399c680119538f4f5f7a37b713e2 diff --git a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-19.0.0 b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-19.0.0 index 01f9c3691aa5..53cd822d0281 100644 --- a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/libpcre dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/xbmc/peripheral.joystick/archive/19.0.0-Matrix.tar.gz -> kodi-peripheral-joystick-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd45399c680119538f4f5f7a37b713e2 diff --git a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-9999 b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-9999 index 002eedb589de..6fe949ef774d 100644 --- a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-9999 +++ b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/libpcre dev-libs/tinyxml SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c178a6bd6db9bccc9e7dc733c3d12401 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-6.0.1 b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-6.0.1 index b77972b08706..94b36ee29325 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-6.0.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-6.0.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.argustv/archive/6.0.1-Matrix.tar.gz -> kodi-pvr-argustv-6.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f26c506c599eb92a6556e98c93155378 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-6.0.2 b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-6.0.2 index d6b9b03bf2cb..db3a71b1165e 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-6.0.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-6.0.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.argustv/archive/6.0.2-Matrix.tar.gz -> kodi-pvr-argustv-6.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b1db694c1500dc9e59bbc7c46991f170 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.0.0 index 5f9ae957ade4..0168d6d8f77c 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.argustv/archive/7.0.0-Matrix.tar.gz -> kodi-pvr-argustv-7.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b1db694c1500dc9e59bbc7c46991f170 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.1.1 b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.1.1 index 7860dca1e33a..2c6441a7e35d 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.1.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.argustv/archive/7.1.1-Matrix.tar.gz -> kodi-pvr-argustv-7.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7fa9b9e33616a2eae5c74104806777b1 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.1.2 b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.1.2 index 879df14b5066..bf72f33ad163 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.1.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-7.1.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.argustv/archive/7.1.2-Matrix.tar.gz -> kodi-pvr-argustv-7.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7fa9b9e33616a2eae5c74104806777b1 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-9999 index 656c3cd65f54..3a8e7b1974e2 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/jsoncpp SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=364f2693a9a4c1dfa6b091b60fe288ec diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-demo-7.1.3 b/metadata/md5-cache/media-plugins/kodi-pvr-demo-7.1.3 index 7d43f521ffe3..b8be822d793a 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-demo-7.1.3 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-demo-7.1.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.demo/archive/7.1.3-Matrix.tar.gz -> kodi-pvr-demo-7.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ade8c58ea09056b637c7f963f6d6f9f9 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-demo-7.1.4 b/metadata/md5-cache/media-plugins/kodi-pvr-demo-7.1.4 index 0cb7010d08f3..56b4040b7823 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-demo-7.1.4 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-demo-7.1.4 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.demo/archive/7.1.4-Matrix.tar.gz -> kodi-pvr-demo-7.1.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ade8c58ea09056b637c7f963f6d6f9f9 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-demo-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-demo-9999 index ee41804784da..93b73ab646e2 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-demo-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-demo-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/tinyxml SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=89159a91b8e077e83496d71b692ae9db diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-8.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-8.0.0 index 77d4c16a2963..fb3059ac3192 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-8.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-8.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.dvblink/archive/8.0.0-Matrix.tar.gz -> kodi-pvr-dvblink-8.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=13543830c91c73f559baac3d4ca04038 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.0.0 index ebc42e232818..eaf697f8bcc1 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.dvblink/archive/9.0.0-Matrix.tar.gz -> kodi-pvr-dvblink-9.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=13543830c91c73f559baac3d4ca04038 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.0.1 b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.0.1 index eacc7c2bf8a9..563152f45747 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.0.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.0.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.dvblink/archive/9.0.1-Matrix.tar.gz -> kodi-pvr-dvblink-9.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=317139f0439721b2334645993751bfd0 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.1.2 b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.1.2 index 1ca02dd95259..76f14022a16d 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.1.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9.1.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.dvblink/archive/9.1.2-Matrix.tar.gz -> kodi-pvr-dvblink-9.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=301d66a05d088298c61616ceb30e06cd diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9999 index c1c0bf34e70e..7cd71824303b 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/tinyxml2 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=75c8c917acc5b30460cf06536066fe60 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-6.0.6 b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-6.0.6 index dd2a1ace9e24..5a2cd4e4a23e 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-6.0.6 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-6.0.6 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.dvbviewer/archive/6.0.6-Matrix.tar.gz -> kodi-pvr-dvbviewer-6.0.6-Matrix.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d056bb44c05330ffe4a0387fda8750d5 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-6.0.7 b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-6.0.7 index bf64e9cb1c28..e3ab94e9e370 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-6.0.7 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-6.0.7 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.dvbviewer/archive/6.0.7-Matrix.tar.gz -> kodi-pvr-dvbviewer-6.0.7-Matrix.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ce3626215ce0e9d496f3de3f64aff22 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.0.0 index a965cbeda7b6..427cf84809cf 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.dvbviewer/archive/7.0.0-Matrix.tar.gz -> kodi-pvr-dvbviewer-7.0.0-Matrix.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ce3626215ce0e9d496f3de3f64aff22 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.1.0 b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.1.0 index 63faf4784327..0f1e9c583839 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.1.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.1.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.dvbviewer/archive/7.1.0-Matrix.tar.gz -> kodi-pvr-dvbviewer-7.1.0-Matrix.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ce3626215ce0e9d496f3de3f64aff22 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.1 b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.1 index 5e8e02d10b8e..b14d50053440 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.dvbviewer/archive/7.3.1-Matrix.tar.gz -> kodi-pvr-dvbviewer-7.3.1-Matrix.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b58362aff7ed1977336ae4e5797d5cf diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.2 b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.2 index ad86de897f4a..dbe862e87eb9 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.dvbviewer/archive/7.3.2-Matrix.tar.gz -> kodi-pvr-dvbviewer-7.3.2-Matrix.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b58362aff7ed1977336ae4e5797d5cf diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.3 b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.3 index 42897406d8cf..a326c4ad212a 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.3 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-7.3.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.dvbviewer/archive/7.3.3-Matrix.tar.gz -> kodi-pvr-dvbviewer-7.3.3-Matrix.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b58362aff7ed1977336ae4e5797d5cf diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-9999 index ddf743723f80..fcb0b0b31f9a 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/tinyxml SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0d402bfe1408350a07bda74cc5b08694 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-5.1.0 b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-5.1.0 index b4829b6119bb..38e0b7b802c8 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-5.1.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-5.1.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.filmon/archive/5.1.0-Matrix.tar.gz -> kodi-pvr-filmon-5.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a5ab0d56942da68f9688a8948e96db8b diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.0.0 index 64f2b86164f2..1048d9093806 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.filmon/archive/6.0.0-Matrix.tar.gz -> kodi-pvr-filmon-6.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a5ab0d56942da68f9688a8948e96db8b diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.1.1 b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.1.1 index d378130d6772..49fc7e84874d 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.1.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.filmon/archive/6.1.1-Matrix.tar.gz -> kodi-pvr-filmon-6.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=431ff8674f3d1d36a464011034d02c13 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.1.2 b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.1.2 index 0fc72d51e47e..901c70a5b763 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.1.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-6.1.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.filmon/archive/6.1.2-Matrix.tar.gz -> kodi-pvr-filmon-6.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=431ff8674f3d1d36a464011034d02c13 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-9999 index 79125a6e40bb..d7c799bbe205 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/jsoncpp SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3087614c5a1464d00a07a54e4f83ea22 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.0 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.0 index 8fa950663279..ea6cd24f9dc2 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/8.3.0-Matrix.tar.gz -> kodi-pvr-hts-8.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0274b4aa1c101f5bdf26f9c0adc9830c diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.1 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.1 index b14bdc229e87..a28aa8b44050 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/8.3.1-Matrix.tar.gz -> kodi-pvr-hts-8.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0274b4aa1c101f5bdf26f9c0adc9830c diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.2 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.2 index 9fc4e413a307..5b972245952b 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/8.3.2-Matrix.tar.gz -> kodi-pvr-hts-8.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0274b4aa1c101f5bdf26f9c0adc9830c diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.3 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.3 index 7dca75c6fe60..5fbc108601ba 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.3 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/8.3.3-Matrix.tar.gz -> kodi-pvr-hts-8.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0274b4aa1c101f5bdf26f9c0adc9830c diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.4 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.4 index 3f368ce3043c..c12b1345ee58 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.4 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.4 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/8.3.4-Matrix.tar.gz -> kodi-pvr-hts-8.3.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0274b4aa1c101f5bdf26f9c0adc9830c diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.4.0 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.4.0 index 799c1a431a4c..3902f7f74f7e 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.4.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.4.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/8.4.0-Matrix.tar.gz -> kodi-pvr-hts-8.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0274b4aa1c101f5bdf26f9c0adc9830c diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-9999 index 88f478328dc2..789a5dfbc9d6 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-hts-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aad8a75ce079c7f3fba663537f736414 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.5 b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.5 index aae60b42c96c..197d964a74f6 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.5 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.5 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/pugixml =media-tv/kodi-19* sys-libs/zlib SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.iptvsimple/archive/7.6.5-Matrix.tar.gz -> kodi-pvr-iptvsimple-7.6.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=83333caae1b7f093080ef3a8cd465654 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.6 b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.6 index b6d6fdd0a84b..9f4eaa8b62cf 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.6 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.6 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/pugixml =media-tv/kodi-19* sys-libs/zlib SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.iptvsimple/archive/7.6.6-Matrix.tar.gz -> kodi-pvr-iptvsimple-7.6.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=83333caae1b7f093080ef3a8cd465654 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.7 b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.7 index b4dff9b072ca..90fc09c4e95e 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.7 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.7 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/pugixml =media-tv/kodi-19* sys-libs/zlib SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.iptvsimple/archive/7.6.7-Matrix.tar.gz -> kodi-pvr-iptvsimple-7.6.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=83333caae1b7f093080ef3a8cd465654 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.8 b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.8 index da798b47a6d3..43baadaaa796 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.8 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.8 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/pugixml =media-tv/kodi-19* sys-libs/zlib SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.iptvsimple/archive/7.6.8-Matrix.tar.gz -> kodi-pvr-iptvsimple-7.6.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=83333caae1b7f093080ef3a8cd465654 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.9 b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.9 index f4931714ba79..63c0c8beaaab 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.9 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-7.6.9 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/pugixml =media-tv/kodi-19* sys-libs/zlib SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.iptvsimple/archive/7.6.9-Matrix.tar.gz -> kodi-pvr-iptvsimple-7.6.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=83333caae1b7f093080ef3a8cd465654 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-9999 index 3bfcdf4bc9aa..b6033c2ccd58 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=dev-libs/pugixml ~media-tv/kodi-9999 sys-libs/zlib SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=caffacd697b40d33e596197e8e82b565 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-8.2.0 b/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-8.2.0 index 040f68b5f310..633b4b59fda3 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-8.2.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-8.2.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/8.2.0-Matrix.tar.gz -> kodi-pvr-mediaportal-tvserver-8.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd8fcc7662099393dcc030866f97a248 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-8.2.1 b/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-8.2.1 index 84d9a2c5e524..dd082a811e26 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-8.2.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-8.2.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/8.2.1-Matrix.tar.gz -> kodi-pvr-mediaportal-tvserver-8.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd8fcc7662099393dcc030866f97a248 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-9999 index 000f653b92b2..ec605e16aaeb 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/tinyxml SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd8fcc7662099393dcc030866f97a248 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-7.3.1 b/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-7.3.1 index 8bf0aced7402..3d274e8d022d 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-7.3.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-7.3.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=sys-libs/zlib =media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/janbar/pvr.mythtv/archive/7.3.1-Matrix.tar.gz -> kodi-pvr-mythtv-7.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=61f0c467cad40d9a09eb8dbfddb3780c diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-9999 index 0506dc1d0f76..37a8e810d4cf 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=sys-libs/zlib ~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0294532edebfcf0e5e6465e2c601cc54 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.3 b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.3 index 1e501f9346f2..f09526eb9ea0 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.3 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.nextpvr/archive/8.2.3-Matrix.tar.gz -> kodi-pvr-nextpvr-8.2.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca4c53900186dc3ef139139d913d7f48 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.4 b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.4 index 301059caafb1..dcfddc745257 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.4 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.4 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.nextpvr/archive/8.2.4-Matrix.tar.gz -> kodi-pvr-nextpvr-8.2.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca4c53900186dc3ef139139d913d7f48 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.5 b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.5 index bf982b73efca..61367dfa7afe 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.5 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.5 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.nextpvr/archive/8.2.5-Matrix.tar.gz -> kodi-pvr-nextpvr-8.2.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca4c53900186dc3ef139139d913d7f48 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.6 b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.6 index bbe336bb0a9a..d2134f271774 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.6 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.2.6 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.nextpvr/archive/8.2.6-Matrix.tar.gz -> kodi-pvr-nextpvr-8.2.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca4c53900186dc3ef139139d913d7f48 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-9999 index c1ea2c580681..5904d5153197 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/tinyxml2 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8a963b63ead519e6cee1c8b44cf2afd9 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-njoy-6.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-njoy-6.0.0 index 3558756811a5..7004ff1b02e0 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-njoy-6.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-njoy-6.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.njoy/archive/6.0.0-Matrix.tar.gz -> kodi-pvr-njoy-6.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9a15f8e055149f9dd79d39c2461fd20b diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-njoy-7.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-njoy-7.0.0 index 9825823f9409..684f32e43415 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-njoy-7.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-njoy-7.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.njoy/archive/7.0.0-Matrix.tar.gz -> kodi-pvr-njoy-7.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9a15f8e055149f9dd79d39c2461fd20b diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-njoy-7.1.1 b/metadata/md5-cache/media-plugins/kodi-pvr-njoy-7.1.1 index 6cb4616410b3..3ddb9dae45a1 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-njoy-7.1.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-njoy-7.1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.njoy/archive/7.1.1-Matrix.tar.gz -> kodi-pvr-njoy-7.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2d6182f884ad4c2d44614379ff5bcc97 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-njoy-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-njoy-9999 index 68e9ce4f3b5e..72fa2ad13f96 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-njoy-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-njoy-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/tinyxml SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ab5e04331fee9e6a4f13c53f6354999 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-5.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-pctv-5.0.0 index 3192883d5e44..3f3e020f089c 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-5.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-pctv-5.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.pctv/archive/5.0.0-Matrix.tar.gz -> kodi-pvr-pctv-5.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b40cb56ee49aad293d1dd5662c585897 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-6.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-pctv-6.0.0 index 8e83283f48a2..9db76da4d613 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-6.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-pctv-6.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.pctv/archive/6.0.0-Matrix.tar.gz -> kodi-pvr-pctv-6.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b40cb56ee49aad293d1dd5662c585897 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-6.1.1 b/metadata/md5-cache/media-plugins/kodi-pvr-pctv-6.1.1 index 1b52ed0bbe53..8e7e6eb2945f 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-6.1.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-pctv-6.1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.pctv/archive/6.1.1-Matrix.tar.gz -> kodi-pvr-pctv-6.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=68ab846f80772a64e43594d050ffb65e diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-pctv-9999 index 0db9caa9f511..9b300a444d5d 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-pctv-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/jsoncpp SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dc7d16e070e36df168e9a21f653cc9db diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.0 index 7f67e54bbc23..b5eeadbdcdee 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp dev-libs/tinyxml =dev-libs/libplatform-2* SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.stalker/archive/6.0.0-Matrix.tar.gz -> kodi-pvr-stalker-6.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=11fd1952b8bfecfb6df8c36c53f2606f diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.1 b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.1 index 95c115d2c185..791bd6dd7a3b 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.stalker/archive/6.0.1-Matrix.tar.gz -> kodi-pvr-stalker-6.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a35e639fdba029ce4751fca42bead41 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.2 b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.2 index 49fa0ffcd5e0..a1196d75dfe2 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-6.0.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.stalker/archive/6.0.2-Matrix.tar.gz -> kodi-pvr-stalker-6.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a35e639fdba029ce4751fca42bead41 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-7.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-7.0.0 index d8cfd812792d..a6a025622060 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-7.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-7.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.stalker/archive/7.0.0-Matrix.tar.gz -> kodi-pvr-stalker-7.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a35e639fdba029ce4751fca42bead41 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-7.1.1 b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-7.1.1 index c8bf859784a9..98ba6b653525 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-7.1.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-7.1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/jsoncpp dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.stalker/archive/7.1.1-Matrix.tar.gz -> kodi-pvr-stalker-7.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=12c096ae873717f179782ffe61d59b82 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-9999 index 2b9b0f640d4a..9ea2940e1dde 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/jsoncpp dev-libs/tinyxml SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=248dbf0bec6d2127ba5db89ae84b4339 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.0 index 355f3e1fb65a..6bfadb3a8188 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 =dev-libs/libplatform-2* SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/7.0.0-Matrix.tar.gz -> kodi-pvr-vbox-7.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=99faadace00664867833ff3030aa59c1 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.1 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.1 index 4577f9544a81..dcee8dc2ab89 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/7.0.1-Matrix.tar.gz -> kodi-pvr-vbox-7.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4c74970ca991f9e2dc8b99472e8f22aa diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.2 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.2 index 4a54204ae5c0..b3e8bc4aba9e 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/7.0.2-Matrix.tar.gz -> kodi-pvr-vbox-7.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4c74970ca991f9e2dc8b99472e8f22aa diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.3 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.3 index eb50b70e0333..ccddf7a02f54 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.3 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-7.0.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/7.0.3-Matrix.tar.gz -> kodi-pvr-vbox-7.0.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4c74970ca991f9e2dc8b99472e8f22aa diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.0.0 index 0eb1b26f2907..b5379897fa82 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/8.0.0-Matrix.tar.gz -> kodi-pvr-vbox-8.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4c74970ca991f9e2dc8b99472e8f22aa diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.1.1 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.1.1 index c1dec4483f7b..250a3430eba4 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.1.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/8.1.1-Matrix.tar.gz -> kodi-pvr-vbox-8.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0596d478586d35c389fe983899e5270a diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.1.2 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.1.2 index 523db09138c8..72944d7f7645 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.1.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-8.1.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/8.1.2-Matrix.tar.gz -> kodi-pvr-vbox-8.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0596d478586d35c389fe983899e5270a diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-9999 index 342abdad6d1f..bd88533a458b 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/tinyxml2 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4e2dc22af1c488730d63beaafe81fb7 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-19.0.3 b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-19.0.3 index c8e8c74c09fa..2f4d8b6f121c 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-19.0.3 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-19.0.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* virtual/opengl SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vdr.vnsi/archive/19.0.3-Matrix.tar.gz -> kodi-pvr-vdr-vnsi-19.0.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=857d3c70e92a5064364986048cf5aff9 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-19.0.5 b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-19.0.5 index ad4163089217..64ab5fd6f76e 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-19.0.5 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-19.0.5 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* virtual/opengl SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vdr.vnsi/archive/19.0.5-Matrix.tar.gz -> kodi-pvr-vdr-vnsi-19.0.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=857d3c70e92a5064364986048cf5aff9 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-8.2.2 b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-8.2.2 index e7dc5d7c41f5..0d8df3584799 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-8.2.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-8.2.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* virtual/opengl SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vdr.vnsi/archive/8.2.2-Matrix.tar.gz -> kodi-pvr-vdr-vnsi-8.2.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b5717660b7be0de3fc6bd2440d5e02ae diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-8.2.3 b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-8.2.3 index 04d67e2a85dd..f5d274638171 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-8.2.3 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-8.2.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* virtual/opengl SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vdr.vnsi/archive/8.2.3-Matrix.tar.gz -> kodi-pvr-vdr-vnsi-8.2.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b5717660b7be0de3fc6bd2440d5e02ae diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-9999 index c40310e1fe72..665b3292b1f5 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 virtual/opengl SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d0b6e2eca0b1516eeab29d67d061f28 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.3 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.3 index 14c1ac06ddf5..1206c8ae846a 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.3 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml dev-cpp/nlohmann_json SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/7.4.3-Matrix.tar.gz -> kodi-pvr-vuplus-7.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aec77f31d984481de32e11d2cd9fd151 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.4 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.4 index 1eb97fea0aaf..36d0ed968872 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.4 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.4 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml dev-cpp/nlohmann_json SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/7.4.4-Matrix.tar.gz -> kodi-pvr-vuplus-7.4.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aec77f31d984481de32e11d2cd9fd151 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.5 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.5 index 5167c1a90ce9..40b9fa1d0cd3 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.5 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.5 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml dev-cpp/nlohmann_json SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/7.4.5-Matrix.tar.gz -> kodi-pvr-vuplus-7.4.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aec77f31d984481de32e11d2cd9fd151 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.7 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.7 index fdfce4cca0da..c24d84e12ed8 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.7 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.7 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml dev-cpp/nlohmann_json SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/7.4.7-Matrix.tar.gz -> kodi-pvr-vuplus-7.4.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aec77f31d984481de32e11d2cd9fd151 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.8 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.8 index 2a34b1509d9d..97f16e27a001 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.8 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.8 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml dev-cpp/nlohmann_json SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/7.4.8-Matrix.tar.gz -> kodi-pvr-vuplus-7.4.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aec77f31d984481de32e11d2cd9fd151 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.9 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.9 index be92dbda033a..1f8ccc70de5d 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.9 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-7.4.9 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* dev-libs/tinyxml dev-cpp/nlohmann_json SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/7.4.9-Matrix.tar.gz -> kodi-pvr-vuplus-7.4.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aec77f31d984481de32e11d2cd9fd151 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-9999 index 966230933c73..6809e10d8b03 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/tinyxml dev-cpp/nlohmann_json SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a7390a03c3cc1d9eca36c9277978f955 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-6.1.1 b/metadata/md5-cache/media-plugins/kodi-pvr-wmc-6.1.1 index 088d1b6e5306..afa8e8668e27 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-6.1.1 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-wmc-6.1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.wmc/archive/6.1.1-Matrix.tar.gz -> kodi-pvr-wmc-6.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dc7ad21c98b3a7f1ba483e16ab11ab6d diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-6.1.2 b/metadata/md5-cache/media-plugins/kodi-pvr-wmc-6.1.2 index 53db35342cca..63bc2b94c8d5 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-6.1.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-wmc-6.1.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* SLOT=0 SRC_URI=https://github.com/kodi-pvr/pvr.wmc/archive/6.1.2-Matrix.tar.gz -> kodi-pvr-wmc-6.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dc7ad21c98b3a7f1ba483e16ab11ab6d diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-wmc-9999 index a8c53ac3aa18..6d44f18aac80 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-wmc-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 =dev-libs/libplatform-2* SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3e8db33841c5c89d5c8169144adc1365 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-zattoo-19.7.9 b/metadata/md5-cache/media-plugins/kodi-pvr-zattoo-19.7.9 index 7c79850f9dc3..a25c27b1ae46 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-zattoo-19.7.9 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-zattoo-19.7.9 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19* dev-libs/rapidjson dev-libs/tinyxml2 virtual/opengl SLOT=0 SRC_URI=https://github.com/rbuehlma/pvr.zattoo/archive/19.7.9-Matrix.tar.gz -> kodi-pvr-zattoo-19.7.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e92a1f1a0917c209207f355d5ed736aa diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-zattoo-9999 b/metadata/md5-cache/media-plugins/kodi-pvr-zattoo-9999 index 9b0ce7f58173..032c9ccc1f27 100644 --- a/metadata/md5-cache/media-plugins/kodi-pvr-zattoo-9999 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-zattoo-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/rapidjson dev-libs/tinyxml2 virtual/opengl SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e92a1f1a0917c209207f355d5ed736aa diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.4.2-r1 b/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.4.2-r1 index d5d94b725fe7..fdd449d7539b 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.4.2-r1 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.4.2-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 SLOT=0 SRC_URI=https://github.com/xbmc/screensaver.asteroids/archive/2.4.2-Matrix.tar.gz -> kodi-screensaver-asteroids-2.4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dede65626323cb615b6ae68a152f6527 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-9999 b/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-9999 index bb5145509475..713315dda7a3 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-9999 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dede65626323cb615b6ae68a152f6527 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-asterwave-3.3.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-asterwave-3.3.0 index d9b71b2d6c9e..c22eaf39dea2 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-asterwave-3.3.0 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-asterwave-3.3.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 SLOT=0 SRC_URI=https://github.com/xbmc/screensaver.asterwave/archive/3.3.0-Matrix.tar.gz -> kodi-screensaver-asterwave-3.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bdc29dcda0614f1d44f7a6d3e76c206d diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-asterwave-9999 b/metadata/md5-cache/media-plugins/kodi-screensaver-asterwave-9999 index 732c201dcc93..ccf25eb9026d 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-asterwave-9999 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-asterwave-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bdc29dcda0614f1d44f7a6d3e76c206d diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.3.2-r1 b/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.3.2-r1 index 281191618a0e..04a202e260df 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.3.2-r1 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.3.2-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= SLOT=0 SRC_URI=https://github.com/xbmc/screensaver.biogenesis/archive/2.3.2-Matrix.tar.gz -> kodi-screensaver-biogenesis-2.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d127c0cfd164c99fa9641cdd6320b5f1 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-9999 b/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-9999 index 1842132748b2..137f5c1f5233 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-9999 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d127c0cfd164c99fa9641cdd6320b5f1 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-cpblobs-3.4.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-cpblobs-3.4.0 index 48b84aaad643..ca681ba00941 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-cpblobs-3.4.0 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-cpblobs-3.4.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 SLOT=0 SRC_URI=https://github.com/xbmc/screensaver.cpblobs/archive/3.4.0-Matrix.tar.gz -> kodi-screensaver-cpblobs-3.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6e533b5b5f61b9892d41432c4406d054 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-cpblobs-9999 b/metadata/md5-cache/media-plugins/kodi-screensaver-cpblobs-9999 index e48541817ec3..33e3a2e8e7cd 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-cpblobs-9999 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-cpblobs-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6e533b5b5f61b9892d41432c4406d054 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.3.1-r1 b/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.3.1-r1 index f496a027e415..0c78af3b1423 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.3.1-r1 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.3.1-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/screensaver.greynetic/archive/2.3.1-Matrix.tar.gz -> kodi-screensaver-greynetic-2.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2f0b3ad46cb73f7ad9e2b7911b0968a7 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-9999 b/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-9999 index 2befeee139b3..2bb23da462ed 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-9999 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2f0b3ad46cb73f7ad9e2b7911b0968a7 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.6.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.6.0 index aa48fedd2173..addb72d5d8fe 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.6.0 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.6.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/screensaver.matrixtrails/archive/2.6.0-Matrix.tar.gz -> kodi-screensaver-matrixtrails-2.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b61b3e0bcff6603a6581c30420dc246 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-9999 b/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-9999 index a4d3f824a455..33959457777f 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-9999 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 virtual/opengl SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b61b3e0bcff6603a6581c30420dc246 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.2.2-r1 b/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.2.2-r1 index 285d369ab626..eb95ac6ec1e7 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.2.2-r1 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.2.2-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/screensaver.pingpong/archive/2.2.2-Matrix.tar.gz -> kodi-screensaver-pingpong-2.2.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6a68882ed13e769e373af1c03228162f diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-9999 b/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-9999 index 0e7a7c23d6f2..a85d67a097be 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-9999 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6a68882ed13e769e373af1c03228162f diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.3.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.3.0 index b54e5314fff7..764f69b78d9d 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.3.0 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.3.0 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://github.com/xbmc/screensaver.pyro/archive/3.3.0-Matrix.tar.gz -> kodi-screensaver-pyro-3.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0b1f116859e4049e61dc8c1d4a0f5b69 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-9999 b/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-9999 index 807960e91d7a..8afb958d46ed 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-9999 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-9999 @@ -8,5 +8,5 @@ INHERIT=cmake kodi-addon git-r3 LICENSE=GPL-2 PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cb9c7038a0a0fa767b60ec4a06802405 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-shadertoy-3.2.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-shadertoy-3.2.0 index b7e3d55aa4a8..9ca4d4800eab 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-shadertoy-3.2.0 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-shadertoy-3.2.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 SLOT=0 SRC_URI=https://github.com/xbmc/screensaver.shadertoy/archive/3.2.0-Matrix.tar.gz -> kodi-screensaver-shadertoy-3.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2477d7861b154004fab27455c824f75 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-shadertoy-9999 b/metadata/md5-cache/media-plugins/kodi-screensaver-shadertoy-9999 index 066a6661edbd..b5d0a08dbca1 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-shadertoy-9999 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-shadertoy-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2477d7861b154004fab27455c824f75 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-stars-2.4.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-stars-2.4.0 index e3807c16a243..4814f03120df 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-stars-2.4.0 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-stars-2.4.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= SLOT=0 SRC_URI=https://github.com/xbmc/screensaver.stars/archive/2.4.0-Matrix.tar.gz -> kodi-screensaver-stars-2.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=805915a02d5381f9f99b64408e5c5b32 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-stars-9999 b/metadata/md5-cache/media-plugins/kodi-screensaver-stars-9999 index 376b539c4bca..c99fd2660f86 100644 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-stars-9999 +++ b/metadata/md5-cache/media-plugins/kodi-screensaver-stars-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=805915a02d5381f9f99b64408e5c5b32 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-2.0.1-r1 b/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-2.0.1-r1 index 593f50935a3c..c126130265f5 100644 --- a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-2.0.1-r1 +++ b/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-2.0.1-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib(+)] app-arch/lzma app-arch/bzip2 sys-libs/zlib app-arch/lz4 dev-libs/lzo:2 >=dev-libs/openssl-1.0.2l:0= =media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/xbmc/vfs.libarchive/archive/2.0.1-Matrix.tar.gz -> kodi-vfs-libarchive-2.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=22e1a62ecf4c0a01553e98f1fb5a370c diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-9999 b/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-9999 index ffe0f4db7bc8..f1996d8fcece 100644 --- a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-9999 +++ b/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib(+)] app-arch/lzma app-arch/bzip2 sys-libs/zlib app-arch/lz4 dev-libs/lzo:2 >=dev-libs/openssl-1.0.2l:0= ~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af5336807c250c4434dab99588d2004d diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-rar-4.0.0 b/metadata/md5-cache/media-plugins/kodi-vfs-rar-4.0.0 index 670313830650..d52780189048 100644 --- a/metadata/md5-cache/media-plugins/kodi-vfs-rar-4.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-vfs-rar-4.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= dev-libs/tinyxml SLOT=0 SRC_URI=https://github.com/xbmc/vfs.rar/archive/4.0.0-Matrix.tar.gz -> kodi-vfs-rar-4.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3a38ed5767e64262b547a27fcab44b8c diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-rar-9999 b/metadata/md5-cache/media-plugins/kodi-vfs-rar-9999 index 42f08a7e17fd..93300dde05f6 100644 --- a/metadata/md5-cache/media-plugins/kodi-vfs-rar-9999 +++ b/metadata/md5-cache/media-plugins/kodi-vfs-rar-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 dev-libs/tinyxml SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3a38ed5767e64262b547a27fcab44b8c diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-2.0.0 b/metadata/md5-cache/media-plugins/kodi-vfs-sftp-2.0.0 index f78742b01548..f99fd54ceec8 100644 --- a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-2.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-vfs-sftp-2.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=net-libs/libssh[sftp] =media-tv/kodi-19* SLOT=0 SRC_URI=https://github.com/xbmc/vfs.sftp/archive/2.0.0-Matrix.tar.gz -> kodi-vfs-sftp-2.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a0aa61d143e649eec34bc9769a39e478 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-9999 b/metadata/md5-cache/media-plugins/kodi-vfs-sftp-9999 index 33aa835350d9..33c15c1fe02b 100644 --- a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-9999 +++ b/metadata/md5-cache/media-plugins/kodi-vfs-sftp-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=net-libs/libssh[sftp] ~media-tv/kodi-9999 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f8ea423949e8da62407a04c7bde59485 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-19.0.0 b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-19.0.0 index db7e26bd2a5c..31ccae3ef7ee 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.fishbmc/archive/19.0.0-Matrix.tar.gz -> kodi-visualization-fishbmc-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ac7bdfce822bae39e2a66c39c4c98d6 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.3.0 b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.3.0 index e377524652ca..d8d506eefb26 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.3.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.3.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.fishbmc/archive/6.3.0-Matrix.tar.gz -> kodi-visualization-fishbmc-6.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ebbbd8aca8ace586546a901a28f869fe diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-9999 b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-9999 index 25c653ef0c4a..9199e7d07858 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-9999 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ebbbd8aca8ace586546a901a28f869fe diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-goom-19.0.0 b/metadata/md5-cache/media-plugins/kodi-visualization-goom-19.0.0 index e140f6eecf55..39258f817835 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-goom-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-goom-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.goom/archive/19.0.0-Matrix.tar.gz -> kodi-visualization-goom-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=77f50bb4bc5f7df3af651d8b197aa575 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.4.0 b/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.4.0 index 79a0d9bcd9f1..6db1f65d849a 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.4.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.4.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.goom/archive/3.4.0-Matrix.tar.gz -> kodi-visualization-goom-3.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=541fee7b3aecb0c9dfa7618105154f9c diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-goom-9999 b/metadata/md5-cache/media-plugins/kodi-visualization-goom-9999 index 3e0ff1093e29..a4ba20797e48 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-goom-9999 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-goom-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=541fee7b3aecb0c9dfa7618105154f9c diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-19.0.0 b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-19.0.0 index b0a19f5fd64e..2082c89f5c40 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= virtual/opengl >=media-libs/libprojectm-3.1.12:= SLOT=0 SRC_URI=https://github.com/xbmc/visualization.projectm/archive/19.0.0-Matrix.tar.gz -> kodi-visualization-projectm-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b5a547f833dfbaafe29d47a463f143f1 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-19.0.1 b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-19.0.1 index 4e2a716e28b0..26876a870914 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-19.0.1 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-19.0.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= virtual/opengl >=media-libs/libprojectm-3.1.2:= SLOT=0 SRC_URI=https://github.com/xbmc/visualization.projectm/archive/19.0.1-Matrix.tar.gz -> kodi-visualization-projectm-19.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0bc23236afc424af04541f47dfcedafd diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.3.0 b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.3.0 index 464b285fb041..2c94d7f71e3f 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.3.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.3.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= virtual/opengl >=media-libs/libprojectm-3.1.2:= SLOT=0 SRC_URI=https://github.com/xbmc/visualization.projectm/archive/3.3.0-Matrix.tar.gz -> kodi-visualization-projectm-3.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=83928399c16be07c5ce8fff252567456 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-9999 b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-9999 index e9ae1fba274f..9f3ca6de0e09 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-9999 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 virtual/opengl >=media-libs/libprojectm-3.1.12:= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b5a547f833dfbaafe29d47a463f143f1 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-19.1.1 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-19.1.1 index 68d76cd1becc..cdd646ff13f1 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-19.1.1 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-19.1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND==media-tv/kodi-19* >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.shadertoy/archive/19.1.1-Matrix.tar.gz -> kodi-visualization-shadertoy-19.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8c7387f5b8796843d23274b71c3e8f3c diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-9999 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-9999 index f499b48b5114..9e39299055de 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-9999 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cc5fcb5de7ddfa7d0e6b953b39eba5e6 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-19.0.0 b/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-19.0.0 index 3237284f5003..618a2b282db4 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.spectrum/archive/19.0.0-Matrix.tar.gz -> kodi-visualization-spectrum-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bbe4a19f172e8083141b0e30017a8a9c diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.4.0 b/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.4.0 index ab307cb1a24b..77d0e31b98b8 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.4.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.4.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.spectrum/archive/3.4.0-Matrix.tar.gz -> kodi-visualization-spectrum-3.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=79d8e2ef4139d44fc2cd352db5c6c72b diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-9999 b/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-9999 index d586505663f6..a15580ba7969 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-9999 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=79d8e2ef4139d44fc2cd352db5c6c72b diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-19.0.0 b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-19.0.0 index 124e84ce8da7..73314874ac24 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.starburst/archive/19.0.0-Matrix.tar.gz -> kodi-visualization-starburst-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8ad70449941ee3fcdf4f0b86bb3eae71 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.3.1 b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.3.1 index 1a45f092ae1c..bf1c89580f80 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.3.1 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.3.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.starburst/archive/2.3.1-Matrix.tar.gz -> kodi-visualization-starburst-2.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=edcdcc5756db5db55d9f4b55231a7034 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.4.0 b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.4.0 index f8fb9656b1a1..e1985063508b 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.4.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.4.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.starburst/archive/2.4.0-Matrix.tar.gz -> kodi-visualization-starburst-2.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=edcdcc5756db5db55d9f4b55231a7034 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-9999 b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-9999 index 4da8909cada5..bb0445437966 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-9999 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=edcdcc5756db5db55d9f4b55231a7034 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-19.0.0 b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-19.0.0 index 8af4bedcf68c..a5d4c981c233 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-19.0.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-19.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.waveform/archive/19.0.0-Matrix.tar.gz -> kodi-visualization-waveform-19.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=424b3709ea4597ab5419ea92d1a74262 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-19.0.1 b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-19.0.1 index b2e283ba58d7..37647187841e 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-19.0.1 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-19.0.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.waveform/archive/19.0.1-Matrix.tar.gz -> kodi-visualization-waveform-19.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=424b3709ea4597ab5419ea92d1a74262 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.4.0 b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.4.0 index b631b7e7aa7f..c1b59792a259 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.4.0 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.4.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 SRC_URI=https://github.com/xbmc/visualization.waveform/archive/4.4.0-Matrix.tar.gz -> kodi-visualization-waveform-4.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=74dacc948ce3c07cfdd8b0b64323818f diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-9999 b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-9999 index 21f462dbc553..1ebdff96262d 100644 --- a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-9999 +++ b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~media-tv/kodi-9999 >=media-libs/glm-0.9.9.8-r1 virtual/opengl SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kodi-addon 443aa411bb9c2ea5c45516ea33e273d1 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=74dacc948ce3c07cfdd8b0b64323818f diff --git a/metadata/md5-cache/media-plugins/libvisual-plugins-0.4.2 b/metadata/md5-cache/media-plugins/libvisual-plugins-0.4.2 new file mode 100644 index 000000000000..10b5311712f5 --- /dev/null +++ b/metadata/md5-cache/media-plugins/libvisual-plugins-0.4.2 @@ -0,0 +1,15 @@ +BDEPEND=>=virtual/pkgconfig-0-r1 +DEFINED_PHASES=compile configure install test +DEPEND=>=media-libs/fontconfig-2.10.92[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/libvisual-0.4.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/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/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/libXrender-0.9.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] alsa? ( >=media-libs/alsa-lib-1.0.27.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(-)?] ) gstreamer? ( media-libs/gstreamer[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk? ( x11-libs/gtk+: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(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/glu-9.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(-)?] >=virtual/opengl-7.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(-)?] ) portaudio? ( media-libs/portaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[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/libXt-1.1.4[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=collection of visualization plugins for use with the libvisual framework +EAPI=8 +HOMEPAGE=http://libvisual.org/ +INHERIT=multilib-minimal +IUSE=alsa debug gstreamer gtk jack mplayer opengl portaudio pulseaudio abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=>=media-libs/fontconfig-2.10.92[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/libvisual-0.4.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/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/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/libXrender-0.9.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] alsa? ( >=media-libs/alsa-lib-1.0.27.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(-)?] ) gstreamer? ( media-libs/gstreamer[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk? ( x11-libs/gtk+: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(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/glu-9.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(-)?] >=virtual/opengl-7.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(-)?] ) portaudio? ( media-libs/portaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +SLOT=0.4 +SRC_URI=https://github.com/Libvisual/libvisual/releases/download/libvisual-plugins-0.4.2/libvisual-plugins-0.4.2.tar.bz2 +_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=f6b1b206677759de49786dec4be6cd99 diff --git a/metadata/md5-cache/media-plugins/libvisual-projectm-2.1.0-r2 b/metadata/md5-cache/media-plugins/libvisual-projectm-2.1.0-r2 index ecad051025d4..675611c17b8e 100644 --- a/metadata/md5-cache/media-plugins/libvisual-projectm-2.1.0-r2 +++ b/metadata/md5-cache/media-plugins/libvisual-projectm-2.1.0-r2 @@ -10,5 +10,5 @@ LICENSE=LGPL-2 RDEPEND=>=media-libs/libprojectm-3.1.12:0= media-libs/libsdl =media-libs/libvisual-0.4* virtual/opengl SLOT=0 SRC_URI=mirror://sourceforge/projectm/projectM-complete-2.1.0-Source.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f05fdfffd5faa206a97250d96dcbb382 diff --git a/metadata/md5-cache/media-plugins/libvisual-projectm-2.1.1 b/metadata/md5-cache/media-plugins/libvisual-projectm-2.1.1 index 0f20fa0474a7..a494b8cdd78c 100644 --- a/metadata/md5-cache/media-plugins/libvisual-projectm-2.1.1 +++ b/metadata/md5-cache/media-plugins/libvisual-projectm-2.1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=>=media-libs/libprojectm-3.1.12:0= media-libs/libsdl =media-libs/libvisual-0.4* virtual/opengl SLOT=0 SRC_URI=https://github.com/projectM-visualizer/frontend-libvisual-plug-in/archive/refs/tags/v2.1.1.tar.gz -> libvisual-projectm-2.1.1-gh.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e96ac832abe66027dab129a1e25e27ec diff --git a/metadata/md5-cache/media-plugins/qmmp-plugin-pack-1.6.0 b/metadata/md5-cache/media-plugins/qmmp-plugin-pack-1.6.0 index e875957a4df6..bdf0b2af0c3f 100644 --- a/metadata/md5-cache/media-plugins/qmmp-plugin-pack-1.6.0 +++ b/metadata/md5-cache/media-plugins/qmmp-plugin-pack-1.6.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-libs/libsamplerate media-libs/taglib =media-sound/qmmp-1.6* media-video/ffmpeg SLOT=0 SRC_URI=https://qmmp.ylsoftware.com/files/qmmp-plugin-pack/1.6/qmmp-plugin-pack-1.6.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2e8939f4941108eaed9925923b0e7512 diff --git a/metadata/md5-cache/media-radio/Manifest.gz b/metadata/md5-cache/media-radio/Manifest.gz index e352bb90ee21..5644c4a1cccc 100644 Binary files a/metadata/md5-cache/media-radio/Manifest.gz and b/metadata/md5-cache/media-radio/Manifest.gz differ diff --git a/metadata/md5-cache/media-radio/direwolf-1.6 b/metadata/md5-cache/media-radio/direwolf-1.6 index 011cbf87ed3c..fd6b4203d125 100644 --- a/metadata/md5-cache/media-radio/direwolf-1.6 +++ b/metadata/md5-cache/media-radio/direwolf-1.6 @@ -12,5 +12,5 @@ RDEPEND=media-libs/alsa-lib gps? ( sci-geosciences/gpsd ) hamlib? ( media-libs/h RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/wb2osz/direwolf/archive/1.6.tar.gz -> direwolf-1.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c1ec0b6ab06f5de83f062d66a46445fd diff --git a/metadata/md5-cache/media-radio/js8call-2.2.0-r1 b/metadata/md5-cache/media-radio/js8call-2.2.0-r1 index 8c64a0bc2a19..2918da1640c3 100644 --- a/metadata/md5-cache/media-radio/js8call-2.2.0-r1 +++ b/metadata/md5-cache/media-radio/js8call-2.2.0-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtconcurrent:5 dev-qt/qtserialport:5 dev-qt/qtprintsupport:5 virtual/libusb:1 media-libs/portaudio sci-libs/fftw:3.0[threads,fortran] virtual/fortran app-text/asciidoc >=media-libs/hamlib-4 doc? ( dev-ruby/asciidoctor ) SLOT=0 SRC_URI=https://bitbucket.org/widefido/js8call/get/v2.2.0-ga.tar.bz2 -> js8call-2.2.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0c2cca4fb35dc4d619c326e1c5514b56 diff --git a/metadata/md5-cache/media-radio/kochmorse-3.5.1 b/metadata/md5-cache/media-radio/kochmorse-3.5.1 index 548c16c85ebc..816a37e520a0 100644 --- a/metadata/md5-cache/media-radio/kochmorse-3.5.1 +++ b/metadata/md5-cache/media-radio/kochmorse-3.5.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://github.com/hmatuschek/kochmorse/archive/refs/tags/v3.5.1.tar.gz -> kochmorse-3.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d5c469dd3bed88e7b0cd88b1a5c5692 diff --git a/metadata/md5-cache/media-radio/svxlink-19.09.2 b/metadata/md5-cache/media-radio/svxlink-19.09.2 index 5a0a8dee2dbf..353e437a46a7 100644 --- a/metadata/md5-cache/media-radio/svxlink-19.09.2 +++ b/metadata/md5-cache/media-radio/svxlink-19.09.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=dev-lang/tcl:0 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-libs/alsa-lib media-sound/gsm dev-libs/libgcrypt:0 media-libs/speex media-libs/opus dev-libs/libsigc++:2 dev-libs/popt acct-group/svxlink acct-user/svxlink SLOT=0 SRC_URI=https://github.com/sm0svx/svxlink/archive/19.09.2.tar.gz -> svxlink-19.09.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa634fc2af283a276d4e5c0acab5970b diff --git a/metadata/md5-cache/media-radio/tqsl-2.6.4 b/metadata/md5-cache/media-radio/tqsl-2.6.4 index 39f44bfe1334..2fe9eeaae479 100644 --- a/metadata/md5-cache/media-radio/tqsl-2.6.4 +++ b/metadata/md5-cache/media-radio/tqsl-2.6.4 @@ -10,5 +10,5 @@ LICENSE=LOTW RDEPEND=dev-libs/expat:= dev-libs/openssl:0= net-misc/curl:= dev-db/lmdb:= sys-libs/zlib:= x11-libs/wxGTK:3.0-gtk3= SLOT=0 SRC_URI=https://www.arrl.org/tqsl/tqsl-2.6.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b6def2585ee5237f18f21b0280af1426 diff --git a/metadata/md5-cache/media-radio/tqsl-2.6.5 b/metadata/md5-cache/media-radio/tqsl-2.6.5 index 7b91a5c876ec..4a2e9a7b8860 100644 --- a/metadata/md5-cache/media-radio/tqsl-2.6.5 +++ b/metadata/md5-cache/media-radio/tqsl-2.6.5 @@ -10,5 +10,5 @@ LICENSE=LOTW RDEPEND=dev-libs/expat:= dev-libs/openssl:0= net-misc/curl:= dev-db/lmdb:= sys-libs/zlib:= x11-libs/wxGTK:3.0-gtk3= SLOT=0 SRC_URI=https://www.arrl.org/tqsl/tqsl-2.6.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=93a5c800602a002b34624f3204647952 diff --git a/metadata/md5-cache/media-radio/wsjtx-2.5.4 b/metadata/md5-cache/media-radio/wsjtx-2.5.4 index 01bdcb655002..8928c1ac65c8 100644 --- a/metadata/md5-cache/media-radio/wsjtx-2.5.4 +++ b/metadata/md5-cache/media-radio/wsjtx-2.5.4 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/boost:=[nls,python] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtconcurrent:5 dev-qt/qtserialport:5 dev-qt/qtsql:5 dev-qt/qttest:5 dev-qt/qtprintsupport:5 virtual/libusb:1 >=media-libs/hamlib-4.0:= media-libs/portaudio sci-libs/fftw:3.0[threads,fortran] virtual/fortran app-text/asciidoc doc? ( dev-ruby/asciidoctor ) SLOT=0 SRC_URI=https://physics.princeton.edu/pulsar/k1jt/wsjtx-2.5.4.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4a9c01dd5f896ba04ff79ab292125523 diff --git a/metadata/md5-cache/media-radio/wsjtx-2.6.1 b/metadata/md5-cache/media-radio/wsjtx-2.6.1 index 924efa6486f6..51680074ed1f 100644 --- a/metadata/md5-cache/media-radio/wsjtx-2.6.1 +++ b/metadata/md5-cache/media-radio/wsjtx-2.6.1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/boost:=[nls,python] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtconcurrent:5 dev-qt/qtserialport:5 dev-qt/qtsql:5 dev-qt/qttest:5 dev-qt/qtprintsupport:5 virtual/libusb:1 >=media-libs/hamlib-4.0:= media-libs/portaudio sci-libs/fftw:3.0[threads,fortran] virtual/fortran app-text/asciidoc doc? ( dev-ruby/asciidoctor ) SLOT=0 SRC_URI=mirror://sourceforge/wsjt/wsjtx-2.6.1.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0dde5447c4912fe9a8a128ab256c9931 diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index 3d5359c87991..b596ae17c5c4 100644 Binary files a/metadata/md5-cache/media-sound/Manifest.gz and b/metadata/md5-cache/media-sound/Manifest.gz differ diff --git a/metadata/md5-cache/media-sound/apulse-0.1.13-r2 b/metadata/md5-cache/media-sound/apulse-0.1.13-r2 index 2d8e1b04eef4..aa8ad8ae5fe4 100644 --- a/metadata/md5-cache/media-sound/apulse-0.1.13-r2 +++ b/metadata/md5-cache/media-sound/apulse-0.1.13-r2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/i-rinat/apulse/archive/v0.1.13.tar.gz -> apulse-0.1.13.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fb79e294b8809074e8f0da4aeb03761b diff --git a/metadata/md5-cache/media-sound/ardour-7.1 b/metadata/md5-cache/media-sound/ardour-7.1 deleted file mode 100644 index a8f4a8a09077..000000000000 --- a/metadata/md5-cache/media-sound/ardour-7.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup -DEPEND=dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-libs/boost:= dev-libs/glib:2 dev-libs/libsigc++:2 dev-libs/libxml2:2 dev-libs/libxslt >=gnome-base/libgnomecanvas-2 media-libs/alsa-lib media-libs/aubio media-libs/flac:= media-libs/freetype:2 media-libs/libart_lgpl media-libs/liblo media-libs/liblrdf media-libs/libsamplerate media-libs/libsndfile media-libs/libsoundtouch media-libs/raptor:2 media-libs/rubberband media-libs/taglib media-libs/vamp-plugin-sdk net-misc/curl sys-libs/readline:0= sci-libs/fftw:3.0[threads] virtual/libusb:1 x11-libs/cairo x11-libs/gtk+:2 x11-libs/pango jack? ( virtual/jack ) pulseaudio? ( media-sound/pulseaudio ) media-libs/lilv media-libs/sratom dev-libs/sord media-libs/suil[gtk2] media-libs/lv2 || ( >=dev-lang/python-3.11.1-r1:3.11[threads(+)] >=dev-lang/python-3.10.9-r1:3.10[threads(+)] >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) dev-util/itstool sys-devel/gettext virtual/pkgconfig doc? ( app-doc/doxygen[dot] ) jack? ( virtual/jack ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Digital Audio Workstation -EAPI=7 -HOMEPAGE=https://ardour.org/ -INHERIT=toolchain-funcs flag-o-matic plocale python-any-r1 waf-utils desktop xdg -IUSE=doc jack nls phonehome pulseaudio cpu_flags_ppc_altivec cpu_flags_x86_sse cpu_flags_x86_mmx cpu_flags_x86_3dnow -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-libs/boost:= dev-libs/glib:2 dev-libs/libsigc++:2 dev-libs/libxml2:2 dev-libs/libxslt >=gnome-base/libgnomecanvas-2 media-libs/alsa-lib media-libs/aubio media-libs/flac:= media-libs/freetype:2 media-libs/libart_lgpl media-libs/liblo media-libs/liblrdf media-libs/libsamplerate media-libs/libsndfile media-libs/libsoundtouch media-libs/raptor:2 media-libs/rubberband media-libs/taglib media-libs/vamp-plugin-sdk net-misc/curl sys-libs/readline:0= sci-libs/fftw:3.0[threads] virtual/libusb:1 x11-libs/cairo x11-libs/gtk+:2 x11-libs/pango jack? ( virtual/jack ) pulseaudio? ( media-sound/pulseaudio ) media-libs/lilv media-libs/sratom dev-libs/sord media-libs/suil[gtk2] media-libs/lv2 -SLOT=7 -SRC_URI=https://dev.gentoo.org/~fordfrog/distfiles/Ardour-7.1.0.tar.bz2 -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 plocale 950fbaec7deeba41b5bcc0572cca99b9 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b waf-utils 44f2c60168a3ec2c5fb661d45c1cf397 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=d94aac39dc2bce21d5cdda68fb69db8b diff --git a/metadata/md5-cache/media-sound/ardour-7.2 b/metadata/md5-cache/media-sound/ardour-7.2 deleted file mode 100644 index 9bc0a357e869..000000000000 --- a/metadata/md5-cache/media-sound/ardour-7.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup -DEPEND=dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-libs/boost:= dev-libs/glib:2 dev-libs/libsigc++:2 dev-libs/libxml2:2 dev-libs/libxslt >=gnome-base/libgnomecanvas-2 media-libs/alsa-lib media-libs/aubio media-libs/flac:= media-libs/freetype:2 media-libs/libart_lgpl media-libs/liblo media-libs/liblrdf media-libs/libsamplerate media-libs/libsndfile media-libs/libsoundtouch media-libs/raptor:2 media-libs/rubberband media-libs/taglib media-libs/vamp-plugin-sdk net-misc/curl sys-libs/readline:0= sci-libs/fftw:3.0[threads] virtual/libusb:1 x11-libs/cairo x11-libs/gtk+:2 x11-libs/pango jack? ( virtual/jack ) pulseaudio? ( media-sound/pulseaudio ) media-libs/lilv media-libs/sratom dev-libs/sord media-libs/suil[gtk2] media-libs/lv2 || ( >=dev-lang/python-3.11.1-r1:3.11[threads(+)] >=dev-lang/python-3.10.9-r1:3.10[threads(+)] >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) dev-util/itstool sys-devel/gettext virtual/pkgconfig doc? ( app-doc/doxygen[dot] ) jack? ( virtual/jack ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Digital Audio Workstation -EAPI=7 -HOMEPAGE=https://ardour.org/ -INHERIT=toolchain-funcs flag-o-matic plocale python-any-r1 waf-utils desktop xdg -IUSE=doc jack nls phonehome pulseaudio cpu_flags_ppc_altivec cpu_flags_x86_sse cpu_flags_x86_mmx cpu_flags_x86_3dnow -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-libs/boost:= dev-libs/glib:2 dev-libs/libsigc++:2 dev-libs/libxml2:2 dev-libs/libxslt >=gnome-base/libgnomecanvas-2 media-libs/alsa-lib media-libs/aubio media-libs/flac:= media-libs/freetype:2 media-libs/libart_lgpl media-libs/liblo media-libs/liblrdf media-libs/libsamplerate media-libs/libsndfile media-libs/libsoundtouch media-libs/raptor:2 media-libs/rubberband media-libs/taglib media-libs/vamp-plugin-sdk net-misc/curl sys-libs/readline:0= sci-libs/fftw:3.0[threads] virtual/libusb:1 x11-libs/cairo x11-libs/gtk+:2 x11-libs/pango jack? ( virtual/jack ) pulseaudio? ( media-sound/pulseaudio ) media-libs/lilv media-libs/sratom dev-libs/sord media-libs/suil[gtk2] media-libs/lv2 -SLOT=7 -SRC_URI=https://dev.gentoo.org/~fordfrog/distfiles/Ardour-7.2.0.tar.bz2 -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 plocale 950fbaec7deeba41b5bcc0572cca99b9 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b waf-utils 44f2c60168a3ec2c5fb661d45c1cf397 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=d94aac39dc2bce21d5cdda68fb69db8b diff --git a/metadata/md5-cache/media-sound/audacity-2.4.2-r3 b/metadata/md5-cache/media-sound/audacity-2.4.2-r3 index 9b579a744cac..10f678d21656 100644 --- a/metadata/md5-cache/media-sound/audacity-2.4.2-r3 +++ b/metadata/md5-cache/media-sound/audacity-2.4.2-r3 @@ -13,5 +13,5 @@ REQUIRED_USE=portmidi? ( portsmf ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/audacity/audacity/archive/Audacity-2.4.2.tar.gz doc? ( https://dev.gentoo.org/~fordfrog/distfiles/audacity-manual-2.4.2.zip ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b689b0d0bb034bc11e9a0ab2aaf1b816 diff --git a/metadata/md5-cache/media-sound/audacity-3.2.4 b/metadata/md5-cache/media-sound/audacity-3.2.4 index f3deb87ad53f..1e49285d4f08 100644 --- a/metadata/md5-cache/media-sound/audacity-3.2.4 +++ b/metadata/md5-cache/media-sound/audacity-3.2.4 @@ -14,5 +14,5 @@ REQUIRED_USE=mad? ( !mpg123 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/audacity/audacity/archive/Audacity-3.2.4.tar.gz doc? ( https://github.com/audacity/audacity-manual/releases/download/v3.2.4/audacity-manual-3.2.4.tar.gz ) audiocom? ( https://raw.githubusercontent.com/progschj/ThreadPool/9a42ec1329f259a5f4881a291db1dcb8f2ad9040/ThreadPool.h -> progschj-ThreadPool-20140926.h ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7df9f452fb9d251de711bdb54098387e diff --git a/metadata/md5-cache/media-sound/audacity-3.2.5 b/metadata/md5-cache/media-sound/audacity-3.2.5 index f176106f55cd..69794129da54 100644 --- a/metadata/md5-cache/media-sound/audacity-3.2.5 +++ b/metadata/md5-cache/media-sound/audacity-3.2.5 @@ -14,5 +14,5 @@ REQUIRED_USE=mad? ( !mpg123 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/audacity/audacity/archive/Audacity-3.2.5.tar.gz doc? ( https://github.com/audacity/audacity-manual/releases/download/v3.2.5/audacity-manual-3.2.5.tar.gz ) audiocom? ( https://raw.githubusercontent.com/progschj/ThreadPool/9a42ec1329f259a5f4881a291db1dcb8f2ad9040/ThreadPool.h -> progschj-ThreadPool-20140926.h ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7df9f452fb9d251de711bdb54098387e diff --git a/metadata/md5-cache/media-sound/audex-0.95_pre20220909 b/metadata/md5-cache/media-sound/audex-0.95_pre20220909 index dc6a8924d029..ebda9b63dd04 100644 --- a/metadata/md5-cache/media-sound/audex-0.95_pre20220909 +++ b/metadata/md5-cache/media-sound/audex-0.95_pre20220909 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtscript-5.15. RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://gentoo/audex-0.95_pre20220909-f94cd394.tar.gz https://invent.kde.org/multimedia/audex/-/archive/f94cd394db5d99e9024f47530cd7edf1a08a0cc1/audex-f94cd394db5d99e9024f47530cd7edf1a08a0cc1.tar.gz -> audex-0.95_pre20220909-f94cd394.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=925cfbc22352239b530ac244a6cd57f6 diff --git a/metadata/md5-cache/media-sound/bpmdetect-0.7.0_pre20170810-r1 b/metadata/md5-cache/media-sound/bpmdetect-0.7.0_pre20170810-r1 index 05d24b26179c..8891d37835fa 100644 --- a/metadata/md5-cache/media-sound/bpmdetect-0.7.0_pre20170810-r1 +++ b/metadata/md5-cache/media-sound/bpmdetect-0.7.0_pre20170810-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtwidgets:5 media-libs/flac:= media-libs/libmad media-libs/libvorbis media-libs/portaudio media-libs/taglib SLOT=0 SRC_URI=https://github.com/Tatsh/bpmdetect/archive/b13aac15904c1f821b1739d00445f49432705387.tar.gz -> bpmdetect-0.7.0_pre20170810.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4eb979703745534c088ae0be3c4531e4 diff --git a/metadata/md5-cache/media-sound/cantata-2.5.0 b/metadata/md5-cache/media-sound/cantata-2.5.0 index 26f77e2739b4..6ae33b64a191 100644 --- a/metadata/md5-cache/media-sound/cantata-2.5.0 +++ b/metadata/md5-cache/media-sound/cantata-2.5.0 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( cdda cdio ) cdda? ( udisks || ( cddb musicbrainz ) ) cddb? ( | RESTRICT=test SLOT=0 SRC_URI=https://github.com/CDrummond/cantata/releases/download/v2.5.0/cantata-2.5.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=96f79c6209c67b016c3d83da51df2f24 diff --git a/metadata/md5-cache/media-sound/clementine-1.4.0_rc2-r2 b/metadata/md5-cache/media-sound/clementine-1.4.0_rc2-r2 index 7050ad1bd396..42bcd509c658 100644 --- a/metadata/md5-cache/media-sound/clementine-1.4.0_rc2-r2 +++ b/metadata/md5-cache/media-sound/clementine-1.4.0_rc2-r2 @@ -14,5 +14,5 @@ REQUIRED_USE=udisks? ( dbus ) wiimote? ( dbus ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/clementine-player/Clementine/archive/refs/tags/1.4.0rc2.tar.gz -> clementine-1.4.0_rc2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f06f7737b9009d75f513ccd3c80c8add diff --git a/metadata/md5-cache/media-sound/clementine-9999 b/metadata/md5-cache/media-sound/clementine-9999 index 0b559c5dae77..4628f6b6e88f 100644 --- a/metadata/md5-cache/media-sound/clementine-9999 +++ b/metadata/md5-cache/media-sound/clementine-9999 @@ -13,5 +13,5 @@ RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/protobuf:= dev-qt/qtconcurrent: REQUIRED_USE=udisks? ( dbus ) wiimote? ( dbus ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e0fba14b8545fc5122661acc7495dc0 diff --git a/metadata/md5-cache/media-sound/csound-6.17.0 b/metadata/md5-cache/media-sound/csound-6.17.0 index 27dd790e2e10..a4e99535c0e0 100644 --- a/metadata/md5-cache/media-sound/csound-6.17.0 +++ b/metadata/md5-cache/media-sound/csound-6.17.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=https://dev.gentoo.org/~fordfrog/distfiles/csound-6.17.0-distributable.tar.xz doc? ( https://github.com/csound/csound/releases/download/6.17.0/Csound6.17.0_manual_pdf.zip https://github.com/csound/csound/releases/download/6.17.0/Csound6.17.0_manual_html.zip ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6c82c3582d41e98c20c1b089311c3c97 diff --git a/metadata/md5-cache/media-sound/csound-9999 b/metadata/md5-cache/media-sound/csound-9999 index 000e83447dd2..b07de0609076 100644 --- a/metadata/md5-cache/media-sound/csound-9999 +++ b/metadata/md5-cache/media-sound/csound-9999 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/eigen:3 media-libs/libsndfile media-libs/libsamplerate sys-libs/ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) alsa? ( threads ) java? ( cxx ) lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) cxx ) RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=35cff791b560fca91f2fb07e696f935c diff --git a/metadata/md5-cache/media-sound/drumstick-2.6.1 b/metadata/md5-cache/media-sound/drumstick-2.6.1 index 08211e1887f9..c0ebbcb92cde 100644 --- a/metadata/md5-cache/media-sound/drumstick-2.6.1 +++ b/metadata/md5-cache/media-sound/drumstick-2.6.1 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/ RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/drumstick/drumstick-2.6.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c7f64b80ce2f505899dc8466fc212dde diff --git a/metadata/md5-cache/media-sound/elisa-22.08.3 b/metadata/md5-cache/media-sound/elisa-22.08.3 index 1ffa8dce43aa..ae28b62d956d 100644 --- a/metadata/md5-cache/media-sound/elisa-22.08.3 +++ b/metadata/md5-cache/media-sound/elisa-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5[widgets] >=dev-qt/qtgui-5.15.5:5 >=dev-q RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/elisa-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0de7405774064596a211ff06cb668784 diff --git a/metadata/md5-cache/media-sound/elisa-22.12.3 b/metadata/md5-cache/media-sound/elisa-22.12.3 index 5190cc055a01..e85327f87370 100644 --- a/metadata/md5-cache/media-sound/elisa-22.12.3 +++ b/metadata/md5-cache/media-sound/elisa-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5[widgets] >=dev-qt/qtgui-5.15.5:5 >=dev-q RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/elisa-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=607c4780db16d15ebb7dcd94806325dd diff --git a/metadata/md5-cache/media-sound/flacon-10.0.0 b/metadata/md5-cache/media-sound/flacon-10.0.0 index 61cb2b785cbb..6745b4c71031 100644 --- a/metadata/md5-cache/media-sound/flacon-10.0.0 +++ b/metadata/md5-cache/media-sound/flacon-10.0.0 @@ -12,5 +12,5 @@ RDEPEND=app-i18n/uchardet dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev- RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/flacon/flacon/archive/v10.0.0.tar.gz -> flacon-10.0.0.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e6e27d770ecb00c95dbf4736753684db diff --git a/metadata/md5-cache/media-sound/flacon-9.1.0 b/metadata/md5-cache/media-sound/flacon-9.1.0 index 090d92464bf8..b23080c4dd8f 100644 --- a/metadata/md5-cache/media-sound/flacon-9.1.0 +++ b/metadata/md5-cache/media-sound/flacon-9.1.0 @@ -12,5 +12,5 @@ RDEPEND=app-i18n/uchardet dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev- RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/flacon/flacon/archive/v9.1.0.tar.gz -> flacon-9.1.0.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef783971321606aa750db67f0e7dffaa diff --git a/metadata/md5-cache/media-sound/flacon-9.4.0 b/metadata/md5-cache/media-sound/flacon-9.4.0 index 57ebd9bbc9d4..0d0d3c46f719 100644 --- a/metadata/md5-cache/media-sound/flacon-9.4.0 +++ b/metadata/md5-cache/media-sound/flacon-9.4.0 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://flacon.github.io/ INHERIT=check-reqs cmake optfeature virtualx xdg-utils IUSE=test test -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=LGPL-2.1+ RDEPEND=app-i18n/uchardet dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-libs/taglib RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/flacon/flacon/archive/v9.4.0.tar.gz -> flacon-9.4.0.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=caef3114bfe4f2f6b03ac28bf3f15a86 +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=f0bb3cca423015961354f996c5b75252 diff --git a/metadata/md5-cache/media-sound/fluidsynth-2.3.0 b/metadata/md5-cache/media-sound/fluidsynth-2.3.0 index fe3ad3f7d7a7..b45dce536934 100644 --- a/metadata/md5-cache/media-sound/fluidsynth-2.3.0 +++ b/metadata/md5-cache/media-sound/fluidsynth-2.3.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ RDEPEND=dev-libs/glib: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(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] lash? ( media-sound/lash[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) dbus? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ladspa? ( media-libs/ladspa-sdk[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/cmt-plugins[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pipewire? ( media-video/pipewire: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(-)?] ) portaudio? ( media-libs/portaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) readline? ( sys-libs/readline:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sndfile? ( media-libs/libsndfile[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0/3 SRC_URI=https://github.com/FluidSynth/fluidsynth/archive/v2.3.0.tar.gz -> fluidsynth-2.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d635f0168f4549be9ac0d053af6ba256 diff --git a/metadata/md5-cache/media-sound/fluidsynth-2.3.1 b/metadata/md5-cache/media-sound/fluidsynth-2.3.1 index 977a682dff0b..8cdc55b40f3d 100644 --- a/metadata/md5-cache/media-sound/fluidsynth-2.3.1 +++ b/metadata/md5-cache/media-sound/fluidsynth-2.3.1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ RDEPEND=dev-libs/glib: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(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] lash? ( media-sound/lash[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) dbus? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ladspa? ( media-libs/ladspa-sdk[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-plugins/cmt-plugins[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pipewire? ( media-video/pipewire: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(-)?] ) portaudio? ( media-libs/portaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-sound/pulseaudio[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) readline? ( sys-libs/readline:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sndfile? ( media-libs/libsndfile[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0/3 SRC_URI=https://github.com/FluidSynth/fluidsynth/archive/v2.3.1.tar.gz -> fluidsynth-2.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ce8ec3f940d8f3facc07a7b0458f7a6f diff --git a/metadata/md5-cache/media-sound/gogglesmm-1.2.1-r2 b/metadata/md5-cache/media-sound/gogglesmm-1.2.1-r2 index 04b7c8d58e29..4df89ed82812 100644 --- a/metadata/md5-cache/media-sound/gogglesmm-1.2.1-r2 +++ b/metadata/md5-cache/media-sound/gogglesmm-1.2.1-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=x11-libs/fox:1.7 x11-libs/libSM x11-libs/libICE dev-db/sqlite media-libs/taglib dev-libs/expat dev-libs/libgcrypt:= dbus? ( sys-apps/dbus ) flac? ( media-libs/flac:= ) mad? ( media-libs/libmad ) vorbis? ( media-libs/libvorbis ) ogg? ( media-libs/libogg ) opus? ( media-libs/opus ) aac? ( media-libs/faad2 ) pulseaudio? ( media-sound/pulseaudio ) opengl? ( media-libs/libepoxy virtual/glu ) SLOT=0 SRC_URI=https://github.com/gogglesmm/gogglesmm/archive/1.2.1.tar.gz -> gogglesmm-1.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2a5ee330720afe18efb4ca5a38fc1c99 diff --git a/metadata/md5-cache/media-sound/guayadeque-0.4.6 b/metadata/md5-cache/media-sound/guayadeque-0.4.6 index 49660cc4b874..2f0ff499f652 100644 --- a/metadata/md5-cache/media-sound/guayadeque-0.4.6 +++ b/metadata/md5-cache/media-sound/guayadeque-0.4.6 @@ -12,5 +12,5 @@ RDEPEND=dev-db/sqlite:3 dev-db/wxsqlite3 dev-libs/glib:2 media-libs/flac media-l RESTRICT=test SLOT=0 SRC_URI=https://github.com/anonbeat/guayadeque/archive/v0.4.6.tar.gz -> guayadeque-0.4.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=882c5be7bd84effa207f7ecb64a52d98 diff --git a/metadata/md5-cache/media-sound/guayadeque-0.4.7 b/metadata/md5-cache/media-sound/guayadeque-0.4.7 index 746cc4b307ab..20f6b63e11ce 100644 --- a/metadata/md5-cache/media-sound/guayadeque-0.4.7 +++ b/metadata/md5-cache/media-sound/guayadeque-0.4.7 @@ -13,5 +13,5 @@ RDEPEND=dev-db/sqlite:3 dev-db/wxsqlite3 dev-libs/glib:2 media-libs/flac media-l RESTRICT=test SLOT=0 SRC_URI=https://github.com/anonbeat/guayadeque/archive/v0.4.7.tar.gz -> guayadeque-0.4.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ec3c6fd3d45550cace67ca2826d14880 diff --git a/metadata/md5-cache/media-sound/guayadeque-9999 b/metadata/md5-cache/media-sound/guayadeque-9999 index a18458575c63..236c74936725 100644 --- a/metadata/md5-cache/media-sound/guayadeque-9999 +++ b/metadata/md5-cache/media-sound/guayadeque-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=dev-db/sqlite:3 dev-db/wxsqlite3 dev-libs/glib:2 media-libs/flac media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 media-libs/gstreamer:1.0 media-libs/taglib net-misc/curl sys-apps/dbus x11-libs/wxGTK:3.0-gtk3[X] appindicator? ( dev-libs/libindicate ) ipod? ( media-libs/libgpod ) !minimal? ( media-plugins/gst-plugins-libav:1.0 media-plugins/gst-plugins-libnice:1.0 media-plugins/gst-plugins-pulse:1.0 media-plugins/gst-plugins-soup:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-ugly:1.0 ) RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ec3c6fd3d45550cace67ca2826d14880 diff --git a/metadata/md5-cache/media-sound/hydrogen-1.1.1 b/metadata/md5-cache/media-sound/hydrogen-1.1.1 index ee771272b465..6f43ffd03035 100644 --- a/metadata/md5-cache/media-sound/hydrogen-1.1.1 +++ b/metadata/md5-cache/media-sound/hydrogen-1.1.1 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev REQUIRED_USE=lash? ( alsa ) SLOT=0 SRC_URI=https://github.com/hydrogen-music/hydrogen/archive/1.1.1.tar.gz -> hydrogen-1.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=28c6a9a697d72f5919a0e8f4c45a5bc1 diff --git a/metadata/md5-cache/media-sound/hydrogen-9999 b/metadata/md5-cache/media-sound/hydrogen-9999 index c3d757feb73c..05192ba44a95 100644 --- a/metadata/md5-cache/media-sound/hydrogen-9999 +++ b/metadata/md5-cache/media-sound/hydrogen-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 dev-qt/qtxmlpatterns:5 >=media-libs/libsndfile-1.0.18 alsa? ( media-libs/alsa-lib ) archive? ( app-arch/libarchive ) !archive? ( >=dev-libs/libtar-1.2.11-r3 ) doc? ( dev-texlive/texlive-fontutils ) jack? ( virtual/jack ) ladspa? ( media-libs/liblrdf ) lash? ( media-sound/lash ) osc? ( media-libs/liblo ) portaudio? ( media-libs/portaudio ) portmidi? ( media-libs/portmidi ) pulseaudio? ( media-sound/pulseaudio ) REQUIRED_USE=lash? ( alsa ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa74b89edb4ff60fb164c57d16ea6bbe diff --git a/metadata/md5-cache/media-sound/jack-keyboard-2.7.2-r1 b/metadata/md5-cache/media-sound/jack-keyboard-2.7.2-r1 index 16552a6d74ba..403bda15cc44 100644 --- a/metadata/md5-cache/media-sound/jack-keyboard-2.7.2-r1 +++ b/metadata/md5-cache/media-sound/jack-keyboard-2.7.2-r1 @@ -11,5 +11,5 @@ LICENSE=public-domain RDEPEND=dev-libs/glib:2 virtual/jack x11-libs/gtk+:2 lash? ( media-sound/lash ) X? ( x11-libs/libX11 ) SLOT=0 SRC_URI=mirror://sourceforge/jack-keyboard/jack-keyboard/2.7.2/jack-keyboard-2.7.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a8b1a46b46572daacc146abb1f491ba3 diff --git a/metadata/md5-cache/media-sound/kid3-3.9.3 b/metadata/md5-cache/media-sound/kid3-3.9.3 index 59612972209b..50e449906711 100644 --- a/metadata/md5-cache/media-sound/kid3-3.9.3 +++ b/metadata/md5-cache/media-sound/kid3-3.9.3 @@ -14,5 +14,5 @@ REQUIRED_USE=flac? ( vorbis ) RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kid3/3.9.3/kid3-3.9.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=22b13bef1249e91ee623a5b3e82565c8 diff --git a/metadata/md5-cache/media-sound/kmetronome-1.3.0 b/metadata/md5-cache/media-sound/kmetronome-1.3.0 index 118a2dff2ca0..35861a24bdff 100644 --- a/metadata/md5-cache/media-sound/kmetronome-1.3.0 +++ b/metadata/md5-cache/media-sound/kmetronome-1.3.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 media-libs/alsa-lib >=media-sound/drumstick-2.0.0 SLOT=5 SRC_URI=mirror://sourceforge/kmetronome/kmetronome-1.3.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1a7f8248fd1e117ce26bd71cdc0eee2c diff --git a/metadata/md5-cache/media-sound/kmidimon-1.3.0 b/metadata/md5-cache/media-sound/kmidimon-1.3.0 index 94339f7fc355..16daafd8e399 100644 --- a/metadata/md5-cache/media-sound/kmidimon-1.3.0 +++ b/metadata/md5-cache/media-sound/kmidimon-1.3.0 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 media-libs/alsa-lib >=media-sound/drumstick-2.4.0 SLOT=0 SRC_URI=mirror://sourceforge/kmidimon/kmidimon-1.3.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6ed280eac34eda5cc471573a5ee970b1 diff --git a/metadata/md5-cache/media-sound/lmms-1.2.2 b/metadata/md5-cache/media-sound/lmms-1.2.2 index 7c0dd4dabd87..ed05507297d9 100644 --- a/metadata/md5-cache/media-sound/lmms-1.2.2 +++ b/metadata/md5-cache/media-sound/lmms-1.2.2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=media-libs/libsamplerate-0.1.8 >=media-libs/libsndfile-1.0.11 sci-libs/fftw:3.0 sys-libs/zlib >=x11-libs/fltk-1.3.0_rc3:1 alsa? ( media-libs/alsa-lib ) fluidsynth? ( media-sound/fluidsynth ) jack? ( virtual/jack ) libgig? ( media-libs/libgig ) mp3? ( media-sound/lame ) ogg? ( media-libs/libogg media-libs/libvorbis ) portaudio? ( >=media-libs/portaudio-19_pre ) pulseaudio? ( media-sound/pulseaudio ) sdl? ( media-libs/libsdl >=media-libs/sdl-sound-1.0.1 ) soundio? ( media-libs/libsoundio ) stk? ( media-libs/stk ) vst? ( virtual/wine ) media-plugins/calf media-plugins/caps-plugins media-plugins/cmt-plugins media-plugins/swh-plugins media-plugins/tap-plugins SLOT=0 SRC_URI=https://github.com/LMMS/lmms/releases/download/v1.2.2/lmms_1.2.2.tar.xz -> lmms-1.2.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f6e1312ce24c9a01f73d0eaa5504635a diff --git a/metadata/md5-cache/media-sound/lmms-9999 b/metadata/md5-cache/media-sound/lmms-9999 index 70b8f7ca3ded..c91fda0f36b5 100644 --- a/metadata/md5-cache/media-sound/lmms-9999 +++ b/metadata/md5-cache/media-sound/lmms-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2 LGPL-2 PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=media-libs/libsamplerate-0.1.8 >=media-libs/libsndfile-1.0.11 sci-libs/fftw:3.0 sys-libs/zlib >=x11-libs/fltk-1.3.0_rc3:1 alsa? ( media-libs/alsa-lib ) fluidsynth? ( media-sound/fluidsynth ) jack? ( virtual/jack ) libgig? ( media-libs/libgig ) mp3? ( media-sound/lame ) ogg? ( media-libs/libogg media-libs/libvorbis ) portaudio? ( >=media-libs/portaudio-19_pre ) pulseaudio? ( media-sound/pulseaudio ) sdl? ( media-libs/libsdl >=media-libs/sdl-sound-1.0.1 ) soundio? ( media-libs/libsoundio ) stk? ( media-libs/stk ) vst? ( virtual/wine ) media-plugins/calf media-plugins/caps-plugins media-plugins/cmt-plugins media-plugins/swh-plugins media-plugins/tap-plugins SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f99e86c5eae39ac6b2c825f5a5004844 diff --git a/metadata/md5-cache/media-sound/milkytracker-1.03.00 b/metadata/md5-cache/media-sound/milkytracker-1.03.00 index c89d1db6af3d..77c5aa300809 100644 --- a/metadata/md5-cache/media-sound/milkytracker-1.03.00 +++ b/metadata/md5-cache/media-sound/milkytracker-1.03.00 @@ -11,5 +11,5 @@ LICENSE=|| ( GPL-3 MPL-1.1 ) AIFFWriter.m BSD GPL-3 GPL-3+ LGPL-2.1+ MIT RDEPEND=dev-libs/zziplib media-libs/libsdl2[X] sys-libs/zlib alsa? ( media-libs/alsa-lib ) jack? ( virtual/jack ) SLOT=0 SRC_URI=https://github.com/milkytracker/MilkyTracker/archive/v1.03.00.tar.gz -> milkytracker-1.03.00.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7884bbe30c785e861100564faea4cb7b diff --git a/metadata/md5-cache/media-sound/mixxx-2.3.3-r1 b/metadata/md5-cache/media-sound/mixxx-2.3.3-r1 index 7cd995707c86..3c7c7bd7086a 100644 --- a/metadata/md5-cache/media-sound/mixxx-2.3.3-r1 +++ b/metadata/md5-cache/media-sound/mixxx-2.3.3-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 media-libs/chromaprint media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio[alsa] media-libs/portmidi media-libs/rubberband media-libs/taglib media-libs/vamp-plugin-sdk media-sound/lame sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qtkeychain? ( dev-libs/qtkeychain ) wavpack? ( media-sound/wavpack ) SLOT=0 SRC_URI=https://github.com/mixxxdj/mixxx/archive/refs/tags/2.3.3.tar.gz -> mixxx-2.3.3.tar.gz l10n_ca? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ca.pdf ) l10n_cs? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-cs.pdf ) l10n_de? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-de.pdf ) l10n_en? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-en.pdf ) l10n_es? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-es.pdf ) l10n_fi? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-fi.pdf ) l10n_fr? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-fr.pdf ) l10n_gl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-gl.pdf ) l10n_id? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-id.pdf ) l10n_it? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-it.pdf ) l10n_ja? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ja-JP.pdf ) l10n_kn? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-kn.pdf ) l10n_nl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-nl.pdf ) l10n_pl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-pl.pdf ) l10n_pt? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-pt.pdf ) l10n_ro? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ro.pdf ) l10n_ru? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ru.pdf ) l10n_sl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-sl.pdf ) l10n_sq? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-sq.pdf ) l10n_sr? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-sr.pdf ) l10n_tr? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-tr.pdf ) l10n_zh-CN? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-zh-CN.pdf ) l10n_zh-TW? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-zh-TW.pdf ) https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-en.pdf -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3bac2072cc833a9a9ad2adb80253b54e diff --git a/metadata/md5-cache/media-sound/mixxx-2.3.4 b/metadata/md5-cache/media-sound/mixxx-2.3.4 index 0439ac4437e7..c5f581ec1c01 100644 --- a/metadata/md5-cache/media-sound/mixxx-2.3.4 +++ b/metadata/md5-cache/media-sound/mixxx-2.3.4 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 media-libs/chromaprint media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio[alsa] media-libs/portmidi media-libs/rubberband media-libs/taglib media-libs/vamp-plugin-sdk media-sound/lame sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qtkeychain? ( dev-libs/qtkeychain ) wavpack? ( media-sound/wavpack ) SLOT=0 SRC_URI=https://github.com/mixxxdj/mixxx/archive/refs/tags/2.3.4.tar.gz -> mixxx-2.3.4.tar.gz l10n_ca? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ca.pdf ) l10n_cs? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-cs.pdf ) l10n_de? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-de.pdf ) l10n_en? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-en.pdf ) l10n_es? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-es.pdf ) l10n_fi? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-fi.pdf ) l10n_fr? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-fr.pdf ) l10n_gl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-gl.pdf ) l10n_id? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-id.pdf ) l10n_it? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-it.pdf ) l10n_ja? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ja-JP.pdf ) l10n_kn? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-kn.pdf ) l10n_nl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-nl.pdf ) l10n_pl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-pl.pdf ) l10n_pt? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-pt.pdf ) l10n_ro? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ro.pdf ) l10n_ru? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ru.pdf ) l10n_sl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-sl.pdf ) l10n_sq? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-sq.pdf ) l10n_sr? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-sr.pdf ) l10n_tr? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-tr.pdf ) l10n_zh-CN? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-zh-CN.pdf ) l10n_zh-TW? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-zh-TW.pdf ) https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-en.pdf -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5fe5629edc6a0bbb8923ded7c432b2b6 diff --git a/metadata/md5-cache/media-sound/mixxx-2.3.9999 b/metadata/md5-cache/media-sound/mixxx-2.3.9999 index 953ac690e646..50a1fa0b18d9 100644 --- a/metadata/md5-cache/media-sound/mixxx-2.3.9999 +++ b/metadata/md5-cache/media-sound/mixxx-2.3.9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:0= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 media-libs/chromaprint media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio[alsa] media-libs/portmidi media-libs/rubberband media-libs/taglib media-libs/vamp-plugin-sdk media-sound/lame sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qtkeychain? ( dev-libs/qtkeychain ) wavpack? ( media-sound/wavpack ) SLOT=0 SRC_URI=l10n_ca? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ca.pdf ) l10n_cs? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-cs.pdf ) l10n_de? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-de.pdf ) l10n_en? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-en.pdf ) l10n_es? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-es.pdf ) l10n_fi? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-fi.pdf ) l10n_fr? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-fr.pdf ) l10n_gl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-gl.pdf ) l10n_id? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-id.pdf ) l10n_it? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-it.pdf ) l10n_ja? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ja-JP.pdf ) l10n_kn? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-kn.pdf ) l10n_nl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-nl.pdf ) l10n_pl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-pl.pdf ) l10n_pt? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-pt.pdf ) l10n_ro? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ro.pdf ) l10n_ru? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-ru.pdf ) l10n_sl? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-sl.pdf ) l10n_sq? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-sq.pdf ) l10n_sr? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-sr.pdf ) l10n_tr? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-tr.pdf ) l10n_zh-CN? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-zh-CN.pdf ) l10n_zh-TW? ( https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-zh-TW.pdf ) https://downloads.mixxx.org/manual/2.3/mixxx-manual-2.3-en.pdf -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c3f9a26f468c57002dbd6ae27a7613d diff --git a/metadata/md5-cache/media-sound/mixxx-9999 b/metadata/md5-cache/media-sound/mixxx-9999 index 1fa5b41082dd..58d0cdc81ab6 100644 --- a/metadata/md5-cache/media-sound/mixxx-9999 +++ b/metadata/md5-cache/media-sound/mixxx-9999 @@ -11,5 +11,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 media-libs/chromaprint media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio media-libs/portmidi media-libs/rubberband media-libs/taglib media-libs/vamp-plugin-sdk sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qtkeychain? ( dev-libs/qtkeychain ) shout? ( >=media-libs/libshout-2.4.5 ) wavpack? ( media-sound/wavpack ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3529436429eb28c2dc44085687aeca96 diff --git a/metadata/md5-cache/media-sound/musepack-tools-465-r2 b/metadata/md5-cache/media-sound/musepack-tools-465-r2 index 2450efef67ec..3778f38c1e5c 100644 --- a/metadata/md5-cache/media-sound/musepack-tools-465-r2 +++ b/metadata/md5-cache/media-sound/musepack-tools-465-r2 @@ -10,5 +10,5 @@ LICENSE=BSD LGPL-2.1 RDEPEND=>=media-libs/libcuefile-465 >=media-libs/libreplaygain-465 !media-libs/libmpcdec !media-libs/libmpcdecsv7 SLOT=0 SRC_URI=mirror://gentoo/musepack-tools-465.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=19f109bd757a76a4590a4a01e760a34b +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=903b1780215b5628d31b6371b6627896 diff --git a/metadata/md5-cache/media-sound/musescore-3.6.2-r1 b/metadata/md5-cache/media-sound/musescore-3.6.2-r1 index a6bddacdf1a0..7a96626b2e7f 100644 --- a/metadata/md5-cache/media-sound/musescore-3.6.2-r1 +++ b/metadata/md5-cache/media-sound/musescore-3.6.2-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/designer:5 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclara REQUIRED_USE=portmidi? ( portaudio ) SLOT=0 SRC_URI=https://github.com/musescore/MuseScore/archive/v3.6.2.tar.gz -> musescore-3.6.2.tar.gz https://dev.gentoo.org/~fordfrog/distfiles/MuseScore_General-0.2.0.tar.bz2 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7ac4cf490bea9ba3e5043506411af2d9 diff --git a/metadata/md5-cache/media-sound/musescore-9999 b/metadata/md5-cache/media-sound/musescore-9999 index d2b1724fd854..561241381a5f 100644 --- a/metadata/md5-cache/media-sound/musescore-9999 +++ b/metadata/md5-cache/media-sound/musescore-9999 @@ -14,5 +14,5 @@ REQUIRED_USE=portmidi? ( portaudio ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://dev.gentoo.org/~fordfrog/distfiles/MuseScore_General-0.2.0.tar.bz2 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6c3c72797062472941816430a8b6d1c7 diff --git a/metadata/md5-cache/media-sound/pamix-1.6-r2 b/metadata/md5-cache/media-sound/pamix-1.6-r2 index 99fcefba785a..81ba0b4c762c 100644 --- a/metadata/md5-cache/media-sound/pamix-1.6-r2 +++ b/metadata/md5-cache/media-sound/pamix-1.6-r2 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=media-sound/pulseaudio sys-libs/ncurses:=[unicode(+)?] SLOT=0 SRC_URI=https://github.com/patroclos/PAmix/archive/v1.6.tar.gz -> pamix-1.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b96f2196d804257f94fb51184ee8c1b0 diff --git a/metadata/md5-cache/media-sound/pamix-9999 b/metadata/md5-cache/media-sound/pamix-9999 index 702f56d7f69c..07497c9c4902 100644 --- a/metadata/md5-cache/media-sound/pamix-9999 +++ b/metadata/md5-cache/media-sound/pamix-9999 @@ -10,5 +10,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=media-sound/pulseaudio sys-libs/ncurses:=[unicode(+)?] SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=863a8b025e16c4d09062a313b52571bf diff --git a/metadata/md5-cache/media-sound/pavucontrol-qt-1.0.0 b/metadata/md5-cache/media-sound/pavucontrol-qt-1.0.0 index c03135466189..fc8eb5127e8f 100644 --- a/metadata/md5-cache/media-sound/pavucontrol-qt-1.0.0 +++ b/metadata/md5-cache/media-sound/pavucontrol-qt-1.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=dev-libs/glib:2 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 media-sound/pulseaudio[glib] SLOT=0 SRC_URI=https://github.com/lxqt/pavucontrol-qt/releases/download/1.0.0/pavucontrol-qt-1.0.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=df8a7ec5a491d449aa1f5d67f0cbc802 diff --git a/metadata/md5-cache/media-sound/pavucontrol-qt-1.2.0 b/metadata/md5-cache/media-sound/pavucontrol-qt-1.2.0 index afe74f2e444c..10dffec5f219 100644 --- a/metadata/md5-cache/media-sound/pavucontrol-qt-1.2.0 +++ b/metadata/md5-cache/media-sound/pavucontrol-qt-1.2.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=dev-libs/glib:2 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 media-sound/pulseaudio[glib] SLOT=0 SRC_URI=https://github.com/lxqt/pavucontrol-qt/releases/download/1.2.0/pavucontrol-qt-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=67d2c33b82b092ce7e4c511af84a0258 diff --git a/metadata/md5-cache/media-sound/pms-0.42_p20170508-r1 b/metadata/md5-cache/media-sound/pms-0.42_p20170508-r1 index fe8519fce927..98f49f59e97f 100644 --- a/metadata/md5-cache/media-sound/pms-0.42_p20170508-r1 +++ b/metadata/md5-cache/media-sound/pms-0.42_p20170508-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=sys-libs/ncurses:=[unicode(+)] media-libs/libmpdclient SLOT=0 SRC_URI=https://github.com/ambientsound/pms/archive/8c8918488a4a22924ee04442dc5e5216783d51ff.tar.gz -> pms-0.42_p20170508.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4632dfbe6806239a8e7ee08202acda9b diff --git a/metadata/md5-cache/media-sound/pnmixer-0.7.2-r1 b/metadata/md5-cache/media-sound/pnmixer-0.7.2-r1 index 0fe718cf44e9..700d8db2da46 100644 --- a/metadata/md5-cache/media-sound/pnmixer-0.7.2-r1 +++ b/metadata/md5-cache/media-sound/pnmixer-0.7.2-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/glib:2 media-libs/alsa-lib x11-libs/gtk+:3 x11-libs/libX11 libnotify? ( x11-libs/libnotify ) SLOT=0 SRC_URI=https://github.com/nicklan/pnmixer/releases/download/v0.7.2/pnmixer-v0.7.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=07215c0c77ae6ac4f3c8f47d329d1f19 diff --git a/metadata/md5-cache/media-sound/qastools-0.23.0 b/metadata/md5-cache/media-sound/qastools-0.23.0 index 48d21634a05d..e44f8b2f0d69 100644 --- a/metadata/md5-cache/media-sound/qastools-0.23.0 +++ b/metadata/md5-cache/media-sound/qastools-0.23.0 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 media-libs/alsa-lib virtual/libudev:= SLOT=0 SRC_URI=https://gitlab.com/sebholt/qastools/-/archive/v0.23.0/qastools-v0.23.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=27785adbcfd48cd28ef3af6eed65fe68 diff --git a/metadata/md5-cache/media-sound/qjackctl-0.9.8 b/metadata/md5-cache/media-sound/qjackctl-0.9.8 index cd07024f248d..dd4ba2895d54 100644 --- a/metadata/md5-cache/media-sound/qjackctl-0.9.8 +++ b/metadata/md5-cache/media-sound/qjackctl-0.9.8 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 virtual/jack alsa? ( media-libs/alsa-lib ) dbus? ( dev-qt/qtdbus:5 ) portaudio? ( media-libs/portaudio ) dev-qt/qtsvg:5 SLOT=0 SRC_URI=mirror://sourceforge/qjackctl/qjackctl-0.9.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3145221ab5a36565a64fabc4f441563a diff --git a/metadata/md5-cache/media-sound/qjackctl-0.9.9 b/metadata/md5-cache/media-sound/qjackctl-0.9.9 index 64f81664bcd7..26b1547292f2 100644 --- a/metadata/md5-cache/media-sound/qjackctl-0.9.9 +++ b/metadata/md5-cache/media-sound/qjackctl-0.9.9 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 virtual/jack alsa? ( media-libs/alsa-lib ) dbus? ( dev-qt/qtdbus:5 ) portaudio? ( media-libs/portaudio ) dev-qt/qtsvg:5 SLOT=0 SRC_URI=mirror://sourceforge/qjackctl/qjackctl-0.9.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=24d16de3e5dc7b6ad7c1b5e15e6feee7 diff --git a/metadata/md5-cache/media-sound/qjackctl-9999 b/metadata/md5-cache/media-sound/qjackctl-9999 index afdee2d0a911..006349b5b79e 100644 --- a/metadata/md5-cache/media-sound/qjackctl-9999 +++ b/metadata/md5-cache/media-sound/qjackctl-9999 @@ -11,5 +11,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 virtual/jack alsa? ( media-libs/alsa-lib ) dbus? ( dev-qt/qtdbus:5 ) portaudio? ( media-libs/portaudio ) dev-qt/qtsvg:5 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=52abf73603cada8ece5c79e8f84a9142 diff --git a/metadata/md5-cache/media-sound/qmmp-1.6.1-r2 b/metadata/md5-cache/media-sound/qmmp-1.6.1-r2 index 31bdee7bb86f..ec685cff7c8c 100644 --- a/metadata/md5-cache/media-sound/qmmp-1.6.1-r2 +++ b/metadata/md5-cache/media-sound/qmmp-1.6.1-r2 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsql:5 dev-qt/ REQUIRED_USE=gnome? ( dbus ) shout? ( soxr vorbis ) udisks? ( dbus ) SLOT=0 SRC_URI=http://qmmp.ylsoftware.com/files/qmmp-1.6.1.tar.bz2 mirror://sourceforge/qmmp-dev/files/qmmp-1.6.1.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cc31b6ab3e3a3562d3a416f0632cdde5 diff --git a/metadata/md5-cache/media-sound/qmmp-9999 b/metadata/md5-cache/media-sound/qmmp-9999 index d133c83d906c..bd91fd7a976a 100644 --- a/metadata/md5-cache/media-sound/qmmp-9999 +++ b/metadata/md5-cache/media-sound/qmmp-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsql:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-libs/taglib x11-libs/libX11 aac? ( media-libs/faad2 ) alsa? ( media-libs/alsa-lib ) archive? ( app-arch/libarchive ) bs2b? ( media-libs/libbs2b ) cdda? ( dev-libs/libcdio:= dev-libs/libcdio-paranoia ) curl? ( net-misc/curl ) dbus? ( dev-qt/qtdbus:5 ) enca? ( app-i18n/enca ) ffmpeg? ( media-video/ffmpeg:= ) flac? ( media-libs/flac:= ) game? ( media-libs/game-music-emu ) jack? ( media-libs/libsamplerate virtual/jack ) ladspa? ( media-plugins/cmt-plugins ) mad? ( media-libs/libmad:= media-sound/mpg123:= ) midi? ( media-sound/wildmidi ) mms? ( media-libs/libmms ) mplayer? ( media-video/mplayer ) musepack? ( >=media-sound/musepack-tools-444 ) opus? ( media-libs/opusfile ) pipewire? ( media-video/pipewire ) projectm? ( dev-qt/qtgui:5[-gles2-only] dev-qt/qtopengl:5 media-libs/libprojectm:= ) pulseaudio? ( >=media-sound/pulseaudio-0.9.9 ) qtmedia? ( dev-qt/qtmultimedia:5 ) scrobbler? ( net-misc/curl ) shout? ( media-libs/libshout ) sid? ( >=media-libs/libsidplayfp-1.1.0 ) sndfile? ( media-libs/libsndfile ) soxr? ( media-libs/soxr ) udisks? ( sys-fs/udisks:2 ) vorbis? ( media-libs/libogg media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) xmp? ( media-libs/libxmp ) REQUIRED_USE=gnome? ( dbus ) shout? ( soxr vorbis ) udisks? ( dbus ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 subversion a98eebf2efc83b38f8d1982b8a522e75 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 subversion a98eebf2efc83b38f8d1982b8a522e75 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=472aeb2af858a0559c4452a0b647e3bb diff --git a/metadata/md5-cache/media-sound/qsampler-0.9.6 b/metadata/md5-cache/media-sound/qsampler-0.9.6 index 26eaccf3d4c0..317991d64d6e 100644 --- a/metadata/md5-cache/media-sound/qsampler-0.9.6 +++ b/metadata/md5-cache/media-sound/qsampler-0.9.6 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-libs/alsa-lib media-libs/liblscp:= x11-libs/libX11 libgig? ( media-libs/libgig:= ) media-sound/linuxsampler SLOT=0 SRC_URI=mirror://sourceforge/qsampler/0.9.6/qsampler-0.9.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e3bc35fec74ee0ea492ed7241b16c49 diff --git a/metadata/md5-cache/media-sound/qsampler-0.9.7 b/metadata/md5-cache/media-sound/qsampler-0.9.7 index af16680be387..ef7304c9767b 100644 --- a/metadata/md5-cache/media-sound/qsampler-0.9.7 +++ b/metadata/md5-cache/media-sound/qsampler-0.9.7 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-libs/alsa-lib media-libs/liblscp:= x11-libs/libX11 libgig? ( media-libs/libgig:= ) media-sound/linuxsampler SLOT=0 SRC_URI=mirror://sourceforge/qsampler/0.9.7/qsampler-0.9.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dc6e14755df080208a180b0d9d9b5eb5 diff --git a/metadata/md5-cache/media-sound/qsampler-0.9.8 b/metadata/md5-cache/media-sound/qsampler-0.9.8 index 4ee95aa5f4ac..46ebbe2fefa7 100644 --- a/metadata/md5-cache/media-sound/qsampler-0.9.8 +++ b/metadata/md5-cache/media-sound/qsampler-0.9.8 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-libs/alsa-lib media-libs/liblscp:= x11-libs/libX11 libgig? ( media-libs/libgig:= ) media-sound/linuxsampler SLOT=0 SRC_URI=mirror://sourceforge/qsampler/0.9.8/qsampler-0.9.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dc6e14755df080208a180b0d9d9b5eb5 diff --git a/metadata/md5-cache/media-sound/qsampler-9999 b/metadata/md5-cache/media-sound/qsampler-9999 index ef9385b95f16..2ffc69d8802a 100644 --- a/metadata/md5-cache/media-sound/qsampler-9999 +++ b/metadata/md5-cache/media-sound/qsampler-9999 @@ -11,5 +11,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-libs/alsa-lib media-libs/liblscp:= x11-libs/libX11 libgig? ( media-libs/libgig:= ) media-sound/linuxsampler SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3f03f7794b6eb5c59efdf6d7e7b3993a diff --git a/metadata/md5-cache/media-sound/qsynth-0.9.8 b/metadata/md5-cache/media-sound/qsynth-0.9.8 index 8752a79e08b4..326652048b45 100644 --- a/metadata/md5-cache/media-sound/qsynth-0.9.8 +++ b/metadata/md5-cache/media-sound/qsynth-0.9.8 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 med REQUIRED_USE=|| ( alsa jack pulseaudio ) SLOT=0 SRC_URI=mirror://sourceforge/qsynth/qsynth-0.9.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6c1fca8fba478a1a10a6b2943220bc95 diff --git a/metadata/md5-cache/media-sound/qsynth-0.9.9 b/metadata/md5-cache/media-sound/qsynth-0.9.9 index 9220c3467511..d36c455cae6b 100644 --- a/metadata/md5-cache/media-sound/qsynth-0.9.9 +++ b/metadata/md5-cache/media-sound/qsynth-0.9.9 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 med REQUIRED_USE=|| ( alsa jack pulseaudio ) SLOT=0 SRC_URI=mirror://sourceforge/qsynth/qsynth-0.9.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=029021d790751bfe14f346fb1d1e0f4b diff --git a/metadata/md5-cache/media-sound/qsynth-9999 b/metadata/md5-cache/media-sound/qsynth-9999 index 6f2d5ca8d1fd..be39f4a7327b 100644 --- a/metadata/md5-cache/media-sound/qsynth-9999 +++ b/metadata/md5-cache/media-sound/qsynth-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?] REQUIRED_USE=|| ( alsa jack pulseaudio ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e1378bb6a276fa7048e4fba66299fa5f diff --git a/metadata/md5-cache/media-sound/qtagger-1.0.1_p20150402 b/metadata/md5-cache/media-sound/qtagger-1.0.1_p20150402 index da7c11989736..1989d8f04c45 100644 --- a/metadata/md5-cache/media-sound/qtagger-1.0.1_p20150402 +++ b/metadata/md5-cache/media-sound/qtagger-1.0.1_p20150402 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 media-libs/taglib SLOT=0 SRC_URI=https://github.com/DOOMer/qtagger/archive/0e74fe022ddbb689f7bae0460a21be303114029b.tar.gz -> qtagger-1.0.1_p20150402.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4d0b865e491f9670ca8a4f485a75ce8c diff --git a/metadata/md5-cache/media-sound/qtractor-0.9.29 b/metadata/md5-cache/media-sound/qtractor-0.9.29 index 3192e1590950..7c8adfb5580e 100644 --- a/metadata/md5-cache/media-sound/qtractor-0.9.29 +++ b/metadata/md5-cache/media-sound/qtractor-0.9.29 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/ REQUIRED_USE=dssi? ( ladspa ) SLOT=0 SRC_URI=mirror://sourceforge/qtractor/qtractor-0.9.29.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=682e9967e6a333ce60aeb0787c9a513e diff --git a/metadata/md5-cache/media-sound/qtractor-0.9.30 b/metadata/md5-cache/media-sound/qtractor-0.9.30 index d4ba330b4ed2..02bd79445f53 100644 --- a/metadata/md5-cache/media-sound/qtractor-0.9.30 +++ b/metadata/md5-cache/media-sound/qtractor-0.9.30 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/ REQUIRED_USE=dssi? ( ladspa ) SLOT=0 SRC_URI=mirror://sourceforge/qtractor/qtractor-0.9.30.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4f4633c3c075a28dcdfc48df8e8d1b43 diff --git a/metadata/md5-cache/media-sound/qtractor-0.9.31 b/metadata/md5-cache/media-sound/qtractor-0.9.31 index 49b845a5f6fc..f52867dbdc4b 100644 --- a/metadata/md5-cache/media-sound/qtractor-0.9.31 +++ b/metadata/md5-cache/media-sound/qtractor-0.9.31 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/ REQUIRED_USE=dssi? ( ladspa ) SLOT=0 SRC_URI=mirror://sourceforge/qtractor/qtractor-0.9.31.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9329b8c4755299cf223de9f9218515f8 diff --git a/metadata/md5-cache/media-sound/rosegarden-22.12.1 b/metadata/md5-cache/media-sound/rosegarden-22.12.1 index 7b09b23f5424..294c63999839 100644 --- a/metadata/md5-cache/media-sound/rosegarden-22.12.1 +++ b/metadata/md5-cache/media-sound/rosegarden-22.12.1 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport: RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/rosegarden/rosegarden-22.12.1.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b3a654e729d94f1a8788467b93f62e0b diff --git a/metadata/md5-cache/media-sound/scream-4.0 b/metadata/md5-cache/media-sound/scream-4.0 index 30710ca7b426..241399348e8b 100644 --- a/metadata/md5-cache/media-sound/scream-4.0 +++ b/metadata/md5-cache/media-sound/scream-4.0 @@ -11,5 +11,5 @@ LICENSE=Ms-PL RDEPEND=alsa? ( media-libs/alsa-lib ) jack? ( media-libs/soxr virtual/jack ) pcap? ( net-libs/libpcap ) pulseaudio? ( media-sound/pulseaudio ) SLOT=0 SRC_URI=https://github.com/duncanthrax/scream/archive/4.0.tar.gz -> scream-4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8df0b0838c15b9ae13db044374943b7f diff --git a/metadata/md5-cache/media-sound/scream-9999 b/metadata/md5-cache/media-sound/scream-9999 index 2d920e4baeb6..336ddf441fbe 100644 --- a/metadata/md5-cache/media-sound/scream-9999 +++ b/metadata/md5-cache/media-sound/scream-9999 @@ -10,5 +10,5 @@ LICENSE=Ms-PL PROPERTIES=live RDEPEND=alsa? ( media-libs/alsa-lib ) jack? ( media-libs/soxr virtual/jack ) pcap? ( net-libs/libpcap ) pulseaudio? ( media-sound/pulseaudio ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8df0b0838c15b9ae13db044374943b7f diff --git a/metadata/md5-cache/media-sound/snapcast-0.26.0-r2 b/metadata/md5-cache/media-sound/snapcast-0.26.0-r2 index bd08cc9a555e..902f3df72716 100644 --- a/metadata/md5-cache/media-sound/snapcast-0.26.0-r2 +++ b/metadata/md5-cache/media-sound/snapcast-0.26.0-r2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= media-libs/alsa-lib client? ( acct-user/snapclient ) ex REQUIRED_USE=|| ( server client ) SLOT=0 SRC_URI=https://github.com/badaix/snapcast/archive/v0.26.0.tar.gz -> snapcast-0.26.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1583c2296d56b510d7ab96100bf521d7 diff --git a/metadata/md5-cache/media-sound/snapcast-0.27.0 b/metadata/md5-cache/media-sound/snapcast-0.27.0 index 8891e8595ebb..4ce872af02ed 100644 --- a/metadata/md5-cache/media-sound/snapcast-0.27.0 +++ b/metadata/md5-cache/media-sound/snapcast-0.27.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= media-libs/alsa-lib client? ( acct-user/snapclient ) ex REQUIRED_USE=|| ( server client ) SLOT=0 SRC_URI=https://github.com/badaix/snapcast/archive/v0.27.0.tar.gz -> snapcast-0.27.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6f7070fda2236b872f1888ad40461c98 diff --git a/metadata/md5-cache/media-sound/soundkonverter-3.0.1-r3 b/metadata/md5-cache/media-sound/soundkonverter-3.0.1-r3 index b95a3808b36b..7b4ac4844181 100644 --- a/metadata/md5-cache/media-sound/soundkonverter-3.0.1-r3 +++ b/metadata/md5-cache/media-sound/soundkonverter-3.0.1-r3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 kde-apps/libkcddb:5 kde-frameworks/kcompletion:5 kde-frameworks/kconfig:5 kde-frameworks/kconfigwidgets:5 kde-frameworks/kcoreaddons:5 kde-frameworks/kdelibs4support:5 kde-frameworks/ki18n:5 kde-frameworks/kio:5 kde-frameworks/knotifications:5 kde-frameworks/kservice:5 kde-frameworks/ktextwidgets:5 kde-frameworks/kwidgetsaddons:5 kde-frameworks/kxmlgui:5 kde-frameworks/solid:5 >=media-libs/phonon-4.11.0[qt5(+)] >=media-libs/taglib-1.10 media-sound/cdparanoia || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=https://github.com/dfaust/soundkonverter/archive/v3.0.1.tar.gz -> soundkonverter-3.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d451a4a15c7ef89ee1918e56f588b764 diff --git a/metadata/md5-cache/media-sound/strawberry-1.0.14-r1 b/metadata/md5-cache/media-sound/strawberry-1.0.14-r1 index bc30d3a5303c..632503c6437f 100644 --- a/metadata/md5-cache/media-sound/strawberry-1.0.14-r1 +++ b/metadata/md5-cache/media-sound/strawberry-1.0.14-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-db/sqlite:= dev-libs/glib:2 dev-libs/protobuf:= dev-qt/qtconcurrent: REQUIRED_USE=cdda? ( gstreamer ) || ( gstreamer vlc ) SLOT=0 SRC_URI=https://github.com/strawberrymusicplayer/strawberry/releases/download/1.0.14/strawberry-1.0.14.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2a7acdfb222f5a6c1e327e1ebf89cdae diff --git a/metadata/md5-cache/media-sound/strawberry-1.0.15 b/metadata/md5-cache/media-sound/strawberry-1.0.15 index 367d0cb95cf3..f94c31caed05 100644 --- a/metadata/md5-cache/media-sound/strawberry-1.0.15 +++ b/metadata/md5-cache/media-sound/strawberry-1.0.15 @@ -13,5 +13,5 @@ RDEPEND=dev-db/sqlite:= dev-libs/glib:2 dev-libs/protobuf:= dev-qt/qtconcurrent: REQUIRED_USE=cdda? ( gstreamer ) || ( gstreamer vlc ) SLOT=0 SRC_URI=https://github.com/strawberrymusicplayer/strawberry/releases/download/1.0.15/strawberry-1.0.15.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7373f49452340d8e86678d590d278aa9 diff --git a/metadata/md5-cache/media-sound/strawberry-9999 b/metadata/md5-cache/media-sound/strawberry-9999 index bdb12e00c6f9..ccb561e6027c 100644 --- a/metadata/md5-cache/media-sound/strawberry-9999 +++ b/metadata/md5-cache/media-sound/strawberry-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=dev-db/sqlite:= dev-libs/glib:2 dev-libs/protobuf:= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtsql:5[sqlite] dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-libs/alsa-lib media-libs/taglib x11-libs/libX11 cdda? ( dev-libs/libcdio:= ) gstreamer? ( media-libs/chromaprint:= media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) icu? ( dev-libs/icu:= ) ipod? ( media-libs/libgpod ) moodbar? ( sci-libs/fftw:3.0 ) mtp? ( media-libs/libmtp ) pulseaudio? ( media-sound/pulseaudio ) vlc? ( media-video/vlc ) gstreamer? ( media-plugins/gst-plugins-meta:1.0 media-plugins/gst-plugins-soup:1.0 media-plugins/gst-plugins-taglib:1.0 ) mtp? ( gnome-base/gvfs[mtp] ) udisks? ( sys-fs/udisks:2 ) REQUIRED_USE=cdda? ( gstreamer ) || ( gstreamer vlc ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7373f49452340d8e86678d590d278aa9 diff --git a/metadata/md5-cache/media-sound/supercollider-3.11.2 b/metadata/md5-cache/media-sound/supercollider-3.11.2 index 3ef63e342310..b88aa170a184 100644 --- a/metadata/md5-cache/media-sound/supercollider-3.11.2 +++ b/metadata/md5-cache/media-sound/supercollider-3.11.2 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/yaml-cpp:= dev-libs/boost:= media-libs/alsa-lib sys-libs/readlin REQUIRED_USE=qt5? ( X ) webengine? ( qt5 ) SLOT=0 SRC_URI=https://github.com/supercollider/supercollider/releases/download/Version-3.11.2/SuperCollider-3.11.2-Source.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dab90207198bd68bc003c9260455c90e diff --git a/metadata/md5-cache/media-sound/vmpk-0.8.7 b/metadata/md5-cache/media-sound/vmpk-0.8.7 index 7a0453fc4b16..c648c7fbe986 100644 --- a/metadata/md5-cache/media-sound/vmpk-0.8.7 +++ b/metadata/md5-cache/media-sound/vmpk-0.8.7 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 >=media-sound/drumstick-2.6.0 x11-libs/libxcb dbus? ( dev-qt/qtdbus:5 ) dev-qt/qtsvg:5 SLOT=0 SRC_URI=mirror://sourceforge/vmpk/vmpk-0.8.7.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3988efd9a83fe48b5fe368dd13bae6a4 diff --git a/metadata/md5-cache/media-sound/wildmidi-0.4.5 b/metadata/md5-cache/media-sound/wildmidi-0.4.5 index 2e40abaf6249..98d863fb103f 100644 --- a/metadata/md5-cache/media-sound/wildmidi-0.4.5 +++ b/metadata/md5-cache/media-sound/wildmidi-0.4.5 @@ -12,5 +12,5 @@ RDEPEND=player? ( alsa? ( media-libs/alsa-lib ) openal? ( media-libs/openal ) ) REQUIRED_USE=player? ( ^^ ( alsa oss openal ) ) SLOT=0 SRC_URI=https://github.com/Mindwerks/wildmidi/archive/wildmidi-0.4.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=eb33f93428c3803c589c60d09ddc4615 diff --git a/metadata/md5-cache/media-sound/yarock-1.4.0-r3 b/metadata/md5-cache/media-sound/yarock-1.4.0-r3 index 744c5d8b9f26..649638fff4ee 100644 --- a/metadata/md5-cache/media-sound/yarock-1.4.0-r3 +++ b/metadata/md5-cache/media-sound/yarock-1.4.0-r3 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-cpp/htmlcxx dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsql:5[sqlite] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-libs/taglib x11-libs/libX11 mpv? ( media-video/mpv:=[libmpv] ) phonon? ( >=media-libs/phonon-4.11.0 ) vlc? ( media-video/vlc:= ) SLOT=0 SRC_URI=https://launchpad.net/yarock/1.x/1.4.0/+download/Yarock_1.4.0_Sources.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3a5017a25901bac4a9c6173df44900bf diff --git a/metadata/md5-cache/media-sound/yoshimi-2.2.2.1 b/metadata/md5-cache/media-sound/yoshimi-2.2.2.1 deleted file mode 100644 index b29ac26901ce..000000000000 --- a/metadata/md5-cache/media-sound/yoshimi-2.2.2.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=dev-libs/mxml media-libs/alsa-lib media-libs/fontconfig media-libs/libsndfile sci-libs/fftw:3.0= sys-libs/ncurses:0= sys-libs/readline:0= sys-libs/zlib virtual/jack x11-libs/cairo[X] x11-libs/fltk:1[opengl] lv2? ( media-libs/lv2 ) -DESCRIPTION=Software synthesizer based on ZynAddSubFX -EAPI=8 -HOMEPAGE=https://yoshimi.github.io/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=cmake flag-o-matic xdg -IUSE=+lv2 -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/mxml media-libs/alsa-lib media-libs/fontconfig media-libs/libsndfile sci-libs/fftw:3.0= sys-libs/ncurses:0= sys-libs/readline:0= sys-libs/zlib virtual/jack x11-libs/cairo[X] x11-libs/fltk:1[opengl] lv2? ( media-libs/lv2 ) -SLOT=0 -SRC_URI=https://github.com/Yoshimi/yoshimi/archive/2.2.2.1.tar.gz -> yoshimi-2.2.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=eec97c1054cf3a7eeaa47134ac81f162 diff --git a/metadata/md5-cache/media-sound/yoshimi-2.2.3 b/metadata/md5-cache/media-sound/yoshimi-2.2.3 index da9be117bf53..78bbe36f356b 100644 --- a/metadata/md5-cache/media-sound/yoshimi-2.2.3 +++ b/metadata/md5-cache/media-sound/yoshimi-2.2.3 @@ -7,10 +7,10 @@ HOMEPAGE=https://yoshimi.github.io/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=cmake flag-o-matic xdg IUSE=+lv2 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=dev-libs/mxml media-libs/alsa-lib media-libs/fontconfig media-libs/libsndfile sci-libs/fftw:3.0= sys-libs/ncurses:0= sys-libs/readline:0= sys-libs/zlib virtual/jack x11-libs/cairo[X] x11-libs/fltk:1[opengl] lv2? ( media-libs/lv2 ) SLOT=0 SRC_URI=https://github.com/Yoshimi/yoshimi/archive/2.2.3.tar.gz -> yoshimi-2.2.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=a5c213b9599607cccde3839c5b1c2d08 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=c983e5dd55d31d4cceb01256b46eb22b diff --git a/metadata/md5-cache/media-sound/zynaddsubfx-3.0.6-r1 b/metadata/md5-cache/media-sound/zynaddsubfx-3.0.6-r1 index a093bda719bf..01088ddb8856 100644 --- a/metadata/md5-cache/media-sound/zynaddsubfx-3.0.6-r1 +++ b/metadata/md5-cache/media-sound/zynaddsubfx-3.0.6-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/mxml media-libs/liblo sci-libs/fftw:3.0 sys-libs/zlib alsa? ( m REQUIRED_USE=|| ( alsa jack portaudio ) SLOT=0 SRC_URI=mirror://sourceforge/zynaddsubfx/zynaddsubfx-3.0.6.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e265e72617e36adc8b94cbc70b3eb0cf diff --git a/metadata/md5-cache/media-tv/Manifest.gz b/metadata/md5-cache/media-tv/Manifest.gz index 4ace2b992385..57d0130b9370 100644 Binary files a/metadata/md5-cache/media-tv/Manifest.gz and b/metadata/md5-cache/media-tv/Manifest.gz differ diff --git a/metadata/md5-cache/media-tv/kodi-19.4-r3 b/metadata/md5-cache/media-tv/kodi-19.4-r3 index 58d42c0d1d3c..e0dbcb87892d 100644 --- a/metadata/md5-cache/media-tv/kodi-19.4-r3 +++ b/metadata/md5-cache/media-tv/kodi-19.4-r3 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.3.2-Matrix-19.1.tar.gz -> ffmpeg-kodi-4.3.2-Matrix-19.1.tar.gz ) https://github.com/xbmc/xbmc/archive/19.4-Matrix.tar.gz -> kodi-19.4-Matrix.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b08e14c062ad1b6eaa630237e45d5c68 diff --git a/metadata/md5-cache/media-tv/kodi-19.4-r4 b/metadata/md5-cache/media-tv/kodi-19.4-r4 index 30bc92d6b35d..aa31f15f8e27 100644 --- a/metadata/md5-cache/media-tv/kodi-19.4-r4 +++ b/metadata/md5-cache/media-tv/kodi-19.4-r4 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.3.2-Matrix-19.1.tar.gz -> ffmpeg-kodi-4.3.2-Matrix-19.1.tar.gz ) https://github.com/xbmc/xbmc/archive/19.4-Matrix.tar.gz -> kodi-19.4-Matrix.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8572bd5e563320e36a5c50024c30cc2b diff --git a/metadata/md5-cache/media-tv/kodi-19.5 b/metadata/md5-cache/media-tv/kodi-19.5 index f1467cd0d3a4..566c0280b8aa 100644 --- a/metadata/md5-cache/media-tv/kodi-19.5 +++ b/metadata/md5-cache/media-tv/kodi-19.5 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.3.2-Matrix-19.1.tar.gz -> ffmpeg-kodi-4.3.2-Matrix-19.1.tar.gz ) https://github.com/xbmc/xbmc/archive/19.5-Matrix.tar.gz -> kodi-19.5-Matrix.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6e13795ffd425a671408e16ec717005f diff --git a/metadata/md5-cache/media-tv/kodi-19.9999 b/metadata/md5-cache/media-tv/kodi-19.9999 index 9be28a1ada3a..7113f665ec1c 100644 --- a/metadata/md5-cache/media-tv/kodi-19.9999 +++ b/metadata/md5-cache/media-tv/kodi-19.9999 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.3.2-Matrix-19.1.tar.gz -> ffmpeg-kodi-4.3.2-Matrix-19.1.tar.gz ) -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dd8ac9e4b6b23c27b84ff36097b3d2df diff --git a/metadata/md5-cache/media-tv/kodi-9999 b/metadata/md5-cache/media-tv/kodi-9999 index 6fff9d0a80c3..69eee15b5bef 100644 --- a/metadata/md5-cache/media-tv/kodi-9999 +++ b/metadata/md5-cache/media-tv/kodi-9999 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_11 ) || ( gbm wayland X ) ?? ( ma RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.3-Next-Nexus-Alpha2.tar.gz -> libdvdcss-1.4.3-Next-Nexus-Alpha2.tar.gz https://github.com/xbmc/libdvdread/archive/6.1.3-Next-Nexus-Alpha2.tar.gz -> libdvdread-6.1.3-Next-Nexus-Alpha2.tar.gz https://github.com/xbmc/libdvdnav/archive/6.1.1-Next-Nexus-Alpha2.tar.gz -> libdvdnav-6.1.1-Next-Nexus-Alpha2.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/5.1.2-Nexus-Alpha3.tar.gz -> ffmpeg-kodi-5.1.2-Nexus-Alpha3.tar.gz ) -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a8242b552a62c488dd445fa7b050f1f2 diff --git a/metadata/md5-cache/media-tv/v4l-utils-1.24.1 b/metadata/md5-cache/media-tv/v4l-utils-1.24.1 new file mode 100644 index 000000000000..39a13440dae8 --- /dev/null +++ b/metadata/md5-cache/media-tv/v4l-utils-1.24.1 @@ -0,0 +1,16 @@ +BDEPEND=sys-devel/gettext virtual/pkgconfig bpf? ( sys-devel/clang:*[llvm_targets_BPF] ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig +DEFINED_PHASES=configure install postinst postrm preinst prepare pretend setup +DEPEND=>=media-libs/libv4l-1.24.1[dvb?] bpf? ( dev-libs/libbpf:= virtual/libelf:= ) udev? ( virtual/libudev ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 opengl? ( dev-qt/qtopengl:5[-gles2(-)] virtual/opengl ) media-libs/alsa-lib ) !media-tv/v4l2-ctl !=media-libs/libv4l-1.24.1[dvb?] bpf? ( dev-libs/libbpf:= virtual/libelf:= ) udev? ( virtual/libudev ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 opengl? ( dev-qt/qtopengl:5[-gles2(-)] virtual/opengl ) media-libs/alsa-lib ) !media-tv/v4l2-ctl ! atomicparsley-0.9.6_p20210715_p151551.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0afe2fb681886bbf318bdcf50aeffb51 diff --git a/metadata/md5-cache/media-video/avidemux-2.8.1 b/metadata/md5-cache/media-video/avidemux-2.8.1 index a4adeb3d68c0..2db054ac6928 100644 --- a/metadata/md5-cache/media-video/avidemux-2.8.1 +++ b/metadata/md5-cache/media-video/avidemux-2.8.1 @@ -13,5 +13,5 @@ PDEPEND=~media-libs/avidemux-plugins-2.8.1:2.7[opengl?,gui?] RDEPEND=~media-libs/avidemux-core-2.8.1:2.7[nls?,sdl?,vaapi?,vdpau?,xv?] opengl? ( virtual/opengl ) gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 ) vaapi? ( media-libs/libva:= ) nls? ( virtual/libintl ) ! avidemux-2.8.1.tar.gz https://github.com/mean00/avidemux2_i18n/archive/2.8.1.tar.gz -> avidemux-i18n-2.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5df182a6a97008edc38e99d6ecc534fd diff --git a/metadata/md5-cache/media-video/bashnapi-2.0.0 b/metadata/md5-cache/media-video/bashnapi-2.0.0 index 6d128e68888f..4ca69537d181 100644 --- a/metadata/md5-cache/media-video/bashnapi-2.0.0 +++ b/metadata/md5-cache/media-video/bashnapi-2.0.0 @@ -10,5 +10,5 @@ RDEPEND=app-arch/p7zip net-misc/wget sys-apps/debianutils sys-apps/file RESTRICT=test SLOT=0 SRC_URI=https://download.sourceforge.net/bashnapi/napi-2.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1f802e4cce33067c285868701a702da0 diff --git a/metadata/md5-cache/media-video/bino-2.0 b/metadata/md5-cache/media-video/bino-2.0 index 29444fcae5ac..9e4ff6646431 100644 --- a/metadata/md5-cache/media-video/bino-2.0 +++ b/metadata/md5-cache/media-video/bino-2.0 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-qt/qtbase:6[gui,opengl,widgets] dev-qt/qtmultimedia:6 SLOT=0 SRC_URI=https://bino3d.org/releases/bino-2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=99d43c41d572dc670df4e0ce79fc61d7 diff --git a/metadata/md5-cache/media-video/ccextractor-0.88 b/metadata/md5-cache/media-video/ccextractor-0.88 index c05ef09654ab..fc48854218fe 100644 --- a/metadata/md5-cache/media-video/ccextractor-0.88 +++ b/metadata/md5-cache/media-video/ccextractor-0.88 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=media-libs/libpng:0= sys-libs/zlib:= SLOT=0 SRC_URI=https://github.com/CCExtractor/ccextractor/archive/v0.88.tar.gz -> ccextractor-0.88.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f073cc1ae0803da91045376c8ba22619 diff --git a/metadata/md5-cache/media-video/ffmpegthumbnailer-2.2.2 b/metadata/md5-cache/media-video/ffmpegthumbnailer-2.2.2 index 91cf539381fd..721e79239014 100644 --- a/metadata/md5-cache/media-video/ffmpegthumbnailer-2.2.2 +++ b/metadata/md5-cache/media-video/ffmpegthumbnailer-2.2.2 @@ -13,5 +13,5 @@ REQUIRED_USE=gnome? ( gtk ) test? ( png jpeg ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dirkvdb/ffmpegthumbnailer/releases/download/2.2.2/ffmpegthumbnailer-2.2.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c6da36dd3f5e55b950bc10ab243be6ce diff --git a/metadata/md5-cache/media-video/ffmpegthumbnailer-2.2.2-r1 b/metadata/md5-cache/media-video/ffmpegthumbnailer-2.2.2-r1 index 05e1c94b07ff..d6fcce5a628a 100644 --- a/metadata/md5-cache/media-video/ffmpegthumbnailer-2.2.2-r1 +++ b/metadata/md5-cache/media-video/ffmpegthumbnailer-2.2.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=gnome? ( gtk ) test? ( png jpeg ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dirkvdb/ffmpegthumbnailer/releases/download/2.2.2/ffmpegthumbnailer-2.2.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aa3f7ea41337a7c464922432da442c98 diff --git a/metadata/md5-cache/media-video/hevc-hm-17.0 b/metadata/md5-cache/media-video/hevc-hm-17.0 new file mode 100644 index 000000000000..cb25dd3b10aa --- /dev/null +++ b/metadata/md5-cache/media-video/hevc-hm-17.0 @@ -0,0 +1,12 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=HEVC HM reference software +EAPI=8 +HOMEPAGE=https://hevc.hhi.fraunhofer.de/ +INHERIT=cmake +KEYWORDS=~amd64 ~mips ~riscv +LICENSE=BSD +SLOT=0 +SRC_URI=https://vcgit.hhi.fraunhofer.de/jvet/HM/-/archive/HM-17.0/HM-HM-17.0.tar.gz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=047b5cb3219f0c9cf534497e414327f7 diff --git a/metadata/md5-cache/media-video/jellyfin-media-player-1.7.1-r1 b/metadata/md5-cache/media-video/jellyfin-media-player-1.7.1-r1 index 66a40327a3d7..d824e0bd1dbe 100644 --- a/metadata/md5-cache/media-video/jellyfin-media-player-1.7.1-r1 +++ b/metadata/md5-cache/media-video/jellyfin-media-player-1.7.1-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 BSD MIT RDEPEND=dev-libs/libcec dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtquickcontrols:5 dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5 dev-qt/qtwidgets:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 media-libs/libsdl2 media-video/mpv:=[libmpv] sys-libs/zlib virtual/opengl x11-libs/libX11 x11-libs/libXrandr dbus? ( dev-qt/qtdbus:5 ) ~media-video/jellyfin-web-jmp-bin-10.8.1 !dbus? ( x11-misc/xdg-utils ) SLOT=0 SRC_URI=https://github.com/jellyfin/jellyfin-media-player/archive/refs/tags/v1.7.1.tar.gz -> jellyfin-media-player-1.7.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4aa93045a860f23c63087ea2c15a5b80 diff --git a/metadata/md5-cache/media-video/jellyfin-media-player-1.8.1 b/metadata/md5-cache/media-video/jellyfin-media-player-1.8.1 index 67f8d2b7418d..0f93cc62a354 100644 --- a/metadata/md5-cache/media-video/jellyfin-media-player-1.8.1 +++ b/metadata/md5-cache/media-video/jellyfin-media-player-1.8.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 BSD MIT RDEPEND=dev-libs/libcec dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtquickcontrols:5 dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5 dev-qt/qtwidgets:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 media-libs/libsdl2 media-video/mpv:=[libmpv] sys-libs/zlib virtual/opengl x11-libs/libX11 x11-libs/libXrandr dbus? ( dev-qt/qtdbus:5 ) ~media-video/jellyfin-web-jmp-bin-10.8.9 !dbus? ( x11-misc/xdg-utils ) SLOT=0 SRC_URI=https://github.com/jellyfin/jellyfin-media-player/archive/refs/tags/v1.8.1.tar.gz -> jellyfin-media-player-1.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=df52895eaf0c74aad20113a9b48d45e5 diff --git a/metadata/md5-cache/media-video/jellyfin-media-player-1.9.0 b/metadata/md5-cache/media-video/jellyfin-media-player-1.9.0 new file mode 100644 index 000000000000..1b978f185e13 --- /dev/null +++ b/metadata/md5-cache/media-video/jellyfin-media-player-1.9.0 @@ -0,0 +1,15 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=dev-libs/libcec dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtquickcontrols:5 dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5 dev-qt/qtwidgets:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 media-libs/libsdl2 media-video/mpv:=[libmpv] sys-libs/zlib virtual/opengl x11-libs/libX11 x11-libs/libXrandr dbus? ( dev-qt/qtdbus:5 ) +DESCRIPTION=Jellyfin Desktop Client based on Plex Media Player +EAPI=8 +HOMEPAGE=https://github.com/jellyfin/jellyfin-media-player +INHERIT=cmake python-any-r1 +IUSE=+dbus +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=dev-libs/libcec dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtquickcontrols:5 dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5 dev-qt/qtwidgets:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 media-libs/libsdl2 media-video/mpv:=[libmpv] sys-libs/zlib virtual/opengl x11-libs/libX11 x11-libs/libXrandr dbus? ( dev-qt/qtdbus:5 ) media-video/jellyfin-web-bin !dbus? ( x11-misc/xdg-utils ) +SLOT=0 +SRC_URI=https://github.com/jellyfin/jellyfin-media-player/archive/refs/tags/v1.9.0.tar.gz -> jellyfin-media-player-1.9.0.tar.gz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=61f9fd0bc1827be89aa7635910f6c435 diff --git a/metadata/md5-cache/media-video/jellyfin-web-bin-10.8.9 b/metadata/md5-cache/media-video/jellyfin-web-bin-10.8.9 new file mode 100644 index 000000000000..88296cde7a19 --- /dev/null +++ b/metadata/md5-cache/media-video/jellyfin-web-bin-10.8.9 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install +DESCRIPTION=Web Client for Jellyfin +EAPI=8 +HOMEPAGE=https://github.com/jellyfin/jellyfin-media-player +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=!media-video/jellyfin-web-jmp-bin +SLOT=0 +SRC_URI=https://repo.jellyfin.org/releases/server/portable/versions/stable/web/10.8.9/jellyfin-web_10.8.9_portable.tar.gz +_md5_=3cdd4c0106c1e9cbc5520ac6460ba65d diff --git a/metadata/md5-cache/media-video/kaffeine-2.0.18-r2 b/metadata/md5-cache/media-video/kaffeine-2.0.18-r2 index f61bd6698bae..452077560eba 100644 --- a/metadata/md5-cache/media-video/kaffeine-2.0.18-r2 +++ b/metadata/md5-cache/media-video/kaffeine-2.0.18-r2 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ handbook? ( FDL-1.3 ) RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtsql-5.15.5:5[sqlite] >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtx11extras-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/kconfig-5.92.0:5 >=kde-frameworks/kconfigwidgets-5.92.0:5 >=kde-frameworks/kcoreaddons-5.92.0:5 >=kde-frameworks/kdbusaddons-5.92.0:5 >=kde-frameworks/ki18n-5.92.0:5 >=kde-frameworks/kio-5.92.0:5 >=kde-frameworks/kwidgetsaddons-5.92.0:5 >=kde-frameworks/kwindowsystem-5.92.0:5 >=kde-frameworks/kxmlgui-5.92.0:5 >=kde-frameworks/solid-5.92.0:5 media-video/vlc[X] x11-libs/libXScrnSaver dvb? ( media-libs/libv4l[dvb] ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/kaffeine/kaffeine-2.0.18.tar.xz https://linuxtv.org/downloads/dtv-scan-tables/kaffeine/scantable.dvb -> kaffeine-2.0.18-scantable.dvb -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af9547078a1f8bad1750ab36d1b126c5 diff --git a/metadata/md5-cache/media-video/obs-studio-28.1.2-r1 b/metadata/md5-cache/media-video/obs-studio-28.1.2-r1 index 4e55e8beef42..b8926df8f4a1 100644 --- a/metadata/md5-cache/media-video/obs-studio-28.1.2-r1 +++ b/metadata/md5-cache/media-video/obs-studio-28.1.2-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/glib:2 dev-libs/jansson:= media-libs/libglvnd media-libs/x264:= REQUIRED_USE=browser? ( || ( alsa pulseaudio ) ) lua? ( ^^ ( lua_single_target_luajit ) ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 SRC_URI=https://github.com/obsproject/obs-studio/archive/28.1.2.tar.gz -> obs-studio-28.1.2.tar.gz https://github.com/obsproject/obs-browser/archive/e2310b02df3e6c184fe6eb6608244a82e37f582e.tar.gz -> obs-browser-e2310b02df3e6c184fe6eb6608244a82e37f582e.tar.gz https://github.com/chriskohlhoff/asio/archive/b73dc1d2c0ecb9452a87c26544d7f71e24342df6.tar.gz -> asio-b73dc1d2c0ecb9452a87c26544d7f71e24342df6.tar.gz https://github.com/nayuki/QR-Code-generator/archive/8518684c0f33d004fa93971be2c6a8eca3167d1e.tar.gz -> qr-8518684c0f33d004fa93971be2c6a8eca3167d1e.tar.gz https://github.com/nlohmann/json/archive/a34e011e24beece3b69397a03fdc650546f052c3.tar.gz -> json-a34e011e24beece3b69397a03fdc650546f052c3.tar.gz https://github.com/obsproject/obs-websocket/archive/5716577019b1ccda01a12db2cba35a023082b7ad.tar.gz -> obs-websocket-5716577019b1ccda01a12db2cba35a023082b7ad.tar.gz https://github.com/zaphoyd/websocketpp/archive/56123c87598f8b1dd471be83ca841ceae07f95ba.tar.gz -> websocketpp-56123c87598f8b1dd471be83ca841ceae07f95ba.tar.gz browser? ( https://cdn-fastly.obsproject.com/downloads/cef_binary_5060_linux64.tar.bz2 ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8a65e7f3faf45ce21871cd22ca73909a diff --git a/metadata/md5-cache/media-video/obs-studio-29.0.2 b/metadata/md5-cache/media-video/obs-studio-29.0.2 index d38eb96064a3..8e0cd55841f1 100644 --- a/metadata/md5-cache/media-video/obs-studio-29.0.2 +++ b/metadata/md5-cache/media-video/obs-studio-29.0.2 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/glib:2 dev-libs/jansson:= media-libs/libglvnd media-libs/libva REQUIRED_USE=browser? ( || ( alsa pulseaudio ) ) lua? ( ^^ ( lua_single_target_luajit ) ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 SRC_URI=https://github.com/obsproject/obs-studio/archive/29.0.2.tar.gz -> obs-studio-29.0.2.tar.gz https://github.com/obsproject/obs-browser/archive/1c2264d722f065646b72ac654f6ddbb6843f9bef.tar.gz -> obs-browser-1c2264d722f065646b72ac654f6ddbb6843f9bef.tar.gz https://github.com/chriskohlhoff/asio/archive/b73dc1d2c0ecb9452a87c26544d7f71e24342df6.tar.gz -> asio-b73dc1d2c0ecb9452a87c26544d7f71e24342df6.tar.gz https://github.com/nayuki/QR-Code-generator/archive/8518684c0f33d004fa93971be2c6a8eca3167d1e.tar.gz -> qr-8518684c0f33d004fa93971be2c6a8eca3167d1e.tar.gz https://github.com/nlohmann/json/archive/a34e011e24beece3b69397a03fdc650546f052c3.tar.gz -> json-a34e011e24beece3b69397a03fdc650546f052c3.tar.gz https://github.com/obsproject/obs-websocket/archive/31f9845b6132e6c1529401292bc1125401e2a324.tar.gz -> obs-websocket-31f9845b6132e6c1529401292bc1125401e2a324.tar.gz https://github.com/zaphoyd/websocketpp/archive/56123c87598f8b1dd471be83ca841ceae07f95ba.tar.gz -> websocketpp-56123c87598f8b1dd471be83ca841ceae07f95ba.tar.gz browser? ( https://cdn-fastly.obsproject.com/downloads/cef_binary_5060_linux64.tar.bz2 ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8ba3d25318f4ee3499583bff1f8b07d0 diff --git a/metadata/md5-cache/media-video/obs-studio-9999 b/metadata/md5-cache/media-video/obs-studio-9999 index 174b2081cfad..fe2009ad8435 100644 --- a/metadata/md5-cache/media-video/obs-studio-9999 +++ b/metadata/md5-cache/media-video/obs-studio-9999 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/glib:2 dev-libs/jansson:= media-libs/libglvnd media-libs/libva REQUIRED_USE=browser? ( || ( alsa pulseaudio ) ) lua? ( ^^ ( lua_single_target_luajit ) ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 SRC_URI=browser? ( https://cdn-fastly.obsproject.com/downloads/cef_binary_5060_linux64.tar.bz2 ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8ba3d25318f4ee3499583bff1f8b07d0 diff --git a/metadata/md5-cache/media-video/obs-v4l2sink-0.1.0_p20181012-r2 b/metadata/md5-cache/media-video/obs-v4l2sink-0.1.0_p20181012-r2 index 883e8c5e3f63..453fee2b8e0b 100644 --- a/metadata/md5-cache/media-video/obs-v4l2sink-0.1.0_p20181012-r2 +++ b/metadata/md5-cache/media-video/obs-v4l2sink-0.1.0_p20181012-r2 @@ -11,5 +11,5 @@ PDEPEND=media-video/v4l2loopback RDEPEND=>=media-video/obs-studio-25.0.8-r1 dev-qt/qtwidgets:5 dev-qt/qtgui:5 dev-qt/qtcore:5 SLOT=0 SRC_URI=https://github.com/CatxFish/obs-v4l2sink/archive/1ec3c8ada0e1040d867ce567f177be55cd278378.tar.gz -> obs-v4l2sink-0.1.0_p20181012.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7e0d4c7f6014ba6de39158cc0b472a7a diff --git a/metadata/md5-cache/media-video/qmplay2-22.10.23 b/metadata/md5-cache/media-video/qmplay2-22.10.23 index 1e0910a1ddfd..d6e9b74aeecf 100644 --- a/metadata/md5-cache/media-video/qmplay2-22.10.23 +++ b/metadata/md5-cache/media-video/qmplay2-22.10.23 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt REQUIRED_USE=audiofilters? ( || ( alsa pipewire portaudio pulseaudio ) ) shaders? ( vulkan ) SLOT=0 SRC_URI=https://github.com/zaps166/QMPlay2/releases/download/22.10.23/QMPlay2-src-22.10.23.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e3a82b149d042a07ec52e4f8740173f3 diff --git a/metadata/md5-cache/media-video/qmplay2-23.02.05 b/metadata/md5-cache/media-video/qmplay2-23.02.05 index 7ab6de55b6d3..97a2e162ad22 100644 --- a/metadata/md5-cache/media-video/qmplay2-23.02.05 +++ b/metadata/md5-cache/media-video/qmplay2-23.02.05 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt REQUIRED_USE=audiofilters? ( || ( alsa pipewire portaudio pulseaudio ) ) shaders? ( vulkan ) SLOT=0 SRC_URI=https://github.com/zaps166/QMPlay2/releases/download/23.02.05/QMPlay2-src-23.02.05.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f6a3731fe84f3acd2bcd3b98df30aa3f diff --git a/metadata/md5-cache/media-video/qmplay2-9999 b/metadata/md5-cache/media-video/qmplay2-9999 index cc1aa360dcaf..4224dbbeab60 100644 --- a/metadata/md5-cache/media-video/qmplay2-9999 +++ b/metadata/md5-cache/media-video/qmplay2-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-video/ffmpeg || ( dev-qt/qtgui:5[X(-)] dev-qt/qtgui:5[xcb(-)] ) alsa? ( media-libs/alsa-lib ) cdio? ( dev-libs/libcdio[cddb] ) extensions? ( dev-qt/qtdeclarative:5 ) gme? ( media-libs/game-music-emu ) libass? ( media-libs/libass ) opengl? ( virtual/opengl ) pipewire? ( media-video/pipewire ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplayfp ) shaders? ( >=media-libs/shaderc-2020.1 ) taglib? ( media-libs/taglib ) vaapi? ( >=media-video/ffmpeg-4.1.3[vaapi] media-libs/libva ) vdpau? ( media-video/ffmpeg[vdpau] ) videofilters? ( dev-qt/qtconcurrent:5 ) vulkan? ( >=dev-qt/qtgui-5.14.1:5[vulkan] >=media-libs/vulkan-loader-1.2.133 ) xv? ( x11-libs/libXv ) REQUIRED_USE=audiofilters? ( || ( alsa pipewire portaudio pulseaudio ) ) shaders? ( vulkan ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=314ce6d63b9e26bb1178b532c9d29186 diff --git a/metadata/md5-cache/media-video/shotcut-22.09.23 b/metadata/md5-cache/media-video/shotcut-22.09.23 index be084242736d..54e0e99aae36 100644 --- a/metadata/md5-cache/media-video/shotcut-22.09.23 +++ b/metadata/md5-cache/media-video/shotcut-22.09.23 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ RDEPEND=dev-qt/qtdeclarative:5[widgets] dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtquickcontrols2:5 dev-qt/qtsql:5 dev-qt/qtwebsockets:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=media-libs/mlt-7.8.0[ffmpeg,frei0r,fftw(+),jack,opengl,qt5,sdl,xml] media-video/ffmpeg dev-qt/qtgraphicaleffects:5 virtual/jack SLOT=0 SRC_URI=https://github.com/mltframework/shotcut/archive/v22.09.23.tar.gz -> shotcut-22.09.23.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=42b1058f58914326244213934aa04470 diff --git a/metadata/md5-cache/media-video/shotcut-22.12.21 b/metadata/md5-cache/media-video/shotcut-22.12.21 index 4dfd553daed2..a6d1d94d66e5 100644 --- a/metadata/md5-cache/media-video/shotcut-22.12.21 +++ b/metadata/md5-cache/media-video/shotcut-22.12.21 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ RDEPEND=dev-qt/qtdeclarative:5[widgets] dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtquickcontrols2:5 dev-qt/qtsql:5 dev-qt/qtwebsockets:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=media-libs/mlt-7.8.0[ffmpeg,frei0r,fftw(+),jack,opengl,qt5,sdl,xml] media-video/ffmpeg dev-qt/qtquickcontrols[widgets] dev-qt/qtgraphicaleffects:5 virtual/jack SLOT=0 SRC_URI=https://github.com/mltframework/shotcut/archive/v22.12.21.tar.gz -> shotcut-22.12.21.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e626efceddbe426f5a73179bb06711dd diff --git a/metadata/md5-cache/media-video/shotcut-9999 b/metadata/md5-cache/media-video/shotcut-9999 index d839c718f625..3786ab224657 100644 --- a/metadata/md5-cache/media-video/shotcut-9999 +++ b/metadata/md5-cache/media-video/shotcut-9999 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ PROPERTIES=live RDEPEND=dev-qt/qtdeclarative:5[widgets] dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtquickcontrols2:5 dev-qt/qtsql:5 dev-qt/qtwebsockets:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=media-libs/mlt-7.8.0[ffmpeg,frei0r,fftw(+),jack,opengl,qt5,sdl,xml] media-video/ffmpeg dev-qt/qtgraphicaleffects:5 virtual/jack SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=42b1058f58914326244213934aa04470 diff --git a/metadata/md5-cache/media-video/simplescreenrecorder-0.4.4 b/metadata/md5-cache/media-video/simplescreenrecorder-0.4.4 index 884cf3ee65ff..24ff928b1760 100644 --- a/metadata/md5-cache/media-video/simplescreenrecorder-0.4.4 +++ b/metadata/md5-cache/media-video/simplescreenrecorder-0.4.4 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 m REQUIRED_USE=abi_x86_32? ( opengl ) SLOT=0 SRC_URI=https://github.com/MaartenBaert/ssr/archive/0.4.4.tar.gz -> simplescreenrecorder-0.4.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=eaa1c5f4a546b07093fcba0ced67f97f diff --git a/metadata/md5-cache/media-video/simplescreenrecorder-0.4.4-r1 b/metadata/md5-cache/media-video/simplescreenrecorder-0.4.4-r1 index d0a67c05aa52..af82ab567b21 100644 --- a/metadata/md5-cache/media-video/simplescreenrecorder-0.4.4-r1 +++ b/metadata/md5-cache/media-video/simplescreenrecorder-0.4.4-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 m REQUIRED_USE=abi_x86_32? ( opengl ) SLOT=0 SRC_URI=https://github.com/MaartenBaert/ssr/archive/0.4.4.tar.gz -> simplescreenrecorder-0.4.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=215ae78cf8f73a5f73dd9afab8238875 diff --git a/metadata/md5-cache/media-video/simplescreenrecorder-9999 b/metadata/md5-cache/media-video/simplescreenrecorder-9999 index 6195fcdd44d8..c46f86c9aa9a 100644 --- a/metadata/md5-cache/media-video/simplescreenrecorder-9999 +++ b/metadata/md5-cache/media-video/simplescreenrecorder-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-libs/alsa-lib:0= media-video/ffmpeg[vorbis?,vpx?,x264?,mp3?,theora?] x11-libs/libX11[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 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/libXi x11-libs/libXinerama virtual/glu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] jack? ( virtual/jack ) opengl? ( media-libs/libglvnd[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] ) pulseaudio? ( media-sound/pulseaudio ) v4l? ( media-libs/libv4l ) REQUIRED_USE=abi_x86_32? ( opengl ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8e1e9c475196e7a37eff7f32852a051 diff --git a/metadata/md5-cache/media-video/subtitlecomposer-0.7.1 b/metadata/md5-cache/media-video/subtitlecomposer-0.7.1 index ee5ba6197364..3b342a741050 100644 --- a/metadata/md5-cache/media-video/subtitlecomposer-0.7.1 +++ b/metadata/md5-cache/media-video/subtitlecomposer-0.7.1 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtwidgets-5.15.2:5 >=kde-frameworks/kco RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/subtitlecomposer/subtitlecomposer-0.7.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=34c9a814c3f0aed990186d5e554e4aa0 diff --git a/metadata/md5-cache/media-video/tsmuxer-2.6.16_p20220706 b/metadata/md5-cache/media-video/tsmuxer-2.6.16_p20220706 index ff58255a35e0..aed8ddad4902 100644 --- a/metadata/md5-cache/media-video/tsmuxer-2.6.16_p20220706 +++ b/metadata/md5-cache/media-video/tsmuxer-2.6.16_p20220706 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=qt5? ( dev-qt/qtmultimedia:5 dev-qt/qtwidgets:5 ) media-libs/freetype sys-libs/zlib SLOT=0 SRC_URI=https://github.com/justdan96/tsMuxer/archive/fafc3cd747457906290df773063ad8022684a33a.tar.gz -> tsmuxer-2.6.16_p20220706.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1d7d8ed1ccbbe5d3417c3df4e0f63442 diff --git a/metadata/md5-cache/media-video/webcamoid-9.0.0 b/metadata/md5-cache/media-video/webcamoid-9.0.0 index c62356fd713b..b1cddca1619f 100644 --- a/metadata/md5-cache/media-video/webcamoid-9.0.0 +++ b/metadata/md5-cache/media-video/webcamoid-9.0.0 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtdeclarati REQUIRED_USE=v4lutils? ( v4l ) SLOT=0 SRC_URI=https://github.com/webcamoid/webcamoid/archive/refs/tags/9.0.0.tar.gz -> webcamoid-9.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1629eff8e36003f3013f240c174b1c71 diff --git a/metadata/md5-cache/media-video/webcamoid-9999 b/metadata/md5-cache/media-video/webcamoid-9999 index 2b7414a0f8b8..4f2e7133bad1 100644 --- a/metadata/md5-cache/media-video/webcamoid-9999 +++ b/metadata/md5-cache/media-video/webcamoid-9999 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtdeclarati REQUIRED_USE=v4lutils? ( v4l ) RESTRICT=mirror SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8eaf3a79417a6408c245900d48643403 diff --git a/metadata/md5-cache/net-analyzer/Manifest.gz b/metadata/md5-cache/net-analyzer/Manifest.gz index 30cbe83004fa..4ca5e8f6c4b3 100644 Binary files a/metadata/md5-cache/net-analyzer/Manifest.gz and b/metadata/md5-cache/net-analyzer/Manifest.gz differ diff --git a/metadata/md5-cache/net-analyzer/arpon-3.0 b/metadata/md5-cache/net-analyzer/arpon-3.0 index cefdfe7f357f..38945d668be4 100644 --- a/metadata/md5-cache/net-analyzer/arpon-3.0 +++ b/metadata/md5-cache/net-analyzer/arpon-3.0 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=dev-libs/libdnet net-libs/libnet:1.1 net-libs/libpcap SLOT=0 SRC_URI=mirror://sourceforge/arpon/ArpON-3.0-ng.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e22adda6b8f0d88528b8728bdcbda4e diff --git a/metadata/md5-cache/net-analyzer/ettercap-0.8.3.1 b/metadata/md5-cache/net-analyzer/ettercap-0.8.3.1 index 08b3e688e445..8b68d6ae0bef 100644 --- a/metadata/md5-cache/net-analyzer/ettercap-0.8.3.1 +++ b/metadata/md5-cache/net-analyzer/ettercap-0.8.3.1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libbsd dev-libs/libpcre dev-libs/openssl:0= net-libs/libnet:1.1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Ettercap/ettercap/archive/v0.8.3.1.tar.gz -> ettercap-0.8.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=05bc8f41cdd6d42e37ba7006ea5b6157 diff --git a/metadata/md5-cache/net-analyzer/ettercap-9999 b/metadata/md5-cache/net-analyzer/ettercap-9999 index 6399777baee1..ef4df6c61c4d 100644 --- a/metadata/md5-cache/net-analyzer/ettercap-9999 +++ b/metadata/md5-cache/net-analyzer/ettercap-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/libbsd dev-libs/libpcre dev-libs/openssl:0= net-libs/libnet:1.1 >=net-libs/libpcap-0.8.1 sys-libs/zlib geoip? ( dev-libs/geoip ) gtk? ( >=dev-libs/atk-1.2.4 >=dev-libs/glib-2.2.2:2 media-libs/freetype x11-libs/cairo x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-2.2.2:2 >=x11-libs/pango-1.2.3 ) ncurses? ( >=sys-libs/ncurses-5.3:= ) plugins? ( >=net-misc/curl-7.26.0 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=20adec3feaec3725a82a63d63ba93492 diff --git a/metadata/md5-cache/net-analyzer/gr-fosphor-0.0_p20210108 b/metadata/md5-cache/net-analyzer/gr-fosphor-0.0_p20210108 index 571d87e9e839..bc59b62a0133 100644 --- a/metadata/md5-cache/net-analyzer/gr-fosphor-0.0_p20210108 +++ b/metadata/md5-cache/net-analyzer/gr-fosphor-0.0_p20210108 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= dev-libs/log4cpp media-libs/freetype >=net-wireless/gnu REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://github.com/osmocom/gr-fosphor/archive/974ab2fe54c25e8b6c37aa4de148ba0625eef652.tar.gz -> gr-fosphor-0.0_p20210108.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d1bfac045109731a71f420be5ae53abe diff --git a/metadata/md5-cache/net-analyzer/gr-fosphor-9999 b/metadata/md5-cache/net-analyzer/gr-fosphor-9999 index b98bf60f8ab3..70b89f25f563 100644 --- a/metadata/md5-cache/net-analyzer/gr-fosphor-9999 +++ b/metadata/md5-cache/net-analyzer/gr-fosphor-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/boost:= dev-libs/log4cpp media-libs/freetype >=net-wireless/gnuradio-3.9:0=[qt5,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] python_single_target_python3_9? ( dev-python/pygccxml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygccxml[python_targets_python3_10(-)] ) glfw? ( >=media-libs/glfw-3 ) virtual/opencl virtual/opengl python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=99cf7b861fa153feeb70fe9edf3feb40 diff --git a/metadata/md5-cache/net-analyzer/gsad-21.4.4 b/metadata/md5-cache/net-analyzer/gsad-21.4.4 index 406324cdaf48..177a1685bdb7 100644 --- a/metadata/md5-cache/net-analyzer/gsad-21.4.4 +++ b/metadata/md5-cache/net-analyzer/gsad-21.4.4 @@ -11,5 +11,5 @@ LICENSE=AGPL-3+ RDEPEND=acct-user/gvm dev-libs/glib:2 dev-libs/libgcrypt:0= dev-libs/libxml2 dev-libs/libxslt >=net-analyzer/gvm-libs-21.4.4 net-libs/gnutls:= net-libs/libmicrohttpd:= >=net-analyzer/gvmd-21.4.4 >=net-analyzer/gsa-21.4.4 net-analyzer/ospd-openvas SLOT=0 SRC_URI=https://github.com/greenbone/gsad/archive/v21.4.4.tar.gz -> gsad-21.4.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6b917a144fac788debbefc632e73e8d1 diff --git a/metadata/md5-cache/net-analyzer/gvm-libs-21.4.4-r3 b/metadata/md5-cache/net-analyzer/gvm-libs-21.4.4-r3 index 561fe8cf0514..5112ebebccda 100644 --- a/metadata/md5-cache/net-analyzer/gvm-libs-21.4.4-r3 +++ b/metadata/md5-cache/net-analyzer/gvm-libs-21.4.4-r3 @@ -12,5 +12,5 @@ RDEPEND=acct-user/gvm app-crypt/gpgme:= dev-libs/glib:2 dev-libs/hiredis:= dev-l RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/greenbone/gvm-libs/archive/v21.4.4.tar.gz -> gvm-libs-21.4.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=257743e7724bb67e927082b999869011 diff --git a/metadata/md5-cache/net-analyzer/gvmd-21.4.5-r5 b/metadata/md5-cache/net-analyzer/gvmd-21.4.5-r5 index da3e8c5b6cb5..c1c0677901cf 100644 --- a/metadata/md5-cache/net-analyzer/gvmd-21.4.5-r5 +++ b/metadata/md5-cache/net-analyzer/gvmd-21.4.5-r5 @@ -12,5 +12,5 @@ RDEPEND=acct-group/gvm acct-user/gvm app-crypt/gpgme:1= dev-db/postgresql:*[uuid RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/greenbone/gvmd/archive/v21.4.5.tar.gz -> gvmd-21.4.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=90520fc8a3533bbeb78977a05510a805 diff --git a/metadata/md5-cache/net-analyzer/icinga2-2.13.6-r1 b/metadata/md5-cache/net-analyzer/icinga2-2.13.6-r1 index e34ba374b367..5719d483b2d0 100644 --- a/metadata/md5-cache/net-analyzer/icinga2-2.13.6-r1 +++ b/metadata/md5-cache/net-analyzer/icinga2-2.13.6-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl:0= dev-libs/boost:=[context] console? ( dev-libs/libedi REQUIRED_USE=!minimal? ( || ( mariadb mysql postgres ) ) SLOT=0 SRC_URI=https://github.com/Icinga/icinga2/archive/v2.13.6.tar.gz -> icinga2-2.13.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=529467850ee9c1f9f8454a41ad546758 diff --git a/metadata/md5-cache/net-analyzer/icinga2-2.13.7 b/metadata/md5-cache/net-analyzer/icinga2-2.13.7 index 74d32e72217f..d3db48dd2d02 100644 --- a/metadata/md5-cache/net-analyzer/icinga2-2.13.7 +++ b/metadata/md5-cache/net-analyzer/icinga2-2.13.7 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl:0= dev-libs/boost:=[context] console? ( dev-libs/libedi REQUIRED_USE=!minimal? ( || ( mariadb mysql postgres ) ) SLOT=0 SRC_URI=https://github.com/Icinga/icinga2/archive/v2.13.7.tar.gz -> icinga2-2.13.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=864d481ae9eba544b67edb70e44860ec diff --git a/metadata/md5-cache/net-analyzer/icinga2-9999 b/metadata/md5-cache/net-analyzer/icinga2-9999 index 2a5e685115e1..8e7615fa5c25 100644 --- a/metadata/md5-cache/net-analyzer/icinga2-9999 +++ b/metadata/md5-cache/net-analyzer/icinga2-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/openssl:0= dev-libs/boost:=[context] console? ( dev-libs/libedit ) mariadb? ( dev-db/mariadb-connector-c:= ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) dev-libs/yajl:= acct-user/icinga acct-group/icinga acct-group/icingacmd plugins? ( || ( net-analyzer/monitoring-plugins net-analyzer/nagios-plugins ) ) mail? ( virtual/mailx ) acct-group/nagios REQUIRED_USE=!minimal? ( || ( mariadb mysql postgres ) ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=39860ebf9be6acd1fa93ceb4952fdbe4 diff --git a/metadata/md5-cache/net-analyzer/multimon-ng-1.1.9 b/metadata/md5-cache/net-analyzer/multimon-ng-1.1.9 index 6ab49a50c876..849f7f7f794d 100644 --- a/metadata/md5-cache/net-analyzer/multimon-ng-1.1.9 +++ b/metadata/md5-cache/net-analyzer/multimon-ng-1.1.9 @@ -12,5 +12,5 @@ PDEPEND=media-sound/sox RDEPEND=pulseaudio? ( media-sound/pulseaudio ) X? ( x11-libs/libX11 ) SLOT=0 SRC_URI=https://github.com/EliasOenal/multimonNG/archive/1.1.9.tar.gz -> multimon-ng-1.1.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8109da221fde7dade75f40a1c6241c8 diff --git a/metadata/md5-cache/net-analyzer/multimon-ng-9999 b/metadata/md5-cache/net-analyzer/multimon-ng-9999 index e22c83eedf75..4ed9793d74b8 100644 --- a/metadata/md5-cache/net-analyzer/multimon-ng-9999 +++ b/metadata/md5-cache/net-analyzer/multimon-ng-9999 @@ -11,5 +11,5 @@ PDEPEND=media-sound/sox PROPERTIES=live RDEPEND=pulseaudio? ( media-sound/pulseaudio ) X? ( x11-libs/libX11 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8109da221fde7dade75f40a1c6241c8 diff --git a/metadata/md5-cache/net-analyzer/nipper-0.12.0 b/metadata/md5-cache/net-analyzer/nipper-0.12.0 index 1c9125b3a670..1b6cae2b41f6 100644 --- a/metadata/md5-cache/net-analyzer/nipper-0.12.0 +++ b/metadata/md5-cache/net-analyzer/nipper-0.12.0 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=>=net-libs/libnipper-0.12 SLOT=0 SRC_URI=mirror://sourceforge/nipper/nipper-cli-0.12.0.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=88efdef0020d69e8e0ac7072c56c0d44 diff --git a/metadata/md5-cache/net-analyzer/nmapsi-0.5_alpha2 b/metadata/md5-cache/net-analyzer/nmapsi-0.5_alpha2 index 808fe2123b25..6d4b77587b1f 100644 --- a/metadata/md5-cache/net-analyzer/nmapsi-0.5_alpha2 +++ b/metadata/md5-cache/net-analyzer/nmapsi-0.5_alpha2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtwebengine:5[widgets] dev-qt/qtwidgets:5 net-analyzer/nmap net-dns/bind-tools SLOT=0 SRC_URI=https://github.com/nmapsi4/nmapsi4/archive/v0.5-alpha2.tar.gz -> nmapsi-0.5_alpha2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8f6375086676e536fc01a517f5672884 diff --git a/metadata/md5-cache/net-analyzer/openvas-scanner-21.4.4-r2 b/metadata/md5-cache/net-analyzer/openvas-scanner-21.4.4-r2 index 234837e12c01..a71f8992756a 100644 --- a/metadata/md5-cache/net-analyzer/openvas-scanner-21.4.4-r2 +++ b/metadata/md5-cache/net-analyzer/openvas-scanner-21.4.4-r2 @@ -12,5 +12,5 @@ RDEPEND=acct-user/gvm app-crypt/gpgme:= dev-db/redis dev-libs/glib:2 dev-libs/li RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/greenbone/openvas-scanner/archive/v21.4.4.tar.gz -> openvas-scanner-21.4.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=91764a413a171531b83e3ed2abeeeb36 diff --git a/metadata/md5-cache/net-analyzer/shodan-1.28.0 b/metadata/md5-cache/net-analyzer/shodan-1.28.0 index bfa3ffc67900..a99f1247054e 100644 --- a/metadata/md5-cache/net-analyzer/shodan-1.28.0 +++ b/metadata/md5-cache/net-analyzer/shodan-1.28.0 @@ -1,16 +1,16 @@ -BDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?] +BDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=The official Python library for Shodan EAPI=8 HOMEPAGE=https://github.com/achillean/shodan-python INHERIT=distutils-r1 -IUSE=python_targets_python3_9 python_targets_python3_10 +IUSE=python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 KEYWORDS=amd64 ~loong x86 LICENSE=MIT -RDEPEND=dev-python/click[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click-plugins[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/colorama[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/xlsxwriter[python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) +RDEPEND=dev-python/click[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/click-plugins[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/colorama[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/xlsxwriter[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/achillean/shodan-python/archive/refs/tags/1.28.0.tar.gz -> shodan-1.28.0.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=b7ede8530e6432ebefd208af70f34299 +_md5_=820076a8734eedc7c8fdabaeaa43de99 diff --git a/metadata/md5-cache/net-analyzer/shodan-9999 b/metadata/md5-cache/net-analyzer/shodan-9999 index f5ec1df48b93..8f3d30e4edfd 100644 --- a/metadata/md5-cache/net-analyzer/shodan-9999 +++ b/metadata/md5-cache/net-analyzer/shodan-9999 @@ -1,15 +1,15 @@ -BDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install prepare test unpack DESCRIPTION=The official Python library for Shodan EAPI=8 HOMEPAGE=https://github.com/achillean/shodan-python INHERIT=distutils-r1 git-r3 -IUSE=python_targets_python3_9 python_targets_python3_10 +IUSE=python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 LICENSE=MIT PROPERTIES=live -RDEPEND=dev-python/click[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click-plugins[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/colorama[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/xlsxwriter[python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) +RDEPEND=dev-python/click[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/click-plugins[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/colorama[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/xlsxwriter[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) RESTRICT=test SLOT=0 _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=ebfb6ae9539b1754ecf168eba3d00f65 +_md5_=5c4398890c69ecdf062020fa31ab1432 diff --git a/metadata/md5-cache/net-analyzer/slurm-0.4.3 b/metadata/md5-cache/net-analyzer/slurm-0.4.3 index c3de6d038f66..42cb2c3b55e2 100644 --- a/metadata/md5-cache/net-analyzer/slurm-0.4.3 +++ b/metadata/md5-cache/net-analyzer/slurm-0.4.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=sys-libs/ncurses:= SLOT=0 SRC_URI=https://github.com/mattthias/slurm/archive/upstream/slurm.tar.gz -> slurm-0.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f148d9246456f6cb471a3808940f3c1f diff --git a/metadata/md5-cache/net-analyzer/speedtest++-0.0.20210829 b/metadata/md5-cache/net-analyzer/speedtest++-0.0.20210829 index 0e130e721d1c..adb8dd008494 100644 --- a/metadata/md5-cache/net-analyzer/speedtest++-0.0.20210829 +++ b/metadata/md5-cache/net-analyzer/speedtest++-0.0.20210829 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=net-misc/curl dev-libs/libxml2:= dev-libs/openssl:0= SLOT=0 SRC_URI=https://github.com/taganaka/SpeedTest/archive/0f63cfbf7ce8d64ea803bf143b957eae76323405.tar.gz -> speedtest++-0.0.20210829.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ad10b02fb0a57a9f7485ce83b6438924 diff --git a/metadata/md5-cache/net-analyzer/sshping-0.1.4 b/metadata/md5-cache/net-analyzer/sshping-0.1.4 index 9c4fe5f00cb8..d0eb693977f5 100644 --- a/metadata/md5-cache/net-analyzer/sshping-0.1.4 +++ b/metadata/md5-cache/net-analyzer/sshping-0.1.4 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=net-libs/libssh:= SLOT=0 SRC_URI=https://github.com/spook/sshping/archive/v0.1.4.tar.gz -> sshping-0.1.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e9d146d0c346c67dc54f48ff60ea6d98 diff --git a/metadata/md5-cache/net-analyzer/wireshark-3.6.10 b/metadata/md5-cache/net-analyzer/wireshark-3.6.10 deleted file mode 100644 index 8fa8f110f447..000000000000 --- a/metadata/md5-cache/net-analyzer/wireshark-3.6.10 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl sys-devel/flex sys-devel/gettext virtual/pkgconfig doc? ( app-doc/doxygen dev-ruby/asciidoctor ) qt5? ( dev-qt/linguist-tools:5 ) test? ( || ( ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pytest[python_targets_python3_10(-)] dev-python/pytest-xdist[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pytest[python_targets_python3_9(-)] dev-python/pytest-xdist[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6 ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) -DESCRIPTION=Network protocol analyzer (sniffer) -EAPI=8 -HOMEPAGE=https://www.wireshark.org/ -IDEPEND=filecaps? ( sys-libs/libcap ) dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=fcaps flag-o-matic lua-single python-any-r1 qmake-utils xdg cmake -IUSE=androiddump bcg729 brotli +capinfos +captype ciscodump +dftest doc dpauxmon +dumpcap +editcap http2 ilbc kerberos libxml2 lto lua lz4 maxminddb +mergecap +minizip +netlink opus +plugins plugin-ifdemo +pcap +qt5 +randpkt +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp sshdump ssl sdjournal test +text2pcap tfshark +tshark +udpdump zlib +zstd +filecaps +lua_single_target_lua5-1 -KEYWORDS=amd64 arm arm64 ~hppa ~ia64 ppc64 ~riscv ~x86 -LICENSE=GPL-2 -RDEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6 ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) qt5? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) -REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 ) ) plugin-ifdemo? ( plugins qt5 ) -RESTRICT=!test? ( test ) -SLOT=0/3.6.10 -SRC_URI=https://www.wireshark.org/download/src/all-versions/wireshark-3.6.10.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=8ba336b7db86402f0c8e23599bd9cb12 diff --git a/metadata/md5-cache/net-analyzer/wireshark-3.6.11 b/metadata/md5-cache/net-analyzer/wireshark-3.6.11-r1 similarity index 86% rename from metadata/md5-cache/net-analyzer/wireshark-3.6.11 rename to metadata/md5-cache/net-analyzer/wireshark-3.6.11-r1 index 1fcd6a4612c0..ee286757d453 100644 --- a/metadata/md5-cache/net-analyzer/wireshark-3.6.11 +++ b/metadata/md5-cache/net-analyzer/wireshark-3.6.11-r1 @@ -1,6 +1,6 @@ BDEPEND=|| ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl sys-devel/flex sys-devel/gettext virtual/pkgconfig doc? ( app-doc/doxygen dev-ruby/asciidoctor ) qt5? ( dev-qt/linguist-tools:5 ) test? ( || ( ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pytest[python_targets_python3_10(-)] dev-python/pytest-xdist[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pytest[python_targets_python3_9(-)] dev-python/pytest-xdist[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6 ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) +DEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) DESCRIPTION=Network protocol analyzer (sniffer) EAPI=8 HOMEPAGE=https://www.wireshark.org/ @@ -9,10 +9,10 @@ INHERIT=fcaps flag-o-matic lua-single python-any-r1 qmake-utils xdg cmake IUSE=androiddump bcg729 brotli +capinfos +captype ciscodump +dftest doc dpauxmon +dumpcap +editcap http2 ilbc kerberos libxml2 lto lua lz4 maxminddb +mergecap +minizip +netlink opus +plugins plugin-ifdemo +pcap +qt5 +randpkt +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp sshdump ssl sdjournal test +text2pcap tfshark +tshark +udpdump zlib +zstd +filecaps +lua_single_target_lua5-1 KEYWORDS=amd64 arm arm64 ~hppa ~ia64 ppc64 ~riscv x86 LICENSE=GPL-2 -RDEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6 ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) qt5? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) +RDEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) qt5? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 ) ) plugin-ifdemo? ( plugins qt5 ) RESTRICT=!test? ( test ) SLOT=0/3.6.11 SRC_URI=https://www.wireshark.org/download/src/all-versions/wireshark-3.6.11.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=f2755b0e4e22f9bd453ac4f23a528c8c +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=5f36c500914c1f80478a396e13eded84 diff --git a/metadata/md5-cache/net-analyzer/wireshark-3.6.12 b/metadata/md5-cache/net-analyzer/wireshark-3.6.12-r1 similarity index 86% rename from metadata/md5-cache/net-analyzer/wireshark-3.6.12 rename to metadata/md5-cache/net-analyzer/wireshark-3.6.12-r1 index 330441ef2ea6..1c9e797e7a64 100644 --- a/metadata/md5-cache/net-analyzer/wireshark-3.6.12 +++ b/metadata/md5-cache/net-analyzer/wireshark-3.6.12-r1 @@ -1,6 +1,6 @@ BDEPEND=|| ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl sys-devel/flex sys-devel/gettext virtual/pkgconfig doc? ( app-doc/doxygen dev-ruby/asciidoctor ) qt5? ( dev-qt/linguist-tools:5 ) test? ( || ( ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pytest[python_targets_python3_10(-)] dev-python/pytest-xdist[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pytest[python_targets_python3_9(-)] dev-python/pytest-xdist[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6 ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) +DEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) DESCRIPTION=Network protocol analyzer (sniffer) EAPI=8 HOMEPAGE=https://www.wireshark.org/ @@ -9,10 +9,10 @@ INHERIT=fcaps flag-o-matic lua-single python-any-r1 qmake-utils xdg cmake IUSE=androiddump bcg729 brotli +capinfos +captype ciscodump +dftest doc dpauxmon +dumpcap +editcap http2 ilbc kerberos libxml2 lto lua lz4 maxminddb +mergecap +minizip +netlink opus +plugins plugin-ifdemo +pcap +qt5 +randpkt +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp sshdump ssl sdjournal test +text2pcap tfshark +tshark +udpdump zlib +zstd +filecaps +lua_single_target_lua5-1 KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6 ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) qt5? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) +RDEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) qt5? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 ) ) plugin-ifdemo? ( plugins qt5 ) RESTRICT=!test? ( test ) SLOT=0/3.6.12 SRC_URI=https://www.wireshark.org/download/src/all-versions/wireshark-3.6.12.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=5ab3e881b000b42e994e54e287316bbe +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=40101c147329d72a5994a15b85ba18b6 diff --git a/metadata/md5-cache/net-analyzer/wireshark-3.6.9 b/metadata/md5-cache/net-analyzer/wireshark-3.6.9 deleted file mode 100644 index 408d10871099..000000000000 --- a/metadata/md5-cache/net-analyzer/wireshark-3.6.9 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl sys-devel/flex sys-devel/gettext virtual/pkgconfig doc? ( app-doc/doxygen dev-ruby/asciidoctor ) qt5? ( dev-qt/linguist-tools:5 ) test? ( || ( ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pytest[python_targets_python3_10(-)] dev-python/pytest-xdist[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pytest[python_targets_python3_9(-)] dev-python/pytest-xdist[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6 ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) -DESCRIPTION=Network protocol analyzer (sniffer) -EAPI=8 -HOMEPAGE=https://www.wireshark.org/ -IDEPEND=filecaps? ( sys-libs/libcap ) dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=fcaps flag-o-matic lua-single python-any-r1 qmake-utils xdg cmake -IUSE=androiddump bcg729 brotli +capinfos +captype ciscodump +dftest doc dpauxmon +dumpcap +editcap http2 ilbc kerberos libxml2 lto lua lz4 maxminddb +mergecap +minizip +netlink opus +plugins plugin-ifdemo +pcap +qt5 +randpkt +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp sshdump ssl sdjournal test +text2pcap tfshark +tshark +udpdump zlib +zstd +filecaps +lua_single_target_lua5-1 -KEYWORDS=amd64 arm arm64 ~hppa ~ia64 ppc64 ~riscv x86 -LICENSE=GPL-2 -RDEPEND=acct-group/pcap >=dev-libs/glib-2.38:2 >=net-dns/c-ares-1.5:= dev-libs/libgcrypt:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) http2? ( net-libs/nghttp2:= ) ilbc? ( media-libs/libilbc ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6 ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) qt5? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) -REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 ) ) plugin-ifdemo? ( plugins qt5 ) -RESTRICT=!test? ( test ) -SLOT=0/3.6.9 -SRC_URI=https://www.wireshark.org/download/src/all-versions/wireshark-3.6.9.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=f2755b0e4e22f9bd453ac4f23a528c8c diff --git a/metadata/md5-cache/net-analyzer/wireshark-4.0.3 b/metadata/md5-cache/net-analyzer/wireshark-4.0.3-r1 similarity index 85% rename from metadata/md5-cache/net-analyzer/wireshark-4.0.3 rename to metadata/md5-cache/net-analyzer/wireshark-4.0.3-r1 index 704f13e5d219..a741627fc223 100644 --- a/metadata/md5-cache/net-analyzer/wireshark-4.0.3 +++ b/metadata/md5-cache/net-analyzer/wireshark-4.0.3-r1 @@ -1,6 +1,6 @@ BDEPEND=|| ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl sys-devel/flex sys-devel/gettext virtual/pkgconfig doc? ( app-doc/doxygen dev-ruby/asciidoctor ) gui? ( qt6? ( dev-qt/qttools:6[linguist] ) !qt6? ( dev-qt/linguist-tools:5 ) ) test? ( || ( ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pytest[python_targets_python3_10(-)] dev-python/pytest-xdist[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pytest[python_targets_python3_9(-)] dev-python/pytest-xdist[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( !qt6? ( dev-qt/qtdeclarative:5 ) ) +DEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( !qt6? ( dev-qt/qtdeclarative:5 ) ) DESCRIPTION=Network protocol analyzer (sniffer) EAPI=8 HOMEPAGE=https://www.wireshark.org/ @@ -9,10 +9,10 @@ INHERIT=fcaps flag-o-matic readme.gentoo-r1 lua-single python-any-r1 qmake-utils IUSE=androiddump bcg729 brotli +capinfos +captype ciscodump +dftest doc dpauxmon +dumpcap +editcap +gui http2 ilbc kerberos libxml2 lto lua lz4 maxminddb +mergecap +minizip +netlink opus +plugins +pcap qt6 +randpkt +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp sshdump ssl sdjournal test +text2pcap tfshark +tshark +udpdump wifi zlib +zstd +filecaps +lua_single_target_lua5-1 KEYWORDS=amd64 arm arm64 ~hppa ~ia64 ppc64 ~riscv x86 LICENSE=GPL-2 -RDEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) +RDEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 ) ) RESTRICT=!test? ( test ) SLOT=0/4.0.3 SRC_URI=https://www.wireshark.org/download/src/all-versions/wireshark-4.0.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=6ad33775d791d80206eeca1041d2a5cc +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=73297fd7d9885a5b2ea49af0f6a3f35d diff --git a/metadata/md5-cache/net-analyzer/wireshark-4.0.4 b/metadata/md5-cache/net-analyzer/wireshark-4.0.4-r1 similarity index 85% rename from metadata/md5-cache/net-analyzer/wireshark-4.0.4 rename to metadata/md5-cache/net-analyzer/wireshark-4.0.4-r1 index b36d30044b10..f73857ae7e5e 100644 --- a/metadata/md5-cache/net-analyzer/wireshark-4.0.4 +++ b/metadata/md5-cache/net-analyzer/wireshark-4.0.4-r1 @@ -1,6 +1,6 @@ BDEPEND=|| ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl sys-devel/flex sys-devel/gettext virtual/pkgconfig doc? ( app-doc/doxygen dev-ruby/asciidoctor ) gui? ( qt6? ( dev-qt/qttools:6[linguist] ) !qt6? ( dev-qt/linguist-tools:5 ) ) test? ( || ( ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pytest[python_targets_python3_10(-)] dev-python/pytest-xdist[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pytest[python_targets_python3_9(-)] dev-python/pytest-xdist[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( !qt6? ( dev-qt/qtdeclarative:5 ) ) +DEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( !qt6? ( dev-qt/qtdeclarative:5 ) ) DESCRIPTION=Network protocol analyzer (sniffer) EAPI=8 HOMEPAGE=https://www.wireshark.org/ @@ -9,10 +9,10 @@ INHERIT=fcaps flag-o-matic readme.gentoo-r1 lua-single python-any-r1 qmake-utils IUSE=androiddump bcg729 brotli +capinfos +captype ciscodump +dftest doc dpauxmon +dumpcap +editcap +gui http2 ilbc kerberos libxml2 lto lua lz4 maxminddb +mergecap +minizip +netlink opus +plugins +pcap qt6 +randpkt +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp sshdump ssl sdjournal test +text2pcap tfshark +tshark +udpdump wifi zlib +zstd +filecaps +lua_single_target_lua5-1 KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) +RDEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 ) ) RESTRICT=!test? ( test ) SLOT=0/4.0.4 SRC_URI=https://www.wireshark.org/download/src/all-versions/wireshark-4.0.4.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=d47a520c559ce878a583750208d7397d +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=eb03b735b212754b9a7ec5f755d1fd9a diff --git a/metadata/md5-cache/net-analyzer/wireshark-9999 b/metadata/md5-cache/net-analyzer/wireshark-9999 index baab817f3da7..2f99ae4ff029 100644 --- a/metadata/md5-cache/net-analyzer/wireshark-9999 +++ b/metadata/md5-cache/net-analyzer/wireshark-9999 @@ -1,6 +1,6 @@ BDEPEND=|| ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl sys-devel/flex sys-devel/gettext virtual/pkgconfig doc? ( app-doc/doxygen dev-ruby/asciidoctor ) gui? ( qt6? ( dev-qt/qttools:6[linguist] ) !qt6? ( dev-qt/linguist-tools:5 ) ) test? ( || ( ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/pytest[python_targets_python3_10(-)] dev-python/pytest-xdist[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/pytest[python_targets_python3_9(-)] dev-python/pytest-xdist[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( !qt6? ( dev-qt/qtdeclarative:5 ) ) +DEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( !qt6? ( dev-qt/qtdeclarative:5 ) ) DESCRIPTION=Network protocol analyzer (sniffer) EAPI=8 HOMEPAGE=https://www.wireshark.org/ @@ -9,9 +9,9 @@ INHERIT=fcaps flag-o-matic lua-single python-any-r1 qmake-utils xdg cmake git-r3 IUSE=androiddump bcg729 brotli +capinfos +captype ciscodump +dftest doc dpauxmon +dumpcap +editcap +gui http2 ilbc kerberos libxml2 lto lua lz4 maxminddb +mergecap +minizip +netlink opus +plugins +pcap qt6 +randpkt +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp sshdump ssl sdjournal test +text2pcap tfshark +tshark +udpdump wifi zlib +zstd +filecaps +lua_single_target_lua5-1 LICENSE=GPL-2 PROPERTIES=live -RDEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) +RDEPEND=acct-group/pcap >=dev-libs/glib-2.50.0:2 dev-libs/libpcre2 >=net-dns/c-ares-1.13.0:= >=dev-libs/libgcrypt-1.8.0:= media-libs/speexdsp bcg729? ( media-libs/bcg729 ) brotli? ( app-arch/brotli:= ) ciscodump? ( >=net-libs/libssh-0.6:= ) filecaps? ( sys-libs/libcap ) http2? ( >=net-libs/nghttp2-1.11.0:= ) ilbc? ( media-libs/libilbc:= ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) lz4? ( app-arch/lz4:= ) maxminddb? ( dev-libs/libmaxminddb:= ) minizip? ( sys-libs/zlib[minizip] ) netlink? ( dev-libs/libnl:3 ) opus? ( media-libs/opus ) pcap? ( net-libs/libpcap ) gui? ( x11-misc/xdg-utils qt6? ( dev-qt/qtbase:6[concurrent,dbus,gui,widgets] dev-qt/qt5compat:6 dev-qt/qtmultimedia:6 ) !qt6? ( dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) wifi? ( >=net-libs/libssh-0.6:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= ) gui? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 ) ) RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=2046ec1cd6d3ff19c299909d172fb373 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=67b785fa31e1eef46826e8c2c9ca1cdc diff --git a/metadata/md5-cache/net-analyzer/wtfis-0.5.1 b/metadata/md5-cache/net-analyzer/wtfis-0.5.1 index 24b420af0593..6ab9a3c17d5a 100644 --- a/metadata/md5-cache/net-analyzer/wtfis-0.5.1 +++ b/metadata/md5-cache/net-analyzer/wtfis-0.5.1 @@ -1,16 +1,16 @@ -BDEPEND=test? ( dev-python/freezegun[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/rich[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/hatchling-1.12.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] +BDEPEND=test? ( dev-python/freezegun[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/rich[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/hatchling-1.12.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Passive hostname, domain and IP lookup tool for non-robots EAPI=8 HOMEPAGE=https://github.com/pirxthepilot/wtfis INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 KEYWORDS=amd64 ~loong x86 LICENSE=MIT -RDEPEND=>=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) +RDEPEND=>=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pirxthepilot/wtfis/archive/refs/tags/v0.5.1.tar.gz -> wtfis-0.5.1.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=45cff6d97a6db5d2b2d2c91d6e4cb21a +_md5_=0e4e0e068725aa443766bfb1ca80c60f diff --git a/metadata/md5-cache/net-analyzer/wtfis-0.6.1 b/metadata/md5-cache/net-analyzer/wtfis-0.6.1 index ebda37a38517..3f96383baa6a 100644 --- a/metadata/md5-cache/net-analyzer/wtfis-0.6.1 +++ b/metadata/md5-cache/net-analyzer/wtfis-0.6.1 @@ -1,16 +1,16 @@ -BDEPEND=test? ( dev-python/freezegun[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/rich[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/hatchling-1.12.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] +BDEPEND=test? ( dev-python/freezegun[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/rich[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/hatchling-1.12.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Passive hostname, domain and IP lookup tool for non-robots EAPI=8 HOMEPAGE=https://github.com/pirxthepilot/wtfis INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 KEYWORDS=~amd64 ~loong ~x86 LICENSE=MIT -RDEPEND=>=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) +RDEPEND=>=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pirxthepilot/wtfis/archive/refs/tags/v0.6.1.tar.gz -> wtfis-0.6.1.gh.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=292bfd516b6d2429b78fbef681a61cd2 +_md5_=4b85e7a8ce6dd76af69ce2f934a9030b diff --git a/metadata/md5-cache/net-analyzer/wtfis-9999 b/metadata/md5-cache/net-analyzer/wtfis-9999 index eff57c59e013..d4f1684a8482 100644 --- a/metadata/md5-cache/net-analyzer/wtfis-9999 +++ b/metadata/md5-cache/net-analyzer/wtfis-9999 @@ -1,15 +1,15 @@ -BDEPEND=test? ( dev-python/freezegun[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/rich[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/hatchling-1.12.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=test? ( dev-python/freezegun[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/rich[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/hatchling-1.12.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install prepare test unpack DESCRIPTION=Passive hostname, domain and IP lookup tool for non-robots EAPI=8 HOMEPAGE=https://github.com/pirxthepilot/wtfis INHERIT=distutils-r1 git-r3 -IUSE=test python_targets_python3_9 python_targets_python3_10 +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 LICENSE=MIT PROPERTIES=live -RDEPEND=>=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) +RDEPEND=>=dev-python/pydantic-1.10.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/python-dotenv-0.21.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.28.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/rich-12.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=net-analyzer/shodan-1.28.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=292bfd516b6d2429b78fbef681a61cd2 +_md5_=4b85e7a8ce6dd76af69ce2f934a9030b diff --git a/metadata/md5-cache/net-analyzer/zmap-2.1.1-r4 b/metadata/md5-cache/net-analyzer/zmap-2.1.1-r4 deleted file mode 100644 index ea37216079b1..000000000000 --- a/metadata/md5-cache/net-analyzer/zmap-2.1.1-r4 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 filecaps? ( sys-libs/libcap ) -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=dev-libs/gmp:= net-libs/libpcap dev-libs/json-c:= mongo? ( dev-db/mongodb dev-libs/mongo-c-driver ) redis? ( dev-libs/hiredis:= ) dev-util/gengetopt sys-devel/flex dev-util/byacc -DESCRIPTION=Fast network scanner designed for Internet-wide network surveys -EAPI=7 -HOMEPAGE=https://zmap.io/ -INHERIT=cmake fcaps -IUSE=mongo redis +filecaps -KEYWORDS=amd64 arm ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=dev-libs/gmp:= net-libs/libpcap dev-libs/json-c:= mongo? ( dev-db/mongodb dev-libs/mongo-c-driver ) redis? ( dev-libs/hiredis:= ) filecaps? ( sys-libs/libcap ) -SLOT=0 -SRC_URI=https://github.com/zmap/zmap/archive/v2.1.1.tar.gz -> zmap-2.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=95522f37877e4701b85a607657ef46b0 diff --git a/metadata/md5-cache/net-analyzer/zmap-2.1.1-r5 b/metadata/md5-cache/net-analyzer/zmap-2.1.1-r5 new file mode 100644 index 000000000000..ff0b05cac105 --- /dev/null +++ b/metadata/md5-cache/net-analyzer/zmap-2.1.1-r5 @@ -0,0 +1,16 @@ +BDEPEND=dev-util/gengetopt sys-devel/flex dev-util/byacc >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=dev-libs/gmp:= net-libs/libpcap dev-libs/json-c:= mongo? ( dev-db/mongodb dev-libs/mongo-c-driver ) redis? ( dev-libs/hiredis:= ) +DESCRIPTION=Fast network scanner designed for Internet-wide network surveys +EAPI=8 +HOMEPAGE=https://zmap.io/ +IDEPEND=filecaps? ( sys-libs/libcap ) +INHERIT=cmake fcaps +IUSE=mongo redis +filecaps +KEYWORDS=amd64 arm ~arm64 x86 +LICENSE=Apache-2.0 +RDEPEND=dev-libs/gmp:= net-libs/libpcap dev-libs/json-c:= mongo? ( dev-db/mongodb dev-libs/mongo-c-driver ) redis? ( dev-libs/hiredis:= ) +SLOT=0 +SRC_URI=https://github.com/zmap/zmap/archive/v2.1.1.tar.gz -> zmap-2.1.1.tar.gz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=e2516d101b4ccc9bc3d988ddb260bc35 diff --git a/metadata/md5-cache/net-analyzer/zmap-9999 b/metadata/md5-cache/net-analyzer/zmap-9999 index d2d9ce3cf853..43dc2bd421a7 100644 --- a/metadata/md5-cache/net-analyzer/zmap-9999 +++ b/metadata/md5-cache/net-analyzer/zmap-9999 @@ -1,14 +1,15 @@ -BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 filecaps? ( sys-libs/libcap ) >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=dev-util/gengetopt sys-devel/flex dev-util/byacc >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst prepare test unpack -DEPEND=dev-libs/gmp:= net-libs/libpcap dev-libs/json-c:= redis? ( dev-libs/hiredis:= ) dev-util/gengetopt sys-devel/flex dev-util/byacc +DEPEND=dev-libs/gmp:= net-libs/libpcap dev-libs/json-c:= redis? ( dev-libs/hiredis:= ) DESCRIPTION=Fast network scanner designed for Internet-wide network surveys -EAPI=7 +EAPI=8 HOMEPAGE=https://zmap.io/ +IDEPEND=filecaps? ( sys-libs/libcap ) INHERIT=cmake fcaps git-r3 IUSE=redis +filecaps LICENSE=Apache-2.0 PROPERTIES=live -RDEPEND=dev-libs/gmp:= net-libs/libpcap dev-libs/json-c:= redis? ( dev-libs/hiredis:= ) filecaps? ( sys-libs/libcap ) +RDEPEND=dev-libs/gmp:= net-libs/libpcap dev-libs/json-c:= redis? ( dev-libs/hiredis:= ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=d5c658887c8fb9b2fd03506bf2890f5b +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=e8c1f830b417fcac798cfbfc84fb8fec diff --git a/metadata/md5-cache/net-dialup/Manifest.gz b/metadata/md5-cache/net-dialup/Manifest.gz index 8b6a9a21d8ce..f9922883b584 100644 Binary files a/metadata/md5-cache/net-dialup/Manifest.gz and b/metadata/md5-cache/net-dialup/Manifest.gz differ diff --git a/metadata/md5-cache/net-dialup/accel-ppp-1.12.0_p20220830-r1 b/metadata/md5-cache/net-dialup/accel-ppp-1.12.0_p20220830-r1 index 1fb394f0d271..d78d6a082276 100644 --- a/metadata/md5-cache/net-dialup/accel-ppp-1.12.0_p20220830-r1 +++ b/metadata/md5-cache/net-dialup/accel-ppp-1.12.0_p20220830-r1 @@ -13,5 +13,5 @@ RDEPEND=!libtomcrypt? ( dev-libs/openssl:0= ) libtomcrypt? ( dev-libs/libtomcryp REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 ) ) valgrind? ( debug ) SLOT=0 SRC_URI=https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/accel-ppp-1.12.0_p20220830.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9eaa3206d345cee15b3569d531f00299 diff --git a/metadata/md5-cache/net-dialup/accel-ppp-9999 b/metadata/md5-cache/net-dialup/accel-ppp-9999 index 7a0b654688cd..3c45fe46bc4f 100644 --- a/metadata/md5-cache/net-dialup/accel-ppp-9999 +++ b/metadata/md5-cache/net-dialup/accel-ppp-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=!libtomcrypt? ( dev-libs/openssl:0= ) libtomcrypt? ( dev-libs/libtomcrypt:0= ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) postgres? ( dev-db/postgresql:* ) snmp? ( net-analyzer/net-snmp ) dev-libs/libpcre kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 ) ) valgrind? ( debug ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 linux-mod 81807190d0c0076b69cb96b547e38681 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2bdbc63805ecf64b3379178643afa22 diff --git a/metadata/md5-cache/net-dialup/cutecom-0.51.0-r1 b/metadata/md5-cache/net-dialup/cutecom-0.51.0-r1 index 4e280058d2ab..80d1eaa6f5f9 100644 --- a/metadata/md5-cache/net-dialup/cutecom-0.51.0-r1 +++ b/metadata/md5-cache/net-dialup/cutecom-0.51.0-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtserialport:5 dev-qt/qtwidgets:5 net-dialup/lrzsz SLOT=0 SRC_URI=https://gitlab.com/cutecom/cutecom/-/archive/v0.51.0/cutecom-v0.51.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=76df5b543edbb97b185cbd09e621f905 diff --git a/metadata/md5-cache/net-dialup/minicom-2.7.1 b/metadata/md5-cache/net-dialup/minicom-2.7.1 deleted file mode 100644 index 90d081e7b0de..000000000000 --- a/metadata/md5-cache/net-dialup/minicom-2.7.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install preinst prepare -DEPEND=sys-libs/ncurses:= nls? ( sys-devel/gettext ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DESCRIPTION=Serial Communication Program -EAPI=6 -HOMEPAGE=https://salsa.debian.org/minicom-team/minicom -INHERIT=autotools -IUSE=nls -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux -LICENSE=GPL-2 -RDEPEND=sys-libs/ncurses:= net-dialup/lrzsz -SLOT=0 -SRC_URI=https://alioth-archive.debian.org/releases/minicom/Source/2.7.1/minicom-2.7.1.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 eqawarn c9847c43b3253a276ae2eabddedab3d7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f6a764d4a451bdcf8042fe20265838fe diff --git a/metadata/md5-cache/net-dialup/minicom-2.8 b/metadata/md5-cache/net-dialup/minicom-2.8-r2 similarity index 78% rename from metadata/md5-cache/net-dialup/minicom-2.8 rename to metadata/md5-cache/net-dialup/minicom-2.8-r2 index 7e1a53a784f2..db68a37e97d3 100644 --- a/metadata/md5-cache/net-dialup/minicom-2.8 +++ b/metadata/md5-cache/net-dialup/minicom-2.8-r2 @@ -1,15 +1,15 @@ BDEPEND=virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=configure install preinst prepare +DEFINED_PHASES=configure install prepare DEPEND=sys-libs/ncurses:= DESCRIPTION=Serial Communication Program -EAPI=7 +EAPI=8 HOMEPAGE=https://salsa.debian.org/minicom-team/minicom INHERIT=autotools IUSE=nls -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 RDEPEND=sys-libs/ncurses:= net-dialup/lrzsz SLOT=0 SRC_URI=https://salsa.debian.org/minicom-team/minicom/-/archive/2.8/minicom-2.8.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a2420dcabfa34cba05099c7459312ad6 +_md5_=c04aaa76a5d971e678f62efcfa824fff diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 28b75ba88415..a5f0da50e274 100644 Binary files a/metadata/md5-cache/net-dns/Manifest.gz and b/metadata/md5-cache/net-dns/Manifest.gz differ diff --git a/metadata/md5-cache/net-dns/getdns-1.7.2-r1 b/metadata/md5-cache/net-dns/getdns-1.7.2-r1 index 581a270e7449..7fde539a9db6 100644 --- a/metadata/md5-cache/net-dns/getdns-1.7.2-r1 +++ b/metadata/md5-cache/net-dns/getdns-1.7.2-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libbsd dev-libs/libyaml dev-libs/openssl:= idn? ( net-dns/libid RESTRICT=test SLOT=0 SRC_URI=https://getdnsapi.net/releases/getdns-1-7-2/getdns-1.7.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7667b18f03918d71f17b2493c1806866 diff --git a/metadata/md5-cache/net-dns/https_dns_proxy-0_pre20200925 b/metadata/md5-cache/net-dns/https_dns_proxy-0_pre20200925 index d59bc7f3f8e9..0ca89db773ed 100644 --- a/metadata/md5-cache/net-dns/https_dns_proxy-0_pre20200925 +++ b/metadata/md5-cache/net-dns/https_dns_proxy-0_pre20200925 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/libev net-dns/c-ares net-misc/curl[http2,ssl] SLOT=0 SRC_URI=https://github.com/aarond10/https_dns_proxy/archive/2d9285e2b94bce21c588c8160f8fac660806987a.tar.gz -> https_dns_proxy-0_pre20200925.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dd3652f76b00c06aca10616067202055 diff --git a/metadata/md5-cache/net-dns/https_dns_proxy-9999 b/metadata/md5-cache/net-dns/https_dns_proxy-9999 index 30049ab22178..14fafb37a08d 100644 --- a/metadata/md5-cache/net-dns/https_dns_proxy-9999 +++ b/metadata/md5-cache/net-dns/https_dns_proxy-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=dev-libs/libev net-dns/c-ares net-misc/curl[http2,ssl] SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dd3652f76b00c06aca10616067202055 diff --git a/metadata/md5-cache/net-dns/resolv_wrapper-1.1.7 b/metadata/md5-cache/net-dns/resolv_wrapper-1.1.7 index ff97127be9b9..10e6eceeb85c 100644 --- a/metadata/md5-cache/net-dns/resolv_wrapper-1.1.7 +++ b/metadata/md5-cache/net-dns/resolv_wrapper-1.1.7 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://ftp.samba.org/pub/cwrap/resolv_wrapper-1.1.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4d613719e7c296e580b3d5f76b1ebb1 diff --git a/metadata/md5-cache/net-dns/resolv_wrapper-1.1.8 b/metadata/md5-cache/net-dns/resolv_wrapper-1.1.8 index 9b24cfb48d1d..b92b1cc0ac86 100644 --- a/metadata/md5-cache/net-dns/resolv_wrapper-1.1.8 +++ b/metadata/md5-cache/net-dns/resolv_wrapper-1.1.8 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://ftp.samba.org/pub/cwrap/resolv_wrapper-1.1.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d047c5a347be5bebe4035cc8bd86afa3 diff --git a/metadata/md5-cache/net-dns/smartdns-38.1 b/metadata/md5-cache/net-dns/smartdns-41 similarity index 86% rename from metadata/md5-cache/net-dns/smartdns-38.1 rename to metadata/md5-cache/net-dns/smartdns-41 index a62d6565563e..4f2cfcb506d2 100644 --- a/metadata/md5-cache/net-dns/smartdns-38.1 +++ b/metadata/md5-cache/net-dns/smartdns-41 @@ -9,6 +9,6 @@ KEYWORDS=~amd64 LICENSE=GPL-3 RDEPEND=dev-libs/openssl:0= SLOT=0 -SRC_URI=https://github.com/pymumu/smartdns/archive/refs/tags/Release38.1.tar.gz -> smartdns-38.1.tar.gz +SRC_URI=https://github.com/pymumu/smartdns/archive/refs/tags/Release41.tar.gz -> smartdns-41.tar.gz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a330df9633f0800f3a65d2f3f85ff93c +_md5_=9872c6a272479955e093b5e05ca7645f diff --git a/metadata/md5-cache/net-firewall/Manifest.gz b/metadata/md5-cache/net-firewall/Manifest.gz index f93fe87a731b..275b8c37d800 100644 Binary files a/metadata/md5-cache/net-firewall/Manifest.gz and b/metadata/md5-cache/net-firewall/Manifest.gz differ diff --git a/metadata/md5-cache/net-firewall/fwbuilder-6.0.0_rc1 b/metadata/md5-cache/net-firewall/fwbuilder-6.0.0_rc1 index de01f7b6077b..9301e3e50eb6 100644 --- a/metadata/md5-cache/net-firewall/fwbuilder-6.0.0_rc1 +++ b/metadata/md5-cache/net-firewall/fwbuilder-6.0.0_rc1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libxml2 dev-libs/libxslt dev-libs/openssl dev-qt/qtnetwork:5 de RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://github.com/fwbuilder/fwbuilder/archive/refs/tags/v6.0.0-rc1.tar.gz -> fwbuilder-6.0.0_rc1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9ae4d2346e0f76869463a3c30f5c5e74 diff --git a/metadata/md5-cache/net-firewall/itval-1.2_p20121104-r1 b/metadata/md5-cache/net-firewall/itval-1.2_p20121104-r1 index 060d83d4bff7..dd634fe3eeae 100644 --- a/metadata/md5-cache/net-firewall/itval-1.2_p20121104-r1 +++ b/metadata/md5-cache/net-firewall/itval-1.2_p20121104-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/fddl SLOT=0 SRC_URI=https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/ITVal-20121104.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=10b22973e41766a95edeeff74a06f5e2 diff --git a/metadata/md5-cache/net-firewall/nftables-1.0.5 b/metadata/md5-cache/net-firewall/nftables-1.0.5 index 316cd3ce76f9..fdf83fecacc8 100644 --- a/metadata/md5-cache/net-firewall/nftables-1.0.5 +++ b/metadata/md5-cache/net-firewall/nftables-1.0.5 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://netfilter.org/projects/nftables/files/nftables-1.0.5.tar.bz2 verify-sig? ( https://netfilter.org/projects/nftables/files/nftables-1.0.5.tar.bz2.sig ) _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b edo c0eb9cbe6b0bd01fcb4918f12598a4d3 linux-info ecb03306c95c6ccc55852c98abcfcc64 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=21b9d8c2f169fcc0cde69202417280f3 +_md5_=6016a67a2fe68bff5bdde2d5bea416a2 diff --git a/metadata/md5-cache/net-firewall/nftables-1.0.6 b/metadata/md5-cache/net-firewall/nftables-1.0.6 index 1dd01d8fb3bf..8a9f2d10e00a 100644 --- a/metadata/md5-cache/net-firewall/nftables-1.0.6 +++ b/metadata/md5-cache/net-firewall/nftables-1.0.6 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://netfilter.org/projects/nftables/files/nftables-1.0.6.tar.xz verify-sig? ( https://netfilter.org/projects/nftables/files/nftables-1.0.6.tar.xz.sig ) _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b edo c0eb9cbe6b0bd01fcb4918f12598a4d3 linux-info ecb03306c95c6ccc55852c98abcfcc64 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=6705abc201807fa612fcde9cbbc88e22 +_md5_=8bfc70462903153c365deb47b567c5ad diff --git a/metadata/md5-cache/net-firewall/nftables-1.0.7 b/metadata/md5-cache/net-firewall/nftables-1.0.7 index 531368b89ee7..0a58eecc796c 100644 --- a/metadata/md5-cache/net-firewall/nftables-1.0.7 +++ b/metadata/md5-cache/net-firewall/nftables-1.0.7 @@ -1,6 +1,6 @@ BDEPEND=verify-sig? ( sec-keys/openpgp-keys-netfilter ) virtual/pkgconfig doc? ( app-text/asciidoc >=app-text/docbook2X-0.8.8-r4 ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) virtual/pkgconfig verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=>=net-libs/libmnl-1.0.4:= >=net-libs/libnftnl-1.2.4:= gmp? ( dev-libs/gmp:= ) json? ( dev-libs/jansson:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:= ) xtables? ( >=net-firewall/iptables-1.6.1:= ) +DEPEND=>=net-libs/libmnl-1.0.4:= >=net-libs/libnftnl-1.2.5:= gmp? ( dev-libs/gmp:= ) json? ( dev-libs/jansson:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:= ) xtables? ( >=net-firewall/iptables-1.6.1:= ) DESCRIPTION=Linux kernel (3.13+) firewall, NAT and packet mangling tools EAPI=8 HOMEPAGE=https://netfilter.org/projects/nftables/ @@ -8,10 +8,10 @@ INHERIT=edo linux-info distutils-r1 systemd verify-sig IUSE=debug doc +gmp json libedit +modern-kernel python +readline static-libs test xtables python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 verify-sig KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=GPL-2 GPL-2+ -RDEPEND=>=net-libs/libmnl-1.0.4:= >=net-libs/libnftnl-1.2.4:= gmp? ( dev-libs/gmp:= ) json? ( dev-libs/jansson:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:= ) xtables? ( >=net-firewall/iptables-1.6.1:= ) +RDEPEND=>=net-libs/libmnl-1.0.4:= >=net-libs/libnftnl-1.2.5:= gmp? ( dev-libs/gmp:= ) json? ( dev-libs/jansson:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:= ) xtables? ( >=net-firewall/iptables-1.6.1:= ) REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) libedit? ( !readline ) RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://netfilter.org/projects/nftables/files/nftables-1.0.7.tar.xz verify-sig? ( https://netfilter.org/projects/nftables/files/nftables-1.0.7.tar.xz.sig ) _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b edo c0eb9cbe6b0bd01fcb4918f12598a4d3 linux-info ecb03306c95c6ccc55852c98abcfcc64 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=32ddcd163c764528074ecea193e87d72 +_md5_=e762bc7ce94345e373d79601ff84e820 diff --git a/metadata/md5-cache/net-firewall/nftables-9999 b/metadata/md5-cache/net-firewall/nftables-9999 index a25d44b6e83a..799e0e86763d 100644 --- a/metadata/md5-cache/net-firewall/nftables-9999 +++ b/metadata/md5-cache/net-firewall/nftables-9999 @@ -1,6 +1,6 @@ BDEPEND=sys-devel/bison sys-devel/flex virtual/pkgconfig doc? ( app-text/asciidoc >=app-text/docbook2X-0.8.8-r4 ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) virtual/pkgconfig verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=>=net-libs/libmnl-1.0.4:= >=net-libs/libnftnl-1.2.4:= gmp? ( dev-libs/gmp:= ) json? ( dev-libs/jansson:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:= ) xtables? ( >=net-firewall/iptables-1.6.1:= ) +DEPEND=>=net-libs/libmnl-1.0.4:= >=net-libs/libnftnl-1.2.5:= gmp? ( dev-libs/gmp:= ) json? ( dev-libs/jansson:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:= ) xtables? ( >=net-firewall/iptables-1.6.1:= ) DESCRIPTION=Linux kernel (3.13+) firewall, NAT and packet mangling tools EAPI=8 HOMEPAGE=https://netfilter.org/projects/nftables/ @@ -8,9 +8,9 @@ INHERIT=edo linux-info distutils-r1 systemd verify-sig autotools git-r3 IUSE=debug doc +gmp json libedit +modern-kernel python +readline static-libs test xtables python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 verify-sig LICENSE=GPL-2 GPL-2+ PROPERTIES=live -RDEPEND=>=net-libs/libmnl-1.0.4:= >=net-libs/libnftnl-1.2.4:= gmp? ( dev-libs/gmp:= ) json? ( dev-libs/jansson:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:= ) xtables? ( >=net-firewall/iptables-1.6.1:= ) +RDEPEND=>=net-libs/libmnl-1.0.4:= >=net-libs/libnftnl-1.2.5:= gmp? ( dev-libs/gmp:= ) json? ( dev-libs/jansson:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:= ) xtables? ( >=net-firewall/iptables-1.6.1:= ) REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) libedit? ( !readline ) RESTRICT=!test? ( test ) SLOT=0/1 _eclasses_=autotools b5529dc611971a61a30153916014f616 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b edo c0eb9cbe6b0bd01fcb4918f12598a4d3 git-r3 c57c50c922e121043788de0b40ada60a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=32ddcd163c764528074ecea193e87d72 +_md5_=e762bc7ce94345e373d79601ff84e820 diff --git a/metadata/md5-cache/net-fs/Manifest.gz b/metadata/md5-cache/net-fs/Manifest.gz index 7ae8312299c6..9a95e9b59e98 100644 Binary files a/metadata/md5-cache/net-fs/Manifest.gz and b/metadata/md5-cache/net-fs/Manifest.gz differ diff --git a/metadata/md5-cache/net-fs/cvmfs-2.10.1-r1 b/metadata/md5-cache/net-fs/cvmfs-2.10.1-r1 index 2f92cadd2448..d82799e90cf9 100644 --- a/metadata/md5-cache/net-fs/cvmfs-2.10.1-r1 +++ b/metadata/md5-cache/net-fs/cvmfs-2.10.1-r1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=acct-group/cvmfs acct-user/cvmfs app-arch/libarchive dev-cpp/gtest dev-cpp/sparsehash dev-db/sqlite:3= dev-libs/leveldb:0= dev-libs/openssl:0= dev-libs/protobuf:0= net-dns/c-ares:0= net-libs/pacparser:0= net-misc/curl:0[adns] sys-apps/attr sys-fs/fuse:0= sys-fs/fuse:3= sys-libs/libcap:0= sys-libs/zlib:0= app-admin/sudo net-fs/autofs SLOT=0 SRC_URI=https://ecsft.cern.ch/dist/cvmfs/cvmfs-2.10.1/source.tar.gz -> cvmfs-2.10.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7a24e7433befb13a980447b1aacecfe4 diff --git a/metadata/md5-cache/net-fs/cvmfs-2.9.4-r1 b/metadata/md5-cache/net-fs/cvmfs-2.9.4-r1 index cdd9dea89f95..77492ff3221a 100644 --- a/metadata/md5-cache/net-fs/cvmfs-2.9.4-r1 +++ b/metadata/md5-cache/net-fs/cvmfs-2.9.4-r1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=acct-group/cvmfs acct-user/cvmfs app-arch/libarchive dev-cpp/gtest dev-cpp/sparsehash dev-db/sqlite:3= dev-libs/leveldb:0= dev-libs/openssl:0= dev-libs/protobuf:0= net-dns/c-ares:0= net-libs/pacparser:0= net-misc/curl:0[adns] sys-apps/attr sys-fs/fuse:0= sys-fs/fuse:3= sys-libs/libcap:0= sys-libs/zlib:0= app-admin/sudo net-fs/autofs SLOT=0 SRC_URI=https://ecsft.cern.ch/dist/cvmfs/cvmfs-2.9.4/source.tar.gz -> cvmfs-2.9.4.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=898e2647d60c08c060669e02dd0c121e diff --git a/metadata/md5-cache/net-im/Manifest.gz b/metadata/md5-cache/net-im/Manifest.gz index 108a57564980..53c2221b9f02 100644 Binary files a/metadata/md5-cache/net-im/Manifest.gz and b/metadata/md5-cache/net-im/Manifest.gz differ diff --git a/metadata/md5-cache/net-im/biboumi-9.0-r4 b/metadata/md5-cache/net-im/biboumi-9.0-r4 index 5699afec7136..a6507e68929e 100644 --- a/metadata/md5-cache/net-im/biboumi-9.0-r4 +++ b/metadata/md5-cache/net-im/biboumi-9.0-r4 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/expat virtual/libiconv sys-apps/util-linux sqlite? ( dev-db/sql RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://git.louiz.org/biboumi/snapshot/biboumi-9.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6369fd51761fae93cf609eac72e47929 diff --git a/metadata/md5-cache/net-im/choqok-1.7.0-r1 b/metadata/md5-cache/net-im/choqok-1.7.0-r1 index d6022b60c6db..a03bebe291d3 100644 --- a/metadata/md5-cache/net-im/choqok-1.7.0-r1 +++ b/metadata/md5-cache/net-im/choqok-1.7.0-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-crypt/qca-2.3.0:2 >=dev-qt/qtdbus-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtnetworkauth-5.15.2:5 >=dev-qt/qtwidgets-5.15.2:5 >=dev-qt/qtxml-5.15.2:5 >=kde-frameworks/kcmutils-5.82.0:5 >=kde-frameworks/kconfig-5.82.0:5 >=kde-frameworks/kconfigwidgets-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/kemoticons-5.82.0:5 >=kde-frameworks/kglobalaccel-5.82.0:5 >=kde-frameworks/kguiaddons-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kio-5.82.0:5 >=kde-frameworks/kjobwidgets-5.82.0:5 >=kde-frameworks/knotifications-5.82.0:5 >=kde-frameworks/knotifyconfig-5.82.0:5 >=kde-frameworks/kservice-5.82.0:5 >=kde-frameworks/ktextwidgets-5.82.0:5 >=kde-frameworks/kwallet-5.82.0:5 >=kde-frameworks/kwidgetsaddons-5.82.0:5 >=kde-frameworks/kxmlgui-5.82.0:5 >=kde-frameworks/sonnet-5.82.0:5 attica? ( >=kde-frameworks/attica-5.82.0:5 ) share? ( >=kde-frameworks/purpose-5.82.0:5 ) telepathy? ( >=net-libs/telepathy-qt-0.9.8 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/choqok/1.7/src/choqok-1.7.0.tar.xz https://dev.gentoo.org/~asturm/distfiles/choqok-1.7.0-patchset-1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=069f579a63b14cc719f5185903d25b02 diff --git a/metadata/md5-cache/net-im/cpop-0.0.4-r1 b/metadata/md5-cache/net-im/cpop-0.0.4-r1 deleted file mode 100644 index cab33095dd67..000000000000 --- a/metadata/md5-cache/net-im/cpop-0.0.4-r1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install -DEPEND=dev-libs/glib:2 x11-libs/gtk+:2 -DESCRIPTION=GTK+ network popup message client. Compatible with the jpop protocol -EAPI=7 -HOMEPAGE=http://www.draxil.uklinux.net/hip/index.pl?page=cpop -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/glib:2 x11-libs/gtk+:2 -SLOT=0 -SRC_URI=mirror://gentoo/cpop-0.0.4.tar.gz -_md5_=323f105429ed665a3d2cdc75b959403a diff --git a/metadata/md5-cache/net-im/cpop-0.0.4-r2 b/metadata/md5-cache/net-im/cpop-0.0.4-r2 new file mode 100644 index 000000000000..f1d643d1f8d8 --- /dev/null +++ b/metadata/md5-cache/net-im/cpop-0.0.4-r2 @@ -0,0 +1,14 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=install prepare +DEPEND=dev-libs/glib:2 x11-libs/gtk+:2 +DESCRIPTION=GTK+ network popup message client. Compatible with the jpop protocol +EAPI=8 +HOMEPAGE=http://www.draxil.uklinux.net/hip/index.pl?page=cpop +INHERIT=autotools +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/glib:2 x11-libs/gtk+:2 +SLOT=0 +SRC_URI=mirror://gentoo/cpop-0.0.4.tar.gz +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=8262d7fae3d2492de7a3fc53e3a9aa8e diff --git a/metadata/md5-cache/net-im/dino-0.3.0-r1 b/metadata/md5-cache/net-im/dino-0.3.0-r1 index bef94caf17a2..c500855ef4ae 100644 --- a/metadata/md5-cache/net-im/dino-0.3.0-r1 +++ b/metadata/md5-cache/net-im/dino-0.3.0-r1 @@ -13,5 +13,5 @@ RDEPEND=app-text/gspell[vala] dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu dev-l RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dino/dino/releases/download/v0.3.0/dino-0.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=034fff7c2e9364ceecb526e79d45d523 diff --git a/metadata/md5-cache/net-im/dino-0.4.0 b/metadata/md5-cache/net-im/dino-0.4.0 index 8a3031c327be..14d821b7cf88 100644 --- a/metadata/md5-cache/net-im/dino-0.4.0 +++ b/metadata/md5-cache/net-im/dino-0.4.0 @@ -13,5 +13,5 @@ RDEPEND=app-text/gspell[vala] dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dino/dino/releases/download/v0.4.0/dino-0.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ca0b6949325365629d362fa5a71d833 diff --git a/metadata/md5-cache/net-im/dino-0.4.1 b/metadata/md5-cache/net-im/dino-0.4.1 index 6089af12b688..2b9c72c6d9c1 100644 --- a/metadata/md5-cache/net-im/dino-0.4.1 +++ b/metadata/md5-cache/net-im/dino-0.4.1 @@ -13,5 +13,5 @@ RDEPEND=app-text/gspell[vala] dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dino/dino/releases/download/v0.4.1/dino-0.4.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ca0b6949325365629d362fa5a71d833 diff --git a/metadata/md5-cache/net-im/dino-9999 b/metadata/md5-cache/net-im/dino-9999 index 17854c1b87ac..e19df384edba 100644 --- a/metadata/md5-cache/net-im/dino-9999 +++ b/metadata/md5-cache/net-im/dino-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=app-text/gspell[vala] dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libgee:0.8= gui-libs/gtk:4 >=gui-libs/libadwaita-1.2.0:1 net-libs/glib-networking >=net-libs/libnice-0.1.15 net-libs/libsignal-protocol-c net-libs/libsrtp:2 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/pango gpg? ( app-crypt/gpgme:= ) http? ( net-libs/libsoup:2.4 ) notification-sound? ( media-libs/libcanberra:0[sound] ) omemo? ( dev-libs/libgcrypt:= media-gfx/qrencode:= ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6f553c2bfb2f409a08adfdde550543c9 diff --git a/metadata/md5-cache/net-im/neochat-22.11-r2 b/metadata/md5-cache/net-im/neochat-22.11-r2 index 0af6efe14629..cea66c548949 100644 --- a/metadata/md5-cache/net-im/neochat-22.11-r2 +++ b/metadata/md5-cache/net-im/neochat-22.11-r2 @@ -13,5 +13,5 @@ RDEPEND=app-text/cmark:= >=dev-libs/kirigami-addons-0.6:5 dev-libs/qcoro5 dev-li RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://kde/stable/plasma-mobile/22.11/neochat-22.11.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma-mobile.kde.org 6c6b74cf6c0c2b85a25d5aacb89a516d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plasma-mobile.kde.org 6c6b74cf6c0c2b85a25d5aacb89a516d toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=363fee8dad0a6fd8b98659b2311ea439 diff --git a/metadata/md5-cache/net-im/openmittsu-0.9.15.0 b/metadata/md5-cache/net-im/openmittsu-0.9.15.0 index 81baa73b90cf..df6454f9e123 100644 --- a/metadata/md5-cache/net-im/openmittsu-0.9.15.0 +++ b/metadata/md5-cache/net-im/openmittsu-0.9.15.0 @@ -12,5 +12,5 @@ RDEPEND=dev-db/qt5-sqlcipher >=dev-libs/libsodium-1.0.11:= >=dev-qt/qtcore-5.7.1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/openmittsu-0.9.15.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8c2b342f670822ae9587bd17365de19e diff --git a/metadata/md5-cache/net-im/pidgin-2.14.12 b/metadata/md5-cache/net-im/pidgin-2.14.12 index 7840363a6e6f..f4492864d0b8 100644 --- a/metadata/md5-cache/net-im/pidgin-2.14.12 +++ b/metadata/md5-cache/net-im/pidgin-2.14.12 @@ -7,7 +7,7 @@ HOMEPAGE=https://pidgin.im/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=autotools gnome2-utils flag-o-matic perl-module python-single-r1 xdg IUSE=aqua dbus debug doc eds gadu gnutls groupwise +gstreamer +gtk idn meanwhile ncurses networkmanager nls perl pie prediction python sasl spell tcl test tk v4l +xscreensaver zephyr zeroconf python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.16 >=dev-libs/libxml2-2.6.18 dbus? ( >=dev-libs/dbus-glib-0.71 >=sys-apps/dbus-0.90 python_single_target_python3_9? ( dev-python/dbus-python[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/dbus-python[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/dbus-python[python_targets_python3_11(-)] ) ) gadu? ( >=net-libs/libgadu-1.11.0 ) gnutls? ( net-libs/gnutls:= ) !gnutls? ( dev-libs/nspr dev-libs/nss ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 >=net-libs/farstream-0.2.7:0.2 ) gtk? ( >=x11-libs/gtk+-2.10:2[aqua=] x11-libs/libSM >=x11-libs/pango-1.4.0 xscreensaver? ( x11-libs/libXScrnSaver ) spell? ( >=app-text/gtkspell-2.0.2:2 ) eds? ( >=gnome-extra/evolution-data-server-3.6:= ) prediction? ( >=dev-db/sqlite-3.3:3 ) ) idn? ( net-dns/libidn:= ) meanwhile? ( net-libs/meanwhile ) ncurses? ( >=dev-libs/libgnt-2.14 sys-libs/ncurses:=[unicode(+)] dbus? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) ) networkmanager? ( net-misc/networkmanager ) perl? ( >=dev-lang/perl-5.16:= ) sasl? ( dev-libs/cyrus-sasl:2 ) tcl? ( dev-lang/tcl:0= ) tk? ( dev-lang/tk:0= ) v4l? ( media-plugins/gst-plugins-v4l2 ) zeroconf? ( net-dns/avahi[dbus] ) REQUIRED_USE=dbus? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) networkmanager? ( dbus ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) v4l? ( gstreamer ) @@ -15,4 +15,4 @@ RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=mirror://sourceforge/pidgin/pidgin-2.14.12.tar.bz2 _eclasses_=autotools b5529dc611971a61a30153916014f616 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=aa3eb2c5c5177711efd3b38f8894cd7b +_md5_=16291ca86e16d70c32629be7de45be0a diff --git a/metadata/md5-cache/net-im/psi-9999 b/metadata/md5-cache/net-im/psi-9999 index 8d24e2ea3324..78679869b857 100644 --- a/metadata/md5-cache/net-im/psi-9999 +++ b/metadata/md5-cache/net-im/psi-9999 @@ -12,5 +12,5 @@ RDEPEND=app-crypt/qca:2[ssl] dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui: REQUIRED_USE=?? ( aspell enchant hunspell ) iconsets? ( extras ) RESTRICT=test iconsets? ( bindist ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 qmake-utils 59420c906278d16deaaa629f9d115707 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 qmake-utils 59420c906278d16deaaa629f9d115707 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3c2267b5d9ea2bb9dd88c8089238c6ec diff --git a/metadata/md5-cache/net-im/psimedia-9999 b/metadata/md5-cache/net-im/psimedia-9999 index 1d8f80ad9bf6..989b478528db 100644 --- a/metadata/md5-cache/net-im/psimedia-9999 +++ b/metadata/md5-cache/net-im/psimedia-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=dev-libs/glib dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 media-plugins/gst-plugins-jpeg:1.0 media-plugins/gst-plugins-opus:1.0 media-plugins/gst-plugins-v4l2:1.0 ~net-im/psi-9999[extras?] SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7a1135e3033aa029b58edc11cb29e177 diff --git a/metadata/md5-cache/net-im/qtox-1.17.6-r1 b/metadata/md5-cache/net-im/qtox-1.17.6-r1 index e2d15c3da83a..afd522ea81e3 100644 --- a/metadata/md5-cache/net-im/qtox-1.17.6-r1 +++ b/metadata/md5-cache/net-im/qtox-1.17.6-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-db/sqlcipher dev-libs/libsodium:= dev-qt/qtconcurrent:5 dev-qt/qtcor RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/qTox/qTox/releases/download/v1.17.6/v1.17.6.tar.gz -> qTox-1.17.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f4469b779093824f104ecf15384177e2 diff --git a/metadata/md5-cache/net-im/qtox-9999 b/metadata/md5-cache/net-im/qtox-9999 index 3b3676a8a4ed..cd7ed79b2b68 100644 --- a/metadata/md5-cache/net-im/qtox-9999 +++ b/metadata/md5-cache/net-im/qtox-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=dev-db/sqlcipher dev-libs/libsodium:= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5[gif(+),jpeg,png,X(-)] dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-gfx/qrencode:= media-libs/libexif media-libs/openal media-video/ffmpeg:=[webp,v4l] >=net-libs/tox-0.2.13:=[av] >=net-libs/toxext-0.0.3 >=net-libs/tox_extension_messages-0.0.3 notification? ( x11-libs/snorenotify ) spellcheck? ( kde-frameworks/sonnet:5 ) X? ( x11-libs/libX11 x11-libs/libXScrnSaver ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=efc18436085382f2687ce91141c16a82 diff --git a/metadata/md5-cache/net-im/signal-desktop-bin-6.9.0 b/metadata/md5-cache/net-im/signal-desktop-bin-6.10.1 similarity index 97% rename from metadata/md5-cache/net-im/signal-desktop-bin-6.9.0 rename to metadata/md5-cache/net-im/signal-desktop-bin-6.10.1 index 4b97547c7cb2..787f88fcea0c 100644 --- a/metadata/md5-cache/net-im/signal-desktop-bin-6.9.0 +++ b/metadata/md5-cache/net-im/signal-desktop-bin-6.10.1 @@ -10,6 +10,6 @@ LICENSE=GPL-3 MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 ISC openssl ZL RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa[X(+)] net-print/cups sys-apps/dbus[X] x11-libs/cairo x11-libs/gtk+:3[X] x11-libs/libdrm x11-libs/libX11 x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/pango sound? ( || ( media-sound/pulseaudio media-sound/apulse ) ) RESTRICT=splitdebug SLOT=0 -SRC_URI=https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_6.9.0_amd64.deb +SRC_URI=https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_6.10.1_amd64.deb _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b unpacker 65735fed9c1c30cb461c90db600ac990 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=93759a98a191e9543faf30502e970cda diff --git a/metadata/md5-cache/net-im/spectrum2-2.1.3-r1 b/metadata/md5-cache/net-im/spectrum2-2.1.3-r1 index e3961729be1f..9e34ce9d95e7 100644 --- a/metadata/md5-cache/net-im/spectrum2-2.1.3-r1 +++ b/metadata/md5-cache/net-im/spectrum2-2.1.3-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) test? ( irc ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/SpectrumIM/spectrum2/archive/2.1.3.tar.gz -> spectrum2-2.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ef2831dd0e41b3b5e777c44671ad5dfe diff --git a/metadata/md5-cache/net-im/spectrum2-2.1.3-r2 b/metadata/md5-cache/net-im/spectrum2-2.1.3-r2 index d87bd462928b..3652b5b98052 100644 --- a/metadata/md5-cache/net-im/spectrum2-2.1.3-r2 +++ b/metadata/md5-cache/net-im/spectrum2-2.1.3-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) test? ( irc ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/SpectrumIM/spectrum2/archive/2.1.3.tar.gz -> spectrum2-2.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=53670e6e5d025cfd99ec4168f18a8a57 diff --git a/metadata/md5-cache/net-im/telegram-desktop-4.4.1 b/metadata/md5-cache/net-im/telegram-desktop-4.4.1 index e139b892d8e5..57eb6325b070 100644 --- a/metadata/md5-cache/net-im/telegram-desktop-4.4.1 +++ b/metadata/md5-cache/net-im/telegram-desktop-4.4.1 @@ -13,5 +13,5 @@ RDEPEND=!net-im/telegram-desktop-bin app-arch/lz4:= dev-cpp/abseil-cpp:= dev-lib REQUIRED_USE=spell? ( ^^ ( enchant hunspell ) ) qt6-imageformats? ( qt6 ) SLOT=0 SRC_URI=https://github.com/telegramdesktop/tdesktop/releases/download/v4.4.1/tdesktop-4.4.1-full.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0109de5e780cfdd002fbcf418cbc5dc0 diff --git a/metadata/md5-cache/net-im/telegram-desktop-4.5.3 b/metadata/md5-cache/net-im/telegram-desktop-4.5.3 index 4715159361fb..97ad41776b01 100644 --- a/metadata/md5-cache/net-im/telegram-desktop-4.5.3 +++ b/metadata/md5-cache/net-im/telegram-desktop-4.5.3 @@ -13,5 +13,5 @@ RDEPEND=!net-im/telegram-desktop-bin app-arch/lz4:= dev-cpp/abseil-cpp:= dev-lib REQUIRED_USE=spell? ( ^^ ( enchant hunspell ) ) qt6-imageformats? ( qt6 ) SLOT=0 SRC_URI=https://github.com/telegramdesktop/tdesktop/releases/download/v4.5.3/tdesktop-4.5.3-full.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=184b927d92922602219ec3f64193562e diff --git a/metadata/md5-cache/net-im/telegram-desktop-4.6.5 b/metadata/md5-cache/net-im/telegram-desktop-4.6.5 index e7db1724a48e..08deba301aee 100644 --- a/metadata/md5-cache/net-im/telegram-desktop-4.6.5 +++ b/metadata/md5-cache/net-im/telegram-desktop-4.6.5 @@ -13,5 +13,5 @@ RDEPEND=!net-im/telegram-desktop-bin app-arch/lz4:= dev-cpp/abseil-cpp:= dev-lib REQUIRED_USE=qt6-imageformats? ( qt6 ) SLOT=0 SRC_URI=https://github.com/telegramdesktop/tdesktop/releases/download/v4.6.5/tdesktop-4.6.5-full.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=97f0ae26542d4d75b4b6e1576835eeea diff --git a/metadata/md5-cache/net-im/vacuum-1.3.0_pre20180105 b/metadata/md5-cache/net-im/vacuum-1.3.0_pre20180105 index c9e6153e557d..46a25823fb12 100644 --- a/metadata/md5-cache/net-im/vacuum-1.3.0_pre20180105 +++ b/metadata/md5-cache/net-im/vacuum-1.3.0_pre20180105 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtlockedfile[qt5(+)] dev-qt/qtmult REQUIRED_USE=annotations? ( privatestorage ) avatars? ( vcard ) birthdayreminder? ( vcard ) bookmarks? ( privatestorage ) captchaforms? ( dataforms ) commands? ( dataforms ) datastreamsmanager? ( dataforms ) filemessagearchive? ( messagearchiver ) filestreamsmanager? ( datastreamsmanager ) filetransfer? ( filestreamsmanager datastreamsmanager ) messagecarbons? ( servicediscovery ) pepmanager? ( servicediscovery ) recentcontacts? ( privatestorage ) registration? ( dataforms ) remotecontrol? ( commands dataforms ) servermessagearchive? ( messagearchiver ) sessionnegotiation? ( dataforms ) spell? ( ^^ ( aspell enchant hunspell ) ) SLOT=0/37 SRC_URI=https://github.com/Vacuum-IM/vacuum-im/archive/1.3.0.20180105-Alpha.tar.gz -> vacuum-im-1.3.0.20180105-Alpha.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=26a45709918c68e3d6aaea35a0e396a4 diff --git a/metadata/md5-cache/net-im/vacuum-9999 b/metadata/md5-cache/net-im/vacuum-9999 index 359a37485fe2..e19e58af246c 100644 --- a/metadata/md5-cache/net-im/vacuum-9999 +++ b/metadata/md5-cache/net-im/vacuum-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtlockedfile[qt5(+)] dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtxml:5 net-dns/libidn sys-libs/zlib[minizip] x11-libs/libXScrnSaver filemessagearchive? ( dev-qt/qtsql:5[sqlite] ) messagearchiver? ( dev-qt/qtsql:5[sqlite] ) spell? ( aspell? ( app-text/aspell ) enchant? ( app-text/enchant:0 ) hunspell? ( app-text/hunspell ) ) REQUIRED_USE=annotations? ( privatestorage ) avatars? ( vcard ) birthdayreminder? ( vcard ) bookmarks? ( privatestorage ) captchaforms? ( dataforms ) commands? ( dataforms ) datastreamsmanager? ( dataforms ) filemessagearchive? ( messagearchiver ) filestreamsmanager? ( datastreamsmanager ) filetransfer? ( filestreamsmanager datastreamsmanager ) messagecarbons? ( servicediscovery ) pepmanager? ( servicediscovery ) recentcontacts? ( privatestorage ) registration? ( dataforms ) remotecontrol? ( commands dataforms ) servermessagearchive? ( messagearchiver ) sessionnegotiation? ( dataforms ) spell? ( ^^ ( aspell enchant hunspell ) ) SLOT=0/37 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=650fa883dfa15dc9ed8ec4bef0fe0340 diff --git a/metadata/md5-cache/net-irc/Manifest.gz b/metadata/md5-cache/net-irc/Manifest.gz index 352d68939a77..b422d640f4a8 100644 Binary files a/metadata/md5-cache/net-irc/Manifest.gz and b/metadata/md5-cache/net-irc/Manifest.gz differ diff --git a/metadata/md5-cache/net-irc/anope-2.0.11 b/metadata/md5-cache/net-irc/anope-2.0.11 index 8c5206b94425..238c44d06873 100644 --- a/metadata/md5-cache/net-irc/anope-2.0.11 +++ b/metadata/md5-cache/net-irc/anope-2.0.11 @@ -12,5 +12,5 @@ RDEPEND=acct-group/anope acct-user/anope mysql? ( dev-db/mysql-connector-c:0= ) REQUIRED_USE=sql? ( || ( mysql sqlite ) ) SLOT=0 SRC_URI=https://github.com/anope/anope/archive/2.0.11.tar.gz -> anope-2.0.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bc6b08eca368c16131fcb4e5e8e01e20 diff --git a/metadata/md5-cache/net-irc/emech-3.0.99_p20221123 b/metadata/md5-cache/net-irc/emech-3.0.99_p20221123 index 2bb85ffe5f54..910aef418604 100644 --- a/metadata/md5-cache/net-irc/emech-3.0.99_p20221123 +++ b/metadata/md5-cache/net-irc/emech-3.0.99_p20221123 @@ -5,10 +5,10 @@ EAPI=8 HOMEPAGE=https://github.com/EnergyMech/energymech INHERIT=readme.gentoo-r1 toolchain-funcs IUSE=debug session tcl -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=virtual/libcrypt:= SLOT=0 SRC_URI=https://github.com/EnergyMech/energymech/archive/62b62c8388fac3b3715c5d6539e1d704b16fa2d6.tar.gz -> emech-3.0.99_p20221123.tar.gz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=2b64f938af206f395a25ec39c70cd393 +_md5_=1d964736cddede7f1008cbcd7d888222 diff --git a/metadata/md5-cache/net-irc/konversation-22.08.3 b/metadata/md5-cache/net-irc/konversation-22.08.3 index aa714d09b77f..8863e358f693 100644 --- a/metadata/md5-cache/net-irc/konversation-22.08.3 +++ b/metadata/md5-cache/net-irc/konversation-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/karchive-5.96.0:5 >=kde-frameworks/kbookmarks-5.96.0:5 >=kde-frameworks/kcodecs-5.96.0:5 >=kde-frameworks/kcompletion-5.96.0:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kglobalaccel-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kidletime-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kitemviews-5.96.0:5 >=kde-frameworks/knewstuff-5.96.0:5 >=kde-frameworks/knotifications-5.96.0:5 >=kde-frameworks/knotifyconfig-5.96.0:5 >=kde-frameworks/kparts-5.96.0:5 >=kde-frameworks/kservice-5.96.0:5 >=kde-frameworks/ktextwidgets-5.96.0:5 >=kde-frameworks/kwallet-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 crypt? ( >=app-crypt/qca-2.3.0:2[qt5(+)] ) >=dev-qt/qtsvg-5.15.5:5 crypt? ( >=app-crypt/qca-2.3.0:2[qt5(+),ssl] ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/konversation-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7a058de931462fa62ca1d4f6332837f4 diff --git a/metadata/md5-cache/net-irc/konversation-22.12.3 b/metadata/md5-cache/net-irc/konversation-22.12.3 index ff17d3e926bc..5c3721322be2 100644 --- a/metadata/md5-cache/net-irc/konversation-22.12.3 +++ b/metadata/md5-cache/net-irc/konversation-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=dev-qt/qtxml-5.15.5:5 >=kde-frameworks/karchive-5.101.0:5 >=kde-frameworks/kbookmarks-5.101.0:5 >=kde-frameworks/kcodecs-5.101.0:5 >=kde-frameworks/kcompletion-5.101.0:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kglobalaccel-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kidletime-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kitemviews-5.101.0:5 >=kde-frameworks/knewstuff-5.101.0:5 >=kde-frameworks/knotifications-5.101.0:5 >=kde-frameworks/knotifyconfig-5.101.0:5 >=kde-frameworks/kparts-5.101.0:5 >=kde-frameworks/kservice-5.101.0:5 >=kde-frameworks/ktextwidgets-5.101.0:5 >=kde-frameworks/kwallet-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 crypt? ( >=app-crypt/qca-2.3.0:2[qt5(+)] ) >=dev-qt/qtsvg-5.15.5:5 crypt? ( >=app-crypt/qca-2.3.0:2[qt5(+),ssl] ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/konversation-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8b9bdc2a36302982ad0c9ff040409a2e diff --git a/metadata/md5-cache/net-irc/kvirc-5.2_pre20210630233331-r1 b/metadata/md5-cache/net-irc/kvirc-5.2_pre20210630233331-r1 index 7cf86e68bd1b..0af15cd6cd78 100644 --- a/metadata/md5-cache/net-irc/kvirc-5.2_pre20210630233331-r1 +++ b/metadata/md5-cache/net-irc/kvirc-5.2_pre20210630233331-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 REQUIRED_USE=audiofile? ( oss ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) SLOT=0 SRC_URI=https://github.com/kvirc/KVIrc/archive/d86b79f657bb7388d7ec1d3e0d91e7c4221c2394.tar.gz -> kvirc-5.2_pre20210630233331.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=126ff473c9ba41602d4efc9fb6b08cf9 diff --git a/metadata/md5-cache/net-irc/kvirc-9999 b/metadata/md5-cache/net-irc/kvirc-9999 index 73176b729d8b..06e49ad75241 100644 --- a/metadata/md5-cache/net-irc/kvirc-9999 +++ b/metadata/md5-cache/net-irc/kvirc-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 sys-libs/zlib:0= x11-libs/libX11 x11-libs/libXScrnSaver audiofile? ( media-libs/audiofile ) dbus? ( dev-qt/qtdbus:5 ) dcc-video? ( dev-qt/qtmultimedia:5[widgets] ) kde? ( kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/knotifications:5 kde-frameworks/kservice:5 kde-frameworks/kwindowsystem:5 kde-frameworks/kxmlgui:5 ) perl? ( dev-lang/perl:0= ) phonon? ( media-libs/phonon[qt5(+)] ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) ) spell? ( app-text/enchant:0= ) ssl? ( dev-libs/openssl:0= ) theora? ( media-libs/libogg media-libs/libtheora media-libs/libvorbis ) gsm? ( media-sound/gsm ) REQUIRED_USE=audiofile? ( oss ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e2891ab82e6f6d75dc6d35bf52447b2 diff --git a/metadata/md5-cache/net-irc/quassel-0.14.0-r1 b/metadata/md5-cache/net-irc/quassel-0.14.0-r1 index 19a9ec998e65..b8040e8febed 100644 --- a/metadata/md5-cache/net-irc/quassel-0.14.0-r1 +++ b/metadata/md5-cache/net-irc/quassel-0.14.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( gui server monolithic ) crypt? ( || ( server monolithic ) ) kd RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://quassel-irc.org/pub/quassel-0.14.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=36de9a3a5ab050bed030201e0da2a2e5 diff --git a/metadata/md5-cache/net-irc/quassel-9999 b/metadata/md5-cache/net-irc/quassel-9999 index cd4d3fe51002..b2ddad6b799f 100644 --- a/metadata/md5-cache/net-irc/quassel-9999 +++ b/metadata/md5-cache/net-irc/quassel-9999 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= dev-qt/qtcore:5 dev-qt/qtnetwork:5[ssl] sys-libs/zlib m REQUIRED_USE=|| ( gui server monolithic ) crypt? ( || ( server monolithic ) ) kde? ( dbus spell ) ldap? ( || ( server monolithic ) ) postgres? ( || ( server monolithic ) ) snorenotify? ( || ( gui monolithic ) ) spell? ( || ( gui monolithic ) ) syslog? ( || ( server monolithic ) ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=65800957b4c54a0872434c651538a922 diff --git a/metadata/md5-cache/net-irc/weechat-3.6 b/metadata/md5-cache/net-irc/weechat-3.6 index 82f7dc798b2e..5edeff332236 100644 --- a/metadata/md5-cache/net-irc/weechat-3.6 +++ b/metadata/md5-cache/net-irc/weechat-3.6 @@ -13,5 +13,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 lua_single_target_lua5-3 lua_s RESTRICT=!test? ( test ) SLOT=0/3.6 SRC_URI=https://weechat.org/files/src/weechat-3.6.tar.xz verify-sig? ( https://weechat.org/files/src/weechat-3.6.tar.xz.asc ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b470922f90021059f18eb532748471ae diff --git a/metadata/md5-cache/net-irc/weechat-3.7.1 b/metadata/md5-cache/net-irc/weechat-3.7.1 index 3eab6ae153cc..b4e9b72db7c5 100644 --- a/metadata/md5-cache/net-irc/weechat-3.7.1 +++ b/metadata/md5-cache/net-irc/weechat-3.7.1 @@ -13,5 +13,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 lua_single_target_lua5-3 lua_s RESTRICT=!test? ( test ) SLOT=0/3.7.1 SRC_URI=https://weechat.org/files/src/weechat-3.7.1.tar.xz verify-sig? ( https://weechat.org/files/src/weechat-3.7.1.tar.xz.asc ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=39a5cdf10367e6416f853e8f00bcaf3f diff --git a/metadata/md5-cache/net-irc/weechat-3.8 b/metadata/md5-cache/net-irc/weechat-3.8 index 3b34f5d25876..7e5759d314c0 100644 --- a/metadata/md5-cache/net-irc/weechat-3.8 +++ b/metadata/md5-cache/net-irc/weechat-3.8 @@ -13,5 +13,5 @@ REQUIRED_USE=enchant? ( spell ) lua? ( ^^ ( lua_single_target_lua5-1 lua_single_ RESTRICT=!test? ( test ) SLOT=0/3.8 SRC_URI=https://weechat.org/files/src/weechat-3.8.tar.xz verify-sig? ( https://weechat.org/files/src/weechat-3.8.tar.xz.asc ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=faec4b47889e2110324f9cbf2b45da5c diff --git a/metadata/md5-cache/net-irc/weechat-9999 b/metadata/md5-cache/net-irc/weechat-9999 index 18195881a258..9df562ded9a7 100644 --- a/metadata/md5-cache/net-irc/weechat-9999 +++ b/metadata/md5-cache/net-irc/weechat-9999 @@ -12,5 +12,5 @@ RDEPEND=app-arch/zstd:= dev-libs/libgcrypt:0= net-libs/gnutls:= sys-libs/ncurses REQUIRED_USE=enchant? ( spell ) lua? ( ^^ ( lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) test? ( nls ) RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=faec4b47889e2110324f9cbf2b45da5c diff --git a/metadata/md5-cache/net-irc/znc-1.8.2-r2 b/metadata/md5-cache/net-irc/znc-1.8.2-r2 index c98591be17ec..9c6c40651207 100644 --- a/metadata/md5-cache/net-irc/znc-1.8.2-r2 +++ b/metadata/md5-cache/net-irc/znc-1.8.2-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/1.8.2 SRC_URI=https://znc.in/releases/archive/znc-1.8.2.tar.gz test? ( https://github.com/google/googletest/archive/1.8.1.tar.gz -> gtest-1.8.1.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=218ade1f3eb1e3d170609a1787fa0ebf diff --git a/metadata/md5-cache/net-irc/znc-9999 b/metadata/md5-cache/net-irc/znc-9999 index 8caee24d882a..af5c3f302454 100644 --- a/metadata/md5-cache/net-irc/znc-9999 +++ b/metadata/md5-cache/net-irc/znc-9999 @@ -12,5 +12,5 @@ RDEPEND=icu? ( dev-libs/icu:= ) nls? ( dev-libs/boost:=[nls] ) perl? ( >=dev-lan REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) icu ) RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ce25a7d448c4949b859447623c0e2aaf diff --git a/metadata/md5-cache/net-irc/znc-clientbuffer-1.0.48-r1 b/metadata/md5-cache/net-irc/znc-clientbuffer-1.0.48-r1 index 526cccaba762..f5bee1569456 100644 --- a/metadata/md5-cache/net-irc/znc-clientbuffer-1.0.48-r1 +++ b/metadata/md5-cache/net-irc/znc-clientbuffer-1.0.48-r1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=net-irc/znc:= SLOT=0 SRC_URI=https://github.com/CyberShadow/znc-clientbuffer/archive/v1.0.48.tar.gz -> znc-clientbuffer-1.0.48.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=97c5d5996bb8d2c800de0196dd8c520b diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz index bbab61622ace..d2ba84195c0c 100644 Binary files a/metadata/md5-cache/net-libs/Manifest.gz and b/metadata/md5-cache/net-libs/Manifest.gz differ diff --git a/metadata/md5-cache/net-libs/biblesync-2.1.0 b/metadata/md5-cache/net-libs/biblesync-2.1.0 index d8cfdfdca62a..8d8d19f760ae 100644 --- a/metadata/md5-cache/net-libs/biblesync-2.1.0 +++ b/metadata/md5-cache/net-libs/biblesync-2.1.0 @@ -9,5 +9,5 @@ KEYWORDS=amd64 LICENSE=public-domain SLOT=0 SRC_URI=https://github.com/karlkleinpaste/biblesync/releases/download/2.1.0/biblesync-2.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43f5d7ff582d6bdcdb1e59d17f7c1d37 diff --git a/metadata/md5-cache/net-libs/cppzmq-4.9.0 b/metadata/md5-cache/net-libs/cppzmq-4.9.0 index 279b8e064e22..b3bb51abf7f3 100644 --- a/metadata/md5-cache/net-libs/cppzmq-4.9.0 +++ b/metadata/md5-cache/net-libs/cppzmq-4.9.0 @@ -12,5 +12,5 @@ RDEPEND=>=net-libs/zeromq-4.3.1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/zeromq/cppzmq/archive/v4.9.0.tar.gz -> cppzmq-4.9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c42947181ff9fe0388201e3dafa98b51 diff --git a/metadata/md5-cache/net-libs/davix-0.8.3 b/metadata/md5-cache/net-libs/davix-0.8.3 index 9e6545ec9657..2a7677aba05a 100644 --- a/metadata/md5-cache/net-libs/davix-0.8.3 +++ b/metadata/md5-cache/net-libs/davix-0.8.3 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( tools ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cern-fts/davix/releases/download/R_0_8_3/davix-0.8.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7971215a36f340d6ec204737086b08b5 diff --git a/metadata/md5-cache/net-libs/davix-0.8.4 b/metadata/md5-cache/net-libs/davix-0.8.4 index a68d7fcf2a1e..8ac8d8d1986e 100644 --- a/metadata/md5-cache/net-libs/davix-0.8.4 +++ b/metadata/md5-cache/net-libs/davix-0.8.4 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( tools ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cern-fts/davix/releases/download/R_0_8_4/davix-0.8.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6dfeec4bbe05e921ba6c090a700ec0ac diff --git a/metadata/md5-cache/net-libs/google-cloud-cpp-0.10.0-r2 b/metadata/md5-cache/net-libs/google-cloud-cpp-0.10.0-r2 index 10276631c8f5..e6f979c203a6 100644 --- a/metadata/md5-cache/net-libs/google-cloud-cpp-0.10.0-r2 +++ b/metadata/md5-cache/net-libs/google-cloud-cpp-0.10.0-r2 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/protobuf:= dev-libs/crc32c dev-libs/openssl:= net-misc/curl net RESTRICT=test SLOT=0 SRC_URI=https://github.com/GoogleCloudPlatform/google-cloud-cpp/archive/v0.10.0.tar.gz -> google-cloud-cpp-0.10.0.tar.gz https://github.com/nlohmann/json/releases/download/v3.4.0/json.hpp -> nlohmann-json-3.4.0-json.hpp https://github.com/googleapis/googleapis/archive/6a3277c0656219174ff7c345f31fb20a90b30b97.tar.gz -> googleapis-6a3277c0656219174ff7c345f31fb20a90b30b97.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e84a936f04c0ef1f331f00e57c2477c3 diff --git a/metadata/md5-cache/net-libs/google-cloud-cpp-1.36.0 b/metadata/md5-cache/net-libs/google-cloud-cpp-1.36.0 index 9752f7213cfc..d490fc8330b7 100644 --- a/metadata/md5-cache/net-libs/google-cloud-cpp-1.36.0 +++ b/metadata/md5-cache/net-libs/google-cloud-cpp-1.36.0 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/abseil-cpp:= dev-cpp/nlohmann_json dev-libs/protobuf:= dev-libs/ RESTRICT=test SLOT=0 SRC_URI=https://github.com/GoogleCloudPlatform/google-cloud-cpp/archive/v1.36.0.tar.gz -> google-cloud-cpp-1.36.0.tar.gz https://github.com/googleapis/googleapis/archive/28c6bb97cac6f16c69879be4e655674a74b886ef.tar.gz -> googleapis-28c6bb97cac6f16c69879be4e655674a74b886ef.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=88cc90575b03bda85ba3e5398cad14f7 diff --git a/metadata/md5-cache/net-libs/grpc-1.43.0 b/metadata/md5-cache/net-libs/grpc-1.43.0 index 6cad4fafccd1..d0939961681f 100644 --- a/metadata/md5-cache/net-libs/grpc-1.43.0 +++ b/metadata/md5-cache/net-libs/grpc-1.43.0 @@ -12,5 +12,5 @@ RDEPEND==dev-cpp/abseil-cpp-20211102.0*:= >=dev-libs/re2-0.2021.11.01:= >=dev-li RESTRICT=test SLOT=0/21.143 SRC_URI=https://github.com/grpc/grpc/archive/v1.43.0.tar.gz -> grpc-1.43.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9918c652991f2dca6120e3cfa29d826a diff --git a/metadata/md5-cache/net-libs/grpc-1.43.0-r1 b/metadata/md5-cache/net-libs/grpc-1.43.0-r1 index 2220ab9e0592..da01598fbcb9 100644 --- a/metadata/md5-cache/net-libs/grpc-1.43.0-r1 +++ b/metadata/md5-cache/net-libs/grpc-1.43.0-r1 @@ -12,5 +12,5 @@ RDEPEND==dev-cpp/abseil-cpp-20211102.0*:= >=dev-libs/re2-0.2021.11.01:= >=dev-li RESTRICT=test SLOT=0/21.143 SRC_URI=https://github.com/grpc/grpc/archive/v1.43.0.tar.gz -> grpc-1.43.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=879d4886b0f787f42340a267f62f39ae diff --git a/metadata/md5-cache/net-libs/grpc-1.51.1-r1 b/metadata/md5-cache/net-libs/grpc-1.51.1-r1 index 4b1d14bbef73..d43702c76939 100644 --- a/metadata/md5-cache/net-libs/grpc-1.51.1-r1 +++ b/metadata/md5-cache/net-libs/grpc-1.51.1-r1 @@ -12,5 +12,5 @@ RDEPEND==dev-cpp/abseil-cpp-20220623.1*:= >=dev-libs/re2-0.2021.11.01:= >=dev-li RESTRICT=test SLOT=0/29.151 SRC_URI=https://github.com/grpc/grpc/archive/v1.51.1.tar.gz -> grpc-1.51.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=eb791ac8459b53fe9b1c24de5da78a26 diff --git a/metadata/md5-cache/net-libs/grpc-1.52.0 b/metadata/md5-cache/net-libs/grpc-1.52.0 index dccbd3d9cd29..26d463d2347e 100644 --- a/metadata/md5-cache/net-libs/grpc-1.52.0 +++ b/metadata/md5-cache/net-libs/grpc-1.52.0 @@ -12,5 +12,5 @@ RDEPEND==dev-cpp/abseil-cpp-20220623.1*:= >=dev-libs/re2-0.2021.11.01:= >=dev-li RESTRICT=test SLOT=0/30.152 SRC_URI=https://github.com/grpc/grpc/archive/v1.52.0.tar.gz -> grpc-1.52.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d0e871ba4e8054e02e18452cc8025ce1 diff --git a/metadata/md5-cache/net-libs/grpc-1.52.1 b/metadata/md5-cache/net-libs/grpc-1.52.1 index 52e4db93fc45..c17508c617e7 100644 --- a/metadata/md5-cache/net-libs/grpc-1.52.1 +++ b/metadata/md5-cache/net-libs/grpc-1.52.1 @@ -12,5 +12,5 @@ RDEPEND==dev-cpp/abseil-cpp-20220623.1*:= >=dev-libs/re2-0.2021.11.01:= >=dev-li RESTRICT=test SLOT=0/30.152 SRC_URI=https://github.com/grpc/grpc/archive/v1.52.1.tar.gz -> grpc-1.52.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d0e871ba4e8054e02e18452cc8025ce1 diff --git a/metadata/md5-cache/net-libs/ignition-msgs-5.9.0 b/metadata/md5-cache/net-libs/ignition-msgs-5.9.0 index 28a4ca2dabbe..87a1e3216bb8 100644 --- a/metadata/md5-cache/net-libs/ignition-msgs-5.9.0 +++ b/metadata/md5-cache/net-libs/ignition-msgs-5.9.0 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-libs/protobuf:= sci-libs/ignition-math:6= dev-libs/tinyxml2:= SLOT=5 SRC_URI=https://github.com/ignitionrobotics/ign-msgs/archive/ignition-msgs5_5.9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dbd83677db46a3e5716b08c9252a2937 diff --git a/metadata/md5-cache/net-libs/ignition-transport-8.3.0 b/metadata/md5-cache/net-libs/ignition-transport-8.3.0 index 1f9fe94a483d..27c8ae5ede8d 100644 --- a/metadata/md5-cache/net-libs/ignition-transport-8.3.0 +++ b/metadata/md5-cache/net-libs/ignition-transport-8.3.0 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=net-libs/ignition-msgs:5= dev-libs/protobuf:= >=net-libs/zeromq-4.2.0:= sys-apps/util-linux net-libs/cppzmq dev-db/sqlite:3 SLOT=8 SRC_URI=https://github.com/ignitionrobotics/ign-transport/archive/ignition-transport8_8.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3e4bac82a3645adaa18449f954b87286 diff --git a/metadata/md5-cache/net-libs/kdav2-0.3.0 b/metadata/md5-cache/net-libs/kdav2-0.3.0 index f80036a66dc6..8c875dadccd2 100644 --- a/metadata/md5-cache/net-libs/kdav2-0.3.0 +++ b/metadata/md5-cache/net-libs/kdav2-0.3.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtnetwork-5.12.3:5 >=dev-qt/qtxml-5.12. RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/unstable/kdav2/0.3.0/src/kdav2-0.3.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cd380afdafa27c6b5b73e1b8e324611b diff --git a/metadata/md5-cache/net-libs/kdsoap-2.1.1 b/metadata/md5-cache/net-libs/kdsoap-2.1.1 index b67a0570e45c..d54eefadcf96 100644 --- a/metadata/md5-cache/net-libs/kdsoap-2.1.1 +++ b/metadata/md5-cache/net-libs/kdsoap-2.1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 AGPL-3 RDEPEND=dev-qt/qtcore:5 dev-qt/qtnetwork:5 dev-qt/qtxml:5 SLOT=0/2 SRC_URI=https://github.com/KDAB/KDSoap/releases/download/kdsoap-2.1.1/kdsoap-2.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f3ca2ecb7d9f41989fb8fd951a99ffb9 diff --git a/metadata/md5-cache/net-libs/kdsoap-ws-discovery-client-0.2_pre20200927 b/metadata/md5-cache/net-libs/kdsoap-ws-discovery-client-0.2_pre20200927 index b6880963d4d5..968ecb3a3a55 100644 --- a/metadata/md5-cache/net-libs/kdsoap-ws-discovery-client-0.2_pre20200927 +++ b/metadata/md5-cache/net-libs/kdsoap-ws-discovery-client-0.2_pre20200927 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtnetwork:5 >=net-libs/kdsoap-1.9.0:= || ( kde-fr RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://gitlab.com/caspermeijn/kdsoap-ws-discovery-client/repository/dcefb65c88e76f1f9eda8b0318006e93d15a0e1e/archive.tar.gz -> kdsoap-ws-discovery-client-0.2_pre20200927.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=edc03badc298c6a4cc3959df68075e5d diff --git a/metadata/md5-cache/net-libs/kimap2-0.3.0 b/metadata/md5-cache/net-libs/kimap2-0.3.0 index c427b08f6d95..683518996764 100644 --- a/metadata/md5-cache/net-libs/kimap2-0.3.0 +++ b/metadata/md5-cache/net-libs/kimap2-0.3.0 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/cyrus-sasl:2 >=dev-qt/qtnetwork-5.12.3:5[ssl] >=kde-apps/kmime- RESTRICT=test SLOT=5 SRC_URI=mirror://kde/unstable/kimap2/0.3.0/src/kimap2-0.3.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=194bda87a10aa396b04a380bfb661fed diff --git a/metadata/md5-cache/net-libs/libad9361-iio-0.2-r1 b/metadata/md5-cache/net-libs/libad9361-iio-0.2-r1 index cc0bacdeea94..71ba2b81aea1 100644 --- a/metadata/md5-cache/net-libs/libad9361-iio-0.2-r1 +++ b/metadata/md5-cache/net-libs/libad9361-iio-0.2-r1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=net-libs/libiio:= SLOT=0/0.2 SRC_URI=https://github.com/analogdevicesinc/libad9361-iio/archive/v0.2.tar.gz -> libad9361-iio-0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d56e4e38a9618c329f30b0743eeb5c18 diff --git a/metadata/md5-cache/net-libs/libad9361-iio-9999 b/metadata/md5-cache/net-libs/libad9361-iio-9999 index b5413a448697..7ba4cf2c5e05 100644 --- a/metadata/md5-cache/net-libs/libad9361-iio-9999 +++ b/metadata/md5-cache/net-libs/libad9361-iio-9999 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 PROPERTIES=live RDEPEND=net-libs/libiio:= SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0b35eaa961bd951861625acec2474258 diff --git a/metadata/md5-cache/net-libs/libbtbb-2020.12.1-r1 b/metadata/md5-cache/net-libs/libbtbb-2020.12.1-r1 index 68c3d67c13f5..652d5e6b0357 100644 --- a/metadata/md5-cache/net-libs/libbtbb-2020.12.1-r1 +++ b/metadata/md5-cache/net-libs/libbtbb-2020.12.1-r1 @@ -9,5 +9,5 @@ KEYWORDS=amd64 arm x86 LICENSE=GPL-2 SLOT=0/2020.12.1 SRC_URI=https://github.com/greatscottgadgets/libbtbb/archive/2020-12-R1.tar.gz -> libbtbb-2020-12-R1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3fa44142e4e81175cc1ee0905cf96088 diff --git a/metadata/md5-cache/net-libs/libbtbb-9999 b/metadata/md5-cache/net-libs/libbtbb-9999 index 7593cf7d5ea1..a901c9466dcc 100644 --- a/metadata/md5-cache/net-libs/libbtbb-9999 +++ b/metadata/md5-cache/net-libs/libbtbb-9999 @@ -8,5 +8,5 @@ IUSE=static-libs LICENSE=GPL-2 PROPERTIES=live SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e685170f2ea98875927c18a91550015b diff --git a/metadata/md5-cache/net-libs/libcork-0.15.0-r2 b/metadata/md5-cache/net-libs/libcork-0.15.0-r2 index 65297ed7ac7c..3ea795fc8c7c 100644 --- a/metadata/md5-cache/net-libs/libcork-0.15.0-r2 +++ b/metadata/md5-cache/net-libs/libcork-0.15.0-r2 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=dev-libs/check SLOT=0 SRC_URI=https://github.com/dcreager/libcork/archive/0.15.0.tar.gz -> libcork-0.15.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d60a9ff500f707b389227cfafb4f7718 diff --git a/metadata/md5-cache/net-libs/libcorkipset-1.1.1.20150311_p8 b/metadata/md5-cache/net-libs/libcorkipset-1.1.1.20150311_p8 index 663108e87e3e..bea66ac70a15 100644 --- a/metadata/md5-cache/net-libs/libcorkipset-1.1.1.20150311_p8 +++ b/metadata/md5-cache/net-libs/libcorkipset-1.1.1.20150311_p8 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=net-libs/libcork SLOT=0 SRC_URI=https://github.com/rogers0/libcorkipset/archive/debian/1.1.1+20150311-8.tar.gz -> libcorkipset-1.1.1.20150311_p8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a62e2f2372ce4b286d2b087f3de373f9 diff --git a/metadata/md5-cache/net-libs/libhackrf-2022.09.1 b/metadata/md5-cache/net-libs/libhackrf-2022.09.1 index 8bdca3330e09..aca75beb27a0 100644 --- a/metadata/md5-cache/net-libs/libhackrf-2022.09.1 +++ b/metadata/md5-cache/net-libs/libhackrf-2022.09.1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=virtual/libusb:1 SLOT=0/2022.09.1 SRC_URI=https://github.com/greatscottgadgets/hackrf/releases/download/v2022.09.1/hackrf-2022.09.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bec3f761b57bda661d9370e521af1992 diff --git a/metadata/md5-cache/net-libs/libhackrf-2023.01.1 b/metadata/md5-cache/net-libs/libhackrf-2023.01.1 index 37a7b39ec35f..7714d0130631 100644 --- a/metadata/md5-cache/net-libs/libhackrf-2023.01.1 +++ b/metadata/md5-cache/net-libs/libhackrf-2023.01.1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=virtual/libusb:1 SLOT=0/2023.01.1 SRC_URI=https://github.com/greatscottgadgets/hackrf/releases/download/v2023.01.1/hackrf-2023.01.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b6147fa0e2755a106661665f7b3a3ab4 diff --git a/metadata/md5-cache/net-libs/libhackrf-9999 b/metadata/md5-cache/net-libs/libhackrf-9999 index 26a70031fa1a..01b3283f7dfc 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 a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=03e8cdceb4bfa605ee9ce6ee26e9383b diff --git a/metadata/md5-cache/net-libs/libiio-0.24 b/metadata/md5-cache/net-libs/libiio-0.24 index 56de125a9aa4..ef2be0931374 100644 --- a/metadata/md5-cache/net-libs/libiio-0.24 +++ b/metadata/md5-cache/net-libs/libiio-0.24 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/libxml2:= virtual/libusb:1= aio? ( dev-libs/libaio ) zeroconf? ( net-dns/avahi[dbus] ) SLOT=0/0.24 SRC_URI=https://github.com/analogdevicesinc/libiio/archive/v0.24.tar.gz -> libiio-0.24.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b1b1a70b32341d66806936c4379c2000 diff --git a/metadata/md5-cache/net-libs/libiio-9999 b/metadata/md5-cache/net-libs/libiio-9999 index 83c9efd9a316..4f84fc5c376a 100644 --- a/metadata/md5-cache/net-libs/libiio-9999 +++ b/metadata/md5-cache/net-libs/libiio-9999 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 PROPERTIES=live RDEPEND=dev-libs/libxml2:= virtual/libusb:1= aio? ( dev-libs/libaio ) zeroconf? ( net-dns/avahi ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2c9e17444fb9181a94d1ba0eebb07fcb diff --git a/metadata/md5-cache/net-libs/libktorrent-22.08.3 b/metadata/md5-cache/net-libs/libktorrent-22.08.3 index c87275faa1b1..d3281e77740a 100644 --- a/metadata/md5-cache/net-libs/libktorrent-22.08.3 +++ b/metadata/md5-cache/net-libs/libktorrent-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] >=dev-libs/gmp-6.0.0a:0= dev-libs/libgcr RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/libktorrent-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d7c6f956c32672f40b4a9d0a58be67e8 diff --git a/metadata/md5-cache/net-libs/libktorrent-22.12.3 b/metadata/md5-cache/net-libs/libktorrent-22.12.3 index 558466647260..1662aec5a544 100644 --- a/metadata/md5-cache/net-libs/libktorrent-22.12.3 +++ b/metadata/md5-cache/net-libs/libktorrent-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=app-crypt/qca-2.3.0:2[qt5(+)] >=dev-libs/gmp-6.0.0a:0= dev-libs/libgcr RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/libktorrent-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bc7f24568ab058a4c9091afb69303e47 diff --git a/metadata/md5-cache/net-libs/libmediawiki-5.38.0 b/metadata/md5-cache/net-libs/libmediawiki-5.38.0 index b7d24bc0cbaf..cacc28f316c5 100644 --- a/metadata/md5-cache/net-libs/libmediawiki-5.38.0 +++ b/metadata/md5-cache/net-libs/libmediawiki-5.38.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtnetwork-5.15.5:5 >=kde-frameworks/kcoreaddons-5.96.0:5 || ( k RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/libmediawiki/libmediawiki-5.38.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2edfc8655cbbff2389a69209690fa8ca diff --git a/metadata/md5-cache/net-libs/libnetconf2-2.1.11 b/metadata/md5-cache/net-libs/libnetconf2-2.1.11 index 25a1c88062d1..e370f1cea00b 100644 --- a/metadata/md5-cache/net-libs/libnetconf2-2.1.11 +++ b/metadata/md5-cache/net-libs/libnetconf2-2.1.11 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl:0= >=net-libs/libyang-2.0.194 net-libs/libssh:0=[server RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/CESNET/libnetconf2/archive/v2.1.11.tar.gz -> libnetconf2-2.1.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=14cefff50ac70c3040e3dc3874c31aed diff --git a/metadata/md5-cache/net-libs/libnetconf2-2.1.7 b/metadata/md5-cache/net-libs/libnetconf2-2.1.7 index 0c961b34a531..d3b519131316 100644 --- a/metadata/md5-cache/net-libs/libnetconf2-2.1.7 +++ b/metadata/md5-cache/net-libs/libnetconf2-2.1.7 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl:0= >=net-libs/libyang-2.0.164 net-libs/libssh:0=[server RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/CESNET/libnetconf2/archive/v2.1.7.tar.gz -> libnetconf2-2.1.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1082e802d66b5ebc9b65e5e34039bbcd diff --git a/metadata/md5-cache/net-libs/libnipper-0.12.6-r2 b/metadata/md5-cache/net-libs/libnipper-0.12.6-r2 index 0c3298ccbee2..68c0c50ae678 100644 --- a/metadata/md5-cache/net-libs/libnipper-0.12.6-r2 +++ b/metadata/md5-cache/net-libs/libnipper-0.12.6-r2 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 SLOT=0 SRC_URI=mirror://sourceforge/nipper/libnipper-0.12.6.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=808f16aff19f007d1c163705f7212836 diff --git a/metadata/md5-cache/net-libs/libomemo-0.8.1 b/metadata/md5-cache/net-libs/libomemo-0.8.1 index 9a43e6de01a9..6bf0f061c0da 100644 --- a/metadata/md5-cache/net-libs/libomemo-0.8.1 +++ b/metadata/md5-cache/net-libs/libomemo-0.8.1 @@ -12,5 +12,5 @@ RDEPEND=dev-db/sqlite dev-libs/glib dev-libs/libgcrypt dev-libs/mxml RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/gkdr/libomemo/archive/v0.8.1.tar.gz -> libomemo-0.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c6a3207cedbbf06f46578b945b05ab5f diff --git a/metadata/md5-cache/net-libs/libpcap-1.10.3 b/metadata/md5-cache/net-libs/libpcap-1.10.3 index accac56a9c35..ffe981ab614f 100644 --- a/metadata/md5-cache/net-libs/libpcap-1.10.3 +++ b/metadata/md5-cache/net-libs/libpcap-1.10.3 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://www.tcpdump.org/ https://github.com/the-tcpdump-group/libpcap INHERIT=autotools multilib-minimal verify-sig IUSE=bluetooth dbus netlink rdma remote static-libs test usb yydebug abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris LICENSE=BSD RDEPEND=bluetooth? ( net-wireless/bluez:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dbus? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) netlink? ( dev-libs/libnl: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(-)?] ) remote? ( 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(-)?] ) rdma? ( sys-cluster/rdma-core ) usb? ( virtual/libusb: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(-)?] ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.tcpdump.org/release/libpcap-1.10.3.tar.gz verify-sig? ( https://www.tcpdump.org/release/libpcap-1.10.3.tar.gz.sig ) _eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=bfb9c0794908a4f003b88689eacd6896 +_md5_=04dee389e83d312528946926373a3c03 diff --git a/metadata/md5-cache/net-libs/libproxy-0.4.18 b/metadata/md5-cache/net-libs/libproxy-0.4.18 index e86728d2b12d..3178466dde6e 100644 --- a/metadata/md5-cache/net-libs/libproxy-0.4.18 +++ b/metadata/md5-cache/net-libs/libproxy-0.4.18 @@ -13,5 +13,5 @@ RDEPEND=duktape? ( dev-lang/duktape ) gnome? ( dev-libs/glib:2[abi_x86_32(-)?,ab RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/libproxy/libproxy/archive/0.4.18.tar.gz -> libproxy-0.4.18.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 mono-env cef880fd27385e7e80934656e8789627 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 mono-env cef880fd27385e7e80934656e8789627 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e2b1c767a0a6bb50e08e8ea99fb3a104 diff --git a/metadata/md5-cache/net-libs/libquotient-0.7.1 b/metadata/md5-cache/net-libs/libquotient-0.7.1 index 291c6769a62b..89ae98ccbc9b 100644 --- a/metadata/md5-cache/net-libs/libquotient-0.7.1 +++ b/metadata/md5-cache/net-libs/libquotient-0.7.1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2+ RDEPEND=dev-libs/qtkeychain:=[qt5(+)] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5[ssl] SLOT=0/0.7 SRC_URI=https://github.com/quotient-im/libQuotient/archive/0.7.1.tar.gz -> libquotient-0.7.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4fc95367084764e7d287ce9af341252e diff --git a/metadata/md5-cache/net-libs/librsync-2.3.2 b/metadata/md5-cache/net-libs/librsync-2.3.2 index 715097cbe91d..40121502bf71 100644 --- a/metadata/md5-cache/net-libs/librsync-2.3.2 +++ b/metadata/md5-cache/net-libs/librsync-2.3.2 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/popt SLOT=0/2.2 SRC_URI=https://github.com/librsync/librsync/archive/v2.3.2.tar.gz -> librsync-2.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=76bb801ad7553d931b5dcd941c516158 diff --git a/metadata/md5-cache/net-libs/librsync-2.3.4 b/metadata/md5-cache/net-libs/librsync-2.3.4 index 8dcda9d494a1..b523f0e77da6 100644 --- a/metadata/md5-cache/net-libs/librsync-2.3.4 +++ b/metadata/md5-cache/net-libs/librsync-2.3.4 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/popt SLOT=0/2.2 SRC_URI=https://github.com/librsync/librsync/archive/v2.3.4.tar.gz -> librsync-2.3.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ec510fe4ca8760e3e4e87a7f82c64cd5 diff --git a/metadata/md5-cache/net-libs/libsignal-protocol-c-2.3.3 b/metadata/md5-cache/net-libs/libsignal-protocol-c-2.3.3 index 395389a06130..95523474f53e 100644 --- a/metadata/md5-cache/net-libs/libsignal-protocol-c-2.3.3 +++ b/metadata/md5-cache/net-libs/libsignal-protocol-c-2.3.3 @@ -8,5 +8,5 @@ KEYWORDS=amd64 arm64 x86 LICENSE=GPL-3 SLOT=0 SRC_URI=https://github.com/signalapp/libsignal-protocol-c/archive/v2.3.3.tar.gz -> libsignal-protocol-c-2.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5537821bd4acd7560029f622aa2db07f diff --git a/metadata/md5-cache/net-libs/libsignal-protocol-c-9999 b/metadata/md5-cache/net-libs/libsignal-protocol-c-9999 index d2767b03ed75..f42c23935bf7 100644 --- a/metadata/md5-cache/net-libs/libsignal-protocol-c-9999 +++ b/metadata/md5-cache/net-libs/libsignal-protocol-c-9999 @@ -7,5 +7,5 @@ INHERIT=git-r3 cmake LICENSE=GPL-3 PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6f2f7a3e2ce2c8c5d11005f3766c66c8 diff --git a/metadata/md5-cache/net-libs/libsoup-3.4.0 b/metadata/md5-cache/net-libs/libsoup-3.4.0-r1 similarity index 99% rename from metadata/md5-cache/net-libs/libsoup-3.4.0 rename to metadata/md5-cache/net-libs/libsoup-3.4.0-r1 index e34ed1698f33..483cf1632d29 100644 --- a/metadata/md5-cache/net-libs/libsoup-3.4.0 +++ b/metadata/md5-cache/net-libs/libsoup-3.4.0-r1 @@ -15,4 +15,4 @@ RESTRICT=!test? ( test ) SLOT=3.0 SRC_URI=mirror://gnome/sources/libsoup/3.4/libsoup-3.4.0.tar.xz _eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=790be3d7b416149e8e5fe669cefb8ec8 +_md5_=c65f342a83c25340a6ea641a9356a597 diff --git a/metadata/md5-cache/net-libs/libssh-0.10.4 b/metadata/md5-cache/net-libs/libssh-0.10.4 index 33d4ecc305c9..69927bc49c26 100644 --- a/metadata/md5-cache/net-libs/libssh-0.10.4 +++ b/metadata/md5-cache/net-libs/libssh-0.10.4 @@ -13,5 +13,5 @@ REQUIRED_USE=?? ( gcrypt mbedtls ) RESTRICT=!test? ( test ) SLOT=0/4 SRC_URI=https://www.libssh.org/files/0.10/libssh-0.10.4.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b8cf83e4c7ca9d20ffe710eda9118c94 diff --git a/metadata/md5-cache/net-libs/libssh-9999 b/metadata/md5-cache/net-libs/libssh-9999 index 6831f0c2a867..5ab7e6b77489 100644 --- a/metadata/md5-cache/net-libs/libssh-9999 +++ b/metadata/md5-cache/net-libs/libssh-9999 @@ -12,5 +12,5 @@ RDEPEND=!gcrypt? ( !mbedtls? ( >=dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,ab REQUIRED_USE=?? ( gcrypt mbedtls ) RESTRICT=!test? ( test ) SLOT=0/4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=057ed8d33d742d4092142314f1619dd8 diff --git a/metadata/md5-cache/net-libs/libssh2-1.10.0 b/metadata/md5-cache/net-libs/libssh2-1.10.0 index 7ef71d979932..afe72e5a95d1 100644 --- a/metadata/md5-cache/net-libs/libssh2-1.10.0 +++ b/metadata/md5-cache/net-libs/libssh2-1.10.0 @@ -13,5 +13,5 @@ REQUIRED_USE=?? ( gcrypt mbedtls ) RESTRICT=test SLOT=0 SRC_URI=https://www.libssh2.org/download/libssh2-1.10.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7dc3d94409fb554081c17a660dd3e0d0 diff --git a/metadata/md5-cache/net-libs/libssh2-9999 b/metadata/md5-cache/net-libs/libssh2-9999 index ca258ca8671b..546c7ec65178 100644 --- a/metadata/md5-cache/net-libs/libssh2-9999 +++ b/metadata/md5-cache/net-libs/libssh2-9999 @@ -12,5 +12,5 @@ RDEPEND=gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi REQUIRED_USE=?? ( gcrypt mbedtls ) RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7a9ceb8d41fd0a97b3de013abd1f1c4e diff --git a/metadata/md5-cache/net-libs/libtelnet-9999 b/metadata/md5-cache/net-libs/libtelnet-9999 index 91694c571b93..6e7112edc75b 100644 --- a/metadata/md5-cache/net-libs/libtelnet-9999 +++ b/metadata/md5-cache/net-libs/libtelnet-9999 @@ -9,5 +9,5 @@ LICENSE=public-domain PROPERTIES=live RDEPEND=sys-libs/zlib SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e45c8e0746e9a748585a9760a6580224 diff --git a/metadata/md5-cache/net-libs/libtorrent-rasterbar-1.2.18 b/metadata/md5-cache/net-libs/libtorrent-rasterbar-1.2.18 index 6a7b4eebe6c3..01cf4a8edeee 100644 --- a/metadata/md5-cache/net-libs/libtorrent-rasterbar-1.2.18 +++ b/metadata/md5-cache/net-libs/libtorrent-rasterbar-1.2.18 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/10 SRC_URI=https://github.com/arvidn/libtorrent/releases/download/v1.2.18/libtorrent-rasterbar-1.2.18.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ecb4f19da68454f7fb4f350c543c6bb1 diff --git a/metadata/md5-cache/net-libs/libtorrent-rasterbar-1.2.18-r1 b/metadata/md5-cache/net-libs/libtorrent-rasterbar-1.2.18-r1 index 288f61b74e27..1bec9b200d07 100644 --- a/metadata/md5-cache/net-libs/libtorrent-rasterbar-1.2.18-r1 +++ b/metadata/md5-cache/net-libs/libtorrent-rasterbar-1.2.18-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/10 SRC_URI=https://github.com/arvidn/libtorrent/releases/download/v1.2.18/libtorrent-rasterbar-1.2.18.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=adaa1be7c13d3388e75c19c8429452b1 diff --git a/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.6 b/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.6 index 3f0f1585662d..6c6277fe5688 100644 --- a/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.6 +++ b/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.6 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/2.0 SRC_URI=https://github.com/arvidn/libtorrent/releases/download/v2.0.6/libtorrent-rasterbar-2.0.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4baaa76e4e147a5d6e1a931d006c7c75 diff --git a/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.7 b/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.7 index a9166c32043c..ee6f807bd181 100644 --- a/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.7 +++ b/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.7 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/2.0 SRC_URI=https://github.com/arvidn/libtorrent/releases/download/v2.0.7/libtorrent-rasterbar-2.0.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dcd6d989544f8a4b11f60c200011abb2 diff --git a/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.8 b/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.8 index 4302d0780a8d..36a3df202525 100644 --- a/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.8 +++ b/metadata/md5-cache/net-libs/libtorrent-rasterbar-2.0.8 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/2.0 SRC_URI=https://github.com/arvidn/libtorrent/releases/download/v2.0.8/libtorrent-rasterbar-2.0.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0dc3d4739f5470deac327294f542dbe9 diff --git a/metadata/md5-cache/net-libs/libvncserver-0.9.14 b/metadata/md5-cache/net-libs/libvncserver-0.9.14 index 23c0625df420..f234b281d783 100644 --- a/metadata/md5-cache/net-libs/libvncserver-0.9.14 +++ b/metadata/md5-cache/net-libs/libvncserver-0.9.14 @@ -12,5 +12,5 @@ RDEPEND=gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0= ) ssl? ( !gnutls? ( >=dev-libs/o REQUIRED_USE=filetransfer? ( threads ) jpeg? ( zlib ) png? ( zlib ) ssl? ( !gnutls? ( threads ) ) ssl? ( gnutls? ( gcrypt ) ) !ssl? ( gcrypt ) SLOT=0 SRC_URI=https://github.com/LibVNC/libvncserver/archive/LibVNCServer-0.9.14.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d1e3a98734b7059f1a5d108da440215a diff --git a/metadata/md5-cache/net-libs/libwebsockets-4.3.2-r1 b/metadata/md5-cache/net-libs/libwebsockets-4.3.2-r1 index 397cce011343..1a90a0219f05 100644 --- a/metadata/md5-cache/net-libs/libwebsockets-4.3.2-r1 +++ b/metadata/md5-cache/net-libs/libwebsockets-4.3.2-r1 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib caps? ( sys-libs/libcap ) dbus? ( sys-apps/dbus ) http-pro REQUIRED_USE=access-log? ( http2 ) generic-sessions? ( smtp sqlite3 ) http-proxy? ( client ) mbedtls? ( ssl ) smtp? ( libuv ) socks5? ( client http-proxy ) ?? ( libev libevent ) SLOT=0/19 SRC_URI=https://github.com/warmcat/libwebsockets/archive/v4.3.2.tar.gz -> libwebsockets-4.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4fa1297a8b54fdbd7b431923a0dc458d diff --git a/metadata/md5-cache/net-libs/libyang-2.0.194-r1 b/metadata/md5-cache/net-libs/libyang-2.0.194-r1 index 103c8b54e497..980302f263d8 100644 --- a/metadata/md5-cache/net-libs/libyang-2.0.194-r1 +++ b/metadata/md5-cache/net-libs/libyang-2.0.194-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libpcre2 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/CESNET/libyang/archive/v2.0.194.tar.gz -> libyang-2.0.194.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e980d104d3430b0a582b6d3e07a31745 diff --git a/metadata/md5-cache/net-libs/mbedtls-2.28.1 b/metadata/md5-cache/net-libs/mbedtls-2.28.1 index dc5cfdf9201a..10382ede8699 100644 --- a/metadata/md5-cache/net-libs/mbedtls-2.28.1 +++ b/metadata/md5-cache/net-libs/mbedtls-2.28.1 @@ -12,5 +12,5 @@ RDEPEND=programs? ( dev-libs/openssl:0= ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x RESTRICT=!test? ( test ) SLOT=0/7.14.1 SRC_URI=https://github.com/ARMmbed/mbedtls/archive/mbedtls-2.28.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=66d6d91d9492fd5589bd806ad0d07b52 diff --git a/metadata/md5-cache/net-libs/mbedtls-3.1.0 b/metadata/md5-cache/net-libs/mbedtls-3.1.0 index 945c878d9d59..b14f483e22b0 100644 --- a/metadata/md5-cache/net-libs/mbedtls-3.1.0 +++ b/metadata/md5-cache/net-libs/mbedtls-3.1.0 @@ -12,5 +12,5 @@ RDEPEND=programs? ( dev-libs/openssl:0= ) RESTRICT=!test? ( test ) SLOT=0/10.16.4 SRC_URI=https://github.com/ARMmbed/mbedtls/archive/mbedtls-3.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=660a06c58e1d7027f51ee3370219b70e diff --git a/metadata/md5-cache/net-libs/mbedtls-3.2.1 b/metadata/md5-cache/net-libs/mbedtls-3.2.1 index 50681ecd7201..87751e149dba 100644 --- a/metadata/md5-cache/net-libs/mbedtls-3.2.1 +++ b/metadata/md5-cache/net-libs/mbedtls-3.2.1 @@ -12,5 +12,5 @@ RDEPEND=programs? ( dev-libs/openssl:0= ) RESTRICT=!test? ( test ) SLOT=0/12.18.4 SRC_URI=https://github.com/ARMmbed/mbedtls/archive/mbedtls-3.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b6174bee1e75c4c5d4b84736e9e5c298 diff --git a/metadata/md5-cache/net-libs/netwib-5.39.0 b/metadata/md5-cache/net-libs/netwib-5.39.0-r1 similarity index 87% rename from metadata/md5-cache/net-libs/netwib-5.39.0 rename to metadata/md5-cache/net-libs/netwib-5.39.0-r1 index 451face65402..9b3ed54e9457 100644 --- a/metadata/md5-cache/net-libs/netwib-5.39.0 +++ b/metadata/md5-cache/net-libs/netwib-5.39.0-r1 @@ -1,4 +1,4 @@ -DEFINED_PHASES=configure install prepare +DEFINED_PHASES=configure install DEPEND=net-libs/libnet:1.1 net-libs/libpcap DESCRIPTION=Library of Ethernet, IP, UDP, TCP, ICMP, ARP and RARP protocols EAPI=8 @@ -11,4 +11,4 @@ RDEPEND=net-libs/libnet:1.1 net-libs/libpcap SLOT=0 SRC_URI=mirror://sourceforge/ntwib/netwib-5.39.0-src.tgz doc? ( mirror://sourceforge/ntwib/netwib-5.39.0-doc_html.tgz ) _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f6b7c8cf6ca5a3d02799a3467a5d3a63 +_md5_=bfa0384dfaed6b9da31fbb3d1f2d49fc diff --git a/metadata/md5-cache/net-libs/nghttp2-1.52.0 b/metadata/md5-cache/net-libs/nghttp2-1.52.0 index 8337895913e3..a09c37a5fdd1 100644 --- a/metadata/md5-cache/net-libs/nghttp2-1.52.0 +++ b/metadata/md5-cache/net-libs/nghttp2-1.52.0 @@ -12,5 +12,5 @@ RDEPEND=hpack-tools? ( >=dev-libs/jansson-2.5:= ) jemalloc? ( dev-libs/jemalloc: RESTRICT=!test? ( test ) SLOT=0/1.14 SRC_URI=https://github.com/nghttp2/nghttp2/releases/download/v1.52.0/nghttp2-1.52.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e573bd0b20a3d13220e5b1c370d3175a diff --git a/metadata/md5-cache/net-libs/nghttp2-9999 b/metadata/md5-cache/net-libs/nghttp2-9999 index 08acd15ea797..378d9eff661b 100644 --- a/metadata/md5-cache/net-libs/nghttp2-9999 +++ b/metadata/md5-cache/net-libs/nghttp2-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=hpack-tools? ( >=dev-libs/jansson-2.5:= ) jemalloc? ( dev-libs/jemalloc:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) utils? ( >=dev-libs/openssl-1.0.2:0=[-bindist(-),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/libev-4.15[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/zlib-1.2.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(-)?] net-dns/c-ares:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) systemd? ( >=sys-apps/systemd-209 ) xml? ( >=dev-libs/libxml2-2.7.7: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(-)?] ) RESTRICT=!test? ( test ) SLOT=0/1.14 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=97d88a94a429eaec126bec51924cbee4 diff --git a/metadata/md5-cache/net-libs/nghttp3-0.8.0-r1 b/metadata/md5-cache/net-libs/nghttp3-0.8.0-r1 index 31b25c45aa46..96ef3300c71c 100644 --- a/metadata/md5-cache/net-libs/nghttp3-0.8.0-r1 +++ b/metadata/md5-cache/net-libs/nghttp3-0.8.0-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/0 SRC_URI=https://github.com/ngtcp2/nghttp3/releases/download/v0.8.0/nghttp3-0.8.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=44d26cc1b90b8ea6d23df6e613698f5e diff --git a/metadata/md5-cache/net-libs/nghttp3-0.9.0 b/metadata/md5-cache/net-libs/nghttp3-0.9.0 index a40f7c36591a..e5951486fab2 100644 --- a/metadata/md5-cache/net-libs/nghttp3-0.9.0 +++ b/metadata/md5-cache/net-libs/nghttp3-0.9.0 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/0 SRC_URI=https://github.com/ngtcp2/nghttp3/releases/download/v0.9.0/nghttp3-0.9.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=44d26cc1b90b8ea6d23df6e613698f5e diff --git a/metadata/md5-cache/net-libs/nghttp3-9999 b/metadata/md5-cache/net-libs/nghttp3-9999 index 7cee4d0d135c..938cc1b44918 100644 --- a/metadata/md5-cache/net-libs/nghttp3-9999 +++ b/metadata/md5-cache/net-libs/nghttp3-9999 @@ -10,5 +10,5 @@ LICENSE=MIT PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0/0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=44d26cc1b90b8ea6d23df6e613698f5e diff --git a/metadata/md5-cache/net-libs/ngtcp2-0.13.1 b/metadata/md5-cache/net-libs/ngtcp2-0.13.1 index 0b8c5e4f694b..430ca77df032 100644 --- a/metadata/md5-cache/net-libs/ngtcp2-0.13.1 +++ b/metadata/md5-cache/net-libs/ngtcp2-0.13.1 @@ -13,5 +13,5 @@ REQUIRED_USE=ssl? ( || ( gnutls openssl ) ) RESTRICT=!test? ( test ) SLOT=0/0 SRC_URI=https://github.com/ngtcp2/ngtcp2/releases/download/v0.13.1/ngtcp2-0.13.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b9ec1784b752a555a1941217366e02c8 diff --git a/metadata/md5-cache/net-libs/ngtcp2-9999 b/metadata/md5-cache/net-libs/ngtcp2-9999 index bc0affecede4..9503c50bef00 100644 --- a/metadata/md5-cache/net-libs/ngtcp2-9999 +++ b/metadata/md5-cache/net-libs/ngtcp2-9999 @@ -12,5 +12,5 @@ RDEPEND=ssl? ( gnutls? ( >=net-libs/gnutls-3.7.2:0= ) openssl? ( >=dev-libs/open REQUIRED_USE=ssl? ( || ( gnutls openssl ) ) RESTRICT=!test? ( test ) SLOT=0/0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b9ec1784b752a555a1941217366e02c8 diff --git a/metadata/md5-cache/net-libs/ntirpc-4.2 b/metadata/md5-cache/net-libs/ntirpc-4.2 index f8faf974baa1..ce165d2cf27c 100644 --- a/metadata/md5-cache/net-libs/ntirpc-4.2 +++ b/metadata/md5-cache/net-libs/ntirpc-4.2 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=dev-libs/userspace-rcu:= rdma? ( sys-cluster/rdma-core ) SLOT=0 SRC_URI=https://github.com/nfs-ganesha/ntirpc/archive/v4.2.tar.gz -> ntirpc-4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=28d0a8e6e4f74dfdbd3c02dc4117fe56 diff --git a/metadata/md5-cache/net-libs/quiche-0.14.0 b/metadata/md5-cache/net-libs/quiche-0.14.0 index 63975c1b846d..2a6932225740 100644 --- a/metadata/md5-cache/net-libs/quiche-0.14.0 +++ b/metadata/md5-cache/net-libs/quiche-0.14.0 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=|| ( Apache-2.0 Boost-1.0 ) || ( Apache-2.0 MIT ) || ( Apache-2.0-with-LLVM-exceptions Apache-2.0 MIT ) BSD-2 BSD ISC MIT || ( Unlicense MIT ) openssl SLOT=0/0 SRC_URI=https://crates.io/api/v1/crates/anyhow/1.0.26/download -> anyhow-1.0.26.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/arrayvec/0.7.2/download -> arrayvec-0.7.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.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/backtrace/0.3.37/download -> backtrace-0.3.37.crate https://crates.io/api/v1/crates/backtrace-sys/0.1.31/download -> backtrace-sys-0.1.31.crate https://crates.io/api/v1/crates/bindgen/0.59.2/download -> bindgen-0.59.2.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/boring/2.0.0/download -> boring-2.0.0.crate https://crates.io/api/v1/crates/boring-sys/2.0.0/download -> boring-sys-2.0.0.crate https://crates.io/api/v1/crates/bstr/0.2.12/download -> bstr-0.2.12.crate https://crates.io/api/v1/crates/bumpalo/3.9.1/download -> bumpalo-3.9.1.crate https://crates.io/api/v1/crates/byteorder/1.3.4/download -> byteorder-1.3.4.crate https://crates.io/api/v1/crates/cast/0.2.3/download -> cast-0.2.3.crate https://crates.io/api/v1/crates/cc/1.0.73/download -> cc-1.0.73.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/0.1.10/download -> cfg-if-0.1.10.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/clang-sys/1.3.2/download -> clang-sys-1.3.2.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/cmake/0.1.48/download -> cmake-0.1.48.crate https://crates.io/api/v1/crates/criterion/0.3.1/download -> criterion-0.3.1.crate https://crates.io/api/v1/crates/criterion-plot/0.4.1/download -> criterion-plot-0.4.1.crate https://crates.io/api/v1/crates/crossbeam-deque/0.7.3/download -> crossbeam-deque-0.7.3.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.8.2/download -> crossbeam-epoch-0.8.2.crate https://crates.io/api/v1/crates/crossbeam-queue/0.2.1/download -> crossbeam-queue-0.2.1.crate https://crates.io/api/v1/crates/crossbeam-utils/0.7.2/download -> crossbeam-utils-0.7.2.crate https://crates.io/api/v1/crates/csv/1.1.3/download -> csv-1.1.3.crate https://crates.io/api/v1/crates/csv-core/0.1.10/download -> csv-core-0.1.10.crate https://crates.io/api/v1/crates/either/1.5.3/download -> either-1.5.3.crate https://crates.io/api/v1/crates/darling/0.13.4/download -> darling-0.13.4.crate https://crates.io/api/v1/crates/darling_core/0.13.4/download -> darling_core-0.13.4.crate https://crates.io/api/v1/crates/darling_macro/0.13.4/download -> darling_macro-0.13.4.crate https://crates.io/api/v1/crates/data-encoding/2.3.2/download -> data-encoding-2.3.2.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/fnv/1.0.7/download -> fnv-1.0.7.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/foreign-types-macros/0.2.2/download -> foreign-types-macros-0.2.2.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/fuchsia-zircon/0.3.3/download -> fuchsia-zircon-0.3.3.crate https://crates.io/api/v1/crates/fuchsia-zircon-sys/0.3.3/download -> fuchsia-zircon-sys-0.3.3.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.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/ident_case/1.0.1/download -> ident_case-1.0.1.crate https://crates.io/api/v1/crates/idna/0.1.5/download -> idna-0.1.5.crate https://crates.io/api/v1/crates/iovec/0.1.4/download -> iovec-0.1.4.crate https://crates.io/api/v1/crates/itertools/0.8.2/download -> itertools-0.8.2.crate https://crates.io/api/v1/crates/itoa/1.0.2/download -> itoa-1.0.2.crate https://crates.io/api/v1/crates/js-sys/0.3.57/download -> js-sys-0.3.57.crate https://crates.io/api/v1/crates/kernel32-sys/0.2.2/download -> kernel32-sys-0.2.2.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.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.126/download -> libc-0.2.126.crate https://crates.io/api/v1/crates/libloading/0.7.3/download -> libloading-0.7.3.crate https://crates.io/api/v1/crates/libm/0.2.2/download -> libm-0.2.2.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.crate https://crates.io/api/v1/crates/matches/0.1.9/download -> matches-0.1.9.crate https://crates.io/api/v1/crates/maybe-uninit/2.0.0/download -> maybe-uninit-2.0.0.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.5.3/download -> memoffset-0.5.3.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.3/download -> mio-0.8.3.crate https://crates.io/api/v1/crates/miow/0.4.0/download -> miow-0.4.0.crate https://crates.io/api/v1/crates/net2/0.2.37/download -> net2-0.2.37.crate https://crates.io/api/v1/crates/nom/7.1.1/download -> nom-7.1.1.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/num_cpus/1.12.0/download -> num_cpus-1.12.0.crate https://crates.io/api/v1/crates/octets/0.1.0/download -> octets-0.1.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/indexmap/1.8.1/download -> indexmap-1.8.1.crate https://crates.io/api/v1/crates/once_cell/1.11.0/download -> once_cell-1.11.0.crate https://crates.io/api/v1/crates/oorandom/11.1.0/download -> oorandom-11.1.0.crate https://crates.io/api/v1/crates/percent-encoding/1.0.1/download -> percent-encoding-1.0.1.crate https://crates.io/api/v1/crates/plotters/0.2.12/download -> plotters-0.2.12.crate https://crates.io/api/v1/crates/proc-macro2/1.0.39/download -> proc-macro2-1.0.39.crate https://crates.io/api/v1/crates/qlog/0.7.0/download -> qlog-0.7.0.crate https://crates.io/api/v1/crates/quote/1.0.18/download -> quote-1.0.18.crate https://crates.io/api/v1/crates/rayon/1.3.0/download -> rayon-1.3.0.crate https://crates.io/api/v1/crates/rayon-core/1.7.0/download -> rayon-core-1.7.0.crate https://crates.io/api/v1/crates/regex/1.5.6/download -> regex-1.5.6.crate https://crates.io/api/v1/crates/regex-automata/0.2.0/download -> regex-automata-0.2.0.crate https://crates.io/api/v1/crates/regex-syntax/0.6.26/download -> regex-syntax-0.6.26.crate https://crates.io/api/v1/crates/ring/0.16.20/download -> ring-0.16.20.crate https://crates.io/api/v1/crates/rustc_version/0.2.3/download -> rustc_version-0.2.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/rustversion/1.0.6/download -> rustversion-1.0.6.crate https://crates.io/api/v1/crates/rust_decimal/1.23.1/download -> rust_decimal-1.23.1.crate https://crates.io/api/v1/crates/ryu/1.0.10/download -> ryu-1.0.10.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.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/sfv/0.9.2/download -> sfv-0.9.2.crate https://crates.io/api/v1/crates/semver/0.9.0/download -> semver-0.9.0.crate https://crates.io/api/v1/crates/semver-parser/0.7.0/download -> semver-parser-0.7.0.crate https://crates.io/api/v1/crates/serde/1.0.137/download -> serde-1.0.137.crate https://crates.io/api/v1/crates/serde_derive/1.0.137/download -> serde_derive-1.0.137.crate https://crates.io/api/v1/crates/serde_json/1.0.81/download -> serde_json-1.0.81.crate https://crates.io/api/v1/crates/serde_with/1.13.0/download -> serde_with-1.13.0.crate https://crates.io/api/v1/crates/serde_with_macros/1.5.2/download -> serde_with_macros-1.5.2.crate https://crates.io/api/v1/crates/shlex/1.1.0/download -> shlex-1.1.0.crate https://crates.io/api/v1/crates/slab/0.4.5/download -> slab-0.4.5.crate https://crates.io/api/v1/crates/smallvec/1.4.0/download -> smallvec-1.4.0.crate https://crates.io/api/v1/crates/spin/0.5.2/download -> spin-0.5.2.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/strsim/0.10.0/download -> strsim-0.10.0.crate https://crates.io/api/v1/crates/syn/1.0.95/download -> syn-1.0.95.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/tinytemplate/1.0.3/download -> tinytemplate-1.0.3.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.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.8/download -> unicode-bidi-0.3.8.crate https://crates.io/api/v1/crates/unicode-ident/1.0.0/download -> unicode-ident-1.0.0.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.19/download -> unicode-normalization-0.1.19.crate https://crates.io/api/v1/crates/unicode-width/0.1.9/download -> unicode-width-0.1.9.crate https://crates.io/api/v1/crates/unicode-xid/0.1.0/download -> unicode-xid-0.1.0.crate https://crates.io/api/v1/crates/unicode-xid/0.2.3/download -> unicode-xid-0.2.3.crate https://crates.io/api/v1/crates/untrusted/0.7.1/download -> untrusted-0.7.1.crate https://crates.io/api/v1/crates/url/1.7.2/download -> url-1.7.2.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_check/0.9.4/download -> version_check-0.9.4.crate https://crates.io/api/v1/crates/walkdir/2.3.1/download -> walkdir-2.3.1.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.80/download -> wasm-bindgen-0.2.80.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.80/download -> wasm-bindgen-backend-0.2.80.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.80/download -> wasm-bindgen-macro-0.2.80.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.80/download -> wasm-bindgen-macro-support-0.2.80.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.80/download -> wasm-bindgen-shared-0.2.80.crate https://crates.io/api/v1/crates/wasm-bindgen-webidl/0.2.75/download -> wasm-bindgen-webidl-0.2.75.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/web-sys/0.3.57/download -> web-sys-0.3.57.crate https://crates.io/api/v1/crates/which/3.1.1/download -> which-3.1.1.crate https://crates.io/api/v1/crates/winapi/0.2.8/download -> winapi-0.2.8.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-build/0.1.1/download -> winapi-build-0.1.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.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/windows_aarch64_msvc/0.36.1/download -> windows_aarch64_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.36.1/download -> windows_i686_gnu-0.36.1.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.36.1/download -> windows_i686_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.36.1/download -> windows_x86_64_gnu-0.36.1.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.36.1/download -> windows_x86_64_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows-sys/0.36.1/download -> windows-sys-0.36.1.crate https://crates.io/api/v1/crates/ws2_32-sys/0.2.1/download -> ws2_32-sys-0.2.1.crate https://crates.io/api/v1/crates/quiche/0.14.0/download -> quiche-0.14.0.crate -_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 rust-toolchain 2ed47174c9eddf7a0f6f6220edb0df4b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 rust-toolchain 2ed47174c9eddf7a0f6f6220edb0df4b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=03b51a57f6a8dd86ac365026e289a503 diff --git a/metadata/md5-cache/net-libs/quiche-0.15.0 b/metadata/md5-cache/net-libs/quiche-0.15.0 index 45f7010542b5..331c1bce089e 100644 --- a/metadata/md5-cache/net-libs/quiche-0.15.0 +++ b/metadata/md5-cache/net-libs/quiche-0.15.0 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=|| ( Apache-2.0 Boost-1.0 ) || ( Apache-2.0 MIT ) || ( Apache-2.0-with-LLVM-exceptions Apache-2.0 MIT ) BSD-2 BSD ISC MIT || ( Unlicense MIT ) openssl SLOT=0/0 SRC_URI=https://crates.io/api/v1/crates/anyhow/1.0.26/download -> anyhow-1.0.26.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/arrayvec/0.7.2/download -> arrayvec-0.7.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.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/backtrace/0.3.37/download -> backtrace-0.3.37.crate https://crates.io/api/v1/crates/backtrace-sys/0.1.31/download -> backtrace-sys-0.1.31.crate https://crates.io/api/v1/crates/bindgen/0.60.1/download -> bindgen-0.60.1.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/boring/2.1.0/download -> boring-2.1.0.crate https://crates.io/api/v1/crates/boring-sys/2.1.0/download -> boring-sys-2.1.0.crate https://crates.io/api/v1/crates/bstr/0.2.12/download -> bstr-0.2.12.crate https://crates.io/api/v1/crates/bumpalo/3.11.0/download -> bumpalo-3.11.0.crate https://crates.io/api/v1/crates/byteorder/1.3.4/download -> byteorder-1.3.4.crate https://crates.io/api/v1/crates/cast/0.2.3/download -> cast-0.2.3.crate https://crates.io/api/v1/crates/cc/1.0.73/download -> cc-1.0.73.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/0.1.10/download -> cfg-if-0.1.10.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/clang-sys/1.4.0/download -> clang-sys-1.4.0.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/cmake/0.1.48/download -> cmake-0.1.48.crate https://crates.io/api/v1/crates/criterion/0.3.1/download -> criterion-0.3.1.crate https://crates.io/api/v1/crates/criterion-plot/0.4.1/download -> criterion-plot-0.4.1.crate https://crates.io/api/v1/crates/crossbeam-deque/0.7.3/download -> crossbeam-deque-0.7.3.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.8.2/download -> crossbeam-epoch-0.8.2.crate https://crates.io/api/v1/crates/crossbeam-queue/0.2.1/download -> crossbeam-queue-0.2.1.crate https://crates.io/api/v1/crates/crossbeam-utils/0.7.2/download -> crossbeam-utils-0.7.2.crate https://crates.io/api/v1/crates/csv/1.1.3/download -> csv-1.1.3.crate https://crates.io/api/v1/crates/csv-core/0.1.10/download -> csv-core-0.1.10.crate https://crates.io/api/v1/crates/either/1.5.3/download -> either-1.5.3.crate https://crates.io/api/v1/crates/darling/0.13.4/download -> darling-0.13.4.crate https://crates.io/api/v1/crates/darling_core/0.13.4/download -> darling_core-0.13.4.crate https://crates.io/api/v1/crates/darling_macro/0.13.4/download -> darling_macro-0.13.4.crate https://crates.io/api/v1/crates/data-encoding/2.3.2/download -> data-encoding-2.3.2.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/fnv/1.0.7/download -> fnv-1.0.7.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/foreign-types-macros/0.2.2/download -> foreign-types-macros-0.2.2.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/fuchsia-zircon/0.3.3/download -> fuchsia-zircon-0.3.3.crate https://crates.io/api/v1/crates/fuchsia-zircon-sys/0.3.3/download -> fuchsia-zircon-sys-0.3.3.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.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/ident_case/1.0.1/download -> ident_case-1.0.1.crate https://crates.io/api/v1/crates/idna/0.1.5/download -> idna-0.1.5.crate https://crates.io/api/v1/crates/iovec/0.1.4/download -> iovec-0.1.4.crate https://crates.io/api/v1/crates/itertools/0.8.2/download -> itertools-0.8.2.crate https://crates.io/api/v1/crates/itoa/1.0.4/download -> itoa-1.0.4.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/kernel32-sys/0.2.2/download -> kernel32-sys-0.2.2.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.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.134/download -> libc-0.2.134.crate https://crates.io/api/v1/crates/libloading/0.7.3/download -> libloading-0.7.3.crate https://crates.io/api/v1/crates/libm/0.2.5/download -> libm-0.2.5.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.crate https://crates.io/api/v1/crates/matches/0.1.9/download -> matches-0.1.9.crate https://crates.io/api/v1/crates/maybe-uninit/2.0.0/download -> maybe-uninit-2.0.0.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.5.3/download -> memoffset-0.5.3.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.4/download -> mio-0.8.4.crate https://crates.io/api/v1/crates/miow/0.4.0/download -> miow-0.4.0.crate https://crates.io/api/v1/crates/net2/0.2.37/download -> net2-0.2.37.crate https://crates.io/api/v1/crates/nom/7.1.1/download -> nom-7.1.1.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/num_cpus/1.12.0/download -> num_cpus-1.12.0.crate https://crates.io/api/v1/crates/octets/0.2.0/download -> octets-0.2.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/indexmap/1.9.1/download -> indexmap-1.9.1.crate https://crates.io/api/v1/crates/once_cell/1.15.0/download -> once_cell-1.15.0.crate https://crates.io/api/v1/crates/oorandom/11.1.0/download -> oorandom-11.1.0.crate https://crates.io/api/v1/crates/percent-encoding/1.0.1/download -> percent-encoding-1.0.1.crate https://crates.io/api/v1/crates/plotters/0.2.12/download -> plotters-0.2.12.crate https://crates.io/api/v1/crates/proc-macro2/1.0.46/download -> proc-macro2-1.0.46.crate https://crates.io/api/v1/crates/qlog/0.8.0/download -> qlog-0.8.0.crate https://crates.io/api/v1/crates/quote/1.0.21/download -> quote-1.0.21.crate https://crates.io/api/v1/crates/rayon/1.3.0/download -> rayon-1.3.0.crate https://crates.io/api/v1/crates/rayon-core/1.7.0/download -> rayon-core-1.7.0.crate https://crates.io/api/v1/crates/regex/1.6.0/download -> regex-1.6.0.crate https://crates.io/api/v1/crates/regex-automata/0.2.0/download -> regex-automata-0.2.0.crate https://crates.io/api/v1/crates/regex-syntax/0.6.27/download -> regex-syntax-0.6.27.crate https://crates.io/api/v1/crates/ring/0.16.20/download -> ring-0.16.20.crate https://crates.io/api/v1/crates/rustc_version/0.2.3/download -> rustc_version-0.2.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/rustversion/1.0.6/download -> rustversion-1.0.6.crate https://crates.io/api/v1/crates/rust_decimal/1.26.1/download -> rust_decimal-1.26.1.crate https://crates.io/api/v1/crates/ryu/1.0.11/download -> ryu-1.0.11.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.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/sfv/0.9.2/download -> sfv-0.9.2.crate https://crates.io/api/v1/crates/semver/0.9.0/download -> semver-0.9.0.crate https://crates.io/api/v1/crates/semver-parser/0.7.0/download -> semver-parser-0.7.0.crate https://crates.io/api/v1/crates/serde/1.0.145/download -> serde-1.0.145.crate https://crates.io/api/v1/crates/serde_derive/1.0.145/download -> serde_derive-1.0.145.crate https://crates.io/api/v1/crates/serde_json/1.0.85/download -> serde_json-1.0.85.crate https://crates.io/api/v1/crates/serde_with/1.14.0/download -> serde_with-1.14.0.crate https://crates.io/api/v1/crates/serde_with_macros/1.5.2/download -> serde_with_macros-1.5.2.crate https://crates.io/api/v1/crates/shlex/1.1.0/download -> shlex-1.1.0.crate https://crates.io/api/v1/crates/slab/0.4.7/download -> slab-0.4.7.crate https://crates.io/api/v1/crates/smallvec/1.4.0/download -> smallvec-1.4.0.crate https://crates.io/api/v1/crates/spin/0.5.2/download -> spin-0.5.2.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/strsim/0.10.0/download -> strsim-0.10.0.crate https://crates.io/api/v1/crates/syn/1.0.102/download -> syn-1.0.102.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/tinytemplate/1.0.3/download -> tinytemplate-1.0.3.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.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.8/download -> unicode-bidi-0.3.8.crate https://crates.io/api/v1/crates/unicode-ident/1.0.4/download -> unicode-ident-1.0.4.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/unicode-width/0.1.10/download -> unicode-width-0.1.10.crate https://crates.io/api/v1/crates/unicode-xid/0.2.4/download -> unicode-xid-0.2.4.crate https://crates.io/api/v1/crates/unicode-xid/0.2.3/download -> unicode-xid-0.2.3.crate https://crates.io/api/v1/crates/untrusted/0.7.1/download -> untrusted-0.7.1.crate https://crates.io/api/v1/crates/url/1.7.2/download -> url-1.7.2.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_check/0.9.4/download -> version_check-0.9.4.crate https://crates.io/api/v1/crates/walkdir/2.3.1/download -> walkdir-2.3.1.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/wasm-bindgen-backend/0.2.83/download -> wasm-bindgen-backend-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-macro-support/0.2.83/download -> wasm-bindgen-macro-support-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-webidl/0.2.75/download -> wasm-bindgen-webidl-0.2.75.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/web-sys/0.3.60/download -> web-sys-0.3.60.crate https://crates.io/api/v1/crates/which/3.1.1/download -> which-3.1.1.crate https://crates.io/api/v1/crates/winapi/0.2.8/download -> winapi-0.2.8.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-build/0.1.1/download -> winapi-build-0.1.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.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/windows_aarch64_msvc/0.36.1/download -> windows_aarch64_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.36.1/download -> windows_i686_gnu-0.36.1.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.36.1/download -> windows_i686_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.36.1/download -> windows_x86_64_gnu-0.36.1.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.36.1/download -> windows_x86_64_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows-sys/0.36.1/download -> windows-sys-0.36.1.crate https://crates.io/api/v1/crates/ws2_32-sys/0.2.1/download -> ws2_32-sys-0.2.1.crate https://crates.io/api/v1/crates/quiche/0.15.0/download -> quiche-0.15.0.crate -_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 rust-toolchain 2ed47174c9eddf7a0f6f6220edb0df4b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 rust-toolchain 2ed47174c9eddf7a0f6f6220edb0df4b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c3b371b024317652dc653ccf78b85c3c diff --git a/metadata/md5-cache/net-libs/quiche-0.16.0 b/metadata/md5-cache/net-libs/quiche-0.16.0 index 02802c998d7b..1081abcc30f7 100644 --- a/metadata/md5-cache/net-libs/quiche-0.16.0 +++ b/metadata/md5-cache/net-libs/quiche-0.16.0 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=|| ( Apache-2.0 Boost-1.0 ) || ( Apache-2.0 MIT ) || ( Apache-2.0-with-LLVM-exceptions Apache-2.0 MIT ) BSD-2 BSD ISC MIT || ( Unlicense MIT ) openssl SLOT=0/0 SRC_URI=https://crates.io/api/v1/crates/anyhow/1.0.26/download -> anyhow-1.0.26.crate https://crates.io/api/v1/crates/ansi_term/0.11.0/download -> ansi_term-0.11.0.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/arrayvec/0.7.2/download -> arrayvec-0.7.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.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/backtrace/0.3.37/download -> backtrace-0.3.37.crate https://crates.io/api/v1/crates/backtrace-sys/0.1.31/download -> backtrace-sys-0.1.31.crate https://crates.io/api/v1/crates/bindgen/0.60.1/download -> bindgen-0.60.1.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/boring/2.1.0/download -> boring-2.1.0.crate https://crates.io/api/v1/crates/boring-sys/2.1.0/download -> boring-sys-2.1.0.crate https://crates.io/api/v1/crates/bstr/0.2.12/download -> bstr-0.2.12.crate https://crates.io/api/v1/crates/bumpalo/3.11.0/download -> bumpalo-3.11.0.crate https://crates.io/api/v1/crates/byteorder/1.3.4/download -> byteorder-1.3.4.crate https://crates.io/api/v1/crates/cast/0.2.3/download -> cast-0.2.3.crate https://crates.io/api/v1/crates/cc/1.0.73/download -> cc-1.0.73.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/0.1.10/download -> cfg-if-0.1.10.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/clang-sys/1.4.0/download -> clang-sys-1.4.0.crate https://crates.io/api/v1/crates/clap/2.33.3/download -> clap-2.33.3.crate https://crates.io/api/v1/crates/cmake/0.1.48/download -> cmake-0.1.48.crate https://crates.io/api/v1/crates/criterion/0.3.1/download -> criterion-0.3.1.crate https://crates.io/api/v1/crates/criterion-plot/0.4.1/download -> criterion-plot-0.4.1.crate https://crates.io/api/v1/crates/crossbeam-deque/0.7.3/download -> crossbeam-deque-0.7.3.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.8.2/download -> crossbeam-epoch-0.8.2.crate https://crates.io/api/v1/crates/crossbeam-queue/0.2.1/download -> crossbeam-queue-0.2.1.crate https://crates.io/api/v1/crates/crossbeam-utils/0.7.2/download -> crossbeam-utils-0.7.2.crate https://crates.io/api/v1/crates/csv/1.1.3/download -> csv-1.1.3.crate https://crates.io/api/v1/crates/csv-core/0.1.10/download -> csv-core-0.1.10.crate https://crates.io/api/v1/crates/either/1.5.3/download -> either-1.5.3.crate https://crates.io/api/v1/crates/darling/0.13.4/download -> darling-0.13.4.crate https://crates.io/api/v1/crates/darling_core/0.13.4/download -> darling_core-0.13.4.crate https://crates.io/api/v1/crates/darling_macro/0.13.4/download -> darling_macro-0.13.4.crate https://crates.io/api/v1/crates/data-encoding/2.3.2/download -> data-encoding-2.3.2.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/fnv/1.0.7/download -> fnv-1.0.7.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/foreign-types-macros/0.2.2/download -> foreign-types-macros-0.2.2.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/fuchsia-zircon/0.3.3/download -> fuchsia-zircon-0.3.3.crate https://crates.io/api/v1/crates/fuchsia-zircon-sys/0.3.3/download -> fuchsia-zircon-sys-0.3.3.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.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/ident_case/1.0.1/download -> ident_case-1.0.1.crate https://crates.io/api/v1/crates/idna/0.1.5/download -> idna-0.1.5.crate https://crates.io/api/v1/crates/iovec/0.1.4/download -> iovec-0.1.4.crate https://crates.io/api/v1/crates/itertools/0.8.2/download -> itertools-0.8.2.crate https://crates.io/api/v1/crates/itoa/1.0.4/download -> itoa-1.0.4.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/kernel32-sys/0.2.2/download -> kernel32-sys-0.2.2.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.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.135/download -> libc-0.2.135.crate https://crates.io/api/v1/crates/libloading/0.7.3/download -> libloading-0.7.3.crate https://crates.io/api/v1/crates/libm/0.2.5/download -> libm-0.2.5.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.crate https://crates.io/api/v1/crates/matches/0.1.9/download -> matches-0.1.9.crate https://crates.io/api/v1/crates/maybe-uninit/2.0.0/download -> maybe-uninit-2.0.0.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.5.3/download -> memoffset-0.5.3.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.4/download -> mio-0.8.4.crate https://crates.io/api/v1/crates/miow/0.4.0/download -> miow-0.4.0.crate https://crates.io/api/v1/crates/net2/0.2.37/download -> net2-0.2.37.crate https://crates.io/api/v1/crates/nom/7.1.1/download -> nom-7.1.1.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/num_cpus/1.12.0/download -> num_cpus-1.12.0.crate https://crates.io/api/v1/crates/octets/0.2.0/download -> octets-0.2.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/indexmap/1.9.1/download -> indexmap-1.9.1.crate https://crates.io/api/v1/crates/once_cell/1.15.0/download -> once_cell-1.15.0.crate https://crates.io/api/v1/crates/oorandom/11.1.0/download -> oorandom-11.1.0.crate https://crates.io/api/v1/crates/percent-encoding/1.0.1/download -> percent-encoding-1.0.1.crate https://crates.io/api/v1/crates/plotters/0.2.12/download -> plotters-0.2.12.crate https://crates.io/api/v1/crates/proc-macro2/1.0.46/download -> proc-macro2-1.0.46.crate https://crates.io/api/v1/crates/qlog/0.8.0/download -> qlog-0.8.0.crate https://crates.io/api/v1/crates/quote/1.0.21/download -> quote-1.0.21.crate https://crates.io/api/v1/crates/rayon/1.3.0/download -> rayon-1.3.0.crate https://crates.io/api/v1/crates/rayon-core/1.7.0/download -> rayon-core-1.7.0.crate https://crates.io/api/v1/crates/regex/1.6.0/download -> regex-1.6.0.crate https://crates.io/api/v1/crates/regex-automata/0.2.0/download -> regex-automata-0.2.0.crate https://crates.io/api/v1/crates/regex-syntax/0.6.27/download -> regex-syntax-0.6.27.crate https://crates.io/api/v1/crates/ring/0.16.20/download -> ring-0.16.20.crate https://crates.io/api/v1/crates/rustc_version/0.2.3/download -> rustc_version-0.2.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/rustversion/1.0.6/download -> rustversion-1.0.6.crate https://crates.io/api/v1/crates/rust_decimal/1.26.1/download -> rust_decimal-1.26.1.crate https://crates.io/api/v1/crates/ryu/1.0.11/download -> ryu-1.0.11.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.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/sfv/0.9.2/download -> sfv-0.9.2.crate https://crates.io/api/v1/crates/semver/0.9.0/download -> semver-0.9.0.crate https://crates.io/api/v1/crates/semver-parser/0.7.0/download -> semver-parser-0.7.0.crate https://crates.io/api/v1/crates/serde/1.0.145/download -> serde-1.0.145.crate https://crates.io/api/v1/crates/serde_derive/1.0.145/download -> serde_derive-1.0.145.crate https://crates.io/api/v1/crates/serde_json/1.0.86/download -> serde_json-1.0.86.crate https://crates.io/api/v1/crates/serde_with/1.14.0/download -> serde_with-1.14.0.crate https://crates.io/api/v1/crates/serde_with_macros/1.5.2/download -> serde_with_macros-1.5.2.crate https://crates.io/api/v1/crates/shlex/1.1.0/download -> shlex-1.1.0.crate https://crates.io/api/v1/crates/slab/0.4.7/download -> slab-0.4.7.crate https://crates.io/api/v1/crates/smallvec/1.4.0/download -> smallvec-1.4.0.crate https://crates.io/api/v1/crates/spin/0.5.2/download -> spin-0.5.2.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/strsim/0.10.0/download -> strsim-0.10.0.crate https://crates.io/api/v1/crates/syn/1.0.102/download -> syn-1.0.102.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/tinytemplate/1.0.3/download -> tinytemplate-1.0.3.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.0/download -> tinyvec_macros-0.1.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.8/download -> unicode-bidi-0.3.8.crate https://crates.io/api/v1/crates/unicode-ident/1.0.5/download -> unicode-ident-1.0.5.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/unicode-width/0.1.10/download -> unicode-width-0.1.10.crate https://crates.io/api/v1/crates/unicode-xid/0.2.4/download -> unicode-xid-0.2.4.crate https://crates.io/api/v1/crates/unicode-xid/0.2.3/download -> unicode-xid-0.2.3.crate https://crates.io/api/v1/crates/untrusted/0.7.1/download -> untrusted-0.7.1.crate https://crates.io/api/v1/crates/url/1.7.2/download -> url-1.7.2.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_check/0.9.4/download -> version_check-0.9.4.crate https://crates.io/api/v1/crates/walkdir/2.3.1/download -> walkdir-2.3.1.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/wasm-bindgen-backend/0.2.83/download -> wasm-bindgen-backend-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-macro-support/0.2.83/download -> wasm-bindgen-macro-support-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-webidl/0.2.75/download -> wasm-bindgen-webidl-0.2.75.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/web-sys/0.3.60/download -> web-sys-0.3.60.crate https://crates.io/api/v1/crates/which/3.1.1/download -> which-3.1.1.crate https://crates.io/api/v1/crates/winapi/0.2.8/download -> winapi-0.2.8.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-build/0.1.1/download -> winapi-build-0.1.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.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/windows_aarch64_msvc/0.36.1/download -> windows_aarch64_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.36.1/download -> windows_i686_gnu-0.36.1.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.36.1/download -> windows_i686_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.36.1/download -> windows_x86_64_gnu-0.36.1.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.36.1/download -> windows_x86_64_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows-sys/0.36.1/download -> windows-sys-0.36.1.crate https://crates.io/api/v1/crates/ws2_32-sys/0.2.1/download -> ws2_32-sys-0.2.1.crate https://crates.io/api/v1/crates/quiche/0.16.0/download -> quiche-0.16.0.crate -_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 rust-toolchain 2ed47174c9eddf7a0f6f6220edb0df4b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 rust-toolchain 2ed47174c9eddf7a0f6f6220edb0df4b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e56b333d555a6c29d758562340e66084 diff --git a/metadata/md5-cache/net-libs/quiche-9999 b/metadata/md5-cache/net-libs/quiche-9999 index e8c7f4987783..e3a267cd1786 100644 --- a/metadata/md5-cache/net-libs/quiche-9999 +++ b/metadata/md5-cache/net-libs/quiche-9999 @@ -8,5 +8,5 @@ IUSE=debug abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_ LICENSE=|| ( Apache-2.0 Boost-1.0 ) || ( Apache-2.0 MIT ) || ( Apache-2.0-with-LLVM-exceptions Apache-2.0 MIT ) BSD-2 BSD ISC MIT || ( Unlicense MIT ) openssl PROPERTIES=live SLOT=0/0 -_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 rust-toolchain 2ed47174c9eddf7a0f6f6220edb0df4b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cargo 2076d5b84dfa54f78d70aea5e10dde87 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 rust-toolchain 2ed47174c9eddf7a0f6f6220edb0df4b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e56b333d555a6c29d758562340e66084 diff --git a/metadata/md5-cache/net-libs/qxmpp-1.4.0 b/metadata/md5-cache/net-libs/qxmpp-1.4.0 index b223df7a2bba..4cb9d87f9605 100644 --- a/metadata/md5-cache/net-libs/qxmpp-1.4.0 +++ b/metadata/md5-cache/net-libs/qxmpp-1.4.0 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtxml:5 gstreamer? ( medi RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/qxmpp-project/qxmpp/archive/v1.4.0.tar.gz -> qxmpp-1.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=65cf4579dcea520d0d3862b50ced6bfd diff --git a/metadata/md5-cache/net-libs/qxmpp-9999 b/metadata/md5-cache/net-libs/qxmpp-9999 index 677445db9fab..e44c623f0aec 100644 --- a/metadata/md5-cache/net-libs/qxmpp-9999 +++ b/metadata/md5-cache/net-libs/qxmpp-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtxml:5 opus? ( media-libs/opus ) speex? ( media-libs/speex ) theora? ( media-libs/libtheora ) vpx? ( media-libs/libvpx:= ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3fb4fce2e5ae963b2fee7fa5e3651f04 diff --git a/metadata/md5-cache/net-libs/rabbitmq-c-0.11.0 b/metadata/md5-cache/net-libs/rabbitmq-c-0.11.0 index 94069b208b35..32df6bb225fe 100644 --- a/metadata/md5-cache/net-libs/rabbitmq-c-0.11.0 +++ b/metadata/md5-cache/net-libs/rabbitmq-c-0.11.0 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( static-libs ) RESTRICT=!test? ( test ) SLOT=0/4 SRC_URI=https://github.com/alanxz/rabbitmq-c/archive/v0.11.0.tar.gz -> rabbitmq-c-0.11.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c45b3c08c8836775bd7e6efc3adbb82 diff --git a/metadata/md5-cache/net-libs/rtrlib-0.8.0 b/metadata/md5-cache/net-libs/rtrlib-0.8.0 index 1a33988e3899..02172c07eeed 100644 --- a/metadata/md5-cache/net-libs/rtrlib-0.8.0 +++ b/metadata/md5-cache/net-libs/rtrlib-0.8.0 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=ssh? ( net-libs/libssh:0= ) SLOT=0 SRC_URI=https://github.com/rtrlib/rtrlib/archive/v0.8.0.tar.gz -> rtrlib-0.8.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=90e8dd1e826af74c1701f9c6b82b1a9d diff --git a/metadata/md5-cache/net-libs/socket_wrapper-1.3.4 b/metadata/md5-cache/net-libs/socket_wrapper-1.3.4 index 204fc38a6923..41e5faac976e 100644 --- a/metadata/md5-cache/net-libs/socket_wrapper-1.3.4 +++ b/metadata/md5-cache/net-libs/socket_wrapper-1.3.4 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://ftp.samba.org/pub/cwrap/socket_wrapper-1.3.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0cb6949cd187fc6e48021a8360aedfa7 diff --git a/metadata/md5-cache/net-libs/socket_wrapper-1.4.0 b/metadata/md5-cache/net-libs/socket_wrapper-1.4.0 index dda51ffd3337..1e487bd08feb 100644 --- a/metadata/md5-cache/net-libs/socket_wrapper-1.4.0 +++ b/metadata/md5-cache/net-libs/socket_wrapper-1.4.0 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://ftp.samba.org/pub/cwrap/socket_wrapper-1.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4e5b7c5a9f53d1edaea3d74682408e0b diff --git a/metadata/md5-cache/net-libs/srt-1.4.3 b/metadata/md5-cache/net-libs/srt-1.4.3 index 92c458f9b5ba..c64dda30afdc 100644 --- a/metadata/md5-cache/net-libs/srt-1.4.3 +++ b/metadata/md5-cache/net-libs/srt-1.4.3 @@ -11,5 +11,5 @@ LICENSE=MPL-2.0 RDEPEND=gnutls? ( dev-libs/nettle: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(-)?] net-libs/gnutls: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? ( dev-libs/openssl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0/1.4.3 SRC_URI=https://github.com/Haivision/srt/archive/v1.4.3.tar.gz -> srt-1.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8880486cd2c2a7497f42a12919ddc5c diff --git a/metadata/md5-cache/net-libs/srt-9999 b/metadata/md5-cache/net-libs/srt-9999 index 0980e9441d6e..3232c0081256 100644 --- a/metadata/md5-cache/net-libs/srt-9999 +++ b/metadata/md5-cache/net-libs/srt-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=gnutls? ( dev-libs/nettle: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(-)?] net-libs/gnutls: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? ( dev-libs/openssl: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(-)?] ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=21c250b6a01157b6be5d29165f419157 diff --git a/metadata/md5-cache/net-libs/telepathy-logger-qt-17.09.0-r1 b/metadata/md5-cache/net-libs/telepathy-logger-qt-17.09.0-r1 index bb022b27537f..6ca1bd9f7c2b 100644 --- a/metadata/md5-cache/net-libs/telepathy-logger-qt-17.09.0-r1 +++ b/metadata/md5-cache/net-libs/telepathy-logger-qt-17.09.0-r1 @@ -12,5 +12,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/dbus-glib dev-libs/glib:2 dev-libs/libxml2 dev-qt/qtdbus:5 net-im/telepathy-logger net-libs/telepathy-glib net-libs/telepathy-qt sys-apps/dbus || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/telepathy-logger-qt/17.09/src/telepathy-logger-qt-17.09.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=de03a6dad8c8c41103b7a3176b8cfd5f diff --git a/metadata/md5-cache/net-libs/telepathy-qt-0.9.8-r2 b/metadata/md5-cache/net-libs/telepathy-qt-0.9.8-r2 index 74bc67890480..8620441b79d6 100644 --- a/metadata/md5-cache/net-libs/telepathy-qt-0.9.8-r2 +++ b/metadata/md5-cache/net-libs/telepathy-qt-0.9.8-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( farstream ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://telepathy.freedesktop.org/releases/telepathy-qt/telepathy-qt-0.9.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4ae221bbce291078dd3f97f5917afc6b diff --git a/metadata/md5-cache/net-libs/telepathy-qt-9999 b/metadata/md5-cache/net-libs/telepathy-qt-9999 index 6742a605a1fd..4bc36de4c4a4 100644 --- a/metadata/md5-cache/net-libs/telepathy-qt-9999 +++ b/metadata/md5-cache/net-libs/telepathy-qt-9999 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt REQUIRED_USE=test? ( farstream ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e0f94d5ab9772dc6299b7b5fc806c3a6 diff --git a/metadata/md5-cache/net-libs/tox-0.2.13 b/metadata/md5-cache/net-libs/tox-0.2.13 index 8067815db050..d2d68ac163f3 100644 --- a/metadata/md5-cache/net-libs/tox-0.2.13 +++ b/metadata/md5-cache/net-libs/tox-0.2.13 @@ -13,5 +13,5 @@ REQUIRED_USE=?? ( log-debug log-error log-info log-trace log-warn ) daemon? ( dh RESTRICT=!test? ( test ) SLOT=0/0.2 SRC_URI=https://github.com/TokTok/c-toxcore/archive/v0.2.13.tar.gz -> c-toxcore-0.2.13.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af230e3c2aad9d09344e9c9e186ab7e7 diff --git a/metadata/md5-cache/net-libs/tox-0.2.18-r2 b/metadata/md5-cache/net-libs/tox-0.2.18-r2 index b748255970f6..53a58ba91d80 100644 --- a/metadata/md5-cache/net-libs/tox-0.2.18-r2 +++ b/metadata/md5-cache/net-libs/tox-0.2.18-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=?? ( log-debug log-error log-info log-trace log-warn ) daemon? ( dh RESTRICT=!test? ( test ) SLOT=0/0.2 SRC_URI=https://github.com/TokTok/c-toxcore/releases/download/v0.2.18/c-toxcore-0.2.18.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=872d652c3e0a4ea8d6465fc61ed093b0 diff --git a/metadata/md5-cache/net-libs/tox-9999 b/metadata/md5-cache/net-libs/tox-9999 index e65f3563024b..07873a807bd4 100644 --- a/metadata/md5-cache/net-libs/tox-9999 +++ b/metadata/md5-cache/net-libs/tox-9999 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libsodium:=[asm,urandom,-minimal] av? ( media-libs/libvpx:= med REQUIRED_USE=?? ( log-debug log-error log-info log-trace log-warn ) daemon? ( dht-node ) RESTRICT=!test? ( test ) SLOT=0/0.2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=58d3ea86fae8c6325c03d95c91b73fcf diff --git a/metadata/md5-cache/net-libs/tox_extension_messages-0.0.3 b/metadata/md5-cache/net-libs/tox_extension_messages-0.0.3 index 1a83d394ae20..ff91045db7fa 100644 --- a/metadata/md5-cache/net-libs/tox_extension_messages-0.0.3 +++ b/metadata/md5-cache/net-libs/tox_extension_messages-0.0.3 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=net-libs/toxext SLOT=0 SRC_URI=https://github.com/toxext/tox_extension_messages/archive/refs/tags/v0.0.3.tar.gz -> tox_extension_messages-0.0.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f988662508b849be733064e67f59f596 diff --git a/metadata/md5-cache/net-libs/toxext-0.0.3 b/metadata/md5-cache/net-libs/toxext-0.0.3 index 258d1b80368e..56fcb1dfbcc7 100644 --- a/metadata/md5-cache/net-libs/toxext-0.0.3 +++ b/metadata/md5-cache/net-libs/toxext-0.0.3 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=net-libs/tox:= SLOT=0 SRC_URI=https://github.com/toxext/toxext/archive/refs/tags/v0.0.3.tar.gz -> toxext-0.0.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a290d7de591e88817efb928714ada652 diff --git a/metadata/md5-cache/net-libs/usrsctp-0.9.5.0 b/metadata/md5-cache/net-libs/usrsctp-0.9.5.0 index 81f6e35ec331..e26cfea145f2 100644 --- a/metadata/md5-cache/net-libs/usrsctp-0.9.5.0 +++ b/metadata/md5-cache/net-libs/usrsctp-0.9.5.0 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm64 ~ppc64 ~riscv ~x86 LICENSE=BSD SLOT=0 SRC_URI=https://github.com/sctplab/usrsctp/archive/0.9.5.0.tar.gz -> usrsctp-0.9.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b73e1c86175fcef2ac4028f06ab3e2a diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.38.3 b/metadata/md5-cache/net-libs/webkit-gtk-2.38.3 index f5dc350564bc..ee844a3f9170 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.38.3 +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.38.3 @@ -14,5 +14,5 @@ REQUIRED_USE=gles2-only? ( egl ) gstreamer? ( egl ) wayland? ( egl ) || ( aqua w RESTRICT=test SLOT=4/37 SRC_URI=https://www.webkitgtk.org/releases/webkitgtk-2.38.3.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6047530e93c1bbf2eea3fb6ece8ab498 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.38.3-r410 b/metadata/md5-cache/net-libs/webkit-gtk-2.38.3-r410 index e9c8c1be4d27..2edf18aaa550 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.38.3-r410 +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.38.3-r410 @@ -14,5 +14,5 @@ REQUIRED_USE=gles2-only? ( egl ) gstreamer? ( egl ) wayland? ( egl ) || ( aqua w RESTRICT=test SLOT=4.1/0 SRC_URI=https://www.webkitgtk.org/releases/webkitgtk-2.38.3.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=486b6b797850e69e706e0f947161a985 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.38.3-r500 b/metadata/md5-cache/net-libs/webkit-gtk-2.38.3-r500 index a4ae851f812f..a381401578ef 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.38.3-r500 +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.38.3-r500 @@ -14,5 +14,5 @@ REQUIRED_USE=gles2-only? ( egl ) gstreamer? ( egl ) wayland? ( egl ) || ( aqua w RESTRICT=test SLOT=5/0 SRC_URI=https://www.webkitgtk.org/releases/webkitgtk-2.38.3.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e419ea028cab6cdd53ea148ea590608d diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.38.5 b/metadata/md5-cache/net-libs/webkit-gtk-2.38.5 index 8101cba93f41..9c1f628eeb04 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.38.5 +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.38.5 @@ -14,5 +14,5 @@ REQUIRED_USE=gles2-only? ( egl ) gstreamer? ( egl ) wayland? ( egl ) || ( aqua w RESTRICT=test SLOT=4/37 SRC_URI=https://www.webkitgtk.org/releases/webkitgtk-2.38.5.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4be6be7754133baa14945971673e1d16 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.38.5-r410 b/metadata/md5-cache/net-libs/webkit-gtk-2.38.5-r410 index d52be922e2d8..b93dbb816cf5 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.38.5-r410 +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.38.5-r410 @@ -14,5 +14,5 @@ REQUIRED_USE=gles2-only? ( egl ) gstreamer? ( egl ) wayland? ( egl ) || ( aqua w RESTRICT=test SLOT=4.1/0 SRC_URI=https://www.webkitgtk.org/releases/webkitgtk-2.38.5.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e70857ef669ae84a44963d7a98612731 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.38.5-r500 b/metadata/md5-cache/net-libs/webkit-gtk-2.38.5-r500 index 036fcf744f38..4b2c8951c766 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.38.5-r500 +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.38.5-r500 @@ -14,5 +14,5 @@ REQUIRED_USE=gles2-only? ( egl ) gstreamer? ( egl ) wayland? ( egl ) || ( aqua w RESTRICT=test SLOT=5/0 SRC_URI=https://www.webkitgtk.org/releases/webkitgtk-2.38.5.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=492a4ef4b2bbcdf14b61a2d6c62e77f7 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.40.0 b/metadata/md5-cache/net-libs/webkit-gtk-2.40.0 new file mode 100644 index 000000000000..404284fcfd40 --- /dev/null +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.40.0 @@ -0,0 +1,18 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) || ( dev-lang/ruby:3.0 dev-lang/ruby:3.1 ) virtual/rubygems >=app-accessibility/at-spi2-core-2.5.3 dev-util/gdbus-codegen dev-util/glib-utils >=dev-util/gperf-3.0.1 dev-util/unifdef >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) sys-devel/gettext virtual/pkgconfig >=dev-lang/perl-5.10 virtual/perl-Data-Dumper virtual/perl-Carp virtual/perl-JSON-PP >=app-portage/elt-patches-20170815 app-arch/xz-utils >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test +DEPEND=>=x11-libs/cairo-1.16.0[X?] >=media-libs/fontconfig-2.13.0:1.0 >=media-libs/freetype-2.9.0:2 >=dev-libs/libgcrypt-1.7.0:0= >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] >=media-libs/harfbuzz-1.4.2:=[icu(+)] >=dev-libs/icu-61.2:= media-libs/libjpeg-turbo:0= >=media-libs/libepoxy-1.4.0 >=net-libs/libsoup-2.54:2.4[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3 sys-libs/zlib:0 >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/libwebp:= >=dev-libs/glib-2.70.0:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) dev-libs/libtasn1:= spell? ( >=app-text/enchant-0.22:2 ) gstreamer? ( >=media-libs/gstreamer-1.20:1.0 >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) >=media-plugins/gst-plugins-opus-1.20:1.0 >=media-libs/gst-plugins-bad-1.20:1.0 ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) dev-libs/hyphen jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) avif? ( >=media-libs/libavif-0.9.0:= ) lcms? ( media-libs/lcms:2 ) media-libs/mesa media-libs/libglvnd wayland? ( dev-libs/wayland >=dev-libs/wayland-protocols-1.12 >=gui-libs/libwpe-1.5.0:1.0 >=gui-libs/wpebackend-fdo-1.7.0:1.0 ) seccomp? ( >=sys-apps/bubblewrap-0.3.1 sys-libs/libseccomp sys-apps/xdg-dbus-proxy ) systemd? ( sys-apps/systemd:= ) gamepad? ( >=dev-libs/libmanette-0.2.4 ) +DESCRIPTION=Open source web browser engine +EAPI=8 +HOMEPAGE=https://www.webkitgtk.org +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=check-reqs flag-o-matic gnome2 optfeature python-any-r1 ruby-single toolchain-funcs cmake +IUSE=aqua avif examples gamepad gles2-only gnome-keyring +gstreamer +introspection pdf +jpeg2k +jumbo-build lcms seccomp spell systemd wayland X +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-2+ BSD +RDEPEND=>=x11-libs/cairo-1.16.0[X?] >=media-libs/fontconfig-2.13.0:1.0 >=media-libs/freetype-2.9.0:2 >=dev-libs/libgcrypt-1.7.0:0= >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] >=media-libs/harfbuzz-1.4.2:=[icu(+)] >=dev-libs/icu-61.2:= media-libs/libjpeg-turbo:0= >=media-libs/libepoxy-1.4.0 >=net-libs/libsoup-2.54:2.4[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3 sys-libs/zlib:0 >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/libwebp:= >=dev-libs/glib-2.70.0:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) dev-libs/libtasn1:= spell? ( >=app-text/enchant-0.22:2 ) gstreamer? ( >=media-libs/gstreamer-1.20:1.0 >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) >=media-plugins/gst-plugins-opus-1.20:1.0 >=media-libs/gst-plugins-bad-1.20:1.0 ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) dev-libs/hyphen jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) avif? ( >=media-libs/libavif-0.9.0:= ) lcms? ( media-libs/lcms:2 ) media-libs/mesa media-libs/libglvnd wayland? ( dev-libs/wayland >=dev-libs/wayland-protocols-1.12 >=gui-libs/libwpe-1.5.0:1.0 >=gui-libs/wpebackend-fdo-1.7.0:1.0 ) seccomp? ( >=sys-apps/bubblewrap-0.3.1 sys-libs/libseccomp sys-apps/xdg-dbus-proxy ) systemd? ( sys-apps/systemd:= ) gamepad? ( >=dev-libs/libmanette-0.2.4 ) +REQUIRED_USE=|| ( aqua wayland X ) +RESTRICT=test +SLOT=4/37 +SRC_URI=https://www.webkitgtk.org/releases/webkitgtk-2.40.0.tar.xz +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=6fbd2a05bdaba07ea9b2a4d7c59b0346 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.40.0-r410 b/metadata/md5-cache/net-libs/webkit-gtk-2.40.0-r410 new file mode 100644 index 000000000000..878c3d62db17 --- /dev/null +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.40.0-r410 @@ -0,0 +1,18 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) || ( dev-lang/ruby:3.0 dev-lang/ruby:3.1 ) virtual/rubygems >=app-accessibility/at-spi2-core-2.5.3 dev-util/gdbus-codegen dev-util/glib-utils >=dev-util/gperf-3.0.1 dev-util/unifdef >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) sys-devel/gettext virtual/pkgconfig >=dev-lang/perl-5.10 virtual/perl-Data-Dumper virtual/perl-Carp virtual/perl-JSON-PP >=app-portage/elt-patches-20170815 app-arch/xz-utils >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test +DEPEND=>=x11-libs/cairo-1.16.0[X?] >=media-libs/fontconfig-2.13.0:1.0 >=media-libs/freetype-2.9.0:2 >=dev-libs/libgcrypt-1.7.0:0= >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] >=media-libs/harfbuzz-1.4.2:=[icu(+)] >=dev-libs/icu-61.2:= media-libs/libjpeg-turbo:0= >=media-libs/libepoxy-1.4.0 >=net-libs/libsoup-3.0.8:3.0[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3 sys-libs/zlib:0 >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/libwebp:= >=dev-libs/glib-2.70.0:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) dev-libs/libtasn1:= spell? ( >=app-text/enchant-0.22:2 ) gstreamer? ( >=media-libs/gstreamer-1.20:1.0 >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) >=media-plugins/gst-plugins-opus-1.20:1.0 >=media-libs/gst-plugins-bad-1.20:1.0 ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) dev-libs/hyphen jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) avif? ( >=media-libs/libavif-0.9.0:= ) lcms? ( media-libs/lcms:2 ) media-libs/mesa media-libs/libglvnd wayland? ( dev-libs/wayland >=dev-libs/wayland-protocols-1.12 >=gui-libs/libwpe-1.5.0:1.0 >=gui-libs/wpebackend-fdo-1.7.0:1.0 ) seccomp? ( >=sys-apps/bubblewrap-0.3.1 sys-libs/libseccomp sys-apps/xdg-dbus-proxy ) systemd? ( sys-apps/systemd:= ) gamepad? ( >=dev-libs/libmanette-0.2.4 ) !=x11-libs/cairo-1.16.0[X?] >=media-libs/fontconfig-2.13.0:1.0 >=media-libs/freetype-2.9.0:2 >=dev-libs/libgcrypt-1.7.0:0= >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] >=media-libs/harfbuzz-1.4.2:=[icu(+)] >=dev-libs/icu-61.2:= media-libs/libjpeg-turbo:0= >=media-libs/libepoxy-1.4.0 >=net-libs/libsoup-3.0.8:3.0[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3 sys-libs/zlib:0 >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/libwebp:= >=dev-libs/glib-2.70.0:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) dev-libs/libtasn1:= spell? ( >=app-text/enchant-0.22:2 ) gstreamer? ( >=media-libs/gstreamer-1.20:1.0 >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) >=media-plugins/gst-plugins-opus-1.20:1.0 >=media-libs/gst-plugins-bad-1.20:1.0 ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) dev-libs/hyphen jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) avif? ( >=media-libs/libavif-0.9.0:= ) lcms? ( media-libs/lcms:2 ) media-libs/mesa media-libs/libglvnd wayland? ( dev-libs/wayland >=dev-libs/wayland-protocols-1.12 >=gui-libs/libwpe-1.5.0:1.0 >=gui-libs/wpebackend-fdo-1.7.0:1.0 ) seccomp? ( >=sys-apps/bubblewrap-0.3.1 sys-libs/libseccomp sys-apps/xdg-dbus-proxy ) systemd? ( sys-apps/systemd:= ) gamepad? ( >=dev-libs/libmanette-0.2.4 ) !=dev-lang/python-3.11.1-r1:3.11[xml(+)] >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) || ( dev-lang/ruby:3.0 dev-lang/ruby:3.1 ) virtual/rubygems >=app-accessibility/at-spi2-core-2.5.3 dev-util/gdbus-codegen dev-util/glib-utils >=dev-util/gperf-3.0.1 dev-util/unifdef >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) sys-devel/gettext virtual/pkgconfig >=dev-lang/perl-5.10 virtual/perl-Data-Dumper virtual/perl-Carp virtual/perl-JSON-PP >=app-portage/elt-patches-20170815 app-arch/xz-utils >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test +DEPEND=>=x11-libs/cairo-1.16.0[X?] >=media-libs/fontconfig-2.13.0:1.0 >=media-libs/freetype-2.9.0:2 >=dev-libs/libgcrypt-1.7.0:0= >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] gui-libs/gtk:4 >=media-libs/harfbuzz-1.4.2:=[icu(+)] >=dev-libs/icu-61.2:= media-libs/libjpeg-turbo:0= >=media-libs/libepoxy-1.4.0 >=net-libs/libsoup-3.0.8:3.0[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3 sys-libs/zlib:0 >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/libwebp:= >=dev-libs/glib-2.70.0:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) dev-libs/libtasn1:= spell? ( >=app-text/enchant-0.22:2 ) gstreamer? ( >=media-libs/gstreamer-1.20:1.0 >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) >=media-plugins/gst-plugins-opus-1.20:1.0 >=media-libs/gst-plugins-bad-1.20:1.0 ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) dev-libs/hyphen jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) avif? ( >=media-libs/libavif-0.9.0:= ) lcms? ( media-libs/lcms:2 ) media-libs/mesa media-libs/libglvnd wayland? ( dev-libs/wayland >=dev-libs/wayland-protocols-1.12 >=gui-libs/libwpe-1.5.0:1.0 >=gui-libs/wpebackend-fdo-1.7.0:1.0 ) seccomp? ( >=sys-apps/bubblewrap-0.3.1 sys-libs/libseccomp sys-apps/xdg-dbus-proxy ) systemd? ( sys-apps/systemd:= ) gamepad? ( >=dev-libs/libmanette-0.2.4 ) !=x11-libs/cairo-1.16.0[X?] >=media-libs/fontconfig-2.13.0:1.0 >=media-libs/freetype-2.9.0:2 >=dev-libs/libgcrypt-1.7.0:0= >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] gui-libs/gtk:4 >=media-libs/harfbuzz-1.4.2:=[icu(+)] >=dev-libs/icu-61.2:= media-libs/libjpeg-turbo:0= >=media-libs/libepoxy-1.4.0 >=net-libs/libsoup-3.0.8:3.0[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3 sys-libs/zlib:0 >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/libwebp:= >=dev-libs/glib-2.70.0:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) dev-libs/libtasn1:= spell? ( >=app-text/enchant-0.22:2 ) gstreamer? ( >=media-libs/gstreamer-1.20:1.0 >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) >=media-plugins/gst-plugins-opus-1.20:1.0 >=media-libs/gst-plugins-bad-1.20:1.0 ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) dev-libs/hyphen jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) avif? ( >=media-libs/libavif-0.9.0:= ) lcms? ( media-libs/lcms:2 ) media-libs/mesa media-libs/libglvnd wayland? ( dev-libs/wayland >=dev-libs/wayland-protocols-1.12 >=gui-libs/libwpe-1.5.0:1.0 >=gui-libs/wpebackend-fdo-1.7.0:1.0 ) seccomp? ( >=sys-apps/bubblewrap-0.3.1 sys-libs/libseccomp sys-apps/xdg-dbus-proxy ) systemd? ( sys-apps/systemd:= ) gamepad? ( >=dev-libs/libmanette-0.2.4 ) ! xrootd-ceph-5.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=25c9bdbfa8e1b1d6803a35e6a911f05b diff --git a/metadata/md5-cache/net-libs/xrootd-ceph-5.5.2 b/metadata/md5-cache/net-libs/xrootd-ceph-5.5.2 index d7420b793db0..e53f369f219d 100644 --- a/metadata/md5-cache/net-libs/xrootd-ceph-5.5.2 +++ b/metadata/md5-cache/net-libs/xrootd-ceph-5.5.2 @@ -12,5 +12,5 @@ RDEPEND=~net-libs/xrootd-5.5.2 sys-cluster/ceph RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/xrootd/xrootd-ceph/archive/refs/tags/v5.5.2.tar.gz -> xrootd-ceph-5.5.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f78f7027e20c675201b0e00e08a110c1 diff --git a/metadata/md5-cache/net-libs/zmqpp-4.2.0-r1 b/metadata/md5-cache/net-libs/zmqpp-4.2.0-r1 index 6767b761ac3b..31ae646c602a 100644 --- a/metadata/md5-cache/net-libs/zmqpp-4.2.0-r1 +++ b/metadata/md5-cache/net-libs/zmqpp-4.2.0-r1 @@ -11,5 +11,5 @@ LICENSE=MPL-2.0 RDEPEND=net-libs/zeromq[static-libs?] SLOT=0 SRC_URI=https://github.com/zeromq/zmqpp/archive/4.2.0.tar.gz -> zmqpp-4.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=372d05ac6e14d3904e3060c1d532c655 diff --git a/metadata/md5-cache/net-mail/Manifest.gz b/metadata/md5-cache/net-mail/Manifest.gz index 0c348ed26f25..22e7dd786da0 100644 Binary files a/metadata/md5-cache/net-mail/Manifest.gz and b/metadata/md5-cache/net-mail/Manifest.gz differ diff --git a/metadata/md5-cache/net-mail/automx2-2022.1 b/metadata/md5-cache/net-mail/automx2-2022.1 index efe56a12ae59..3816666ddb60 100644 --- a/metadata/md5-cache/net-mail/automx2-2022.1 +++ b/metadata/md5-cache/net-mail/automx2-2022.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://automx.org/ INHERIT=distutils-r1 IUSE=test python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=GPL-3+ RDEPEND=acct-user/automx2 dev-python/flask[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/flask-migrate[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/flask-sqlalchemy[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/ldap3[python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rseichter/automx2/archive/2022.1.tar.gz -> automx2-2022.1.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f9d8e71c748f7f7b62589f5a094bf04b +_md5_=e86e1fbdf445b5cc2d63f1f355bafaae diff --git a/metadata/md5-cache/net-mail/fdm-2.0-r1 b/metadata/md5-cache/net-mail/fdm-2.0-r1 deleted file mode 100644 index 999cbccf0941..000000000000 --- a/metadata/md5-cache/net-mail/fdm-2.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=dev-libs/openssl:0= sys-libs/tdb pcre? ( dev-libs/libpcre ) -DESCRIPTION=Fetch, filter and deliver mail -EAPI=7 -HOMEPAGE=https://github.com/nicm/fdm -IUSE=examples pcre -KEYWORDS=amd64 ~arm64 x86 -LICENSE=BSD -RDEPEND=dev-libs/openssl:0= sys-libs/tdb pcre? ( dev-libs/libpcre ) acct-group/fdm acct-user/fdm -SLOT=0 -SRC_URI=https://github.com/nicm/fdm/releases/download/2.0/fdm-2.0.tar.gz -_md5_=818595024aea3a60da5711d03eaf21e8 diff --git a/metadata/md5-cache/net-mail/fdm-2.1 b/metadata/md5-cache/net-mail/fdm-2.1 deleted file mode 100644 index 813198fdeb34..000000000000 --- a/metadata/md5-cache/net-mail/fdm-2.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=dev-libs/openssl:0= sys-libs/tdb pcre? ( dev-libs/libpcre ) -DESCRIPTION=Fetch, filter and deliver mail -EAPI=7 -HOMEPAGE=https://github.com/nicm/fdm -IUSE=examples pcre -KEYWORDS=~amd64 ~arm64 ~x86 -LICENSE=BSD -RDEPEND=dev-libs/openssl:0= sys-libs/tdb pcre? ( dev-libs/libpcre ) acct-group/fdm acct-user/fdm -SLOT=0 -SRC_URI=https://github.com/nicm/fdm/releases/download/2.1/fdm-2.1.tar.gz -_md5_=3bd2f1840bc965070752183d7fe8bb95 diff --git a/metadata/md5-cache/net-mail/fdm-2.2 b/metadata/md5-cache/net-mail/fdm-2.2 deleted file mode 100644 index a0ad94a31401..000000000000 --- a/metadata/md5-cache/net-mail/fdm-2.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=dev-libs/openssl:= sys-libs/tdb pcre? ( dev-libs/libpcre2 ) -DESCRIPTION=Fetch, filter and deliver mail -EAPI=8 -HOMEPAGE=https://github.com/nicm/fdm -IUSE=examples pcre -KEYWORDS=amd64 ~arm64 x86 -LICENSE=BSD -RDEPEND=dev-libs/openssl:= sys-libs/tdb pcre? ( dev-libs/libpcre2 ) acct-group/fdm acct-user/fdm -SLOT=0 -SRC_URI=https://github.com/nicm/fdm/releases/download/2.2/fdm-2.2.tar.gz -_md5_=63c2c740b38b4beee743283c85ea711a diff --git a/metadata/md5-cache/net-mail/fdm-2.2-r1 b/metadata/md5-cache/net-mail/fdm-2.2-r1 new file mode 100644 index 000000000000..f4a11a6b44d8 --- /dev/null +++ b/metadata/md5-cache/net-mail/fdm-2.2-r1 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=configure install prepare +DEPEND=dev-libs/openssl:= sys-libs/tdb pcre? ( dev-libs/libpcre2 ) +DESCRIPTION=Fetch, filter and deliver mail +EAPI=8 +HOMEPAGE=https://github.com/nicm/fdm +INHERIT=autotools +IUSE=examples pcre +KEYWORDS=amd64 ~arm64 x86 +LICENSE=BSD +RDEPEND=dev-libs/openssl:= sys-libs/tdb pcre? ( dev-libs/libpcre2 ) acct-group/fdm acct-user/fdm +SLOT=0 +SRC_URI=https://github.com/nicm/fdm/releases/download/2.2/fdm-2.2.tar.gz +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=91b0f4f9dc2bb80310d15f29b3061bda diff --git a/metadata/md5-cache/net-mail/poppassd_ceti-1.8.9 b/metadata/md5-cache/net-mail/poppassd_ceti-1.8.9 index 0cb762cbd3fb..5a7ff27cc989 100644 --- a/metadata/md5-cache/net-mail/poppassd_ceti-1.8.9 +++ b/metadata/md5-cache/net-mail/poppassd_ceti-1.8.9 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/pam RESTRICT=test SLOT=0 SRC_URI=https://github.com/kravietz/poppassd-ceti/archive/v1.8.9.tar.gz -> poppassd-ceti-1.8.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b5cb0eb76de0c999baabf8f150303902 diff --git a/metadata/md5-cache/net-mail/vpopmail-5.4.33-r9 b/metadata/md5-cache/net-mail/vpopmail-5.4.33-r9 index dcd5e3cca841..4bf75a53f668 100644 --- a/metadata/md5-cache/net-mail/vpopmail-5.4.33-r9 +++ b/metadata/md5-cache/net-mail/vpopmail-5.4.33-r9 @@ -13,4 +13,4 @@ REQUIRED_USE=mysql? ( !postgres ) SLOT=0 SRC_URI=mirror://sourceforge/vpopmail/vpopmail-5.4.33.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 fixheadtails 1721997ed44d035654efe12da50797ef flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 qmail 60663a8b5dc7a30f81245bcdc9565863 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=ee76c18acf3a752c8b2f1ffecb691c5b +_md5_=65d2d68ba4f8d9045e9317eb1c8372d0 diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index 0d753b4b8dd9..fb26f71580d4 100644 Binary files a/metadata/md5-cache/net-misc/Manifest.gz and b/metadata/md5-cache/net-misc/Manifest.gz differ diff --git a/metadata/md5-cache/net-misc/apt-cacher-ng-3.7.4_p1-r2 b/metadata/md5-cache/net-misc/apt-cacher-ng-3.7.4_p1-r2 index cf21c0378ab7..6a58b596cb4f 100644 --- a/metadata/md5-cache/net-misc/apt-cacher-ng-3.7.4_p1-r2 +++ b/metadata/md5-cache/net-misc/apt-cacher-ng-3.7.4_p1-r2 @@ -11,5 +11,5 @@ LICENSE=BSD-4 ZLIB public-domain RDEPEND=acct-user/apt-cacher-ng acct-group/apt-cacher-ng app-arch/bzip2 dev-libs/libevent:=[threads(+)] dev-libs/openssl:0= net-dns/c-ares:= sys-libs/zlib fuse? ( sys-fs/fuse:0 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) dev-lang/perl virtual/tmpfiles SLOT=0 SRC_URI=https://salsa.debian.org/blade/apt-cacher-ng/-/archive/debian/3.7.4-1/apt-cacher-ng-debian-3.7.4-1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=99ccc5e56f57440c2f43468c0a17713b diff --git a/metadata/md5-cache/net-misc/apt-cacher-ng-9999 b/metadata/md5-cache/net-misc/apt-cacher-ng-9999 index d3930b51ee87..0f89e2e54608 100644 --- a/metadata/md5-cache/net-misc/apt-cacher-ng-9999 +++ b/metadata/md5-cache/net-misc/apt-cacher-ng-9999 @@ -10,5 +10,5 @@ LICENSE=BSD-4 ZLIB public-domain PROPERTIES=live RDEPEND=acct-user/apt-cacher-ng acct-group/apt-cacher-ng app-arch/bzip2 dev-libs/libevent:=[threads(+)] dev-libs/openssl:0= sys-libs/zlib fuse? ( sys-fs/fuse:0 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) dev-lang/perl virtual/tmpfiles SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e4febf86fd16e7f39b0176e0c0f494db diff --git a/metadata/md5-cache/net-misc/bopm-3.1.3-r6 b/metadata/md5-cache/net-misc/bopm-3.1.3-r7 similarity index 68% rename from metadata/md5-cache/net-misc/bopm-3.1.3-r6 rename to metadata/md5-cache/net-misc/bopm-3.1.3-r7 index 8247ee600548..80917611d26c 100644 --- a/metadata/md5-cache/net-misc/bopm-3.1.3-r6 +++ b/metadata/md5-cache/net-misc/bopm-3.1.3-r7 @@ -1,7 +1,7 @@ -BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +BDEPEND=acct-user/opm sys-devel/autoconf-archive sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=configure install postinst prepare DESCRIPTION=Blitzed Open Proxy Monitor -EAPI=7 +EAPI=8 HOMEPAGE=https://github.com/blitzed-org/bopm INHERIT=autotools KEYWORDS=~alpha ~amd64 ~ppc ~x86 @@ -10,4 +10,4 @@ RDEPEND=acct-user/opm SLOT=0 SRC_URI=http://static.blitzed.org/www.blitzed.org/bopm/files/bopm-3.1.3.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=3ea86d45b4fc42c7f5cc0effac70382d +_md5_=04dcbe7ec6626a6ccf948b4967ba373d diff --git a/metadata/md5-cache/net-misc/fatrat-1.2.0_beta2_p20161204 b/metadata/md5-cache/net-misc/fatrat-1.2.0_beta2_p20161204 index d88c07fb0006..2a14b803b091 100644 --- a/metadata/md5-cache/net-misc/fatrat-1.2.0_beta2_p20161204 +++ b/metadata/md5-cache/net-misc/fatrat-1.2.0_beta2_p20161204 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 bittorrent? ( dev-qt/qtwebengine:5[widgets] >=net-libs/libtorrent-rasterbar-1.1.1 ) curl? ( >=net-misc/curl-7.18.2 ) doc? ( dev-qt/qthelp:5 ) xmpp? ( net-libs/gloox ) SLOT=0 SRC_URI=https://github.com/LubosD/fatrat/tarball/14a1a146df76d70c44dcc38363848a5b41a364d5 -> fatrat-1.2.0_beta2_p20161204.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9810cf687a8b0945b6d3d014ca01257c diff --git a/metadata/md5-cache/net-misc/freerdp-2.10.0 b/metadata/md5-cache/net-misc/freerdp-2.10.0 index accfaab0cdc7..b27e9278f9a1 100644 --- a/metadata/md5-cache/net-misc/freerdp-2.10.0 +++ b/metadata/md5-cache/net-misc/freerdp-2.10.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl:0= sys-libs/zlib:0 alsa? ( media-libs/alsa-lib ) cups? RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://pub.freerdp.com/releases/freerdp-2.10.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f653555ab57e8078cb954014493ee71b diff --git a/metadata/md5-cache/net-misc/freerdp-2.9.0 b/metadata/md5-cache/net-misc/freerdp-2.9.0 index 7fba7448db00..15f61e58f02f 100644 --- a/metadata/md5-cache/net-misc/freerdp-2.9.0 +++ b/metadata/md5-cache/net-misc/freerdp-2.9.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl:0= sys-libs/zlib:0 alsa? ( media-libs/alsa-lib ) cups? RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://pub.freerdp.com/releases/freerdp-2.9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a2e29fb0945013bc8427131c98c8078a diff --git a/metadata/md5-cache/net-misc/freerdp-2.9999 b/metadata/md5-cache/net-misc/freerdp-2.9999 index 1274bf8b1327..dc87ea7b59ec 100644 --- a/metadata/md5-cache/net-misc/freerdp-2.9999 +++ b/metadata/md5-cache/net-misc/freerdp-2.9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/openssl:0= sys-libs/zlib:0 alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups ) usb? ( virtual/libudev:0= sys-apps/util-linux:0= dev-libs/dbus-glib:0= virtual/libusb:1= ) X? ( x11-libs/libXcursor x11-libs/libXext x11-libs/libXi x11-libs/libXrender xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) ) ffmpeg? ( media-video/ffmpeg:0= ) !ffmpeg? ( x11-libs/cairo:0= ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 x11-libs/libXrandr ) jpeg? ( media-libs/libjpeg-turbo:0= ) openh264? ( media-libs/openh264:0= ) pulseaudio? ( media-sound/pulseaudio ) server? ( X? ( x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXtst xinerama? ( x11-libs/libXinerama ) ) ) smartcard? ( sys-apps/pcsc-lite ) systemd? ( sys-apps/systemd:0= ) wayland? ( dev-libs/wayland x11-libs/libxkbcommon ) X? ( x11-libs/libX11 x11-libs/libxkbfile ) RESTRICT=!test? ( test ) SLOT=0/2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e552988fcc988f076b4a22adeefb3ce2 diff --git a/metadata/md5-cache/net-misc/freerdp-9999 b/metadata/md5-cache/net-misc/freerdp-9999 index 1274bf8b1327..dc87ea7b59ec 100644 --- a/metadata/md5-cache/net-misc/freerdp-9999 +++ b/metadata/md5-cache/net-misc/freerdp-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/openssl:0= sys-libs/zlib:0 alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups ) usb? ( virtual/libudev:0= sys-apps/util-linux:0= dev-libs/dbus-glib:0= virtual/libusb:1= ) X? ( x11-libs/libXcursor x11-libs/libXext x11-libs/libXi x11-libs/libXrender xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) ) ffmpeg? ( media-video/ffmpeg:0= ) !ffmpeg? ( x11-libs/cairo:0= ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 x11-libs/libXrandr ) jpeg? ( media-libs/libjpeg-turbo:0= ) openh264? ( media-libs/openh264:0= ) pulseaudio? ( media-sound/pulseaudio ) server? ( X? ( x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXtst xinerama? ( x11-libs/libXinerama ) ) ) smartcard? ( sys-apps/pcsc-lite ) systemd? ( sys-apps/systemd:0= ) wayland? ( dev-libs/wayland x11-libs/libxkbcommon ) X? ( x11-libs/libX11 x11-libs/libxkbfile ) RESTRICT=!test? ( test ) SLOT=0/2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e552988fcc988f076b4a22adeefb3ce2 diff --git a/metadata/md5-cache/net-misc/gerbera-1.12.1 b/metadata/md5-cache/net-misc/gerbera-1.12.1 index 9972e396a857..abd66fc78f4d 100644 --- a/metadata/md5-cache/net-misc/gerbera-1.12.1 +++ b/metadata/md5-cache/net-misc/gerbera-1.12.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=acct-user/gerbera dev-db/sqlite dev-libs/libebml:= dev-libs/libfmt:= dev-libs/pugixml dev-libs/spdlog:= >=net-libs/libupnp-1.14.12:=[ipv6(+),reuseaddr,-blocking-tcp] sys-apps/util-linux sys-libs/zlib virtual/libiconv curl? ( net-misc/curl ) exif? ( media-libs/libexif ) exiv2? ( media-gfx/exiv2 ) ffmpeg? ( media-video/ffmpeg:= ) ffmpegthumbnailer? ( media-video/ffmpegthumbnailer ) javascript? ( dev-lang/duktape:= ) magic? ( sys-apps/file ) matroska? ( media-libs/libmatroska:= ) mysql? ( dev-db/mysql-connector-c ) taglib? ( media-libs/taglib ) SLOT=0 SRC_URI=https://github.com/gerbera/gerbera/archive/refs/tags/v1.12.1.tar.gz -> gerbera-1.12.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e07915c0c0716a58de91b2cfdd5c31c diff --git a/metadata/md5-cache/net-misc/gerbera-9999 b/metadata/md5-cache/net-misc/gerbera-9999 index 80394d433f71..94eacaaca8b5 100644 --- a/metadata/md5-cache/net-misc/gerbera-9999 +++ b/metadata/md5-cache/net-misc/gerbera-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=acct-user/gerbera dev-db/sqlite dev-libs/libebml:= dev-libs/libfmt:= dev-libs/pugixml dev-libs/spdlog:= >=net-libs/libupnp-1.14.12:=[ipv6(+),reuseaddr,-blocking-tcp] sys-apps/util-linux sys-libs/zlib virtual/libiconv curl? ( net-misc/curl ) exif? ( media-libs/libexif ) exiv2? ( media-gfx/exiv2 ) ffmpeg? ( media-video/ffmpeg:= ) ffmpegthumbnailer? ( media-video/ffmpegthumbnailer ) javascript? ( dev-lang/duktape:= ) magic? ( sys-apps/file ) matroska? ( media-libs/libmatroska:= ) mysql? ( dev-db/mysql-connector-c ) taglib? ( media-libs/taglib ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e07915c0c0716a58de91b2cfdd5c31c diff --git a/metadata/md5-cache/net-misc/gnome-remote-desktop-44.0 b/metadata/md5-cache/net-misc/gnome-remote-desktop-44.0 new file mode 100644 index 000000000000..9cc8ac6c8fbb --- /dev/null +++ b/metadata/md5-cache/net-misc/gnome-remote-desktop-44.0 @@ -0,0 +1,18 @@ +BDEPEND=dev-util/gdbus-codegen dev-util/glib-utils virtual/pkgconfig doc? ( app-text/asciidoc ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=x11-libs/cairo x11-libs/libdrm >=media-libs/libepoxy-1.4 >=dev-libs/glib-2.68:2 x11-libs/libnotify app-crypt/libsecret >=media-video/pipewire-0.3.49:= app-crypt/tpm2-tss:= rdp? ( >=media-libs/nv-codec-headers-11.1.5.0 >=net-misc/freerdp-2.10.0:=[server] >=sys-fs/fuse-3.9.1:3 >=x11-libs/libxkbcommon-1.0.0 aac? ( media-libs/fdk-aac:= ) ) vnc? ( net-libs/libvncserver ) +DESCRIPTION=Remote desktop daemon for GNOME using pipewire +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/gnome-remote-desktop +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson systemd xdg +IUSE=aac doc +rdp systemd +vnc +KEYWORDS=~amd64 +LICENSE=GPL-2+ +RDEPEND=x11-libs/cairo x11-libs/libdrm >=media-libs/libepoxy-1.4 >=dev-libs/glib-2.68:2 x11-libs/libnotify app-crypt/libsecret >=media-video/pipewire-0.3.49:= app-crypt/tpm2-tss:= rdp? ( >=media-libs/nv-codec-headers-11.1.5.0 >=net-misc/freerdp-2.10.0:=[server] >=sys-fs/fuse-3.9.1:3 >=x11-libs/libxkbcommon-1.0.0 aac? ( media-libs/fdk-aac:= ) ) vnc? ( net-libs/libvncserver ) x11-wm/mutter[screencast] +REQUIRED_USE=|| ( rdp vnc ) aac? ( rdp ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-remote-desktop/44/gnome-remote-desktop-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=b58b47ca0dcf29581a386fc16de2bbc8 diff --git a/metadata/md5-cache/net-misc/grive-0.5.2_pre20211128-r1 b/metadata/md5-cache/net-misc/grive-0.5.2_pre20211128-r1 index 345421cb88c7..b53bc139ec0d 100644 --- a/metadata/md5-cache/net-misc/grive-0.5.2_pre20211128-r1 +++ b/metadata/md5-cache/net-misc/grive-0.5.2_pre20211128-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/boost:= dev-libs/expat >=dev-libs/json-c-0.11-r1:= dev-libs/libgcrypt:0= dev-libs/yajl || ( net-misc/curl[curl_ssl_openssl] net-misc/curl[curl_ssl_gnutls] ) sys-libs/binutils-libs:0= sys-libs/glibc SLOT=0 SRC_URI=https://github.com/vitalif/grive2/archive/6901fbb169eaae51acb61778760ba2ac019675ae.tar.gz -> grive-0.5.2_pre20211128.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f3f3a3ffba040914d83c17ad6f9b551 diff --git a/metadata/md5-cache/net-misc/kafka-bin-3.0.2 b/metadata/md5-cache/net-misc/kafka-bin-3.0.2 deleted file mode 100644 index ccf4c6cf5dc0..000000000000 --- a/metadata/md5-cache/net-misc/kafka-bin-3.0.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install prepare -DEPEND=acct-group/kafka acct-user/kafka || ( virtual/jre:1.8 virtual/jre:11 ) -DESCRIPTION=A high-throughput distributed messaging system -EAPI=7 -HOMEPAGE=https://kafka.apache.org/ -IUSE=internal-zookeeper connect -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kafka acct-user/kafka || ( virtual/jre:1.8 virtual/jre:11 ) -RESTRICT=mirror -SLOT=0 -SRC_URI=mirror://apache/kafka/3.0.2/kafka_2.13-3.0.2.tgz -_md5_=d79da093180c77ff32fea860349eaef1 diff --git a/metadata/md5-cache/net-misc/kafka-bin-3.1.2 b/metadata/md5-cache/net-misc/kafka-bin-3.1.2 deleted file mode 100644 index cfb5e63c959c..000000000000 --- a/metadata/md5-cache/net-misc/kafka-bin-3.1.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install prepare -DEPEND=acct-group/kafka acct-user/kafka virtual/jre:= -DESCRIPTION=A high-throughput distributed messaging system -EAPI=7 -HOMEPAGE=https://kafka.apache.org/ -IUSE=internal-zookeeper connect -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kafka acct-user/kafka virtual/jre:= -RESTRICT=mirror -SLOT=0 -SRC_URI=mirror://apache/kafka/3.1.2/kafka_2.13-3.1.2.tgz -_md5_=ac17ff0ea882bb3f466b59bc63f44a0c diff --git a/metadata/md5-cache/net-misc/kafka-bin-3.2.3 b/metadata/md5-cache/net-misc/kafka-bin-3.4.0 similarity index 76% rename from metadata/md5-cache/net-misc/kafka-bin-3.2.3 rename to metadata/md5-cache/net-misc/kafka-bin-3.4.0 index 0af1a57ca67b..da788eb3b79c 100644 --- a/metadata/md5-cache/net-misc/kafka-bin-3.2.3 +++ b/metadata/md5-cache/net-misc/kafka-bin-3.4.0 @@ -1,7 +1,7 @@ DEFINED_PHASES=install prepare DEPEND=acct-group/kafka acct-user/kafka virtual/jre:= DESCRIPTION=A high-throughput distributed messaging system -EAPI=7 +EAPI=8 HOMEPAGE=https://kafka.apache.org/ IUSE=internal-zookeeper connect KEYWORDS=~amd64 ~x86 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=acct-group/kafka acct-user/kafka virtual/jre:= RESTRICT=mirror SLOT=0 -SRC_URI=mirror://apache/kafka/3.2.3/kafka_2.13-3.2.3.tgz -_md5_=ac17ff0ea882bb3f466b59bc63f44a0c +SRC_URI=mirror://apache/kafka/3.4.0/kafka_2.13-3.4.0.tgz +_md5_=167d721a67174cce20e1c466e322cf25 diff --git a/metadata/md5-cache/net-misc/kio-zeroconf-22.08.3 b/metadata/md5-cache/net-misc/kio-zeroconf-22.08.3 index 5536530c09ba..deebd4742830 100644 --- a/metadata/md5-cache/net-misc/kio-zeroconf-22.08.3 +++ b/metadata/md5-cache/net-misc/kio-zeroconf-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/kdnssd-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kio-zeroconf-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=249946b029b83dfa7e90df5a921fc62c diff --git a/metadata/md5-cache/net-misc/kio-zeroconf-22.12.3 b/metadata/md5-cache/net-misc/kio-zeroconf-22.12.3 index cfdd0e07899b..ef3934714243 100644 --- a/metadata/md5-cache/net-misc/kio-zeroconf-22.12.3 +++ b/metadata/md5-cache/net-misc/kio-zeroconf-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/kdnssd-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kio-zeroconf-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=87104bdd4a1f50b2d40efba30811006d diff --git a/metadata/md5-cache/net-misc/lldpd-1.0.16-r1 b/metadata/md5-cache/net-misc/lldpd-1.0.16-r2 similarity index 97% rename from metadata/md5-cache/net-misc/lldpd-1.0.16-r1 rename to metadata/md5-cache/net-misc/lldpd-1.0.16-r2 index 212ebd6e7b01..3cac0c7d104b 100644 --- a/metadata/md5-cache/net-misc/lldpd-1.0.16-r1 +++ b/metadata/md5-cache/net-misc/lldpd-1.0.16-r2 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) test SLOT=0/4.9.1 SRC_URI=https://github.com/lldpd/lldpd/releases/download/1.0.16/lldpd-1.0.16.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=918f9ef315317c67897136e06a4c4266 +_md5_=2be9ed1778e3be50bfabd1837754642f diff --git a/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r13 b/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r13 index 86932098edf5..702d49d2c295 100644 --- a/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r13 +++ b/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r13 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=>=sys-libs/ncurses-5.2:= !net-misc/telnet-bsd SLOT=0 SRC_URI=http://ftp.linux.org.uk/pub/linux/Networking/netkit/netkit-telnet-0.17.tar.gz mirror://debian/pool/main/n/netkit-telnet/netkit-telnet_0.17-42.debian.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e262447b550580683c979623d4c902b diff --git a/metadata/md5-cache/net-misc/netopeer2-2.1.16 b/metadata/md5-cache/net-misc/netopeer2-2.1.16 index aed1d1473aa4..3b7035831ecd 100644 --- a/metadata/md5-cache/net-misc/netopeer2-2.1.16 +++ b/metadata/md5-cache/net-misc/netopeer2-2.1.16 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=dev-libs/openssl:= net-misc/curl:= >=net-misc/sysrepo-2.1.42 >=net-libs/libnetconf2-2.1.7 net-libs/libssh:= >=net-libs/libyang-2.0.164 SLOT=0 SRC_URI=https://github.com/CESNET/netopeer2/archive/v2.1.16.tar.gz -> netopeer2-2.1.16.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=35fbafff6207effb82da48d2019537dd diff --git a/metadata/md5-cache/net-misc/netopeer2-2.1.23 b/metadata/md5-cache/net-misc/netopeer2-2.1.23 index 40b95e3943af..9f04973da040 100644 --- a/metadata/md5-cache/net-misc/netopeer2-2.1.23 +++ b/metadata/md5-cache/net-misc/netopeer2-2.1.23 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=dev-libs/openssl:= net-misc/curl:= >=net-misc/sysrepo-2.1.64 >=net-libs/libnetconf2-2.1.11 net-libs/libssh:= >=net-libs/libyang-2.0.194 SLOT=0 SRC_URI=https://github.com/CESNET/netopeer2/archive/v2.1.23.tar.gz -> netopeer2-2.1.23.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0d094fa9f3a01edb4b9256e76c613914 diff --git a/metadata/md5-cache/net-misc/nextcloud-client-3.6.6 b/metadata/md5-cache/net-misc/nextcloud-client-3.6.6 index 962cc064ccb0..ecd7202e7d43 100644 --- a/metadata/md5-cache/net-misc/nextcloud-client-3.6.6 +++ b/metadata/md5-cache/net-misc/nextcloud-client-3.6.6 @@ -13,5 +13,5 @@ RDEPEND=>=dev-db/sqlite-3.34:3 >=dev-libs/openssl-1.1.0:0= dev-libs/qtkeychain:= RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nextcloud/desktop/archive/v3.6.6.tar.gz -> nextcloud-client-3.6.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ac3bd9347478db7dd2692ed7e78ddd3 diff --git a/metadata/md5-cache/net-misc/nextcloud-client-3.7.3 b/metadata/md5-cache/net-misc/nextcloud-client-3.7.3 index 7c001a5d9fb0..a8f85969086a 100644 --- a/metadata/md5-cache/net-misc/nextcloud-client-3.7.3 +++ b/metadata/md5-cache/net-misc/nextcloud-client-3.7.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-db/sqlite-3.34:3 >=dev-libs/openssl-1.1.0:0= dev-libs/qtkeychain:= RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nextcloud/desktop/archive/v3.7.3.tar.gz -> nextcloud-client-3.7.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=de6efffbacf7336db54f25d2dbfe3c39 diff --git a/metadata/md5-cache/net-misc/nextcloud-client-3.7.4 b/metadata/md5-cache/net-misc/nextcloud-client-3.7.4 index 675133c9f203..d592794abb9a 100644 --- a/metadata/md5-cache/net-misc/nextcloud-client-3.7.4 +++ b/metadata/md5-cache/net-misc/nextcloud-client-3.7.4 @@ -13,5 +13,5 @@ RDEPEND=>=dev-db/sqlite-3.34:3 >=dev-libs/openssl-1.1.0:0= dev-libs/qtkeychain:= RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nextcloud/desktop/archive/v3.7.4.tar.gz -> nextcloud-client-3.7.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=be483a22bf79e46b43accbdb2f4b514f diff --git a/metadata/md5-cache/net-misc/nx-3.5.99.25 b/metadata/md5-cache/net-misc/nx-3.5.99.25 deleted file mode 100644 index d0ccfca89c73..000000000000 --- a/metadata/md5-cache/net-misc/nx-3.5.99.25 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=sys-apps/which virtual/pkgconfig x11-misc/gccmakedep x11-misc/imake sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=compile configure install prepare -DEPEND=dev-libs/libxml2 >=media-libs/libpng-1.2.8:0= >=sys-libs/zlib-1.2.3 virtual/jpeg:* x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXdmcp x11-libs/libXext x11-libs/libXfixes x11-libs/libXfont2 x11-libs/libXinerama x11-libs/libXpm x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pixman x11-base/xorg-proto x11-libs/libfontenc -DESCRIPTION=NX compression technology core libraries -EAPI=7 -HOMEPAGE=https://github.com/ArcticaProject/nx-libs -INHERIT=autotools toolchain-funcs -KEYWORDS=amd64 ~ppc x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/libxml2 >=media-libs/libpng-1.2.8:0= >=sys-libs/zlib-1.2.3 virtual/jpeg:* x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXdmcp x11-libs/libXext x11-libs/libXfixes x11-libs/libXfont2 x11-libs/libXinerama x11-libs/libXpm x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pixman -SLOT=0 -SRC_URI=https://github.com/ArcticaProject/nx-libs/archive/3.5.99.25.tar.gz -> nx-libs-3.5.99.25.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=37f2fe8eb83d63823190830b8633e637 diff --git a/metadata/md5-cache/net-misc/nx-3.5.99.26 b/metadata/md5-cache/net-misc/nx-3.5.99.26 index e5d317971cfc..5d918216e45f 100644 --- a/metadata/md5-cache/net-misc/nx-3.5.99.26 +++ b/metadata/md5-cache/net-misc/nx-3.5.99.26 @@ -11,4 +11,4 @@ RDEPEND=dev-libs/libxml2 >=media-libs/libpng-1.2.8:0= >=sys-libs/zlib-1.2.3 virt SLOT=0 SRC_URI=https://github.com/ArcticaProject/nx-libs/archive/3.5.99.26.tar.gz -> nx-libs-3.5.99.26.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=3adb419968d7aa1781c6aadc197cbde7 +_md5_=d8442c7251508a135afea9e8a45c813a diff --git a/metadata/md5-cache/net-misc/omnisync-1.0_p20200130 b/metadata/md5-cache/net-misc/omnisync-1.0_p20200130 index 1eb80ffa3a57..9d9d11348434 100644 --- a/metadata/md5-cache/net-misc/omnisync-1.0_p20200130 +++ b/metadata/md5-cache/net-misc/omnisync-1.0_p20200130 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=net-libs/gnutls:= net-analyzer/net-snmp:= SLOT=0 SRC_URI=https://gitlab.com/grknight/omnisync/-/archive/c55215330b1e8a61af6d34d57d3d8236c8cc7d5b/omnisync-c55215330b1e8a61af6d34d57d3d8236c8cc7d5b.tar.bz2 -> omnisync-1.0_p20200130.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57fa30e4985c3945fb859c1193566c4c diff --git a/metadata/md5-cache/net-misc/owncloud-client-3.1.0.9872 b/metadata/md5-cache/net-misc/owncloud-client-3.1.0.9872 index 2a03990de67c..9191dd6d4278 100644 --- a/metadata/md5-cache/net-misc/owncloud-client-3.1.0.9872 +++ b/metadata/md5-cache/net-misc/owncloud-client-3.1.0.9872 @@ -13,5 +13,5 @@ RDEPEND=>=dev-db/sqlite-3.4:3 dev-libs/qtkeychain[gnome-keyring?,qt5(+)] dev-qt/ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.owncloud.com/desktop/ownCloud/stable/3.1.0.9872/source/ownCloud-3.1.0.9872.tar.xz https://github.com/owncloud/libre-graph-api-cpp-qt-client/archive/refs/tags/v1.0.1.tar.gz -> libregraphapi-1.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2865defd4f72f26f4979d45e30383a4d diff --git a/metadata/md5-cache/net-misc/owncloud-client-3.2.0.10193 b/metadata/md5-cache/net-misc/owncloud-client-3.2.0.10193 index f6a85422130b..8d656f2d01b0 100644 --- a/metadata/md5-cache/net-misc/owncloud-client-3.2.0.10193 +++ b/metadata/md5-cache/net-misc/owncloud-client-3.2.0.10193 @@ -13,5 +13,5 @@ RDEPEND=>=dev-db/sqlite-3.4:3 dev-libs/qtkeychain[gnome-keyring?,qt5(+)] dev-qt/ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.owncloud.com/desktop/ownCloud/stable/3.2.0.10193/source/ownCloud-3.2.0.10193.tar.xz https://github.com/owncloud/libre-graph-api-cpp-qt-client/archive/refs/tags/v1.0.1.tar.gz -> libregraphapi-1.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6f86425a0ac07546d11cc280bf466d93 diff --git a/metadata/md5-cache/net-misc/portfwd-0.29-r1 b/metadata/md5-cache/net-misc/portfwd-0.29-r1 deleted file mode 100644 index b7f1e9674e0e..000000000000 --- a/metadata/md5-cache/net-misc/portfwd-0.29-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install prepare -DEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig -DESCRIPTION=Port Forwarding Daemon -EAPI=6 -HOMEPAGE=http://portfwd.sourceforge.net -INHERIT=autotools systemd -KEYWORDS=amd64 ~ia64 ~ppc ~sparc x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=mirror://sourceforge/portfwd/portfwd-0.29.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 eqawarn c9847c43b3253a276ae2eabddedab3d7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=760582204306ef1a49295f7dcc963d72 diff --git a/metadata/md5-cache/net-misc/portfwd-0.29-r2 b/metadata/md5-cache/net-misc/portfwd-0.29-r2 new file mode 100644 index 000000000000..a1c99470f5c8 --- /dev/null +++ b/metadata/md5-cache/net-misc/portfwd-0.29-r2 @@ -0,0 +1,12 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig +DEFINED_PHASES=install prepare +DESCRIPTION=Port Forwarding Daemon +EAPI=8 +HOMEPAGE=http://portfwd.sourceforge.net +INHERIT=autotools systemd +KEYWORDS=amd64 ~ia64 ~ppc ~sparc x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=mirror://sourceforge/portfwd/portfwd-0.29.tar.gz +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=3318f0a89e0fd159a49a87ebc6dfa712 diff --git a/metadata/md5-cache/net-misc/putty-0.78 b/metadata/md5-cache/net-misc/putty-0.78 index 7e60189e1d68..d7d84de5ce51 100644 --- a/metadata/md5-cache/net-misc/putty-0.78 +++ b/metadata/md5-cache/net-misc/putty-0.78 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=!net-misc/pssh gtk? ( dev-libs/glib:2 x11-libs/gdk-pixbuf x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/pango ) gssapi? ( virtual/krb5 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~matthew/distfiles/putty-icons.tar.bz2 https://the.earth.li/~sgtatham/putty/0.78/putty-0.78.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ff3dd36a8c0669469003e777fc959edc diff --git a/metadata/md5-cache/net-misc/putty-9999 b/metadata/md5-cache/net-misc/putty-9999 index 825e9f994b58..aea308c92f42 100644 --- a/metadata/md5-cache/net-misc/putty-9999 +++ b/metadata/md5-cache/net-misc/putty-9999 @@ -12,5 +12,5 @@ RDEPEND=!net-misc/pssh gtk? ( dev-libs/glib:2 x11-libs/gdk-pixbuf x11-libs/libX1 REQUIRED_USE=gtk2? ( gtk ) SLOT=0 SRC_URI=https://dev.gentoo.org/~matthew/distfiles/putty-icons.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9412545f3023c5224ba1204cefa908d6 diff --git a/metadata/md5-cache/net-misc/qtm-1.3.19-r1 b/metadata/md5-cache/net-misc/qtm-1.3.19-r1 index d0d873877b5e..a0a4a1204312 100644 --- a/metadata/md5-cache/net-misc/qtm-1.3.19-r1 +++ b/metadata/md5-cache/net-misc/qtm-1.3.19-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-lang/perl dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/q RESTRICT=strip SLOT=0 SRC_URI=https://bitbucket-archive.softwareheritage.org/static/3c/3c8ca320-701e-47dc-b0ec-28870df5715b/attachments/qtm-1.3.19.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0515a9f28aeeed3244dcb1a33bc2ab22 diff --git a/metadata/md5-cache/net-misc/rclone-1.60.0 b/metadata/md5-cache/net-misc/rclone-1.60.0 deleted file mode 100644 index 210499969c56..000000000000 --- a/metadata/md5-cache/net-misc/rclone-1.60.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install test unpack -DESCRIPTION=A program to sync files to and from various cloud storage providers -EAPI=8 -HOMEPAGE=https://rclone.org/ -INHERIT=bash-completion-r1 go-module -KEYWORDS=amd64 ~arm ~arm64 ~riscv x86 -LICENSE=Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 -RESTRICT=strip -SLOT=0 -SRC_URI=https://github.com/rclone/rclone/archive/v1.60.0.tar.gz -> rclone-1.60.0.tar.gz https://dev.gentoo.org/~slashbeast/distfiles/rclone/rclone-1.60.0-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f0cf423375abdc17ce2d4212ca18e06c diff --git a/metadata/md5-cache/net-misc/rclone-1.60.1 b/metadata/md5-cache/net-misc/rclone-1.60.1 deleted file mode 100644 index 08e614980517..000000000000 --- a/metadata/md5-cache/net-misc/rclone-1.60.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install test unpack -DESCRIPTION=A program to sync files to and from various cloud storage providers -EAPI=8 -HOMEPAGE=https://rclone.org/ -INHERIT=bash-completion-r1 go-module -KEYWORDS=amd64 ~arm ~arm64 ~riscv x86 -LICENSE=Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 -RESTRICT=strip -SLOT=0 -SRC_URI=https://github.com/rclone/rclone/archive/v1.60.1.tar.gz -> rclone-1.60.1.tar.gz https://dev.gentoo.org/~slashbeast/distfiles/rclone/rclone-1.60.1-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f69753c19d0e84617802722d64e5fb6d diff --git a/metadata/md5-cache/net-misc/rclone-1.59.2 b/metadata/md5-cache/net-misc/rclone-1.62.2 similarity index 69% rename from metadata/md5-cache/net-misc/rclone-1.59.2 rename to metadata/md5-cache/net-misc/rclone-1.62.2 index 1bee6a9645c8..d6f9d5626744 100644 --- a/metadata/md5-cache/net-misc/rclone-1.59.2 +++ b/metadata/md5-cache/net-misc/rclone-1.62.2 @@ -4,10 +4,10 @@ DESCRIPTION=A program to sync files to and from various cloud storage providers EAPI=8 HOMEPAGE=https://rclone.org/ INHERIT=bash-completion-r1 go-module -KEYWORDS=amd64 ~arm ~arm64 x86 +KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 LICENSE=Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 RESTRICT=strip SLOT=0 -SRC_URI=https://github.com/rclone/rclone/archive/v1.59.2.tar.gz -> rclone-1.59.2.tar.gz https://dev.gentoo.org/~slashbeast/distfiles/rclone/rclone-1.59.2-deps.tar.xz +SRC_URI=https://github.com/rclone/rclone/archive/v1.62.2.tar.gz -> rclone-1.62.2.tar.gz https://dev.gentoo.org/~slashbeast/distfiles/rclone/rclone-1.62.2-deps.tar.xz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=d3418a96a79e0b2a086b936cf9d6a768 +_md5_=da5299fdb4ca9e84dd835278f92e252a diff --git a/metadata/md5-cache/net-misc/remmina-1.4.29-r2 b/metadata/md5-cache/net-misc/remmina-1.4.29-r2 index 31f83c240568..38b8286bb0e7 100644 --- a/metadata/md5-cache/net-misc/remmina-1.4.29-r2 +++ b/metadata/md5-cache/net-misc/remmina-1.4.29-r2 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/glib:2 dev-libs/json-glib dev-libs/libpcre2 dev-libs/libsodium: REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 SRC_URI=https://gitlab.com/Remmina/Remmina/-/archive/v1.4.29/Remmina-v1.4.29.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9883b41e8fada42f309962c1fac32dac diff --git a/metadata/md5-cache/net-misc/s4cmd-2.1.0-r1 b/metadata/md5-cache/net-misc/s4cmd-2.1.0-r1 new file mode 100644 index 000000000000..b32596030d83 --- /dev/null +++ b/metadata/md5-cache/net-misc/s4cmd-2.1.0-r1 @@ -0,0 +1,15 @@ +BDEPEND=python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] ) >=dev-python/setuptools-65.7.0[python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Super S3 command line tool +EAPI=8 +HOMEPAGE=https://github.com/bloomreach/s4cmd +INHERIT=distutils-r1 bash-completion-r1 +IUSE=python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-python/pytz[python_targets_python3_10(-)?] dev-python/boto3[python_targets_python3_10(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] ) +REQUIRED_USE=|| ( python_targets_python3_10 ) +SLOT=0 +SRC_URI=https://github.com/bloomreach/s4cmd/archive/refs/tags/2.1.0.tar.gz -> s4cmd-2.1.0.tar.gz https://github.com/bloomreach/s4cmd/pull/310.patch -> s4cmd-2.1.0-botocore-fix.patch +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=28389fb20b8551424d2f97bf785612ff diff --git a/metadata/md5-cache/net-misc/seafile-8.0.10-r2 b/metadata/md5-cache/net-misc/seafile-8.0.10-r3 similarity index 83% rename from metadata/md5-cache/net-misc/seafile-8.0.10-r2 rename to metadata/md5-cache/net-misc/seafile-8.0.10-r3 index 4e87c2dca636..f6528fd72b74 100644 --- a/metadata/md5-cache/net-misc/seafile-8.0.10-r2 +++ b/metadata/md5-cache/net-misc/seafile-8.0.10-r3 @@ -1,6 +1,6 @@ BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) || ( dev-lang/vala:0.56 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=configure install prepare setup -DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/future[python_targets_python3_11(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libwebsockets:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) +DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/future[python_targets_python3_11(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libwebsockets:=[client] net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) DESCRIPTION=File syncing and sharing software with file encryption and group sharing EAPI=8 HOMEPAGE=https://www.seafile.com/ https://github.com/haiwen/seafile/ @@ -8,9 +8,9 @@ INHERIT=autotools python-single-r1 vala IUSE=python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+-with-openssl-exception -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/future[python_targets_python3_11(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libwebsockets:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) +RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/future[python_targets_python3_11(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libwebsockets:=[client] net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://github.com/haiwen/seafile/archive/refs/tags/v8.0.10.tar.gz -> seafile-8.0.10.gh.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 -_md5_=6becf790e7d0c03b461961c9cf7f8f19 +_md5_=66b8dcf5ac58e7a8ff2c7dbe95eecf75 diff --git a/metadata/md5-cache/net-misc/seafile-8.0.5 b/metadata/md5-cache/net-misc/seafile-8.0.5 deleted file mode 100644 index 34f1bab6eb44..000000000000 --- a/metadata/md5-cache/net-misc/seafile-8.0.5 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) || ( dev-lang/vala:0.56 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=configure install prepare setup -DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) -DESCRIPTION=File syncing and sharing software with file encryption and group sharing -EAPI=7 -HOMEPAGE=https://www.seafile.com/ https://github.com/haiwen/seafile/ -INHERIT=autotools python-single-r1 vala -IUSE=python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=amd64 ~x86 -LICENSE=GPL-2+-with-openssl-exception -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) -SLOT=0 -SRC_URI=https://github.com/haiwen/seafile/archive/28ede40ebeca4f046c1d6625ac69fd4949e66042.tar.gz -> seafile-8.0.5.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 eapi8-dosym 741bfa77afb2a9321261501aca58c208 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 -_md5_=11c1a2fbb885db0d971a28f6bce1ea95 diff --git a/metadata/md5-cache/net-misc/seafile-8.0.6 b/metadata/md5-cache/net-misc/seafile-8.0.6 deleted file mode 100644 index 710387efa125..000000000000 --- a/metadata/md5-cache/net-misc/seafile-8.0.6 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) || ( dev-lang/vala:0.56 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=configure install prepare setup -DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) -DESCRIPTION=File syncing and sharing software with file encryption and group sharing -EAPI=7 -HOMEPAGE=https://www.seafile.com/ https://github.com/haiwen/seafile/ -INHERIT=autotools python-single-r1 vala -IUSE=python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+-with-openssl-exception -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) -SLOT=0 -SRC_URI=https://github.com/haiwen/seafile/archive/7a61feaba63006d11c09d1020593ba3fcb3fc717.tar.gz -> seafile-8.0.6.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 eapi8-dosym 741bfa77afb2a9321261501aca58c208 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 -_md5_=fccfe1f27ed594b6e8343954e4c62c41 diff --git a/metadata/md5-cache/net-misc/seafile-8.0.7 b/metadata/md5-cache/net-misc/seafile-8.0.7 deleted file mode 100644 index 3b5cb2b934d5..000000000000 --- a/metadata/md5-cache/net-misc/seafile-8.0.7 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) || ( dev-lang/vala:0.56 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=configure install prepare setup -DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) -DESCRIPTION=File syncing and sharing software with file encryption and group sharing -EAPI=7 -HOMEPAGE=https://www.seafile.com/ https://github.com/haiwen/seafile/ -INHERIT=autotools python-single-r1 vala -IUSE=python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+-with-openssl-exception -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) -SLOT=0 -SRC_URI=https://github.com/haiwen/seafile/archive/57c5ebab0efb596b398d206779fd3160101805eb.tar.gz -> seafile-8.0.7.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 eapi8-dosym 741bfa77afb2a9321261501aca58c208 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 -_md5_=e033defc15bca9e96d7be3f2ceb217d3 diff --git a/metadata/md5-cache/net-misc/seafile-8.0.8 b/metadata/md5-cache/net-misc/seafile-8.0.8 deleted file mode 100644 index d42c2994a8c3..000000000000 --- a/metadata/md5-cache/net-misc/seafile-8.0.8 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) || ( dev-lang/vala:0.56 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=configure install prepare setup -DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) -DESCRIPTION=File syncing and sharing software with file encryption and group sharing -EAPI=7 -HOMEPAGE=https://www.seafile.com/ https://github.com/haiwen/seafile/ -INHERIT=autotools python-single-r1 vala -IUSE=python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+-with-openssl-exception -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) -SLOT=0 -SRC_URI=https://github.com/haiwen/seafile/archive/f57dae37854acab74b08b0891584cb7ecb98cd18.tar.gz -> seafile-8.0.8.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 eapi8-dosym 741bfa77afb2a9321261501aca58c208 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 -_md5_=c331b47317337a8982ec88241f9275c7 diff --git a/metadata/md5-cache/net-misc/seafile-9.0.0 b/metadata/md5-cache/net-misc/seafile-9.0.0 new file mode 100644 index 000000000000..25392f1f08d2 --- /dev/null +++ b/metadata/md5-cache/net-misc/seafile-9.0.0 @@ -0,0 +1,16 @@ +BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) || ( dev-lang/vala:0.56 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=configure install prepare setup +DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/future[python_targets_python3_11(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] net-libs/libwebsockets[client] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) +DESCRIPTION=File syncing and sharing software with file encryption and group sharing +EAPI=8 +HOMEPAGE=https://www.seafile.com/ https://github.com/haiwen/seafile/ +INHERIT=autotools python-single-r1 vala +IUSE=python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+-with-openssl-exception +RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/future[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/future[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/future[python_targets_python3_11(-)] ) dev-libs/openssl:= dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= net-libs/libsearpc[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] net-libs/libwebsockets[client] net-misc/curl sys-apps/util-linux sys-libs/zlib elibc_musl? ( sys-libs/fts-standalone ) +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) +SLOT=0 +SRC_URI=https://github.com/haiwen/seafile/archive/c244a274912070a39864369a6a21c55566fe2fda.tar.gz -> seafile-9.0.0.tar.gz +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 +_md5_=1f7f8d0428c90e7e039240df0b5138af diff --git a/metadata/md5-cache/net-misc/seafile-client-8.0.10 b/metadata/md5-cache/net-misc/seafile-client-8.0.10 index 8863fb099622..c7f740c458ab 100644 --- a/metadata/md5-cache/net-misc/seafile-client-8.0.10 +++ b/metadata/md5-cache/net-misc/seafile-client-8.0.10 @@ -13,5 +13,5 @@ RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= de RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/haiwen/seafile-client/archive/342002ab35791d217b4e45a04ede7135f301a5a4.tar.gz -> seafile-client-8.0.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8b1c38cdf16f45a2e89dc44a9bc55a4c diff --git a/metadata/md5-cache/net-misc/seafile-client-8.0.5 b/metadata/md5-cache/net-misc/seafile-client-8.0.5 deleted file mode 100644 index 061925d92ae1..000000000000 --- a/metadata/md5-cache/net-misc/seafile-client-8.0.5 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=dev-qt/linguist-tools:5 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 net-libs/libsearpc ~net-misc/seafile-8.0.5 sys-libs/zlib virtual/opengl elibc_musl? ( sys-libs/fts-standalone ) shibboleth? ( dev-qt/qtwebengine:5[widgets] ) test? ( dev-qt/qttest:5 ) -DESCRIPTION=Seafile desktop client -EAPI=8 -HOMEPAGE=https://www.seafile.com/ https://github.com/haiwen/seafile-client/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=xdg cmake -IUSE=shibboleth test -KEYWORDS=amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 net-libs/libsearpc ~net-misc/seafile-8.0.5 sys-libs/zlib virtual/opengl elibc_musl? ( sys-libs/fts-standalone ) shibboleth? ( dev-qt/qtwebengine:5[widgets] ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/haiwen/seafile-client/archive/484d80075f9dbcf49d80036e84ed67d47b8cedd4.tar.gz -> seafile-client-8.0.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=6cff04b7bfeb0fbe8cd5d74a890d5f37 diff --git a/metadata/md5-cache/net-misc/seafile-client-8.0.6 b/metadata/md5-cache/net-misc/seafile-client-8.0.6 deleted file mode 100644 index 3e1c8395ae14..000000000000 --- a/metadata/md5-cache/net-misc/seafile-client-8.0.6 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=dev-qt/linguist-tools:5 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 net-libs/libsearpc ~net-misc/seafile-8.0.6 sys-libs/zlib virtual/opengl elibc_musl? ( sys-libs/fts-standalone ) shibboleth? ( dev-qt/qtwebengine:5[widgets] ) test? ( dev-qt/qttest:5 ) -DESCRIPTION=Seafile desktop client -EAPI=8 -HOMEPAGE=https://www.seafile.com/ https://github.com/haiwen/seafile-client/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=xdg cmake -IUSE=shibboleth test -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 net-libs/libsearpc ~net-misc/seafile-8.0.6 sys-libs/zlib virtual/opengl elibc_musl? ( sys-libs/fts-standalone ) shibboleth? ( dev-qt/qtwebengine:5[widgets] ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/haiwen/seafile-client/archive/1fb9ddd71fbf6f0252509aced527be459e240366.tar.gz -> seafile-client-8.0.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=3d2ac45a035356a2039db7416ad832c9 diff --git a/metadata/md5-cache/net-misc/seafile-client-8.0.7 b/metadata/md5-cache/net-misc/seafile-client-8.0.7 deleted file mode 100644 index 416233e90d2b..000000000000 --- a/metadata/md5-cache/net-misc/seafile-client-8.0.7 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=dev-qt/linguist-tools:5 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 net-libs/libsearpc ~net-misc/seafile-8.0.7 sys-libs/zlib virtual/opengl elibc_musl? ( sys-libs/fts-standalone ) shibboleth? ( dev-qt/qtwebengine:5[widgets] ) test? ( dev-qt/qttest:5 ) -DESCRIPTION=Seafile desktop client -EAPI=8 -HOMEPAGE=https://www.seafile.com/ https://github.com/haiwen/seafile-client/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=xdg cmake -IUSE=shibboleth test -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 net-libs/libsearpc ~net-misc/seafile-8.0.7 sys-libs/zlib virtual/opengl elibc_musl? ( sys-libs/fts-standalone ) shibboleth? ( dev-qt/qtwebengine:5[widgets] ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/haiwen/seafile-client/archive/8b96abf64e6aa19e3beeff6b322bcd6d28120bdd.tar.gz -> seafile-client-8.0.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=5dba8cfe7616e6019f51dbaefc251cdd diff --git a/metadata/md5-cache/net-misc/seafile-client-8.0.9 b/metadata/md5-cache/net-misc/seafile-client-8.0.9 index fb42d3ec041a..e13e2df2e8f4 100644 --- a/metadata/md5-cache/net-misc/seafile-client-8.0.9 +++ b/metadata/md5-cache/net-misc/seafile-client-8.0.9 @@ -13,5 +13,5 @@ RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= de RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/haiwen/seafile-client/archive/5701514e89114b97795d4cfcbc3b59a1fd2f91e8.tar.gz -> seafile-client-8.0.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=024ba3646d26e8b56da50ffdfd20078c diff --git a/metadata/md5-cache/net-misc/seafile-client-8.0.8 b/metadata/md5-cache/net-misc/seafile-client-9.0.0 similarity index 78% rename from metadata/md5-cache/net-misc/seafile-client-8.0.8 rename to metadata/md5-cache/net-misc/seafile-client-9.0.0 index 111b47e7bc1e..b53723eeb48f 100644 --- a/metadata/md5-cache/net-misc/seafile-client-8.0.8 +++ b/metadata/md5-cache/net-misc/seafile-client-9.0.0 @@ -1,6 +1,6 @@ BDEPEND=dev-qt/linguist-tools:5 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 >=net-libs/libsearpc-3.2.0_p1 ~net-misc/seafile-8.0.8 sys-libs/zlib virtual/opengl elibc_musl? ( sys-libs/fts-standalone ) shibboleth? ( dev-qt/qtwebengine:5[widgets] ) test? ( dev-qt/qttest:5 ) +DEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 >=net-libs/libsearpc-3.2.0_p1 ~net-misc/seafile-9.0.0 sys-libs/zlib virtual/opengl elibc_musl? ( sys-libs/fts-standalone ) shibboleth? ( dev-qt/qtwebengine:5[widgets] ) test? ( dev-qt/qttest:5 ) DESCRIPTION=Seafile desktop client EAPI=8 HOMEPAGE=https://www.seafile.com/ https://github.com/haiwen/seafile-client/ @@ -9,9 +9,9 @@ INHERIT=xdg cmake IUSE=shibboleth test KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 -RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 >=net-libs/libsearpc-3.2.0_p1 ~net-misc/seafile-8.0.8 sys-libs/zlib virtual/opengl elibc_musl? ( sys-libs/fts-standalone ) shibboleth? ( dev-qt/qtwebengine:5[widgets] ) +RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/jansson:= dev-libs/openssl:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 >=net-libs/libsearpc-3.2.0_p1 ~net-misc/seafile-9.0.0 sys-libs/zlib virtual/opengl elibc_musl? ( sys-libs/fts-standalone ) shibboleth? ( dev-qt/qtwebengine:5[widgets] ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/haiwen/seafile-client/archive/c8a33cc8f39dd67cf9458585ab19d20ef4656fe9.tar.gz -> seafile-client-8.0.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=077a89fc539019ac9a0d07cf93c67b85 +SRC_URI=https://github.com/haiwen/seafile-client/archive/f8ee58c29d7cb73dd8eaff7aad79540ec7611bdd.tar.gz -> seafile-client-9.0.0.tar.gz +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=fa0c56cfb0d27eaca8603b7a2057cf38 diff --git a/metadata/md5-cache/net-misc/sipp-3.6.1-r1 b/metadata/md5-cache/net-misc/sipp-3.6.1-r1 index 87d062c27835..2e4dab058ebd 100644 --- a/metadata/md5-cache/net-misc/sipp-3.6.1-r1 +++ b/metadata/md5-cache/net-misc/sipp-3.6.1-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 ISC RDEPEND=sys-libs/ncurses:= gsl? ( sci-libs/gsl:= ) pcap? ( net-libs/libpcap net-libs/libnet:1.1 ) sctp? ( net-misc/lksctp-tools ) ssl? ( dev-libs/openssl:= ) SLOT=0 SRC_URI=https://github.com/SIPp/sipp/releases/download/v3.6.1/sipp-3.6.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8fdd0486e65955f499335457984e56ff diff --git a/metadata/md5-cache/net-misc/smb4k-3.1.4 b/metadata/md5-cache/net-misc/smb4k-3.1.4 index fae290cf5ea8..001a9df6d394 100644 --- a/metadata/md5-cache/net-misc/smb4k-3.1.4 +++ b/metadata/md5-cache/net-misc/smb4k-3.1.4 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qttest-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kauth-5.82.0:5 >=kde-frameworks/kcompletion-5.82.0:5 >=kde-frameworks/kconfig-5.82.0:5 >=kde-frameworks/kconfigwidgets-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/kcrash-5.82.0:5 >=kde-frameworks/kdbusaddons-5.82.0:5 >=kde-frameworks/kdnssd-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kiconthemes-5.82.0:5 >=kde-frameworks/kio-5.82.0:5 >=kde-frameworks/kjobwidgets-5.82.0:5 >=kde-frameworks/knotifications-5.82.0:5 >=kde-frameworks/kwallet-5.82.0:5 >=kde-frameworks/kwidgetsaddons-5.82.0:5 >=kde-frameworks/kwindowsystem-5.82.0:5 >=kde-frameworks/kxmlgui-5.82.0:5 >=kde-frameworks/solid-5.82.0:5 net-fs/samba[cups] discovery? ( net-libs/kdsoap:= net-libs/kdsoap-ws-discovery-client ) plasma? ( >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/plasma-5.82.0:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://sourceforge/smb4k/smb4k-3.1.4.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e59f9beb04967adb0bba95f53604e64 diff --git a/metadata/md5-cache/net-misc/smb4k-3.1.7 b/metadata/md5-cache/net-misc/smb4k-3.1.7 index 56e2e82609fa..711dc92e67c7 100644 --- a/metadata/md5-cache/net-misc/smb4k-3.1.7 +++ b/metadata/md5-cache/net-misc/smb4k-3.1.7 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtprintsupport-5.15.5:5 >=dev-qt/qttest-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kauth-5.82.0:5 >=kde-frameworks/kcompletion-5.82.0:5 >=kde-frameworks/kconfig-5.82.0:5 >=kde-frameworks/kconfigwidgets-5.82.0:5 >=kde-frameworks/kcoreaddons-5.82.0:5 >=kde-frameworks/kcrash-5.82.0:5 >=kde-frameworks/kdbusaddons-5.82.0:5 >=kde-frameworks/kdnssd-5.82.0:5 >=kde-frameworks/ki18n-5.82.0:5 >=kde-frameworks/kiconthemes-5.82.0:5 >=kde-frameworks/kio-5.82.0:5 >=kde-frameworks/kjobwidgets-5.82.0:5 >=kde-frameworks/knotifications-5.82.0:5 >=kde-frameworks/kwallet-5.82.0:5 >=kde-frameworks/kwidgetsaddons-5.82.0:5 >=kde-frameworks/kwindowsystem-5.82.0:5 >=kde-frameworks/kxmlgui-5.82.0:5 >=kde-frameworks/solid-5.82.0:5 net-fs/samba[cups] discovery? ( net-libs/kdsoap:= net-libs/kdsoap-ws-discovery-client ) plasma? ( >=dev-qt/qtquickcontrols2-5.15.5:5 >=kde-frameworks/plasma-5.82.0:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://sourceforge/smb4k/smb4k-3.1.7.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2554c8406c3671d50f2cbb0a54df27e7 diff --git a/metadata/md5-cache/net-misc/sysrepo-2.1.64 b/metadata/md5-cache/net-misc/sysrepo-2.1.64 index 68970b286ec8..b01ed704ae9f 100644 --- a/metadata/md5-cache/net-misc/sysrepo-2.1.64 +++ b/metadata/md5-cache/net-misc/sysrepo-2.1.64 @@ -12,5 +12,5 @@ RDEPEND=>=net-libs/libyang-2.0.194 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/sysrepo/sysrepo/archive/v2.1.64.tar.gz -> sysrepo-2.1.64.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=996e930d69968952bf74182327d8e5d9 diff --git a/metadata/md5-cache/net-misc/tigervnc-1.12.0-r7 b/metadata/md5-cache/net-misc/tigervnc-1.12.0-r7 index 0f2ed33fdd25..666ad9dd6fbd 100644 --- a/metadata/md5-cache/net-misc/tigervnc-1.12.0-r7 +++ b/metadata/md5-cache/net-misc/tigervnc-1.12.0-r7 @@ -12,5 +12,5 @@ RDEPEND=media-libs/libjpeg-turbo:= sys-libs/zlib:= x11-libs/fltk:1 x11-libs/libX REQUIRED_USE=dri3? ( drm ) opengl? ( server ) SLOT=0 SRC_URI=https://github.com/TigerVNC/tigervnc/archive/v1.12.0.tar.gz -> tigervnc-1.12.0.tar.gz server? ( ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-21.1.1.tar.xz https://github.com/TigerVNC/tigervnc/commit/0c5a2b2e7759c2829c07186cfce4d24aa9b5274e.patch -> tigervnc-1.12.0-xserver-21.patch ) -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4ef459ebd20b0b45ce7d01d45968e964 diff --git a/metadata/md5-cache/net-misc/tigervnc-1.13.0 b/metadata/md5-cache/net-misc/tigervnc-1.13.0 index f610681e9cf8..4524c68941e1 100644 --- a/metadata/md5-cache/net-misc/tigervnc-1.13.0 +++ b/metadata/md5-cache/net-misc/tigervnc-1.13.0 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/gmp:= dev-libs/nettle:= media-libs/libjpeg-turbo:= sys-libs/zli REQUIRED_USE=dri3? ( drm ) java? ( viewer ) opengl? ( server ) || ( server viewer ) SLOT=0 SRC_URI=server? ( ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-21.1.1.tar.xz ) https://github.com/TigerVNC/tigervnc/archive/v1.13.0.tar.gz -> tigervnc-1.13.0.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa54ce62cf58a41af408254d5a2cee23 diff --git a/metadata/md5-cache/net-misc/tigervnc-1.13.1 b/metadata/md5-cache/net-misc/tigervnc-1.13.1 index 6eb00e256376..b743ec3dd387 100644 --- a/metadata/md5-cache/net-misc/tigervnc-1.13.1 +++ b/metadata/md5-cache/net-misc/tigervnc-1.13.1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/gmp:= dev-libs/nettle:= media-libs/libjpeg-turbo:= sys-libs/zli REQUIRED_USE=dri3? ( drm ) java? ( viewer ) opengl? ( server ) || ( server viewer ) SLOT=0 SRC_URI=server? ( ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-21.1.1.tar.xz ) https://github.com/TigerVNC/tigervnc/archive/v1.13.1.tar.gz -> tigervnc-1.13.1.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=53fcff2bd21a383444d9ae1bd7bef3f7 diff --git a/metadata/md5-cache/net-misc/tigervnc-9999 b/metadata/md5-cache/net-misc/tigervnc-9999 index a2550fc34a82..82723a4f53b1 100644 --- a/metadata/md5-cache/net-misc/tigervnc-9999 +++ b/metadata/md5-cache/net-misc/tigervnc-9999 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/gmp:= dev-libs/nettle:= media-libs/libjpeg-turbo:= sys-libs/zli REQUIRED_USE=dri3? ( drm ) java? ( viewer ) opengl? ( server ) || ( server viewer ) SLOT=0 SRC_URI=server? ( ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-21.1.1.tar.xz ) -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=53fcff2bd21a383444d9ae1bd7bef3f7 diff --git a/metadata/md5-cache/net-misc/turbovnc-3.0.2 b/metadata/md5-cache/net-misc/turbovnc-3.0.2 index 8341b77c9fc9..5361a5708904 100644 --- a/metadata/md5-cache/net-misc/turbovnc-3.0.2 +++ b/metadata/md5-cache/net-misc/turbovnc-3.0.2 @@ -12,5 +12,5 @@ RDEPEND=x11-apps/xauth x11-libs/libX11 x11-libs/libXext x11-misc/xkeyboard-confi REQUIRED_USE=|| ( server viewer ) SLOT=0 SRC_URI=https://sourceforge.net/projects/turbovnc/files/3.0.2/turbovnc-3.0.2.tar.gz/download -> turbovnc-3.0.2.tar.gz verify-sig? ( https://sourceforge.net/projects/turbovnc/files/3.0.2/turbovnc-3.0.2.tar.gz.sig/download -> turbovnc-3.0.2.tar.gz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=11995df906d388e715f54229fc5cbaba diff --git a/metadata/md5-cache/net-misc/turbovnc-3.0.3 b/metadata/md5-cache/net-misc/turbovnc-3.0.3 index 4612eb1ab515..ebbd3c91837a 100644 --- a/metadata/md5-cache/net-misc/turbovnc-3.0.3 +++ b/metadata/md5-cache/net-misc/turbovnc-3.0.3 @@ -12,5 +12,5 @@ RDEPEND=x11-apps/xauth x11-libs/libX11 x11-libs/libXext x11-misc/xkeyboard-confi REQUIRED_USE=|| ( server viewer ) SLOT=0 SRC_URI=https://sourceforge.net/projects/turbovnc/files/3.0.3/turbovnc-3.0.3.tar.gz/download -> turbovnc-3.0.3.tar.gz verify-sig? ( https://sourceforge.net/projects/turbovnc/files/3.0.3/turbovnc-3.0.3.tar.gz.sig/download -> turbovnc-3.0.3.tar.gz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=11995df906d388e715f54229fc5cbaba diff --git a/metadata/md5-cache/net-misc/xmrig-6.18.1-r1 b/metadata/md5-cache/net-misc/xmrig-6.18.1-r1 index 95efb78cac4e..ca255f7a0ae3 100644 --- a/metadata/md5-cache/net-misc/xmrig-6.18.1-r1 +++ b/metadata/md5-cache/net-misc/xmrig-6.18.1-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 GPL-3+ MIT RDEPEND=dev-libs/libuv:= hwloc? ( >=sys-apps/hwloc-2.5.0:= ) opencl? ( virtual/opencl ) ssl? ( dev-libs/openssl:= ) !arm64? ( sys-apps/msr-tools ) SLOT=0 SRC_URI=https://github.com/xmrig/xmrig/archive/v6.18.1.tar.gz -> xmrig-6.18.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7dfde077c012332a9c95bd5f595c06ed diff --git a/metadata/md5-cache/net-misc/xmrig-6.19.0-r1 b/metadata/md5-cache/net-misc/xmrig-6.19.0-r1 index c19586345da7..9ddc5972cc72 100644 --- a/metadata/md5-cache/net-misc/xmrig-6.19.0-r1 +++ b/metadata/md5-cache/net-misc/xmrig-6.19.0-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 GPL-3+ MIT RDEPEND=dev-libs/libuv:= hwloc? ( >=sys-apps/hwloc-2.5.0:= ) opencl? ( virtual/opencl ) ssl? ( dev-libs/openssl:= ) !arm64? ( sys-apps/msr-tools ) SLOT=0 SRC_URI=https://github.com/xmrig/xmrig/archive/v6.19.0.tar.gz -> xmrig-6.19.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c3741d8dba6faf624ddfde9d6fc94369 diff --git a/metadata/md5-cache/net-misc/xmrig-9999 b/metadata/md5-cache/net-misc/xmrig-9999 index fa4e3db67b3d..d01485e8322b 100644 --- a/metadata/md5-cache/net-misc/xmrig-9999 +++ b/metadata/md5-cache/net-misc/xmrig-9999 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 GPL-3+ MIT PROPERTIES=live RDEPEND=dev-libs/libuv:= hwloc? ( >=sys-apps/hwloc-2.5.0:= ) opencl? ( virtual/opencl ) ssl? ( dev-libs/openssl:= ) !arm64? ( sys-apps/msr-tools ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c3741d8dba6faf624ddfde9d6fc94369 diff --git a/metadata/md5-cache/net-nds/Manifest.gz b/metadata/md5-cache/net-nds/Manifest.gz index 3d987fa18da3..5f6ad4c97c36 100644 Binary files a/metadata/md5-cache/net-nds/Manifest.gz and b/metadata/md5-cache/net-nds/Manifest.gz differ diff --git a/metadata/md5-cache/net-nds/openldap-2.4.59-r2 b/metadata/md5-cache/net-nds/openldap-2.4.59-r2 index 767040026d43..f8448f7aa554 100644 --- a/metadata/md5-cache/net-nds/openldap-2.4.59-r2 +++ b/metadata/md5-cache/net-nds/openldap-2.4.59-r2 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://openldap.org/software/download/OpenLDAP/openldap-release/openldap-2.4.59.tgz http://gpl.savoirfairelinux.net/pub/mirrors/openldap/openldap-release/openldap-2.4.59.tgz http://repository.linagora.org/OpenLDAP/openldap-release/openldap-2.4.59.tgz http://mirror.eu.oneandone.net/software/openldap/openldap-release/openldap-2.4.59.tgz mirror://gentoo/rfc2307bis.schema-20140524 _eclasses_=autotools b5529dc611971a61a30153916014f616 db-use 3807d3e43e20aaa6e4decedd2bb2db4c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 preserve-libs a8e50acee31b5759b4df1f7707cae54b ssl-cert 0fd8c7e0d851d0d0e54cdccce5210724 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=e4300f384dc05abd679ba194738ab430 +_md5_=767ffd3031bc0d251a504d40638ae167 diff --git a/metadata/md5-cache/net-nds/openldap-2.5.14 b/metadata/md5-cache/net-nds/openldap-2.5.14 new file mode 100644 index 000000000000..c3d7ba6e1d35 --- /dev/null +++ b/metadata/md5-cache/net-nds/openldap-2.5.14 @@ -0,0 +1,17 @@ +BDEPEND=!minimal? ( acct-group/ldap acct-user/ldap ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 ssl? ( dev-libs/openssl:0 ) virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst preinst prepare setup test +DEPEND=kernel_linux? ( sys-apps/util-linux ) ssl? ( !gnutls? ( >=dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=net-libs/gnutls-2.12.23-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(-)?] >=dev-libs/libgcrypt-1.5.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(-)?] ) ) sasl? ( dev-libs/cyrus-sasl:= ) !minimal? ( dev-libs/libltdl sys-fs/e2fsprogs >=dev-db/lmdb-0.9.30:= argon2? ( app-crypt/argon2:= ) crypt? ( virtual/libcrypt:= ) tcpd? ( sys-apps/tcp-wrappers ) odbc? ( !iodbc? ( dev-db/unixODBC ) iodbc? ( dev-db/libiodbc ) ) perl? ( dev-lang/perl:=[-build(-)] ) samba? ( dev-libs/openssl:0= ) smbkrb5passwd? ( dev-libs/openssl:0= kerberos? ( app-crypt/heimdal ) ) kerberos? ( virtual/krb5 kinit? ( !app-crypt/heimdal ) ) ) sys-apps/groff +DESCRIPTION=LDAP suite of application and development tools +EAPI=7 +HOMEPAGE=https://www.openldap.org/ +INHERIT=autotools flag-o-matic multilib multilib-minimal preserve-libs ssl-cert toolchain-funcs systemd tmpfiles +IUSE=systemd argon2 +cleartext crypt experimental minimal samba tcpd overlays perl autoca debug gnutls iodbc ipv6 odbc sasl ssl selinux static-libs +syslog test kerberos kinit pbkdf2 sha2 smbkrb5passwd cxx abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 ssl +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=OPENLDAP GPL-2 +RDEPEND=kernel_linux? ( sys-apps/util-linux ) ssl? ( !gnutls? ( >=dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=net-libs/gnutls-2.12.23-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(-)?] >=dev-libs/libgcrypt-1.5.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(-)?] ) ) sasl? ( dev-libs/cyrus-sasl:= ) !minimal? ( dev-libs/libltdl sys-fs/e2fsprogs >=dev-db/lmdb-0.9.30:= argon2? ( app-crypt/argon2:= ) crypt? ( virtual/libcrypt:= ) tcpd? ( sys-apps/tcp-wrappers ) odbc? ( !iodbc? ( dev-db/unixODBC ) iodbc? ( dev-db/libiodbc ) ) perl? ( dev-lang/perl:=[-build(-)] ) samba? ( dev-libs/openssl:0= ) smbkrb5passwd? ( dev-libs/openssl:0= kerberos? ( app-crypt/heimdal ) ) kerberos? ( virtual/krb5 kinit? ( !app-crypt/heimdal ) ) ) selinux? ( sec-policy/selinux-ldap ) virtual/tmpfiles +REQUIRED_USE=cxx? ( sasl ) pbkdf2? ( ssl ) test? ( cleartext debug sasl ) autoca? ( !gnutls ) ?? ( test minimal ) kerberos? ( ?? ( kinit smbkrb5passwd ) ) +RESTRICT=!test? ( test ) +SLOT=0/2.5 +SRC_URI=https://gitlab.com/openldap/openldap/-/archive/OPENLDAP_REL_ENG_2_5_14/openldap-OPENLDAP_REL_ENG_2_5_14.tar.bz2 mirror://gentoo/rfc2307bis.schema-20140524 +_eclasses_=autotools b5529dc611971a61a30153916014f616 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 preserve-libs a8e50acee31b5759b4df1f7707cae54b ssl-cert 0fd8c7e0d851d0d0e54cdccce5210724 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=8f2b569ee5b496bbfa0d0692c5f23711 diff --git a/metadata/md5-cache/net-nds/openldap-2.6.3-r7 b/metadata/md5-cache/net-nds/openldap-2.6.3-r7 index f15599095c58..9cde4f1e8bb5 100644 --- a/metadata/md5-cache/net-nds/openldap-2.6.3-r7 +++ b/metadata/md5-cache/net-nds/openldap-2.6.3-r7 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/2.6 SRC_URI=https://gitlab.com/openldap/openldap/-/archive/OPENLDAP_REL_ENG_2_6_3/openldap-OPENLDAP_REL_ENG_2_6_3.tar.gz mirror://gentoo/rfc2307bis.schema-20140524 _eclasses_=autotools b5529dc611971a61a30153916014f616 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 preserve-libs a8e50acee31b5759b4df1f7707cae54b ssl-cert 0fd8c7e0d851d0d0e54cdccce5210724 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=087351e04d42519638d3d0386743bad6 +_md5_=7ae10c0434c5366c7016d1c7f1029ea5 diff --git a/metadata/md5-cache/net-nds/openldap-2.6.4-r1 b/metadata/md5-cache/net-nds/openldap-2.6.4-r1 index b08597b19623..163d7fa55057 100644 --- a/metadata/md5-cache/net-nds/openldap-2.6.4-r1 +++ b/metadata/md5-cache/net-nds/openldap-2.6.4-r1 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/2.6 SRC_URI=https://gitlab.com/openldap/openldap/-/archive/OPENLDAP_REL_ENG_2_6_4/openldap-OPENLDAP_REL_ENG_2_6_4.tar.bz2 mirror://gentoo/rfc2307bis.schema-20140524 _eclasses_=autotools b5529dc611971a61a30153916014f616 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 preserve-libs a8e50acee31b5759b4df1f7707cae54b ssl-cert 0fd8c7e0d851d0d0e54cdccce5210724 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=f6010fb662d68b335e2606f8ecb3e7bb +_md5_=dc7c4acc275362c2779ae1b00691a162 diff --git a/metadata/md5-cache/net-news/Manifest.gz b/metadata/md5-cache/net-news/Manifest.gz index 37ec4019832b..b4cd05c4d026 100644 Binary files a/metadata/md5-cache/net-news/Manifest.gz and b/metadata/md5-cache/net-news/Manifest.gz differ diff --git a/metadata/md5-cache/net-news/rssguard-4.2.5 b/metadata/md5-cache/net-news/rssguard-4.2.5 index a814e7f6ea3d..7a7e09fd0f8d 100644 --- a/metadata/md5-cache/net-news/rssguard-4.2.5 +++ b/metadata/md5-cache/net-news/rssguard-4.2.5 @@ -13,5 +13,5 @@ RDEPEND=!qt6? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtdeclarative:5 dev-qt/qt REQUIRED_USE=|| ( mysql sqlite ) SLOT=0 SRC_URI=https://github.com/martinrotter/rssguard/archive/4.2.5.tar.gz -> rssguard-4.2.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2809aa61d84415573641e26213b8f45d diff --git a/metadata/md5-cache/net-news/rssguard-4.2.7 b/metadata/md5-cache/net-news/rssguard-4.2.7 index 9fe986da1245..0f9fa256d795 100644 --- a/metadata/md5-cache/net-news/rssguard-4.2.7 +++ b/metadata/md5-cache/net-news/rssguard-4.2.7 @@ -13,5 +13,5 @@ RDEPEND=!qt6? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtdeclarative:5 dev-qt/qt REQUIRED_USE=|| ( mysql sqlite ) SLOT=0 SRC_URI=https://github.com/martinrotter/rssguard/archive/4.2.7.tar.gz -> rssguard-4.2.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6b08987797afe6432c84bb0fdc04b106 diff --git a/metadata/md5-cache/net-news/rssguard-4.3.2 b/metadata/md5-cache/net-news/rssguard-4.3.2 index 9bcec16de62d..2ae5779b4ece 100644 --- a/metadata/md5-cache/net-news/rssguard-4.3.2 +++ b/metadata/md5-cache/net-news/rssguard-4.3.2 @@ -13,5 +13,5 @@ RDEPEND=!qt6? ( dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtd REQUIRED_USE=|| ( mysql sqlite ) SLOT=0 SRC_URI=https://github.com/martinrotter/rssguard/archive/4.3.2.tar.gz -> rssguard-4.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4e10de129a7370db7aa342a5c2028751 diff --git a/metadata/md5-cache/net-p2p/Manifest.gz b/metadata/md5-cache/net-p2p/Manifest.gz index e3bbf2ee9598..1a896d151517 100644 Binary files a/metadata/md5-cache/net-p2p/Manifest.gz and b/metadata/md5-cache/net-p2p/Manifest.gz differ diff --git a/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.2 b/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.2 index c9e08cfa3e9a..f3fad7be4340 100644 --- a/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.2 +++ b/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.2 @@ -12,5 +12,5 @@ PDEPEND=webui? ( www-apps/airdcpp-webui ) RDEPEND=acct-user/airdcppd acct-group/airdcppd app-arch/bzip2 dev-cpp/websocketpp dev-libs/boost:= dev-libs/leveldb:= dev-libs/libmaxminddb:= dev-libs/openssl:0=[-bindist(-)] net-libs/miniupnpc:= sys-libs/zlib virtual/libiconv nat-pmp? ( net-libs/libnatpmp:= ) tbb? ( dev-cpp/tbb:= ) SLOT=0 SRC_URI=https://github.com/airdcpp-web/airdcpp-webclient/archive/2.11.2.tar.gz -> airdcpp-webclient-2.11.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4d769aca64df42c873100bf905fe39bd diff --git a/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.3 b/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.3 index f824072c99c8..17cdae4973ac 100644 --- a/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.3 +++ b/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.3 @@ -12,5 +12,5 @@ PDEPEND=webui? ( www-apps/airdcpp-webui ) RDEPEND=acct-user/airdcppd acct-group/airdcppd app-arch/bzip2 dev-cpp/websocketpp dev-libs/boost:= dev-libs/leveldb:= dev-libs/libmaxminddb:= dev-libs/openssl:0=[-bindist(-)] net-libs/miniupnpc:= sys-libs/zlib virtual/libiconv nat-pmp? ( net-libs/libnatpmp:= ) tbb? ( dev-cpp/tbb:= ) SLOT=0 SRC_URI=https://github.com/airdcpp-web/airdcpp-webclient/archive/2.11.3.tar.gz -> airdcpp-webclient-2.11.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=208f683e3802953c8c00bceb30518ad8 diff --git a/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.4 b/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.4 index af34109113d8..300cf58f17ff 100644 --- a/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.4 +++ b/metadata/md5-cache/net-p2p/airdcpp-webclient-2.11.4 @@ -12,5 +12,5 @@ PDEPEND=webui? ( www-apps/airdcpp-webui ) RDEPEND=acct-user/airdcppd acct-group/airdcppd app-arch/bzip2 dev-cpp/websocketpp dev-libs/boost:= dev-libs/leveldb:= dev-libs/libmaxminddb:= dev-libs/openssl:0=[-bindist(-)] net-libs/miniupnpc:= sys-libs/zlib virtual/libiconv nat-pmp? ( net-libs/libnatpmp:= ) tbb? ( dev-cpp/tbb:= ) SLOT=0 SRC_URI=https://github.com/airdcpp-web/airdcpp-webclient/archive/2.11.4.tar.gz -> airdcpp-webclient-2.11.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=208f683e3802953c8c00bceb30518ad8 diff --git a/metadata/md5-cache/net-p2p/biglybt-3.2.0.0-r2 b/metadata/md5-cache/net-p2p/biglybt-3.3.0.0 similarity index 60% rename from metadata/md5-cache/net-p2p/biglybt-3.2.0.0-r2 rename to metadata/md5-cache/net-p2p/biglybt-3.3.0.0 index b83d94831c67..2c35f99c63c6 100644 --- a/metadata/md5-cache/net-p2p/biglybt-3.2.0.0-r2 +++ b/metadata/md5-cache/net-p2p/biglybt-3.3.0.0 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-11:* dev-java/commons-cli:1 dev-java/swt:4.10 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +DEPEND=virtual/jdk:11 dev-java/commons-cli:1 dev-java/swt:4.27 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) DESCRIPTION=Feature-filled Bittorrent client based on the Azureus open source project EAPI=8 HOMEPAGE=https://www.biglybt.com @@ -7,8 +7,8 @@ INHERIT=java-pkg-2 java-pkg-simple IUSE=doc source KEYWORDS=~amd64 ~ppc64 LICENSE=GPL-2 -RDEPEND=>=virtual/jre-1.8:* dev-java/commons-cli:1 dev-java/swt:4.10 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +RDEPEND=>=virtual/jre-1.8:* dev-java/commons-cli:1 dev-java/swt:4.27 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) SLOT=0 -SRC_URI=https://github.com/BiglySoftware/BiglyBT/archive/v3.2.0.0.tar.gz -> biglybt-3.2.0.0.tar.gz +SRC_URI=https://github.com/BiglySoftware/BiglyBT/archive/v3.3.0.0.tar.gz -> biglybt-3.3.0.0.tar.gz _eclasses_=java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-pkg-simple 0389d2b96f7da44c3dbabe920bbe5531 java-utils-2 eefed04ac580a259ecda1fbd966640b7 -_md5_=815b473528ee126c7afb8385b68c1680 +_md5_=eb2a94d2144219548c233c1a1b7bcf7c diff --git a/metadata/md5-cache/net-p2p/bitcoin-qt-0.21.0 b/metadata/md5-cache/net-p2p/bitcoin-qt-0.21.0-r1 similarity index 60% rename from metadata/md5-cache/net-p2p/bitcoin-qt-0.21.0 rename to metadata/md5-cache/net-p2p/bitcoin-qt-0.21.0-r1 index e67bfc6d01dc..bf70a614b7d7 100644 --- a/metadata/md5-cache/net-p2p/bitcoin-qt-0.21.0 +++ b/metadata/md5-cache/net-p2p/bitcoin-qt-0.21.0-r1 @@ -1,6 +1,6 @@ BDEPEND=>=sys-devel/autoconf-2.69 >=sys-devel/automake-1.13 dev-qt/linguist-tools:5 knots? ( gnome-base/librsvg media-gfx/imagemagick[png] ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=configure install postinst postrm prepare pretend -DEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 system-leveldb? ( virtual/bitcoin-leveldb ) dbus? ( dev-qt/qtdbus:5 ) dev-libs/libevent:= qrcode? ( media-gfx/qrencode:= ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) wallet? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) +DEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 system-leveldb? ( virtual/bitcoin-leveldb ) dbus? ( dev-qt/qtdbus:5 ) dev-libs/libevent:= qrcode? ( media-gfx/qrencode:= ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) wallet? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) DESCRIPTION=An end-user Qt GUI for the Bitcoin crypto-currency EAPI=7 HOMEPAGE=https://bitcoincore.org/ https://bitcoinknots.org/ @@ -8,9 +8,9 @@ INHERIT=autotools bash-completion-r1 db-use desktop xdg-utils IUSE=+asm dbus kde knots +qrcode sqlite +system-leveldb test upnp +wallet zeromq KEYWORDS=amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux LICENSE=MIT -RDEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 system-leveldb? ( virtual/bitcoin-leveldb ) dbus? ( dev-qt/qtdbus:5 ) dev-libs/libevent:= qrcode? ( media-gfx/qrencode:= ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) wallet? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) +RDEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 system-leveldb? ( virtual/bitcoin-leveldb ) dbus? ( dev-qt/qtdbus:5 ) dev-libs/libevent:= qrcode? ( media-gfx/qrencode:= ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) wallet? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/bitcoin/bitcoin/archive/95ea54ba089610019a74c1176a2c7c0dba144b1c.tar.gz -> bitcoin-v0.21.0.tar.gz https://bitcoinknots.org/files/0.21.x/0.21.0.knots20210130/bitcoin-0.21.0.knots20210130.patches.txz -> bitcoin-0.21.0.knots20210130.patches.tar.xz _eclasses_=autotools b5529dc611971a61a30153916014f616 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff db-use 3807d3e43e20aaa6e4decedd2bb2db4c desktop 021728fdc1b03b36357dbc89489e0f0d gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=91e1d606af5474fd9223154bc3e5254d +_md5_=b7c578521366db07b0366c6594f836db diff --git a/metadata/md5-cache/net-p2p/bitcoin-qt-22.0 b/metadata/md5-cache/net-p2p/bitcoin-qt-22.0-r1 similarity index 64% rename from metadata/md5-cache/net-p2p/bitcoin-qt-22.0 rename to metadata/md5-cache/net-p2p/bitcoin-qt-22.0-r1 index 691817146649..6570cb4b0aaa 100644 --- a/metadata/md5-cache/net-p2p/bitcoin-qt-22.0 +++ b/metadata/md5-cache/net-p2p/bitcoin-qt-22.0-r1 @@ -1,6 +1,6 @@ BDEPEND=>=sys-devel/automake-1.13 || ( >=sys-devel/gcc-7[cxx] >=sys-devel/clang-5 ) dev-qt/linguist-tools:5 knots? ( gnome-base/librsvg media-gfx/imagemagick[png] ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=configure install postinst postrm prepare pretend -DEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 virtual/bitcoin-leveldb dbus? ( dev-qt/qtdbus:5 ) dev-libs/libevent:= nat-pmp? ( net-libs/libnatpmp ) qrcode? ( media-gfx/qrencode:= ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) berkdb? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) systemtap? ( dev-util/systemtap ) +DEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 virtual/bitcoin-leveldb dbus? ( dev-qt/qtdbus:5 ) dev-libs/libevent:= nat-pmp? ( net-libs/libnatpmp ) qrcode? ( media-gfx/qrencode:= ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) berkdb? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) systemtap? ( dev-util/systemtap ) DESCRIPTION=An end-user Qt GUI for the Bitcoin crypto-currency EAPI=7 HOMEPAGE=https://bitcoincore.org/ https://bitcoinknots.org/ @@ -8,10 +8,10 @@ INHERIT=autotools bash-completion-r1 db-use desktop flag-o-matic xdg-utils IUSE=+asm +berkdb dbus +external-signer kde knots nat-pmp +qrcode sqlite systemtap test upnp +wallet zeromq KEYWORDS=amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux LICENSE=MIT -RDEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 virtual/bitcoin-leveldb dbus? ( dev-qt/qtdbus:5 ) dev-libs/libevent:= nat-pmp? ( net-libs/libnatpmp ) qrcode? ( media-gfx/qrencode:= ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) berkdb? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) +RDEPEND=dev-libs/boost:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 virtual/bitcoin-leveldb dbus? ( dev-qt/qtdbus:5 ) dev-libs/libevent:= nat-pmp? ( net-libs/libnatpmp ) qrcode? ( media-gfx/qrencode:= ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) berkdb? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) REQUIRED_USE=sqlite? ( wallet ) berkdb? ( wallet ) wallet? ( || ( berkdb sqlite ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/bitcoin/bitcoin/archive/a0988140b71485ad12c3c3a4a9573f7c21b1eff8.tar.gz -> bitcoin-v22.0.tar.gz https://bitcoinknots.org/files/22.x/22.0.knots20211108/bitcoin-22.0.knots20211108.patches.txz -> bitcoin-22.0.knots20211108.patches.tar.xz _eclasses_=autotools b5529dc611971a61a30153916014f616 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff db-use 3807d3e43e20aaa6e4decedd2bb2db4c desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=ce62b649139d605621f5af01acd394b4 +_md5_=bef634b876098fdb3f5eea79979990bb diff --git a/metadata/md5-cache/net-p2p/bitcoind-0.21.0 b/metadata/md5-cache/net-p2p/bitcoind-0.21.0-r1 similarity index 66% rename from metadata/md5-cache/net-p2p/bitcoind-0.21.0 rename to metadata/md5-cache/net-p2p/bitcoind-0.21.0-r1 index 6efd76aafde4..861297127f46 100644 --- a/metadata/md5-cache/net-p2p/bitcoind-0.21.0 +++ b/metadata/md5-cache/net-p2p/bitcoind-0.21.0-r1 @@ -1,6 +1,6 @@ BDEPEND=>=sys-devel/autoconf-2.69 >=sys-devel/automake-1.13 sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig DEFINED_PHASES=configure install postinst prepare pretend -DEPEND=acct-group/bitcoin acct-user/bitcoin dev-libs/boost:= dev-libs/libevent:= >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= system-leveldb? ( virtual/bitcoin-leveldb ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) wallet? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) +DEPEND=acct-group/bitcoin acct-user/bitcoin dev-libs/boost:= dev-libs/libevent:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= system-leveldb? ( virtual/bitcoin-leveldb ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) wallet? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) DESCRIPTION=Original Bitcoin crypto-currency wallet for automated services EAPI=7 HOMEPAGE=https://bitcoincore.org/ https://bitcoinknots.org/ @@ -8,9 +8,9 @@ INHERIT=autotools bash-completion-r1 db-use systemd IUSE=+asm examples knots +sqlite system-leveldb test upnp +wallet zeromq KEYWORDS=amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux LICENSE=MIT -RDEPEND=acct-group/bitcoin acct-user/bitcoin dev-libs/boost:= dev-libs/libevent:= >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= system-leveldb? ( virtual/bitcoin-leveldb ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) wallet? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) +RDEPEND=acct-group/bitcoin acct-user/bitcoin dev-libs/boost:= dev-libs/libevent:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= system-leveldb? ( virtual/bitcoin-leveldb ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) wallet? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/bitcoin/bitcoin/archive/95ea54ba089610019a74c1176a2c7c0dba144b1c.tar.gz -> bitcoin-v0.21.0.tar.gz https://bitcoinknots.org/files/0.21.x/0.21.0.knots20210130/bitcoin-0.21.0.knots20210130.patches.txz -> bitcoin-0.21.0.knots20210130.patches.tar.xz _eclasses_=autotools b5529dc611971a61a30153916014f616 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff db-use 3807d3e43e20aaa6e4decedd2bb2db4c gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=da42ad08f2cb6dbace882db89e4de64d +_md5_=aaf6cd305ba296d459be2e412d789c1d diff --git a/metadata/md5-cache/net-p2p/bitcoind-22.0 b/metadata/md5-cache/net-p2p/bitcoind-22.0-r1 similarity index 69% rename from metadata/md5-cache/net-p2p/bitcoind-22.0 rename to metadata/md5-cache/net-p2p/bitcoind-22.0-r1 index cda24e23d052..1365b78299e5 100644 --- a/metadata/md5-cache/net-p2p/bitcoind-22.0 +++ b/metadata/md5-cache/net-p2p/bitcoind-22.0-r1 @@ -1,6 +1,6 @@ BDEPEND=>=sys-devel/automake-1.13 || ( >=sys-devel/gcc-7[cxx] >=sys-devel/clang-5 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig DEFINED_PHASES=configure install postinst prepare pretend -DEPEND=acct-group/bitcoin acct-user/bitcoin dev-libs/boost:= dev-libs/libevent:= >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= nat-pmp? ( net-libs/libnatpmp ) virtual/bitcoin-leveldb sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) berkdb? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) systemtap? ( dev-util/systemtap ) +DEPEND=acct-group/bitcoin acct-user/bitcoin dev-libs/boost:= dev-libs/libevent:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= nat-pmp? ( net-libs/libnatpmp ) virtual/bitcoin-leveldb sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) berkdb? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) systemtap? ( dev-util/systemtap ) DESCRIPTION=Original Bitcoin crypto-currency wallet for automated services EAPI=7 HOMEPAGE=https://bitcoincore.org/ https://bitcoinknots.org/ @@ -8,10 +8,10 @@ INHERIT=autotools bash-completion-r1 db-use systemd flag-o-matic IUSE=+asm +berkdb examples +external-signer knots nat-pmp sqlite systemtap test upnp +wallet zeromq KEYWORDS=amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux LICENSE=MIT -RDEPEND=acct-group/bitcoin acct-user/bitcoin dev-libs/boost:= dev-libs/libevent:= >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] >=dev-libs/univalue-1.0.4:= nat-pmp? ( net-libs/libnatpmp ) virtual/bitcoin-leveldb sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) berkdb? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) +RDEPEND=acct-group/bitcoin acct-user/bitcoin dev-libs/boost:= dev-libs/libevent:= >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= nat-pmp? ( net-libs/libnatpmp ) virtual/bitcoin-leveldb sqlite? ( >=dev-db/sqlite-3.7.17:= ) upnp? ( >=net-libs/miniupnpc-1.9.20150916:= ) berkdb? ( sys-libs/db:4.8=[cxx] ) zeromq? ( net-libs/zeromq:= ) REQUIRED_USE=sqlite? ( wallet ) berkdb? ( wallet ) wallet? ( || ( berkdb sqlite ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/bitcoin/bitcoin/archive/a0988140b71485ad12c3c3a4a9573f7c21b1eff8.tar.gz -> bitcoin-v22.0.tar.gz https://bitcoinknots.org/files/22.x/22.0.knots20211108/bitcoin-22.0.knots20211108.patches.txz -> bitcoin-22.0.knots20211108.patches.tar.xz _eclasses_=autotools b5529dc611971a61a30153916014f616 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff db-use 3807d3e43e20aaa6e4decedd2bb2db4c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=d92b415611fcf4afac0b5eaf8ec3cbbf +_md5_=c0a460798a3cd3ba18b3516d2b99b7fa diff --git a/metadata/md5-cache/net-p2p/eiskaltdcpp-2.4.2 b/metadata/md5-cache/net-p2p/eiskaltdcpp-2.4.2 index 7e63d23f9ee4..4f57b0bdd974 100644 --- a/metadata/md5-cache/net-p2p/eiskaltdcpp-2.4.2 +++ b/metadata/md5-cache/net-p2p/eiskaltdcpp-2.4.2 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2 dev-libs/openssl:0= sys-apps/attr sys-libs/zlib virtual/l REQUIRED_USE=dbus? ( qt5 ) javascript? ( qt5 ) libcanberra? ( gtk ) libnotify? ( gtk ) lua? ( ^^ ( lua_single_target_lua5-1 ) ) spell? ( qt5 ) sqlite? ( qt5 ) SLOT=0 SRC_URI=mirror://sourceforge/project/eiskaltdcpp/Sources/eiskaltdcpp-2.4.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7647ea2ee455fa682d82c48f53d5cc06 diff --git a/metadata/md5-cache/net-p2p/eiskaltdcpp-9999 b/metadata/md5-cache/net-p2p/eiskaltdcpp-9999 index 164af4d4cd5f..4103ce6effba 100644 --- a/metadata/md5-cache/net-p2p/eiskaltdcpp-9999 +++ b/metadata/md5-cache/net-p2p/eiskaltdcpp-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=app-arch/bzip2 dev-libs/openssl:0= sys-apps/attr sys-libs/zlib virtual/libiconv virtual/libintl cli? ( dev-lang/perl dev-perl/Data-Dump dev-perl/Term-ShellUI virtual/perl-Getopt-Long dev-perl/JSON-RPC ) daemon? ( dev-libs/jsoncpp:= ) gtk? ( dev-libs/glib:2 x11-libs/gtk+:3 x11-libs/pango x11-themes/hicolor-icon-theme libcanberra? ( media-libs/libcanberra ) libnotify? ( x11-libs/libnotify ) ) idn? ( net-dns/libidn ) lua? ( lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) ) pcre? ( dev-libs/libpcre ) qt5? ( dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 dbus? ( dev-qt/qtdbus:5 ) javascript? ( dev-qt/qtdeclarative:5 dev-qt/qtscript:5 ) spell? ( app-text/aspell ) sqlite? ( dev-qt/qtsql:5[sqlite] ) ) upnp? ( net-libs/miniupnpc ) REQUIRED_USE=dbus? ( qt5 ) javascript? ( qt5 ) libcanberra? ( gtk ) libnotify? ( gtk ) lua? ( ^^ ( lua_single_target_lua5-1 ) ) spell? ( qt5 ) sqlite? ( qt5 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=80c2b5334a8691d7ec9dadceb5596fc9 diff --git a/metadata/md5-cache/net-p2p/fms-0.3.84 b/metadata/md5-cache/net-p2p/fms-0.3.84 index 0730d43fd43c..596133b51f18 100644 --- a/metadata/md5-cache/net-p2p/fms-0.3.84 +++ b/metadata/md5-cache/net-p2p/fms-0.3.84 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=acct-group/freenet acct-user/freenet dev-db/sqlite:3= dev-libs/poco frost? ( net-libs/mbedtls:0= ) ssl? ( net-libs/mbedtls:0= ) SLOT=0 SRC_URI=https://dev.gentoo.org/~tommy/distfiles/fms-src-0.3.84.zip -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=83bcfbb1ff3178f03db85aee5da179ec diff --git a/metadata/md5-cache/net-p2p/ktorrent-22.08.3 b/metadata/md5-cache/net-p2p/ktorrent-22.08.3 index 0cd4dccac4cc..4ead645dff5d 100644 --- a/metadata/md5-cache/net-p2p/ktorrent-22.08.3 +++ b/metadata/md5-cache/net-p2p/ktorrent-22.08.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/ktorrent-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=304263f25df83bb7ed2958be8db06875 diff --git a/metadata/md5-cache/net-p2p/ktorrent-22.12.3 b/metadata/md5-cache/net-p2p/ktorrent-22.12.3 index 2db226519a20..4322e8bd49be 100644 --- a/metadata/md5-cache/net-p2p/ktorrent-22.12.3 +++ b/metadata/md5-cache/net-p2p/ktorrent-22.12.3 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/ktorrent-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e072b10b4ff5e4d13c24c1fd427e59aa diff --git a/metadata/md5-cache/net-p2p/qbittorrent-4.4.5-r2 b/metadata/md5-cache/net-p2p/qbittorrent-4.4.5-r2 index 3a06378f4bdc..cf62756ebaa2 100644 --- a/metadata/md5-cache/net-p2p/qbittorrent-4.4.5-r2 +++ b/metadata/md5-cache/net-p2p/qbittorrent-4.4.5-r2 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/boost:= >=dev-libs/openssl-1.1.1:= dev-qt/qtcore:5 dev-qt/qtnet REQUIRED_USE=dbus? ( gui ) || ( gui webui ) SLOT=0 SRC_URI=https://github.com/qbittorrent/qBittorrent/archive/release-4.4.5.tar.gz -> qbittorrent-4.4.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ac554934497c6374d5d9a1881927b730 diff --git a/metadata/md5-cache/net-p2p/qbittorrent-4.5.1 b/metadata/md5-cache/net-p2p/qbittorrent-4.5.1 index 7ddaec552978..4f3e680f54ce 100644 --- a/metadata/md5-cache/net-p2p/qbittorrent-4.5.1 +++ b/metadata/md5-cache/net-p2p/qbittorrent-4.5.1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/boost:= >=dev-libs/openssl-1.1.1:= dev-qt/qtcore:5 dev-qt/qtnet REQUIRED_USE=dbus? ( gui ) || ( gui webui ) SLOT=0 SRC_URI=https://github.com/qbittorrent/qBittorrent/archive/release-4.5.1.tar.gz -> qbittorrent-4.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c565805b6c4a9d07e1b6919c45e8adc6 diff --git a/metadata/md5-cache/net-p2p/qbittorrent-4.5.2 b/metadata/md5-cache/net-p2p/qbittorrent-4.5.2 index b50ff92300d8..1d0114ae529f 100644 --- a/metadata/md5-cache/net-p2p/qbittorrent-4.5.2 +++ b/metadata/md5-cache/net-p2p/qbittorrent-4.5.2 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/boost:= >=dev-libs/openssl-1.1.1:= dev-qt/qtcore:5 dev-qt/qtnet REQUIRED_USE=dbus? ( gui ) || ( gui webui ) SLOT=0 SRC_URI=https://github.com/qbittorrent/qBittorrent/archive/release-4.5.2.tar.gz -> qbittorrent-4.5.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3f8759c9852177068cb9c99daf6eb63a diff --git a/metadata/md5-cache/net-p2p/qbittorrent-9999 b/metadata/md5-cache/net-p2p/qbittorrent-9999 index 69a4472aacd2..2c9925b2b53e 100644 --- a/metadata/md5-cache/net-p2p/qbittorrent-9999 +++ b/metadata/md5-cache/net-p2p/qbittorrent-9999 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/boost:= >=dev-libs/openssl-1.1.1:= >=net-libs/libtorrent-raster REQUIRED_USE=|| ( gui webui ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b466eab7612f501872ad4769b6cae8f0 diff --git a/metadata/md5-cache/net-p2p/transmission-3.00-r6 b/metadata/md5-cache/net-p2p/transmission-3.00-r6 index e5e837c08f2e..681dafa77d6b 100644 --- a/metadata/md5-cache/net-p2p/transmission-3.00-r6 +++ b/metadata/md5-cache/net-p2p/transmission-3.00-r6 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libevent-2.0.10:= !mbedtls? ( dev-libs/openssl:0= ) mbedtls? RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://dev.gentoo.org/~floppym/dist/transmission-3.00.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fe9a4b8f6d6258ba460b77ebf8e22282 diff --git a/metadata/md5-cache/net-p2p/transmission-4.0.1-r2 b/metadata/md5-cache/net-p2p/transmission-4.0.1-r2 index 55d3bfa2f954..3964e589a4ad 100644 --- a/metadata/md5-cache/net-p2p/transmission-4.0.1-r2 +++ b/metadata/md5-cache/net-p2p/transmission-4.0.1-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=?? ( qt5 qt6 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/transmission/transmission/releases/download/4.0.1/transmission-4.0.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=263b490473bb7f84def8dcf7f7c0b056 diff --git a/metadata/md5-cache/net-p2p/transmission-4.0.2 b/metadata/md5-cache/net-p2p/transmission-4.0.2 index eb973af5aee1..6d6b099ff241 100644 --- a/metadata/md5-cache/net-p2p/transmission-4.0.2 +++ b/metadata/md5-cache/net-p2p/transmission-4.0.2 @@ -13,5 +13,5 @@ REQUIRED_USE=?? ( qt5 qt6 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/transmission/transmission/releases/download/4.0.2/transmission-4.0.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=263b490473bb7f84def8dcf7f7c0b056 diff --git a/metadata/md5-cache/net-p2p/transmission-9999 b/metadata/md5-cache/net-p2p/transmission-9999 index 29e8b128923b..2299f097c4b4 100644 --- a/metadata/md5-cache/net-p2p/transmission-9999 +++ b/metadata/md5-cache/net-p2p/transmission-9999 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libevent-2.1.0:=[threads(+)] !mbedtls? ( dev-libs/openssl:0= REQUIRED_USE=?? ( qt5 qt6 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=263b490473bb7f84def8dcf7f7c0b056 diff --git a/metadata/md5-cache/net-print/Manifest.gz b/metadata/md5-cache/net-print/Manifest.gz index 9ca121ba72bf..bde61549a9ab 100644 Binary files a/metadata/md5-cache/net-print/Manifest.gz and b/metadata/md5-cache/net-print/Manifest.gz differ diff --git a/metadata/md5-cache/net-print/brlaser-6 b/metadata/md5-cache/net-print/brlaser-6 index 907cb4649fbe..c431d6e1112b 100644 --- a/metadata/md5-cache/net-print/brlaser-6 +++ b/metadata/md5-cache/net-print/brlaser-6 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=net-print/cups app-text/ghostscript-gpl SLOT=0 SRC_URI=https://github.com/pdewacht/brlaser/archive/v6.tar.gz -> brlaser-6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f5fdb80d87bc1077d6fe0edc79f14b25 diff --git a/metadata/md5-cache/net-proxy/Manifest.gz b/metadata/md5-cache/net-proxy/Manifest.gz index 862d2504bcba..a0141254e5be 100644 Binary files a/metadata/md5-cache/net-proxy/Manifest.gz and b/metadata/md5-cache/net-proxy/Manifest.gz differ diff --git a/metadata/md5-cache/net-proxy/trojan-1.16.0-r2 b/metadata/md5-cache/net-proxy/trojan-1.16.0-r2 index e7d5ef3df7bc..f1ab52444f41 100644 --- a/metadata/md5-cache/net-proxy/trojan-1.16.0-r2 +++ b/metadata/md5-cache/net-proxy/trojan-1.16.0-r2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= dev-libs/openssl:0= mysql? ( dev-db/mysql-connector-c:= RESTRICT=test SLOT=0 SRC_URI=https://github.com/trojan-gfw/trojan/archive/v1.16.0.tar.gz -> trojan-1.16.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=58e2c575a54fe36cd20b94fc181dc6e2 diff --git a/metadata/md5-cache/net-voip/Manifest.gz b/metadata/md5-cache/net-voip/Manifest.gz index 7d3a5b8deab5..ce75c7471d03 100644 Binary files a/metadata/md5-cache/net-voip/Manifest.gz and b/metadata/md5-cache/net-voip/Manifest.gz differ diff --git a/metadata/md5-cache/net-voip/mumble-1.4.287-r1 b/metadata/md5-cache/net-voip/mumble-1.4.287-r1 index ef3d258385b7..8ee995bd088e 100644 --- a/metadata/md5-cache/net-voip/mumble-1.4.287-r1 +++ b/metadata/md5-cache/net-voip/mumble-1.4.287-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/openssl-1.0.0b:0= dev-libs/poco[util,xml,zip] >=dev-libs/prot RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mumble-voip/mumble/releases/download/v1.4.287/mumble-1.4.287.tar.gz https://dev.gentoo.org/~concord/distfiles/mumble-1.4-openssl3.patch.xz https://dev.gentoo.org/~concord/distfiles/mumble-1.4-crypto-threads.patch.xz https://dev.gentoo.org/~concord/distfiles/mumble-1.4-odr.patch.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b42f71517b6b98324b7e920e51034a7b diff --git a/metadata/md5-cache/net-voip/mumble-9999 b/metadata/md5-cache/net-voip/mumble-9999 index 14a0d399b6c0..e7fb136d07d3 100644 --- a/metadata/md5-cache/net-voip/mumble-9999 +++ b/metadata/md5-cache/net-voip/mumble-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=dev-libs/openssl-1.0.0b:0= dev-libs/poco[util,xml,zip] >=dev-libs/protobuf-2.2.0:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtsql:5[sqlite] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=media-libs/libsndfile-1.0.20[-minimal] >=media-libs/opus-1.3.1 >=media-libs/speex-1.2.0 media-libs/speexdsp sys-apps/lsb-release x11-libs/libX11 x11-libs/libXi alsa? ( media-libs/alsa-lib ) dbus? ( dev-qt/qtdbus:5 ) g15? ( app-misc/g15daemon:= ) jack? ( virtual/jack ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) pipewire? ( media-video/pipewire ) speech? ( >=app-accessibility/speech-dispatcher-0.8.0 ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=708db43f243e3e4973e1a45e9eb70d3f diff --git a/metadata/md5-cache/net-voip/murmur-1.4.287-r1 b/metadata/md5-cache/net-voip/murmur-1.4.287-r1 index 1b1b9fadc130..5507ada070ba 100644 --- a/metadata/md5-cache/net-voip/murmur-1.4.287-r1 +++ b/metadata/md5-cache/net-voip/murmur-1.4.287-r1 @@ -12,5 +12,5 @@ RDEPEND=acct-group/murmur acct-user/murmur >=dev-libs/openssl-1.0.0b:0= >=dev-li RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mumble-voip/mumble/releases/download/v1.4.287/mumble-1.4.287.tar.gz https://dl.mumble.info/mumble-1.4.287.tar.gz https://dev.gentoo.org/~concord/distfiles/mumble-1.4-openssl3.patch.xz https://dev.gentoo.org/~concord/distfiles/mumble-1.4-crypto-threads.patch.xz https://dev.gentoo.org/~concord/distfiles/mumble-1.4-odr.patch.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6f744e1d7d7268840a9339b79e11895a diff --git a/metadata/md5-cache/net-voip/murmur-9999 b/metadata/md5-cache/net-voip/murmur-9999 index 867940ba9b69..eea19a0b6342 100644 --- a/metadata/md5-cache/net-voip/murmur-9999 +++ b/metadata/md5-cache/net-voip/murmur-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=acct-group/murmur acct-user/murmur >=dev-libs/openssl-1.0.0b:0= >=dev-libs/protobuf-2.2.0:= dev-qt/qtcore:5 dev-qt/qtnetwork:5[ssl] || ( dev-qt/qtsql:5[sqlite] dev-qt/qtsql:5[mysql] ) dev-qt/qtxml:5 sys-apps/lsb-release >=sys-libs/libcap-2.15 dbus? ( dev-qt/qtdbus:5 ) grpc? ( net-libs/grpc ) ice? ( dev-libs/Ice:= ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) virtual/tmpfiles RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3bbdbc683e8807a256a88946d58c2581 diff --git a/metadata/md5-cache/net-vpn/Manifest.gz b/metadata/md5-cache/net-vpn/Manifest.gz index d404542aa6f9..c752c2554c42 100644 Binary files a/metadata/md5-cache/net-vpn/Manifest.gz and b/metadata/md5-cache/net-vpn/Manifest.gz differ diff --git a/metadata/md5-cache/net-vpn/i2pd-2.43.0 b/metadata/md5-cache/net-vpn/i2pd-2.43.0 index 0c20f1e2099a..a5e1e577c7cc 100644 --- a/metadata/md5-cache/net-vpn/i2pd-2.43.0 +++ b/metadata/md5-cache/net-vpn/i2pd-2.43.0 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=acct-user/i2pd acct-group/i2pd dev-libs/boost:= dev-libs/openssl:0=[-bindist(-)] sys-libs/zlib upnp? ( net-libs/miniupnpc:= ) SLOT=0 SRC_URI=https://github.com/PurpleI2P/i2pd/archive/2.43.0.tar.gz -> i2pd-2.43.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=74363a9b9591d1028c9e7c197831f755 diff --git a/metadata/md5-cache/net-vpn/i2pd-2.44.0 b/metadata/md5-cache/net-vpn/i2pd-2.44.0 index f04b1cde35ec..612f14bf1fc3 100644 --- a/metadata/md5-cache/net-vpn/i2pd-2.44.0 +++ b/metadata/md5-cache/net-vpn/i2pd-2.44.0 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=acct-user/i2pd acct-group/i2pd dev-libs/boost:= dev-libs/openssl:0=[-bindist(-)] sys-libs/zlib upnp? ( net-libs/miniupnpc:= ) SLOT=0 SRC_URI=https://github.com/PurpleI2P/i2pd/archive/2.44.0.tar.gz -> i2pd-2.44.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f4009fb98fcebc977001f8608bbc3c16 diff --git a/metadata/md5-cache/net-vpn/i2pd-2.46.1 b/metadata/md5-cache/net-vpn/i2pd-2.46.1 index 1af56dca56bb..62629b6a224d 100644 --- a/metadata/md5-cache/net-vpn/i2pd-2.46.1 +++ b/metadata/md5-cache/net-vpn/i2pd-2.46.1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=acct-user/i2pd acct-group/i2pd dev-libs/boost:= dev-libs/openssl:0=[-bindist(-)] sys-libs/zlib upnp? ( net-libs/miniupnpc:= ) SLOT=0 SRC_URI=https://github.com/PurpleI2P/i2pd/archive/2.46.1.tar.gz -> i2pd-2.46.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e7f2d353998e705e3cca4bcaa698df69 diff --git a/metadata/md5-cache/net-wireless/Manifest.gz b/metadata/md5-cache/net-wireless/Manifest.gz index 3b0efbb59899..dbbb1130b255 100644 Binary files a/metadata/md5-cache/net-wireless/Manifest.gz and b/metadata/md5-cache/net-wireless/Manifest.gz differ diff --git a/metadata/md5-cache/net-wireless/airspy-1.0.10 b/metadata/md5-cache/net-wireless/airspy-1.0.10 index 2f05e4ee8a87..a3b42c46e324 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 a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=adb709cdec244340ee515b620c5413fb diff --git a/metadata/md5-cache/net-wireless/airspy-9999 b/metadata/md5-cache/net-wireless/airspy-9999 index 548ab4a4ef52..14f56ac5b85a 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 a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=adb709cdec244340ee515b620c5413fb diff --git a/metadata/md5-cache/net-wireless/bladerf-2021.03-r1 b/metadata/md5-cache/net-wireless/bladerf-2021.03-r1 index b420cb93f617..f533bb7af24b 100644 --- a/metadata/md5-cache/net-wireless/bladerf-2021.03-r1 +++ b/metadata/md5-cache/net-wireless/bladerf-2021.03-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.12.0 SLOT=0/2021.03 SRC_URI=https://github.com/Nuand/bladeRF/archive/2021.03.tar.gz -> bladerf-2021.03.tar.gz https://github.com/analogdevicesinc/no-OS/archive/0bba46e6f6f75785a65d425ece37d0a04daf6157.tar.gz -> analogdevices-no-OS-0bba46.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fc8ce76823ab6e2cf1c3dce7ad692308 diff --git a/metadata/md5-cache/net-wireless/bladerf-2023.02 b/metadata/md5-cache/net-wireless/bladerf-2023.02 index 192a02c62fa2..540736cd1f14 100644 --- a/metadata/md5-cache/net-wireless/bladerf-2023.02 +++ b/metadata/md5-cache/net-wireless/bladerf-2023.02 @@ -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 a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e21dfa4956f7e5467c73013e9ab5556e diff --git a/metadata/md5-cache/net-wireless/bladerf-9999 b/metadata/md5-cache/net-wireless/bladerf-9999 index 5be671ee362b..2e62666ec567 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 tecla? ( dev-libs/libtecla ) >=net-wireless/bladerf-firmware-2.4.0 >=net-wireless/bladerf-fpga-0.12.0 SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1fbea29cc703ace418d616789fa1c05a diff --git a/metadata/md5-cache/net-wireless/gnuradio-3.10.4.0-r1 b/metadata/md5-cache/net-wireless/gnuradio-3.10.4.0-r1 index 2244ed818717..d6fa77d26d57 100644 --- a/metadata/md5-cache/net-wireless/gnuradio-3.10.4.0-r1 +++ b/metadata/md5-cache/net-wireless/gnuradio-3.10.4.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test !test? ( test ) SLOT=0/3.10.4.0 SRC_URI=https://github.com/gnuradio/gnuradio/archive/refs/tags/v3.10.4.0.tar.gz -> gnuradio-3.10.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=55e4252994fd5aec97adc446b727373a diff --git a/metadata/md5-cache/net-wireless/gnuradio-3.10.5.1 b/metadata/md5-cache/net-wireless/gnuradio-3.10.5.1 index d00e82ee619a..cd8dd944a5e1 100644 --- a/metadata/md5-cache/net-wireless/gnuradio-3.10.5.1 +++ b/metadata/md5-cache/net-wireless/gnuradio-3.10.5.1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test !test? ( test ) SLOT=0/3.10.5.1 SRC_URI=https://github.com/gnuradio/gnuradio/archive/refs/tags/v3.10.5.1.tar.gz -> gnuradio-3.10.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ff1548927692f123eca3b36ab0ce0566 diff --git a/metadata/md5-cache/net-wireless/gnuradio-9999 b/metadata/md5-cache/net-wireless/gnuradio-9999 index 57b83bfdae22..1b162d8c208e 100644 --- a/metadata/md5-cache/net-wireless/gnuradio-9999 +++ b/metadata/md5-cache/net-wireless/gnuradio-9999 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) audio? ( || ( alsa oss jack portaudio ) ) alsa? ( audio ) jack? ( audio ) oss? ( audio ) portaudio? ( audio ) analog? ( filter ) channels? ( filter analog qt5 ) digital? ( filter analog ) dtv? ( filter analog fec ) modtool? ( utils ) qt5? ( filter ) trellis? ( analog digital ) uhd? ( filter analog ) vocoder? ( filter analog ) wavelet? ( analog ) RESTRICT=test !test? ( test ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a95dabcd3fd21a6d1b7f59a3fabe6b91 diff --git a/metadata/md5-cache/net-wireless/gqrx-2.15.9-r1 b/metadata/md5-cache/net-wireless/gqrx-2.15.9-r1 index 35a057a4c043..83f8b42b751f 100644 --- a/metadata/md5-cache/net-wireless/gqrx-2.15.9-r1 +++ b/metadata/md5-cache/net-wireless/gqrx-2.15.9-r1 @@ -12,5 +12,5 @@ RDEPEND=>=net-wireless/gnuradio-3.10:0=[audio,analog,filter,network] >=net-wirel REQUIRED_USE=^^ ( pulseaudio portaudio gr-audio ) SLOT=0 SRC_URI=https://github.com/gqrx-sdr/gqrx/archive/v2.15.9.tar.gz -> gqrx-2.15.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=36d10a468d5995818faa34c611b97c70 diff --git a/metadata/md5-cache/net-wireless/gqrx-9999 b/metadata/md5-cache/net-wireless/gqrx-9999 index 33a5b784feca..29403f4c2756 100644 --- a/metadata/md5-cache/net-wireless/gqrx-9999 +++ b/metadata/md5-cache/net-wireless/gqrx-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=net-wireless/gnuradio-3.10:0=[audio,analog,filter,network] >=net-wireless/gr-osmosdr-0.1.0:= dev-libs/boost:= dev-libs/log4cpp:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 sci-libs/volk:= pulseaudio? ( media-sound/pulseaudio:= ) portaudio? ( media-libs/portaudio:= ) REQUIRED_USE=^^ ( pulseaudio portaudio gr-audio ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=36d10a468d5995818faa34c611b97c70 diff --git a/metadata/md5-cache/net-wireless/gqrx-scanner-1.0.2 b/metadata/md5-cache/net-wireless/gqrx-scanner-1.0.2 index a6ec334b53ff..3aac8c6a926c 100644 --- a/metadata/md5-cache/net-wireless/gqrx-scanner-1.0.2 +++ b/metadata/md5-cache/net-wireless/gqrx-scanner-1.0.2 @@ -9,5 +9,5 @@ LICENSE=MIT PDEPEND=net-wireless/gqrx SLOT=0 SRC_URI=https://github.com/neural75/gqrx-scanner/archive/v1.0.2.tar.gz -> gqrx-scanner-1.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6a81f5b11fe395a7319153e85457d5ab diff --git a/metadata/md5-cache/net-wireless/gr-ieee802154-0.0_p20210719-r3 b/metadata/md5-cache/net-wireless/gr-ieee802154-0.0_p20210719-r3 index 54029d29e924..cd1e1b1c0509 100644 --- a/metadata/md5-cache/net-wireless/gr-ieee802154-0.0_p20210719-r3 +++ b/metadata/md5-cache/net-wireless/gr-ieee802154-0.0_p20210719-r3 @@ -12,5 +12,5 @@ RDEPEND=net-wireless/gnuradio:0=[python_single_target_python3_9(-)?,python_singl REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0/0.0_p20210719 SRC_URI=https://github.com/bastibl/gr-ieee802-15-4/archive/1a2999ce2778df279870f028a4ce15d94e60fbd9.tar.gz -> gr-ieee802154-0.0_p20210719.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e0326270231a968f7099b54e051aba54 diff --git a/metadata/md5-cache/net-wireless/gr-ieee802154-9999 b/metadata/md5-cache/net-wireless/gr-ieee802154-9999 index cd2c5fae8393..6d28a3915dad 100644 --- a/metadata/md5-cache/net-wireless/gr-ieee802154-9999 +++ b/metadata/md5-cache/net-wireless/gr-ieee802154-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=net-wireless/gnuradio:0=[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] python_single_target_python3_9? ( dev-libs/boost:=[python,python_targets_python3_9(-)] dev-python/pybind11[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-libs/boost:=[python,python_targets_python3_10(-)] dev-python/pybind11[python_targets_python3_10(-)] ) dev-libs/gmp:= dev-libs/spdlog:= sci-libs/volk:= python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ab481424ba9d769f95eaa33f040bccb1 diff --git a/metadata/md5-cache/net-wireless/gr-iio-0.3_p20210726-r1 b/metadata/md5-cache/net-wireless/gr-iio-0.3_p20210726-r1 index 62f923cf227c..907bd1d5fcc1 100644 --- a/metadata/md5-cache/net-wireless/gr-iio-0.3_p20210726-r1 +++ b/metadata/md5-cache/net-wireless/gr-iio-0.3_p20210726-r1 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://github.com/analogdevicesinc/gr-iio/archive/407865f89b92daa89fec5c2b3c0e44bb422ef9d3.tar.gz -> gr-iio-0.3_p20210726.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8dd84ac65a87d815f26b656109a31abd diff --git a/metadata/md5-cache/net-wireless/gr-iio-9999 b/metadata/md5-cache/net-wireless/gr-iio-9999 index 8b0bcc873839..d2e695441bdd 100644 --- a/metadata/md5-cache/net-wireless/gr-iio-9999 +++ b/metadata/md5-cache/net-wireless/gr-iio-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-libs/boost:=[python,python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-libs/boost:=[python,python_targets_python3_10(-)] ) net-wireless/gnuradio:0=[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] !net-wireless/gnuradio[iio(-)] dev-libs/boost:= net-libs/libiio:= dev-libs/gmp sci-libs/volk:= net-libs/libad9361-iio:= REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8dd84ac65a87d815f26b656109a31abd diff --git a/metadata/md5-cache/net-wireless/gr-iqbal-0.38.2_p20210108 b/metadata/md5-cache/net-wireless/gr-iqbal-0.38.2_p20210108 index fd591d9f9fce..442fa7e8f456 100644 --- a/metadata/md5-cache/net-wireless/gr-iqbal-0.38.2_p20210108 +++ b/metadata/md5-cache/net-wireless/gr-iqbal-0.38.2_p20210108 @@ -12,5 +12,5 @@ RDEPEND=>=net-wireless/gnuradio-3.9.0.0:0=[python_single_target_python3_9(-)?,py REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0/0.38.2_p20210108 SRC_URI=https://github.com/osmocom/gr-iqbal/archive/fbee239a6fb36dd2fb564f6e6a0d393c4bc844db.tar.gz -> gr-iqbal-0.38.2_p20210108.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ec07c82e123c8b876f4cd9b66fef994 diff --git a/metadata/md5-cache/net-wireless/gr-iqbal-9999 b/metadata/md5-cache/net-wireless/gr-iqbal-9999 index 176b427f2091..5155ab2983f8 100644 --- a/metadata/md5-cache/net-wireless/gr-iqbal-9999 +++ b/metadata/md5-cache/net-wireless/gr-iqbal-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=net-wireless/gnuradio-3.9.0.0:0=[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] net-libs/libosmo-dsp:= dev-libs/boost:= python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ec07c82e123c8b876f4cd9b66fef994 diff --git a/metadata/md5-cache/net-wireless/gr-osmosdr-0.2.3_p20210128-r1 b/metadata/md5-cache/net-wireless/gr-osmosdr-0.2.3_p20210128-r1 index 2ae59692a783..e86e9a4f7b31 100644 --- a/metadata/md5-cache/net-wireless/gr-osmosdr-0.2.3_p20210128-r1 +++ b/metadata/md5-cache/net-wireless/gr-osmosdr-0.2.3_p20210128-r1 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0/0.2.3_p20210128 SRC_URI=https://github.com/osmocom/gr-osmosdr/archive/a100eb024c0210b95e4738b6efd836d48225bd03.tar.gz -> gr-osmosdr-0.2.3_p20210128.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2dce2e12100ceb3fcfb688c94e0eff72 diff --git a/metadata/md5-cache/net-wireless/gr-osmosdr-0.2.4 b/metadata/md5-cache/net-wireless/gr-osmosdr-0.2.4 index b70785ff2bcf..7eb750245a88 100644 --- a/metadata/md5-cache/net-wireless/gr-osmosdr-0.2.4 +++ b/metadata/md5-cache/net-wireless/gr-osmosdr-0.2.4 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0/0.2.4 SRC_URI=https://github.com/osmocom/gr-osmosdr/archive/v0.2.4.tar.gz -> gr-osmosdr-0.2.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0679f7ec408a91109eb039a0f331591b diff --git a/metadata/md5-cache/net-wireless/gr-osmosdr-9999 b/metadata/md5-cache/net-wireless/gr-osmosdr-9999 index 879dd8d2b641..99fbf2413039 100644 --- a/metadata/md5-cache/net-wireless/gr-osmosdr-9999 +++ b/metadata/md5-cache/net-wireless/gr-osmosdr-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) dev-libs/boost:= dev-libs/log4cpp net-wireless/gnuradio:0=[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] sci-libs/volk:= airspy? ( net-wireless/airspy ) bladerf? ( >=net-wireless/bladerf-2018.08_rc1:= ) hackrf? ( net-libs/libhackrf:= ) iqbalance? ( net-wireless/gr-iqbal:=[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] ) rtlsdr? ( >=net-wireless/rtl-sdr-0.5.4:= ) sdrplay? ( net-wireless/sdrplay ) soapy? ( net-wireless/soapysdr:= ) uhd? ( net-wireless/uhd:=[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] ) xtrx? ( net-wireless/libxtrx ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=20653e02959940ce70e249a9372d0014 diff --git a/metadata/md5-cache/net-wireless/gr-paint-0.0_p20220320-r1 b/metadata/md5-cache/net-wireless/gr-paint-0.0_p20220320-r1 index ad79535432d9..4735fba34a42 100644 --- a/metadata/md5-cache/net-wireless/gr-paint-0.0_p20220320-r1 +++ b/metadata/md5-cache/net-wireless/gr-paint-0.0_p20220320-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=https://github.com/drmpeg/gr-paint/archive/6cf1568eb9e32c25bf6414ad45f75048a5a2b74c.tar.gz -> gr-paint-0.0_p20220320.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ad0e44b78d121d4fa1f8d77e8b55229 diff --git a/metadata/md5-cache/net-wireless/gr-rds-0.0_p20220804-r1 b/metadata/md5-cache/net-wireless/gr-rds-0.0_p20220804-r1 index d80504a20354..0dbf41efccae 100644 --- a/metadata/md5-cache/net-wireless/gr-rds-0.0_p20220804-r1 +++ b/metadata/md5-cache/net-wireless/gr-rds-0.0_p20220804-r1 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0/0.0_p20220804 SRC_URI=https://github.com/bastibl/gr-rds/archive/f3646d04c138dc3279528808dcf6f847887e4a4f.tar.gz -> gr-rds-0.0_p20220804.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=584efb16c86f52e5bf825f55f7f55130 diff --git a/metadata/md5-cache/net-wireless/gr-rds-9999 b/metadata/md5-cache/net-wireless/gr-rds-9999 index fc918be6774a..a0f9748d7aef 100644 --- a/metadata/md5-cache/net-wireless/gr-rds-9999 +++ b/metadata/md5-cache/net-wireless/gr-rds-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-libs/boost:=[python,python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-libs/boost:=[python,python_targets_python3_10(-)] ) net-wireless/gnuradio:0=[python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=584efb16c86f52e5bf825f55f7f55130 diff --git a/metadata/md5-cache/net-wireless/gr-scopy-0.0_p20220602 b/metadata/md5-cache/net-wireless/gr-scopy-0.0_p20220602 index 0840985957e4..0089bfa12be3 100644 --- a/metadata/md5-cache/net-wireless/gr-scopy-0.0_p20220602 +++ b/metadata/md5-cache/net-wireless/gr-scopy-0.0_p20220602 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://github.com/analogdevicesinc/gr-scopy/archive/a69ccb22578621a69acc187fc0d006b5a030a744.tar.gz -> gr-scopy-0.0_p20220602.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e38f04bffda821fe09611a8f38b690da diff --git a/metadata/md5-cache/net-wireless/gr-scopy-9999 b/metadata/md5-cache/net-wireless/gr-scopy-9999 index b835236a42dd..84e380374010 100644 --- a/metadata/md5-cache/net-wireless/gr-scopy-9999 +++ b/metadata/md5-cache/net-wireless/gr-scopy-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) >=net-wireless/gnuradio-3.9.0.0:=[analog] sci-libs/volk:= REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e38f04bffda821fe09611a8f38b690da diff --git a/metadata/md5-cache/net-wireless/hackrf-tools-2022.09.1 b/metadata/md5-cache/net-wireless/hackrf-tools-2022.09.1 index 8a2f3901fb83..08dceb36ef34 100644 --- a/metadata/md5-cache/net-wireless/hackrf-tools-2022.09.1 +++ b/metadata/md5-cache/net-wireless/hackrf-tools-2022.09.1 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=~net-libs/libhackrf-2022.09.1:= sci-libs/fftw:3.0= SLOT=0 SRC_URI=https://github.com/greatscottgadgets/hackrf/releases/download/v2022.09.1/hackrf-2022.09.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fc1bf1f472e913bbc15f691589159669 diff --git a/metadata/md5-cache/net-wireless/hackrf-tools-2023.01.1 b/metadata/md5-cache/net-wireless/hackrf-tools-2023.01.1 index c826f0d5eb70..d7cf76bf2a9e 100644 --- a/metadata/md5-cache/net-wireless/hackrf-tools-2023.01.1 +++ b/metadata/md5-cache/net-wireless/hackrf-tools-2023.01.1 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=~net-libs/libhackrf-2023.01.1:= sci-libs/fftw:3.0= SLOT=0 SRC_URI=https://github.com/greatscottgadgets/hackrf/releases/download/v2023.01.1/hackrf-2023.01.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1971958fba35afda494af8e246319870 diff --git a/metadata/md5-cache/net-wireless/hackrf-tools-9999 b/metadata/md5-cache/net-wireless/hackrf-tools-9999 index 8c5496087246..9ddf735df4d7 100644 --- a/metadata/md5-cache/net-wireless/hackrf-tools-9999 +++ b/metadata/md5-cache/net-wireless/hackrf-tools-9999 @@ -9,5 +9,5 @@ LICENSE=BSD PROPERTIES=live RDEPEND=~net-libs/libhackrf-9999:= sci-libs/fftw:3.0= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fc1bf1f472e913bbc15f691589159669 diff --git a/metadata/md5-cache/net-wireless/inspectrum-0.2.3 b/metadata/md5-cache/net-wireless/inspectrum-0.2.3 index 96fc6610ba34..435548f12d8f 100644 --- a/metadata/md5-cache/net-wireless/inspectrum-0.2.3 +++ b/metadata/md5-cache/net-wireless/inspectrum-0.2.3 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 net-libs/liquid-dsp sci-libs/fftw:3.0= SLOT=0 SRC_URI=https://github.com/miek/inspectrum/archive/v0.2.3.tar.gz -> inspectrum-0.2.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57e78c237a025feac569d8b5d4eabb03 diff --git a/metadata/md5-cache/net-wireless/inspectrum-9999 b/metadata/md5-cache/net-wireless/inspectrum-9999 index 2faa4eec9879..eb67a163fb61 100644 --- a/metadata/md5-cache/net-wireless/inspectrum-9999 +++ b/metadata/md5-cache/net-wireless/inspectrum-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ PROPERTIES=live RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 net-libs/liquid-dsp sci-libs/fftw:3.0= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57e78c237a025feac569d8b5d4eabb03 diff --git a/metadata/md5-cache/net-wireless/liblms7002m-0.0_p20200518-r1 b/metadata/md5-cache/net-wireless/liblms7002m-0.0_p20200518-r1 index 15e27d08f553..96c4a291c24b 100644 --- a/metadata/md5-cache/net-wireless/liblms7002m-0.0_p20200518-r1 +++ b/metadata/md5-cache/net-wireless/liblms7002m-0.0_p20200518-r1 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2.1 SLOT=0/0.0_p20200518 SRC_URI=https://github.com/xtrx-sdr/liblms7002m/archive/b07761b7386181f0e6a35158456b75bce14f2aca.tar.gz -> liblms7002m-0.0_p20200518.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=933b2d10a407864ced613c8347a778ce diff --git a/metadata/md5-cache/net-wireless/liblms7002m-9999 b/metadata/md5-cache/net-wireless/liblms7002m-9999 index 523e0f222b66..ca23e5258391 100644 --- a/metadata/md5-cache/net-wireless/liblms7002m-9999 +++ b/metadata/md5-cache/net-wireless/liblms7002m-9999 @@ -7,5 +7,5 @@ INHERIT=cmake python-any-r1 git-r3 LICENSE=LGPL-2.1 PROPERTIES=live SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=933b2d10a407864ced613c8347a778ce diff --git a/metadata/md5-cache/net-wireless/libusb3380-0.0_p20190125 b/metadata/md5-cache/net-wireless/libusb3380-0.0_p20190125 index fef382a280ec..b9b5da0971ce 100644 --- a/metadata/md5-cache/net-wireless/libusb3380-0.0_p20190125 +++ b/metadata/md5-cache/net-wireless/libusb3380-0.0_p20190125 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/xtrx-sdr/libusb3380/archive/c83d1e93eb3a5b8b6a9db41c2613b206f344f825.tar.gz -> libusb3380-0.0_p20190125.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d5c59bc80dd34e80e060f002824dc352 diff --git a/metadata/md5-cache/net-wireless/libusb3380-9999 b/metadata/md5-cache/net-wireless/libusb3380-9999 index 85adb5ceab29..be2e686052bc 100644 --- a/metadata/md5-cache/net-wireless/libusb3380-9999 +++ b/metadata/md5-cache/net-wireless/libusb3380-9999 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 PROPERTIES=live RDEPEND=virtual/libusb:1 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d5c59bc80dd34e80e060f002824dc352 diff --git a/metadata/md5-cache/net-wireless/libxtrx-0.0_p20201202 b/metadata/md5-cache/net-wireless/libxtrx-0.0_p20201202 index 66fb4340bc85..36ba8a1ed8ee 100644 --- a/metadata/md5-cache/net-wireless/libxtrx-0.0_p20201202 +++ b/metadata/md5-cache/net-wireless/libxtrx-0.0_p20201202 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=net-wireless/libxtrxll:= net-wireless/libxtrxdsp:= net-wireless/liblms7002m:= SLOT=0/0.0_p20201202 SRC_URI=https://github.com/xtrx-sdr/libxtrx/archive/acb0b1cf7ab92744034767a04c1d4b4c281b840f.tar.gz -> libxtrx-0.0_p20201202.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2a9d84cfac866f18533028012a0d88d diff --git a/metadata/md5-cache/net-wireless/libxtrx-9999 b/metadata/md5-cache/net-wireless/libxtrx-9999 index 8f118f6d8620..20eea314142c 100644 --- a/metadata/md5-cache/net-wireless/libxtrx-9999 +++ b/metadata/md5-cache/net-wireless/libxtrx-9999 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 PROPERTIES=live RDEPEND=net-wireless/libxtrxll:= net-wireless/libxtrxdsp:= net-wireless/liblms7002m:= SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2a9d84cfac866f18533028012a0d88d diff --git a/metadata/md5-cache/net-wireless/libxtrxdsp-0.0_p20200830 b/metadata/md5-cache/net-wireless/libxtrxdsp-0.0_p20200830 index cdea9889c0a9..5387a8637865 100644 --- a/metadata/md5-cache/net-wireless/libxtrxdsp-0.0_p20200830 +++ b/metadata/md5-cache/net-wireless/libxtrxdsp-0.0_p20200830 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2.1 SLOT=0 SRC_URI=https://github.com/xtrx-sdr/libxtrxdsp/archive/eec28640c0ebd5639b642f07b310a0a0d02d9834.tar.gz -> libxtrxdsp-0.0_p20200830.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa067587194229fee7dd495196a402e2 diff --git a/metadata/md5-cache/net-wireless/libxtrxdsp-9999 b/metadata/md5-cache/net-wireless/libxtrxdsp-9999 index e35e462753b4..967183897bc0 100644 --- a/metadata/md5-cache/net-wireless/libxtrxdsp-9999 +++ b/metadata/md5-cache/net-wireless/libxtrxdsp-9999 @@ -7,5 +7,5 @@ INHERIT=cmake git-r3 LICENSE=LGPL-2.1 PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa067587194229fee7dd495196a402e2 diff --git a/metadata/md5-cache/net-wireless/libxtrxll-0.0_p20201202 b/metadata/md5-cache/net-wireless/libxtrxll-0.0_p20201202 index eb000f576209..06bec789f761 100644 --- a/metadata/md5-cache/net-wireless/libxtrxll-0.0_p20201202 +++ b/metadata/md5-cache/net-wireless/libxtrxll-0.0_p20201202 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=usb3380? ( net-wireless/libusb3380 ) SLOT=0/0.0_p20201202 SRC_URI=https://github.com/xtrx-sdr/libxtrxll/archive/1b6eddfbedc700efb6f7e3c3594e43ac6ff29ea4.tar.gz -> libxtrxll-0.0_p20201202.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f4a02404c0e3a104aa31bcc138c9041a diff --git a/metadata/md5-cache/net-wireless/libxtrxll-9999 b/metadata/md5-cache/net-wireless/libxtrxll-9999 index 2d050b1e9f0c..985f81259698 100644 --- a/metadata/md5-cache/net-wireless/libxtrxll-9999 +++ b/metadata/md5-cache/net-wireless/libxtrxll-9999 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 PROPERTIES=live RDEPEND=usb3380? ( net-wireless/libusb3380 ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f4a02404c0e3a104aa31bcc138c9041a diff --git a/metadata/md5-cache/net-wireless/limesuite-20.10.0 b/metadata/md5-cache/net-wireless/limesuite-20.10.0 index 2f4046b9998c..592c6a65eb74 100644 --- a/metadata/md5-cache/net-wireless/limesuite-20.10.0 +++ b/metadata/md5-cache/net-wireless/limesuite-20.10.0 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=x11-libs/fltk:1 x11-libs/wxGTK:3.0-gtk3 net-wireless/soapysdr:= virtual/opengl virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/myriadrf/LimeSuite/archive/v20.10.0.tar.gz -> limesuite-20.10.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5cdcf00e459a79ee8d17c5684615c307 diff --git a/metadata/md5-cache/net-wireless/lorcon-2020.06.06_p20220216-r1 b/metadata/md5-cache/net-wireless/lorcon-2020.06.06_p20220216-r1 deleted file mode 100644 index 959dceb173b6..000000000000 --- a/metadata/md5-cache/net-wireless/lorcon-2020.06.06_p20220216-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python? ( >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=dev-libs/libnl:3= net-libs/libpcap python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) ) -DESCRIPTION=A generic library for injecting 802.11 frames -EAPI=8 -HOMEPAGE=https://github.com/kismetwireless/lorcon -INHERIT=distutils-r1 -IUSE=python python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux -LICENSE=GPL-2 -RDEPEND=dev-libs/libnl:3= net-libs/libpcap python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) ) -REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 ) ) -SLOT=0 -SRC_URI=https://github.com/kismetwireless/lorcon/archive/4a81d6aaa2c6ac7253ecd182ffe97c6c89411196.tar.gz -> lorcon-2020.06.06_p20220216.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=97558f41ce256bd47ae11d1fd8028178 diff --git a/metadata/md5-cache/net-wireless/lorcon-2020.06.06_p20220216-r2 b/metadata/md5-cache/net-wireless/lorcon-2020.06.06_p20220216-r2 new file mode 100644 index 000000000000..1cb4b4c1b3a3 --- /dev/null +++ b/metadata/md5-cache/net-wireless/lorcon-2020.06.06_p20220216-r2 @@ -0,0 +1,16 @@ +BDEPEND=virtual/pkgconfig python? ( >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) +DEFINED_PHASES=compile install prepare +DEPEND=dev-libs/libnl:3= net-libs/libpcap python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) +DESCRIPTION=A generic library for injecting 802.11 frames +EAPI=8 +HOMEPAGE=https://github.com/kismetwireless/lorcon +INHERIT=distutils-r1 flag-o-matic +IUSE=python python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=dev-libs/libnl:3= net-libs/libpcap python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) +REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) +SLOT=0 +SRC_URI=https://github.com/kismetwireless/lorcon/archive/4a81d6aaa2c6ac7253ecd182ffe97c6c89411196.tar.gz -> lorcon-2020.06.06_p20220216.tar.gz +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=c3cde4301582a25ac8096dc701135a23 diff --git a/metadata/md5-cache/net-wireless/lorcon-9999 b/metadata/md5-cache/net-wireless/lorcon-9999 index e3426eef8fd5..e217670bf1ae 100644 --- a/metadata/md5-cache/net-wireless/lorcon-9999 +++ b/metadata/md5-cache/net-wireless/lorcon-9999 @@ -1,15 +1,15 @@ -BDEPEND=python? ( >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=dev-libs/libnl:3= net-libs/libpcap python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) ) +BDEPEND=virtual/pkgconfig python? ( >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile install prepare unpack +DEPEND=dev-libs/libnl:3= net-libs/libpcap python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) DESCRIPTION=A generic library for injecting 802.11 frames EAPI=8 HOMEPAGE=https://github.com/kismetwireless/lorcon -INHERIT=distutils-r1 git-r3 -IUSE=python python_targets_python3_9 python_targets_python3_10 +INHERIT=distutils-r1 flag-o-matic git-r3 +IUSE=python python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 LICENSE=GPL-2 PROPERTIES=live -RDEPEND=dev-libs/libnl:3= net-libs/libpcap python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) ) -REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 ) ) +RDEPEND=dev-libs/libnl:3= net-libs/libpcap python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) +REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) SLOT=0 -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=97558f41ce256bd47ae11d1fd8028178 +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=c915d28971c77f2ad86bddb6611faf8c diff --git a/metadata/md5-cache/net-wireless/osmo-fl2k-0.1.1-r1 b/metadata/md5-cache/net-wireless/osmo-fl2k-0.1.1-r1 index 3c259bbaa5fe..3390c7c700cd 100644 --- a/metadata/md5-cache/net-wireless/osmo-fl2k-0.1.1-r1 +++ b/metadata/md5-cache/net-wireless/osmo-fl2k-0.1.1-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=virtual/libusb:1 media-sound/sox sys-apps/pv SLOT=0 SRC_URI=https://git.osmocom.org/osmo-fl2k/snapshot/v0.1.1.tar.gz -> osmo-fl2k-0.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fdea7def8f31a27a6ad67974d33f9edd diff --git a/metadata/md5-cache/net-wireless/osmo-fl2k-9999 b/metadata/md5-cache/net-wireless/osmo-fl2k-9999 index b9b2e910a87d..bdc272d662da 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 a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d4c7828d72ee90f296b2170fb41b28b1 diff --git a/metadata/md5-cache/net-wireless/qdmr-0.10.2 b/metadata/md5-cache/net-wireless/qdmr-0.10.2 index 718659a39297..b818cc1a38d2 100644 --- a/metadata/md5-cache/net-wireless/qdmr-0.10.2 +++ b/metadata/md5-cache/net-wireless/qdmr-0.10.2 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=dev-cpp/yaml-cpp:= dev-qt/designer:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 dev-qt/qtgui:5 dev-qt/qtcore:5 dev-qt/qtnetwork:5 dev-qt/qtpositioning:5 dev-qt/qtserialport:5 virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/hmatuschek/qdmr/archive/refs/tags/v0.10.2.tar.gz -> qdmr-0.10.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2bac4377bcf9e45ff700c2b67b5a03a3 diff --git a/metadata/md5-cache/net-wireless/qdmr-0.10.4 b/metadata/md5-cache/net-wireless/qdmr-0.10.4 index 318839360baf..ff54d5b4343b 100644 --- a/metadata/md5-cache/net-wireless/qdmr-0.10.4 +++ b/metadata/md5-cache/net-wireless/qdmr-0.10.4 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=dev-cpp/yaml-cpp:= dev-qt/designer:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 dev-qt/qtgui:5 dev-qt/qtcore:5 dev-qt/qtnetwork:5 dev-qt/qtpositioning:5 dev-qt/qtserialport:5 virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/hmatuschek/qdmr/archive/refs/tags/v0.10.4.tar.gz -> qdmr-0.10.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a59abcef030798e82c2b7e44262b15d6 diff --git a/metadata/md5-cache/net-wireless/qdmr-0.11.1 b/metadata/md5-cache/net-wireless/qdmr-0.11.1 index 576e527fcc57..2daac67a157a 100644 --- a/metadata/md5-cache/net-wireless/qdmr-0.11.1 +++ b/metadata/md5-cache/net-wireless/qdmr-0.11.1 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/yaml-cpp:= dev-qt/qtwidgets:5 dev-qt/qtgui:5 dev-qt/qtcore:5 dev RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hmatuschek/qdmr/archive/refs/tags/v0.11.1.tar.gz -> qdmr-0.11.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d4eedfb7f2f51d592845cc3db42fc089 diff --git a/metadata/md5-cache/net-wireless/qdmr-0.11.2 b/metadata/md5-cache/net-wireless/qdmr-0.11.2 index ea2297b380c4..905f67020026 100644 --- a/metadata/md5-cache/net-wireless/qdmr-0.11.2 +++ b/metadata/md5-cache/net-wireless/qdmr-0.11.2 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/yaml-cpp:= dev-qt/qtwidgets:5 dev-qt/qtgui:5 dev-qt/qtcore:5 dev RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hmatuschek/qdmr/archive/refs/tags/v0.11.2.tar.gz -> qdmr-0.11.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d4eedfb7f2f51d592845cc3db42fc089 diff --git a/metadata/md5-cache/net-wireless/qdmr-9999 b/metadata/md5-cache/net-wireless/qdmr-9999 index 0832ef923681..ef4027d663d6 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/qtwidgets:5 dev-qt/qtgui:5 dev-qt/qtcore:5 dev-qt/qtnetwork:5 dev-qt/qtpositioning:5 dev-qt/qtserialport:5 virtual/libusb:1 RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d4eedfb7f2f51d592845cc3db42fc089 diff --git a/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p2020802 b/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p2020802 index b70752787cb4..9ed14d072d98 100644 --- a/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p2020802 +++ b/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p2020802 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/osmocom/rtl-sdr/archive/ed0317e6a58c098874ac58b769cf2e609c18d9a5.tar.gz -> rtl-sdr-0.6.0_p2020802.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=93970a7a1049575ec7c60ee6338db135 diff --git a/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p2020802-r1 b/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p2020802-r1 index 58dd78d87760..e40861324414 100644 --- a/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p2020802-r1 +++ b/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p2020802-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/osmocom/rtl-sdr/archive/ed0317e6a58c098874ac58b769cf2e609c18d9a5.tar.gz -> rtl-sdr-0.6.0_p2020802.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7e04648e526a3f005d7812ff20c951e6 diff --git a/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p20221217 b/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p20221217 index 0a7570f0ebdf..d7eaffdc8012 100644 --- a/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p20221217 +++ b/metadata/md5-cache/net-wireless/rtl-sdr-0.6.0_p20221217 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/osmocom/rtl-sdr/archive/142325a93c6ad70f851f43434acfdf75e12dfe03.tar.gz -> rtl-sdr-0.6.0_p20221217.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6ab2c3257dfb71fc99b16c1809913b17 diff --git a/metadata/md5-cache/net-wireless/rtl-sdr-9999 b/metadata/md5-cache/net-wireless/rtl-sdr-9999 index e87fc0628204..a25526afcfdd 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 PROPERTIES=live RDEPEND=virtual/libusb:1 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6ab2c3257dfb71fc99b16c1809913b17 diff --git a/metadata/md5-cache/net-wireless/rtl_433-21.12 b/metadata/md5-cache/net-wireless/rtl_433-21.12 index 15cdaebfdbde..9a82cd0e73b4 100644 --- a/metadata/md5-cache/net-wireless/rtl_433-21.12 +++ b/metadata/md5-cache/net-wireless/rtl_433-21.12 @@ -12,5 +12,5 @@ RDEPEND=rtlsdr? ( net-wireless/rtl-sdr:= virtual/libusb:1 ) soapysdr? ( net-wire RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/merbanan/rtl_433/archive/21.12.tar.gz -> rtl_433-21.12.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1987327f1e50e5e69ac3322f795afd13 diff --git a/metadata/md5-cache/net-wireless/rtl_433-22.11 b/metadata/md5-cache/net-wireless/rtl_433-22.11 index 33cef2697cda..367facb7b6b5 100644 --- a/metadata/md5-cache/net-wireless/rtl_433-22.11 +++ b/metadata/md5-cache/net-wireless/rtl_433-22.11 @@ -12,5 +12,5 @@ RDEPEND=rtlsdr? ( net-wireless/rtl-sdr:= virtual/libusb:1 ) soapysdr? ( net-wire RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/merbanan/rtl_433/archive/105342a33271bac6837d06aa86c23eec9e9ecb6a.tar.gz -> rtl_433-22.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ad31c0620e244cb041d045cb4863cd66 diff --git a/metadata/md5-cache/net-wireless/rtl_433-9999 b/metadata/md5-cache/net-wireless/rtl_433-9999 index 29d7ba038253..a1d5a2917393 100644 --- a/metadata/md5-cache/net-wireless/rtl_433-9999 +++ b/metadata/md5-cache/net-wireless/rtl_433-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/openssl:= rtlsdr? ( net-wireless/rtl-sdr:= virtual/libusb:1 ) soapysdr? ( net-wireless/soapysdr:= ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e799d957b7e6d8638067192c8b29e84 diff --git a/metadata/md5-cache/net-wireless/sigutils-0.1.0-r1 b/metadata/md5-cache/net-wireless/sigutils-0.1.0-r1 index 76f9ee9212ef..8a7ee32baf41 100644 --- a/metadata/md5-cache/net-wireless/sigutils-0.1.0-r1 +++ b/metadata/md5-cache/net-wireless/sigutils-0.1.0-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=media-libs/libsndfile sci-libs/fftw:3.0= sci-libs/volk:= SLOT=0 SRC_URI=https://github.com/BatchDrake/sigutils/archive/v0.1.0.tar.gz -> sigutils-0.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f2c9e6f073c1561f144eb478261f7fb0 diff --git a/metadata/md5-cache/net-wireless/soapybladerf-0.4.1 b/metadata/md5-cache/net-wireless/soapybladerf-0.4.1 index eaee6388ae22..a71a3f59e1fc 100644 --- a/metadata/md5-cache/net-wireless/soapybladerf-0.4.1 +++ b/metadata/md5-cache/net-wireless/soapybladerf-0.4.1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=net-wireless/soapysdr:= >=net-wireless/bladerf-2018.08:= SLOT=0 SRC_URI=https://github.com/pothosware/SoapyBladeRF/archive/soapy-bladerf-0.4.1.tar.gz -> soapybladerf-0.4.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8e4fa4d0a5313f56841c261a7a0b670 diff --git a/metadata/md5-cache/net-wireless/soapybladerf-9999 b/metadata/md5-cache/net-wireless/soapybladerf-9999 index 366df97f7707..7a1a0d3d3aea 100644 --- a/metadata/md5-cache/net-wireless/soapybladerf-9999 +++ b/metadata/md5-cache/net-wireless/soapybladerf-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=net-wireless/soapysdr:= >=net-wireless/bladerf-2018.08:= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5acb0b25356e2b661e84c0ec68f9438f diff --git a/metadata/md5-cache/net-wireless/soapyhackrf-0.3.4 b/metadata/md5-cache/net-wireless/soapyhackrf-0.3.4 index 6ea58a64fa05..eea830988fac 100644 --- a/metadata/md5-cache/net-wireless/soapyhackrf-0.3.4 +++ b/metadata/md5-cache/net-wireless/soapyhackrf-0.3.4 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=net-wireless/soapysdr:= net-libs/libhackrf:= SLOT=0 SRC_URI=https://github.com/pothosware/SoapyHackRF/archive/soapy-hackrf-0.3.4.tar.gz -> soapyhackrf-0.3.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a770c770d3063a1fcb48c8a70304eff3 diff --git a/metadata/md5-cache/net-wireless/soapyhackrf-9999 b/metadata/md5-cache/net-wireless/soapyhackrf-9999 index 04551ef022cc..a96da2bfdf8e 100644 --- a/metadata/md5-cache/net-wireless/soapyhackrf-9999 +++ b/metadata/md5-cache/net-wireless/soapyhackrf-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=net-wireless/soapysdr:= net-libs/libhackrf:= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a770c770d3063a1fcb48c8a70304eff3 diff --git a/metadata/md5-cache/net-wireless/soapyplutosdr-0.2.1 b/metadata/md5-cache/net-wireless/soapyplutosdr-0.2.1 index 2b26558e998d..db5ee28d615d 100644 --- a/metadata/md5-cache/net-wireless/soapyplutosdr-0.2.1 +++ b/metadata/md5-cache/net-wireless/soapyplutosdr-0.2.1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1+ RDEPEND=net-wireless/soapysdr:= net-libs/libiio:= net-libs/libad9361-iio:= SLOT=0 SRC_URI=https://github.com/pothosware/SoapyPlutoSDR/archive/782650597b18f311cc97fbb7c6813539e6adef16.tar.gz -> soapyplutosdr-0.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d435b4612ac96141233ec78b58582fe0 diff --git a/metadata/md5-cache/net-wireless/soapyplutosdr-9999 b/metadata/md5-cache/net-wireless/soapyplutosdr-9999 index 370ce0893629..351d34b1c467 100644 --- a/metadata/md5-cache/net-wireless/soapyplutosdr-9999 +++ b/metadata/md5-cache/net-wireless/soapyplutosdr-9999 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1+ PROPERTIES=live RDEPEND=net-wireless/soapysdr:= net-libs/libiio:= net-libs/libad9361-iio:= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c6d68bea9ec0a86b626231e936722f9e diff --git a/metadata/md5-cache/net-wireless/soapyremote-0.5.2 b/metadata/md5-cache/net-wireless/soapyremote-0.5.2 index 705ff7df56ce..1126ed41887f 100644 --- a/metadata/md5-cache/net-wireless/soapyremote-0.5.2 +++ b/metadata/md5-cache/net-wireless/soapyremote-0.5.2 @@ -10,5 +10,5 @@ LICENSE=Boost-1.0 RDEPEND=net-wireless/soapysdr net-dns/avahi SLOT=0 SRC_URI=https://github.com/pothosware/SoapyRemote/archive/soapy-remote-0.5.2.tar.gz -> soapyremote-0.5.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bcc96fd8399a425ecee6065864e895e3 diff --git a/metadata/md5-cache/net-wireless/soapyremote-9999 b/metadata/md5-cache/net-wireless/soapyremote-9999 index cc9e3473e2d2..00f43426ef59 100644 --- a/metadata/md5-cache/net-wireless/soapyremote-9999 +++ b/metadata/md5-cache/net-wireless/soapyremote-9999 @@ -9,5 +9,5 @@ LICENSE=Boost-1.0 PROPERTIES=live RDEPEND=net-wireless/soapysdr net-dns/avahi SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bcc96fd8399a425ecee6065864e895e3 diff --git a/metadata/md5-cache/net-wireless/soapyrtlsdr-0.3.2 b/metadata/md5-cache/net-wireless/soapyrtlsdr-0.3.2 index ad889fe1a0b9..a13dd8f0931f 100644 --- a/metadata/md5-cache/net-wireless/soapyrtlsdr-0.3.2 +++ b/metadata/md5-cache/net-wireless/soapyrtlsdr-0.3.2 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=net-wireless/soapysdr:= net-wireless/rtl-sdr SLOT=0 SRC_URI=https://github.com/pothosware/SoapyRTLSDR/archive/soapy-rtl-sdr-0.3.2.tar.gz -> soapyrtlsdr-0.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cfbe05e41ea73e0136bb259b0383be61 diff --git a/metadata/md5-cache/net-wireless/soapyrtlsdr-9999 b/metadata/md5-cache/net-wireless/soapyrtlsdr-9999 index 4378272a7630..36749b048397 100644 --- a/metadata/md5-cache/net-wireless/soapyrtlsdr-9999 +++ b/metadata/md5-cache/net-wireless/soapyrtlsdr-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=net-wireless/soapysdr:= net-wireless/rtl-sdr SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=09eb0e3da244006fac1dc660476e4502 diff --git a/metadata/md5-cache/net-wireless/soapysdr-0.7.2 b/metadata/md5-cache/net-wireless/soapysdr-0.7.2 index d75ef664a12d..9bb80b262e43 100644 --- a/metadata/md5-cache/net-wireless/soapysdr-0.7.2 +++ b/metadata/md5-cache/net-wireless/soapysdr-0.7.2 @@ -13,5 +13,5 @@ RDEPEND=python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 ) ) SLOT=0/0.7.2 SRC_URI=https://github.com/pothosware/SoapySDR/archive/soapy-sdr-0.7.2.tar.gz -> soapysdr-0.7.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e92d3ba3c780166c56ea4124e2f9484b diff --git a/metadata/md5-cache/net-wireless/soapysdr-9999 b/metadata/md5-cache/net-wireless/soapysdr-9999 index 96778a86b30d..9d5451c9f5b0 100644 --- a/metadata/md5-cache/net-wireless/soapysdr-9999 +++ b/metadata/md5-cache/net-wireless/soapysdr-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) ) REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 ) ) SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=45ad27c3bde21e68785757e530544c44 diff --git a/metadata/md5-cache/net-wireless/soapysdrplay-20220120 b/metadata/md5-cache/net-wireless/soapysdrplay-20220120 index 544ddc5972ee..a19e9f384923 100644 --- a/metadata/md5-cache/net-wireless/soapysdrplay-20220120 +++ b/metadata/md5-cache/net-wireless/soapysdrplay-20220120 @@ -10,5 +10,5 @@ LICENSE=Boost-1.0 RDEPEND=net-wireless/soapysdr >=net-wireless/sdrplay-3.07 SLOT=0 SRC_URI=https://github.com/pothosware/SoapySDRPlay/archive/b789d5985b900973c81c69aa04cb3c7ebe620a75.tar.gz -> soapysdrplay-20220120.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ee02d6968ca089d322c9e5895761463 diff --git a/metadata/md5-cache/net-wireless/soapysdrplay-9999 b/metadata/md5-cache/net-wireless/soapysdrplay-9999 index 18d437aa6b09..edd660f11a4d 100644 --- a/metadata/md5-cache/net-wireless/soapysdrplay-9999 +++ b/metadata/md5-cache/net-wireless/soapysdrplay-9999 @@ -9,5 +9,5 @@ LICENSE=Boost-1.0 PROPERTIES=live RDEPEND=net-wireless/soapysdr >=net-wireless/sdrplay-3.07 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ee02d6968ca089d322c9e5895761463 diff --git a/metadata/md5-cache/net-wireless/soapyuhd-0.4.1 b/metadata/md5-cache/net-wireless/soapyuhd-0.4.1 index bc7d9a11fdba..595696a24454 100644 --- a/metadata/md5-cache/net-wireless/soapyuhd-0.4.1 +++ b/metadata/md5-cache/net-wireless/soapyuhd-0.4.1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=net-wireless/soapysdr:= net-wireless/uhd:= dev-libs/boost:= SLOT=0 SRC_URI=https://github.com/pothosware/SoapyUHD/archive/soapy-uhd-0.4.1.tar.gz -> soapyuhd-0.4.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fb4a4899cf460f7bf3990882d7bd4077 diff --git a/metadata/md5-cache/net-wireless/soapyuhd-9999 b/metadata/md5-cache/net-wireless/soapyuhd-9999 index 5ffa7879dbf1..24727c35a870 100644 --- a/metadata/md5-cache/net-wireless/soapyuhd-9999 +++ b/metadata/md5-cache/net-wireless/soapyuhd-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=net-wireless/soapysdr:= net-wireless/uhd:= dev-libs/boost:= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3b2f91486361c2ab2c55c62fd3abacd8 diff --git a/metadata/md5-cache/net-wireless/suscan-0.1.0-r1 b/metadata/md5-cache/net-wireless/suscan-0.1.0-r1 index f92cb3605148..88d4668a2875 100644 --- a/metadata/md5-cache/net-wireless/suscan-0.1.0-r1 +++ b/metadata/md5-cache/net-wireless/suscan-0.1.0-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=media-libs/libsndfile dev-libs/libxml2 net-wireless/sigutils net-wireless/soapysdr:= sci-libs/fftw:3.0= sci-libs/volk:= SLOT=0 SRC_URI=https://github.com/BatchDrake/suscan/archive/v0.1.0.tar.gz -> suscan-0.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=925a9c99c7dbe8027b96e7054e30625e diff --git a/metadata/md5-cache/net-wireless/ubertooth-2018.12.1 b/metadata/md5-cache/net-wireless/ubertooth-2018.12.1 index 15c024a676db..73e6cdc9f5ad 100644 --- a/metadata/md5-cache/net-wireless/ubertooth-2018.12.1 +++ b/metadata/md5-cache/net-wireless/ubertooth-2018.12.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=bluez? ( net-wireless/bluez:= ) >=net-libs/libbtbb-2018.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/2018-12-R1/ubertooth-2018-12-R1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3068462e1567914cfc3e0eca0e88f5d9 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 149c5d4f8ae5..3c9404fb72ef 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 a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=33ef5b62e0615566f44a4468aef46fd8 diff --git a/metadata/md5-cache/net-wireless/ubertooth-9999 b/metadata/md5-cache/net-wireless/ubertooth-9999 index dc843d6e0abf..1ea862ad2c49 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 a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=33ef5b62e0615566f44a4468aef46fd8 diff --git a/metadata/md5-cache/net-wireless/uhd-4.1.0.5 b/metadata/md5-cache/net-wireless/uhd-4.1.0.5 index 27d64ea06e96..3105f4114a17 100644 --- a/metadata/md5-cache/net-wireless/uhd-4.1.0.5 +++ b/metadata/md5-cache/net-wireless/uhd-4.1.0.5 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0/4.1.0 SRC_URI=https://github.com/EttusResearch/uhd/archive/v4.1.0.5.tar.gz -> EttusResearch-UHD-4.1.0.5.tar.gz https://github.com/EttusResearch/uhd/releases/download/v4.1.0.5/uhd-images_4.1.0.5.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a31a20851d347dfaaba06f9bdd91e2da diff --git a/metadata/md5-cache/net-wireless/uhd-4.2.0.0 b/metadata/md5-cache/net-wireless/uhd-4.2.0.0 index 76cb0630cf56..781b4bbdfe02 100644 --- a/metadata/md5-cache/net-wireless/uhd-4.2.0.0 +++ b/metadata/md5-cache/net-wireless/uhd-4.2.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0/4.2.0 SRC_URI=https://github.com/EttusResearch/uhd/archive/v4.2.0.0.tar.gz -> EttusResearch-UHD-4.2.0.0.tar.gz https://github.com/EttusResearch/uhd/releases/download/v4.2.0.0/uhd-images_4.2.0.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5d8db95cba41fcfae7f025980d94e6c3 diff --git a/metadata/md5-cache/net-wireless/uhd-4.3.0.0 b/metadata/md5-cache/net-wireless/uhd-4.3.0.0 index 7af18a0cc413..49a1ebd86a0f 100644 --- a/metadata/md5-cache/net-wireless/uhd-4.3.0.0 +++ b/metadata/md5-cache/net-wireless/uhd-4.3.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0/4.3.0 SRC_URI=https://github.com/EttusResearch/uhd/archive/v4.3.0.0.tar.gz -> EttusResearch-UHD-4.3.0.0.tar.gz https://github.com/EttusResearch/uhd/releases/download/v4.3.0.0/uhd-images_4.3.0.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d27443126a76f017d1c6843a2abc68d8 diff --git a/metadata/md5-cache/net-wireless/unifi-7.1.68 b/metadata/md5-cache/net-wireless/unifi-7.1.68 deleted file mode 100644 index 80addd32ca32..000000000000 --- a/metadata/md5-cache/net-wireless/unifi-7.1.68 +++ /dev/null @@ -1,16 +0,0 @@ -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:1.8 >=dev-java/java-config-2.2.0-r3 -RESTRICT=bindist mirror -SLOT=0/7.1 -SRC_URI=https://dl.ui.com/unifi/7.1.68-124045abd4/UniFi.unix.zip -> unifi-7.1.68.zip -_eclasses_=java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=0fb64279a83f617c13435e0586ed3b3c diff --git a/metadata/md5-cache/net-wireless/unifi-7.2.95 b/metadata/md5-cache/net-wireless/unifi-7.2.95 deleted file mode 100644 index 86078a6648f1..000000000000 --- a/metadata/md5-cache/net-wireless/unifi-7.2.95 +++ /dev/null @@ -1,16 +0,0 @@ -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:1.8 >=dev-java/java-config-2.2.0-r3 -RESTRICT=bindist mirror -SLOT=0/7.2 -SRC_URI=https://dl.ui.com/unifi/7.2.95-e5951ac73c/UniFi.unix.zip -> unifi-7.2.95.zip -_eclasses_=java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=0cbc572bb91f237efebb6252bdf7558d diff --git a/metadata/md5-cache/net-wireless/unifi-7.3.76-r1 b/metadata/md5-cache/net-wireless/unifi-7.3.76-r1 deleted file mode 100644 index f75ce6ade4c8..000000000000 --- a/metadata/md5-cache/net-wireless/unifi-7.3.76-r1 +++ /dev/null @@ -1,16 +0,0 @@ -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:11 >=dev-java/java-config-2.2.0-r3 -RESTRICT=bindist mirror -SLOT=0/7.3 -SRC_URI=https://dl.ui.com/unifi/7.3.76-4bee620529/UniFi.unix.zip -> unifi-7.3.76.zip -_eclasses_=java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=9090d7528ffe2536999c55867a4f704f diff --git a/metadata/md5-cache/net-wireless/unifi-7.3.83 b/metadata/md5-cache/net-wireless/unifi-7.3.83 index 2ce051ab0a34..5b5d447d09d8 100644 --- a/metadata/md5-cache/net-wireless/unifi-7.3.83 +++ b/metadata/md5-cache/net-wireless/unifi-7.3.83 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://www.ubnt.com INHERIT=java-pkg-2 readme.gentoo-r1 systemd IUSE=systemd system-mongodb -KEYWORDS=-* ~amd64 ~arm64 +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:11 >=dev-java/java-config-2.2.0-r3 RESTRICT=bindist mirror SLOT=0/7.3 SRC_URI=https://dl.ui.com/unifi/7.3.83/UniFi.unix.zip -> unifi-7.3.83.zip _eclasses_=java-pkg-2 a6b42ffd8b6827abbd8cf09329c2c8fb java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=d16d89b578bb96c30c04153f8c858e76 +_md5_=069744fd237e85e0ea6fd7d93ab8f328 diff --git a/metadata/md5-cache/sci-astronomy/Manifest.gz b/metadata/md5-cache/sci-astronomy/Manifest.gz index 808449d70a6d..221b2ba17b79 100644 Binary files a/metadata/md5-cache/sci-astronomy/Manifest.gz and b/metadata/md5-cache/sci-astronomy/Manifest.gz differ diff --git a/metadata/md5-cache/sci-astronomy/calcmysky-0.2.1 b/metadata/md5-cache/sci-astronomy/calcmysky-0.2.1 index 8e5530adb221..1082b1b87729 100644 --- a/metadata/md5-cache/sci-astronomy/calcmysky-0.2.1 +++ b/metadata/md5-cache/sci-astronomy/calcmysky-0.2.1 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/eigen:3 media-libs/glm qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5[-gl REQUIRED_USE=|| ( qt5 qt6 ) SLOT=0/14 SRC_URI=https://github.com/10110111/CalcMySky/archive/refs/tags/v0.2.1.tar.gz -> calcmysky-0.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=40bef3fdfbc42c89d1890168235fddb0 diff --git a/metadata/md5-cache/sci-astronomy/celestia-1.7.0_pre20221215 b/metadata/md5-cache/sci-astronomy/celestia-1.7.0_pre20221215 index 0854548d33f0..15d0dc51786f 100644 --- a/metadata/md5-cache/sci-astronomy/celestia-1.7.0_pre20221215 +++ b/metadata/md5-cache/sci-astronomy/celestia-1.7.0_pre20221215 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libfmt:= media-libs/glew:0= media-libs/libepoxy media-libs/libj REQUIRED_USE=|| ( glut qt5 ) lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 ) ) SLOT=0 SRC_URI=https://github.com/CelestiaProject/Celestia/archive/9b00246b17a60f0a6dce724be8f7a3bda04809c3.tar.gz -> celestia-1.7.0_pre20221215.tar.gz https://github.com/CelestiaProject/CelestiaContent/archive/bc8208e4474aee9a1096c6479a1e7f298aa98d02.tar.gz -> celestia-1.7.0_pre20221215-data.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=24c3c6906cf364f276364af9e5709c10 diff --git a/metadata/md5-cache/sci-astronomy/kstars-3.6.2 b/metadata/md5-cache/sci-astronomy/kstars-3.6.2 index 0a07104524c9..462a956b05af 100644 --- a/metadata/md5-cache/sci-astronomy/kstars-3.6.2 +++ b/metadata/md5-cache/sci-astronomy/kstars-3.6.2 @@ -14,5 +14,5 @@ REQUIRED_USE=indi? ( fits ) RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kstars/kstars-3.6.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b92a4599370b2a81d8d37549a1ab4ad diff --git a/metadata/md5-cache/sci-astronomy/stellarium-1.2 b/metadata/md5-cache/sci-astronomy/stellarium-1.2 index bc3b5745b914..89ab71d6c2c3 100644 --- a/metadata/md5-cache/sci-astronomy/stellarium-1.2 +++ b/metadata/md5-cache/sci-astronomy/stellarium-1.2 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( !media !qt6 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/Stellarium/stellarium/releases/download/v1.2/stellarium-1.2.tar.xz verify-sig? ( https://github.com/Stellarium/stellarium/releases/download/v1.2/stellarium-1.2.tar.xz.asc ) deep-sky? ( https://github.com/Stellarium/stellarium-data/releases/download/dso-3.18/catalog-3.18.dat -> stellarium-dso-catalog-3.18.dat verify-sig? ( https://github.com/Stellarium/stellarium-data/releases/download/dso-3.18/catalog-3.18.dat.asc -> stellarium-dso-catalog-3.18.dat.asc ) ) doc? ( https://github.com/Stellarium/stellarium/releases/download/v1.2/stellarium_user_guide-1.2-1.pdf verify-sig? ( https://github.com/Stellarium/stellarium/releases/download/v1.2/stellarium_user_guide-1.2-1.pdf.asc ) ) stars? ( https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_4_1v0_2.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_5_2v0_1.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_6_2v0_1.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_7_2v0_1.cat https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_8_2v0_1.cat ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=31e64e3001fce2f1a786410fa5573a47 diff --git a/metadata/md5-cache/sci-biology/Manifest.gz b/metadata/md5-cache/sci-biology/Manifest.gz index 5a4ee63b391b..f7f7960370c5 100644 Binary files a/metadata/md5-cache/sci-biology/Manifest.gz and b/metadata/md5-cache/sci-biology/Manifest.gz differ diff --git a/metadata/md5-cache/sci-biology/bamtools-2.5.2 b/metadata/md5-cache/sci-biology/bamtools-2.5.2 index 57a3da93c721..152631f496a5 100644 --- a/metadata/md5-cache/sci-biology/bamtools-2.5.2 +++ b/metadata/md5-cache/sci-biology/bamtools-2.5.2 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=>=dev-libs/jsoncpp-1.8.0:= sys-libs/zlib:= SLOT=0/2.5.2 SRC_URI=https://github.com/pezmaster31/bamtools/archive/v2.5.2.tar.gz -> bamtools-2.5.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=efdfbdbf4181a018ee9965d5c16be71f diff --git a/metadata/md5-cache/sci-biology/bamtools-9999 b/metadata/md5-cache/sci-biology/bamtools-9999 index 744c19b52223..728c957c4441 100644 --- a/metadata/md5-cache/sci-biology/bamtools-9999 +++ b/metadata/md5-cache/sci-biology/bamtools-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=>=dev-libs/jsoncpp-1.8.0:= sys-libs/zlib:= SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a2299dc6ca850c1c25582656d7586681 diff --git a/metadata/md5-cache/sci-biology/express-1.5.1 b/metadata/md5-cache/sci-biology/express-1.5.1 index 9160fdc89d23..e5330dcbea88 100644 --- a/metadata/md5-cache/sci-biology/express-1.5.1 +++ b/metadata/md5-cache/sci-biology/express-1.5.1 @@ -10,5 +10,5 @@ LICENSE=Artistic RDEPEND=dev-libs/boost:= dev-libs/protobuf dev-util/google-perftools sci-biology/bamtools sys-libs/zlib SLOT=0 SRC_URI=https://pachterlab.github.io/eXpress/downloads/express-1.5.1/express-1.5.1-src.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=eb3d3db6cbf83564b8ecca377c50dd20 diff --git a/metadata/md5-cache/sci-biology/fasttree-2.1.11 b/metadata/md5-cache/sci-biology/fasttree-2.1.11 index 33bb7ca333bd..6d6bed51e041 100644 --- a/metadata/md5-cache/sci-biology/fasttree-2.1.11 +++ b/metadata/md5-cache/sci-biology/fasttree-2.1.11 @@ -10,5 +10,5 @@ LICENSE=GPL-2 REQUIRED_USE=?? ( double-precision cpu_flags_x86_sse3 ) SLOT=0 SRC_URI=http://www.microbesonline.org/fasttree/FastTree-2.1.11.c http://www.microbesonline.org/fasttree/FastTreeUPGMA.c -> FastTreeUPGMA-2.1.11.c http://www.microbesonline.org/fasttree/MOTreeComparison.tar.gz -> MOTreeComparison-2.1.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4a94b8db43f0aadb5ece67757ccbe635 diff --git a/metadata/md5-cache/sci-biology/kallisto-0.46.2 b/metadata/md5-cache/sci-biology/kallisto-0.46.2 index 048a40842f30..bda27ddd99b0 100644 --- a/metadata/md5-cache/sci-biology/kallisto-0.46.2 +++ b/metadata/md5-cache/sci-biology/kallisto-0.46.2 @@ -12,5 +12,5 @@ RDEPEND=sci-libs/htslib:= sys-libs/zlib:= hdf5? ( sci-libs/hdf5:= ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pachterlab/kallisto/archive/v0.46.2.tar.gz -> kallisto-0.46.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1b739cad0275e6dc5a320723611b78e9 diff --git a/metadata/md5-cache/sci-biology/seqan-3.1.0 b/metadata/md5-cache/sci-biology/seqan-3.1.0 index 74365b9e846c..1adc4ed94db4 100644 --- a/metadata/md5-cache/sci-biology/seqan-3.1.0 +++ b/metadata/md5-cache/sci-biology/seqan-3.1.0 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2:= dev-cpp/range-v3 dev-libs/cereal sci-libs/lemon sys-lib REQUIRED_USE=cpu_flags_x86_sse4_2 SLOT=0 SRC_URI=https://github.com/seqan/seqan3/releases/download/3.1.0/seqan3-3.1.0-Source.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=327a33751512d78b13d5acd641ba3385 diff --git a/metadata/md5-cache/sci-biology/uchime-4.2.40-r1 b/metadata/md5-cache/sci-biology/uchime-4.2.40-r1 index 7e854c1fc63e..4c81584edac0 100644 --- a/metadata/md5-cache/sci-biology/uchime-4.2.40-r1 +++ b/metadata/md5-cache/sci-biology/uchime-4.2.40-r1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux LICENSE=public-domain SLOT=0 SRC_URI=https://www.drive5.com/uchime/uchime4.2.40_src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=75e1e97ed1a0b22c90eebd09f4e46d59 diff --git a/metadata/md5-cache/sci-calculators/Manifest.gz b/metadata/md5-cache/sci-calculators/Manifest.gz index cb1181fcd726..3cd5be58cdf1 100644 Binary files a/metadata/md5-cache/sci-calculators/Manifest.gz and b/metadata/md5-cache/sci-calculators/Manifest.gz differ diff --git a/metadata/md5-cache/sci-calculators/bc-gh-6.5.0 b/metadata/md5-cache/sci-calculators/bc-gh-6.5.0 new file mode 100644 index 000000000000..099dc6e0b557 --- /dev/null +++ b/metadata/md5-cache/sci-calculators/bc-gh-6.5.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure test +DEPEND=!readline? ( libedit? ( dev-libs/libedit:= ) ) readline? ( sys-libs/readline:= sys-libs/ncurses:= ) +DESCRIPTION=Implementation of POSIX bc with GNU extensions +EAPI=8 +HOMEPAGE=https://git.gavinhoward.com/gavin/bc/ https://github.com/gavinhoward/bc/ +IUSE=libedit readline +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=BSD-2 +RDEPEND=!readline? ( libedit? ( dev-libs/libedit:= ) ) readline? ( sys-libs/readline:= sys-libs/ncurses:= ) +SLOT=0 +SRC_URI=https://github.com/gavinhoward/bc/releases/download/6.5.0/bc-6.5.0.tar.xz +_md5_=cf035a84e3623937df148e751018c44b diff --git a/metadata/md5-cache/sci-calculators/hcalc-1.2-r1 b/metadata/md5-cache/sci-calculators/hcalc-1.2-r1 index f66a133e17b1..e406cc76b9f4 100644 --- a/metadata/md5-cache/sci-calculators/hcalc-1.2-r1 +++ b/metadata/md5-cache/sci-calculators/hcalc-1.2-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXpm SLOT=0 SRC_URI=https://github.com/downloads/jlec/hcalc/hcalc-1.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=22d67c46c3eeabb9a8058f6b4d07a217 diff --git a/metadata/md5-cache/sci-calculators/keurocalc-1.3.0 b/metadata/md5-cache/sci-calculators/keurocalc-1.3.0 index fd62b2ca81ab..6153098d05f0 100644 --- a/metadata/md5-cache/sci-calculators/keurocalc-1.3.0 +++ b/metadata/md5-cache/sci-calculators/keurocalc-1.3.0 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ FDL-1.2 RDEPEND=>=dev-qt/qtdbus-5.12.3:5 >=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtwidgets-5.12.3:5 >=dev-qt/qtxml-5.12.3:5 >=kde-frameworks/kconfig-5.60.0:5 >=kde-frameworks/kconfigwidgets-5.60.0:5 >=kde-frameworks/kcoreaddons-5.60.0:5 >=kde-frameworks/ki18n-5.60.0:5 >=kde-frameworks/kio-5.60.0:5 >=kde-frameworks/kwidgetsaddons-5.60.0:5 >=kde-frameworks/kxmlgui-5.60.0:5 !sci-calculators/keurocalc:4 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/keurocalc/keurocalc-1.3.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c073baa4558de41bc6f683dab097e9a7 diff --git a/metadata/md5-cache/sci-calculators/speedcrunch-0.12.0-r1 b/metadata/md5-cache/sci-calculators/speedcrunch-0.12.0-r1 index 5e9f21e1f8b0..f54448244b4e 100644 --- a/metadata/md5-cache/sci-calculators/speedcrunch-0.12.0-r1 +++ b/metadata/md5-cache/sci-calculators/speedcrunch-0.12.0-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qthelp:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://bitbucket.org/heldercorreia/speedcrunch/get/release-0.12.0.tar.gz -> speedcrunch-0.12.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bb4b9d3558b42063daeb6d1d961f06df diff --git a/metadata/md5-cache/sci-chemistry/Manifest.gz b/metadata/md5-cache/sci-chemistry/Manifest.gz index c2dd8f675ffb..847af151ce82 100644 Binary files a/metadata/md5-cache/sci-chemistry/Manifest.gz and b/metadata/md5-cache/sci-chemistry/Manifest.gz differ diff --git a/metadata/md5-cache/sci-chemistry/avogadro2-1.95.1 b/metadata/md5-cache/sci-chemistry/avogadro2-1.95.1 index 92657f28cf1b..78c61d3b410b 100644 --- a/metadata/md5-cache/sci-chemistry/avogadro2-1.95.1 +++ b/metadata/md5-cache/sci-chemistry/avogadro2-1.95.1 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 >=sci-libs/avogadrolib RESTRICT=test SLOT=0 SRC_URI=https://github.com/OpenChemistry/avogadroapp/archive/1.95.1.tar.gz -> avogadro2-1.95.1.tar.gz https://github.com/OpenChemistry/avogadro-i18n/archive/3b8a86cc37e988b043d1503d2f11068389b0aca3.tar.gz -> avogadro2-1.95.1-i18n.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=63852b6e1a0d593b6df49dc2b1b457f0 diff --git a/metadata/md5-cache/sci-chemistry/avogadro2-1.97.0 b/metadata/md5-cache/sci-chemistry/avogadro2-1.97.0 index 321a58818c6f..ba31dc0b16f1 100644 --- a/metadata/md5-cache/sci-chemistry/avogadro2-1.97.0 +++ b/metadata/md5-cache/sci-chemistry/avogadro2-1.97.0 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 >=sci-libs/avogadrolib RESTRICT=test SLOT=0 SRC_URI=https://github.com/OpenChemistry/avogadroapp/archive/1.97.0.tar.gz -> avogadro2-1.97.0.tar.gz https://github.com/OpenChemistry/avogadro-i18n/archive/13c4286102373658cea48a33b86536ab5793da66.tar.gz -> avogadro2-1.97.0-i18n.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4d16d471e4fb5d4f76219007401eda51 diff --git a/metadata/md5-cache/sci-chemistry/chemical-mime-data-0.1.95_pre20171122 b/metadata/md5-cache/sci-chemistry/chemical-mime-data-0.1.95_pre20171122 new file mode 100644 index 000000000000..25d2881eb4bc --- /dev/null +++ b/metadata/md5-cache/sci-chemistry/chemical-mime-data-0.1.95_pre20171122 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/intltool dev-util/desktop-file-utils dev-libs/libxslt virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=configure postinst postrm preinst prepare +DEPEND=x11-misc/shared-mime-info +DESCRIPTION=A collection of data files to add support for chemical MIME types +EAPI=8 +HOMEPAGE=https://github.com/dleidert/chemical-mime +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=autotools xdg +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=LGPL-2.1 +RDEPEND=x11-misc/shared-mime-info +SLOT=0 +SRC_URI=https://github.com/dleidert/chemical-mime/archive/4fd66e3b3b7d922555d1e25587908b036805c45b.tar.gz -> chemical-mime-data-0.1.95_pre20171122.tar.gz +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=539a6cc98bda1a8dd57da941a90d6ff7 diff --git a/metadata/md5-cache/sci-chemistry/dssp-4.2.0 b/metadata/md5-cache/sci-chemistry/dssp-4.2.0 index 95958ccf05bd..f4c5103054e7 100644 --- a/metadata/md5-cache/sci-chemistry/dssp-4.2.0 +++ b/metadata/md5-cache/sci-chemistry/dssp-4.2.0 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=dev-libs/boost:=[zlib] >=dev-libs/libmcfp-1.2.2 >=sci-libs/libcifpp-5.0.4 SLOT=0 SRC_URI=https://github.com/PDB-REDO/dssp/archive/refs/tags/v4.2.0.tar.gz -> dssp-4.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2559f76b0e5bd728e50242e17b405bd8 diff --git a/metadata/md5-cache/sci-chemistry/dssp-4.2.2.1 b/metadata/md5-cache/sci-chemistry/dssp-4.2.2.1 index 99103c0260cf..7e1fd57a981b 100644 --- a/metadata/md5-cache/sci-chemistry/dssp-4.2.2.1 +++ b/metadata/md5-cache/sci-chemistry/dssp-4.2.2.1 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=dev-libs/boost:=[zlib] >=dev-libs/libmcfp-1.2.2 >=sci-libs/libcifpp-5.0.8 SLOT=0 SRC_URI=https://github.com/PDB-REDO/dssp/archive/refs/tags/v4.2.2.1.tar.gz -> dssp-4.2.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=672be11d9cf1f1162f4eef0f215b3a9a diff --git a/metadata/md5-cache/sci-chemistry/gromacs-2018.8-r1 b/metadata/md5-cache/sci-chemistry/gromacs-2018.8-r1 index c4763d527da9..67038f897c46 100644 --- a/metadata/md5-cache/sci-chemistry/gromacs-2018.8-r1 +++ b/metadata/md5-cache/sci-chemistry/gromacs-2018.8-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( single-precision double-precision ) cuda? ( single-precision ) RESTRICT=!test? ( test ) SLOT=0/2018.8 SRC_URI=https://ftp.gromacs.org/gromacs/gromacs-2018.8.tar.gz doc? ( https://ftp.gromacs.org/manual/manual-2018.8.pdf ) test? ( https://ftp.gromacs.org/regressiontests/regressiontests-2018.8.tar.gz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2e1dcb3cefdfced18f4cc52d5413ed57 diff --git a/metadata/md5-cache/sci-chemistry/gromacs-2019.6-r2 b/metadata/md5-cache/sci-chemistry/gromacs-2019.6-r2 index 2ff9860198a5..15cc4e601e98 100644 --- a/metadata/md5-cache/sci-chemistry/gromacs-2019.6-r2 +++ b/metadata/md5-cache/sci-chemistry/gromacs-2019.6-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( single-precision double-precision ) cuda? ( single-precision ) RESTRICT=!test? ( test ) SLOT=0/2019.6 SRC_URI=https://ftp.gromacs.org/gromacs/gromacs-2019.6.tar.gz doc? ( https://ftp.gromacs.org/manual/manual-2019.6.pdf ) test? ( https://ftp.gromacs.org/regressiontests/regressiontests-2019.6.tar.gz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ff7b3dcd17d525ae47c83c42a19380d diff --git a/metadata/md5-cache/sci-chemistry/gromacs-2020.7 b/metadata/md5-cache/sci-chemistry/gromacs-2020.7 index 31128155a7f8..f83b2a8dff47 100644 --- a/metadata/md5-cache/sci-chemistry/gromacs-2020.7 +++ b/metadata/md5-cache/sci-chemistry/gromacs-2020.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( single-precision double-precision ) doc? ( !build-manual ) cud RESTRICT=!test? ( test ) SLOT=0/2020.7 SRC_URI=https://ftp.gromacs.org/gromacs/gromacs-2020.7.tar.gz doc? ( https://ftp.gromacs.org/manual/manual-2020.7.pdf ) test? ( https://ftp.gromacs.org/regressiontests/regressiontests-2020.7.tar.gz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0296685921498ed1a7c1f4ced5302923 diff --git a/metadata/md5-cache/sci-chemistry/gromacs-2021.6 b/metadata/md5-cache/sci-chemistry/gromacs-2021.6 index c759786a07b9..6a85cc63a901 100644 --- a/metadata/md5-cache/sci-chemistry/gromacs-2021.6 +++ b/metadata/md5-cache/sci-chemistry/gromacs-2021.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( single-precision double-precision ) doc? ( !build-manual ) cud RESTRICT=!test? ( test ) SLOT=0/2021.6 SRC_URI=https://ftp.gromacs.org/gromacs/gromacs-2021.6.tar.gz doc? ( https://ftp.gromacs.org/manual/manual-2021.6.pdf ) test? ( https://ftp.gromacs.org/regressiontests/regressiontests-2021.6.tar.gz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ce5183cca4639dae7a256980f02c858c diff --git a/metadata/md5-cache/sci-chemistry/gromacs-2021.7 b/metadata/md5-cache/sci-chemistry/gromacs-2021.7 index 1ae35313c383..f241bb4bb9e6 100644 --- a/metadata/md5-cache/sci-chemistry/gromacs-2021.7 +++ b/metadata/md5-cache/sci-chemistry/gromacs-2021.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( single-precision double-precision ) doc? ( !build-manual ) cud RESTRICT=!test? ( test ) SLOT=0/2021.7 SRC_URI=https://ftp.gromacs.org/gromacs/gromacs-2021.7.tar.gz doc? ( https://ftp.gromacs.org/manual/manual-2021.7.pdf ) test? ( https://ftp.gromacs.org/regressiontests/regressiontests-2021.7.tar.gz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1e179acaed2d2e5cd495026f57860352 diff --git a/metadata/md5-cache/sci-chemistry/gromacs-2022.4 b/metadata/md5-cache/sci-chemistry/gromacs-2022.4 index 1b262126af0e..f336114c7eef 100644 --- a/metadata/md5-cache/sci-chemistry/gromacs-2022.4 +++ b/metadata/md5-cache/sci-chemistry/gromacs-2022.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( single-precision double-precision ) doc? ( !build-manual ) cud RESTRICT=!test? ( test ) SLOT=0/2022.4 SRC_URI=https://ftp.gromacs.org/gromacs/gromacs-2022.4.tar.gz doc? ( https://ftp.gromacs.org/manual/manual-2022.4.pdf ) test? ( https://ftp.gromacs.org/regressiontests/regressiontests-2022.4.tar.gz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cdd826a94c74837171c33e5212e21e04 diff --git a/metadata/md5-cache/sci-chemistry/gromacs-2022.5 b/metadata/md5-cache/sci-chemistry/gromacs-2022.5 index f05a2c5268a4..3e312d70562d 100644 --- a/metadata/md5-cache/sci-chemistry/gromacs-2022.5 +++ b/metadata/md5-cache/sci-chemistry/gromacs-2022.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( single-precision double-precision ) doc? ( !build-manual ) cud RESTRICT=!test? ( test ) SLOT=0/2022.5 SRC_URI=https://ftp.gromacs.org/gromacs/gromacs-2022.5.tar.gz doc? ( https://ftp.gromacs.org/manual/manual-2022.5.pdf ) test? ( https://ftp.gromacs.org/regressiontests/regressiontests-2022.5.tar.gz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cdd826a94c74837171c33e5212e21e04 diff --git a/metadata/md5-cache/sci-chemistry/gromacs-2022.9999 b/metadata/md5-cache/sci-chemistry/gromacs-2022.9999 index 52288974906e..ba45b82234b0 100644 --- a/metadata/md5-cache/sci-chemistry/gromacs-2022.9999 +++ b/metadata/md5-cache/sci-chemistry/gromacs-2022.9999 @@ -11,5 +11,5 @@ RDEPEND=blas? ( virtual/blas ) cuda? ( >=dev-util/nvidia-cuda-toolkit-11[profile REQUIRED_USE=|| ( single-precision double-precision ) doc? ( !build-manual ) cuda? ( single-precision ) opencl? ( single-precision ) cuda? ( !opencl ) clang-cuda? ( clang cuda ) mkl? ( !blas !fftw !lapack ) ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=!test? ( test ) SLOT=0/2022.9999 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cdd826a94c74837171c33e5212e21e04 diff --git a/metadata/md5-cache/sci-chemistry/gromacs-2023 b/metadata/md5-cache/sci-chemistry/gromacs-2023 index 929e1b0b4498..d25c6cba1a36 100644 --- a/metadata/md5-cache/sci-chemistry/gromacs-2023 +++ b/metadata/md5-cache/sci-chemistry/gromacs-2023 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( single-precision double-precision ) doc? ( !build-manual ) cud RESTRICT=!test? ( test ) SLOT=0/2023 SRC_URI=https://ftp.gromacs.org/gromacs/gromacs-2023.tar.gz doc? ( https://ftp.gromacs.org/manual/manual-2023.pdf ) test? ( https://ftp.gromacs.org/regressiontests/regressiontests-2023.tar.gz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=97afc417b705ac736ddde182ea746ea2 diff --git a/metadata/md5-cache/sci-chemistry/gromacs-2023.9999 b/metadata/md5-cache/sci-chemistry/gromacs-2023.9999 index c13466565834..73de60817a20 100644 --- a/metadata/md5-cache/sci-chemistry/gromacs-2023.9999 +++ b/metadata/md5-cache/sci-chemistry/gromacs-2023.9999 @@ -11,5 +11,5 @@ RDEPEND=blas? ( virtual/blas ) cuda? ( >=dev-util/nvidia-cuda-toolkit-11[profile REQUIRED_USE=|| ( single-precision double-precision ) doc? ( !build-manual ) cuda? ( single-precision ) opencl? ( single-precision ) cuda? ( !opencl ) clang-cuda? ( clang cuda ) mkl? ( !blas !fftw !lapack ) ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=!test? ( test ) SLOT=0/2023.9999 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=97afc417b705ac736ddde182ea746ea2 diff --git a/metadata/md5-cache/sci-chemistry/gromacs-9999 b/metadata/md5-cache/sci-chemistry/gromacs-9999 index d5ce1ffb1c9b..93e1fa873bc3 100644 --- a/metadata/md5-cache/sci-chemistry/gromacs-9999 +++ b/metadata/md5-cache/sci-chemistry/gromacs-9999 @@ -11,5 +11,5 @@ RDEPEND=blas? ( virtual/blas ) cuda? ( >=dev-util/nvidia-cuda-toolkit-11[profile REQUIRED_USE=|| ( single-precision double-precision ) doc? ( !build-manual ) cuda? ( single-precision ) opencl? ( single-precision ) cuda? ( !opencl ) clang-cuda? ( clang cuda ) mkl? ( !blas !fftw !lapack ) ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=97afc417b705ac736ddde182ea746ea2 diff --git a/metadata/md5-cache/sci-chemistry/molequeue-0.9.0-r1 b/metadata/md5-cache/sci-chemistry/molequeue-0.9.0-r1 index bbf8622b4f68..edc3ce53e12d 100644 --- a/metadata/md5-cache/sci-chemistry/molequeue-0.9.0-r1 +++ b/metadata/md5-cache/sci-chemistry/molequeue-0.9.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=server? ( client ) test? ( server ) zeromq? ( || ( python_targets_p RESTRICT=test SLOT=0 SRC_URI=https://github.com/OpenChemistry/molequeue/archive/0.9.0.tar.gz -> molequeue-0.9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2acaaa36499f3c8d72f2f8be2a487a89 diff --git a/metadata/md5-cache/sci-chemistry/molsketch-0.7.2-r1 b/metadata/md5-cache/sci-chemistry/molsketch-0.7.2-r1 index 1339523aa527..6e775b776cff 100644 --- a/metadata/md5-cache/sci-chemistry/molsketch-0.7.2-r1 +++ b/metadata/md5-cache/sci-chemistry/molsketch-0.7.2-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=>=sci-chemistry/openbabel-3:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=mirror://sourceforge/project/molsketch/Molsketch/Molsketch-0.7.2-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bfb3b4e082b1e506b991cf3510a50f16 diff --git a/metadata/md5-cache/sci-chemistry/openbabel-3.1.1_p20210225 b/metadata/md5-cache/sci-chemistry/openbabel-3.1.1_p20210225 index d514e351b657..c1de2921f40a 100644 --- a/metadata/md5-cache/sci-chemistry/openbabel-3.1.1_p20210225 +++ b/metadata/md5-cache/sci-chemistry/openbabel-3.1.1_p20210225 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 p RESTRICT=!test? ( test ) SLOT=0/7.0.0 SRC_URI=https://github.com/openbabel/openbabel/archive/08e23f39b0cc39b4eebd937a5a2ffc1a7bac3e1b.tar.gz -> openbabel-3.1.1_p20210225.tar.gz https://openbabel.org/docs/dev/_static/babel130.png -> openbabel.png https://openbabel.org/OBTitle.jpg -> openbabel.jpg -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d569db4cd3e72f18afa12e1236e9fafb diff --git a/metadata/md5-cache/sci-chemistry/openbabel-9999 b/metadata/md5-cache/sci-chemistry/openbabel-9999 index 6cb513efba71..779257e7685d 100644 --- a/metadata/md5-cache/sci-chemistry/openbabel-9999 +++ b/metadata/md5-cache/sci-chemistry/openbabel-9999 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 p RESTRICT=!test? ( test ) SLOT=0/7.0.0 SRC_URI=https://openbabel.org/docs/dev/_static/babel130.png -> openbabel.png https://openbabel.org/OBTitle.jpg -> openbabel.jpg -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e53077b973bbdce4a2cec3f011cd7c33 diff --git a/metadata/md5-cache/sci-chemistry/pdbcat-1.3-r1 b/metadata/md5-cache/sci-chemistry/pdbcat-1.3-r1 index 9de05191fa65..d940e55d549f 100644 --- a/metadata/md5-cache/sci-chemistry/pdbcat-1.3-r1 +++ b/metadata/md5-cache/sci-chemistry/pdbcat-1.3-r1 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux LICENSE=free-noncomm SLOT=0 SRC_URI=http://www.ks.uiuc.edu/Development/MDTools/pdbcat/files/pdbcat-1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=468efdc0276a4b9606711e3ba7fc6d8f diff --git a/metadata/md5-cache/sci-chemistry/pdbmat-3.89-r1 b/metadata/md5-cache/sci-chemistry/pdbmat-3.89-r1 index d0b2d9a85dd5..b2ad6d99c380 100644 --- a/metadata/md5-cache/sci-chemistry/pdbmat-3.89-r1 +++ b/metadata/md5-cache/sci-chemistry/pdbmat-3.89-r1 @@ -11,5 +11,5 @@ LICENSE=CeCILL-2 RDEPEND=virtual/fortran SLOT=0 SRC_URI=http://ecole.modelisation.free.fr/enm2011.tar.gz -> pdbmat-3.89.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d9c289801412f2ea4102c59abe9d1df7 diff --git a/metadata/md5-cache/sci-chemistry/tm-align-20150914-r1 b/metadata/md5-cache/sci-chemistry/tm-align-20150914-r1 index 94695795d63a..226fa07438f6 100644 --- a/metadata/md5-cache/sci-chemistry/tm-align-20150914-r1 +++ b/metadata/md5-cache/sci-chemistry/tm-align-20150914-r1 @@ -11,5 +11,5 @@ LICENSE=tm-align RDEPEND=virtual/fortran SLOT=0 SRC_URI=http://zhanglab.ccmb.med.umich.edu/TM-align/TMtools20150914.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c0efb6c6f33b081376d1b36ca966aff2 diff --git a/metadata/md5-cache/sci-chemistry/votca-2022 b/metadata/md5-cache/sci-chemistry/votca-2022 index 8b4210265505..73ed2ab4df70 100644 --- a/metadata/md5-cache/sci-chemistry/votca-2022 +++ b/metadata/md5-cache/sci-chemistry/votca-2022 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/votca/votca/archive/v2022.tar.gz -> votca-2022.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c60ca57b3113e53bc498c75613cb485c diff --git a/metadata/md5-cache/sci-chemistry/votca-2022.1 b/metadata/md5-cache/sci-chemistry/votca-2022.1 index 1cb096e197c5..a0d51c942be5 100644 --- a/metadata/md5-cache/sci-chemistry/votca-2022.1 +++ b/metadata/md5-cache/sci-chemistry/votca-2022.1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/votca/votca/archive/v2022.1.tar.gz -> votca-2022.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4652fac7d0d919a31b5394224c0f9960 diff --git a/metadata/md5-cache/sci-chemistry/votca-9999 b/metadata/md5-cache/sci-chemistry/votca-9999 index 71367af2e199..15d74edac61f 100644 --- a/metadata/md5-cache/sci-chemistry/votca-9999 +++ b/metadata/md5-cache/sci-chemistry/votca-9999 @@ -12,5 +12,5 @@ RDEPEND=!sci-libs/votca-tools !sci-chemistry/votca-csg !sci-chemistry/votca-xtp REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4652fac7d0d919a31b5394224c0f9960 diff --git a/metadata/md5-cache/sci-electronics/Manifest.gz b/metadata/md5-cache/sci-electronics/Manifest.gz index 854e7053b791..2a5da33e43e2 100644 Binary files a/metadata/md5-cache/sci-electronics/Manifest.gz and b/metadata/md5-cache/sci-electronics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-electronics/Stage-4.3.0-r1 b/metadata/md5-cache/sci-electronics/Stage-4.3.0-r1 index 540d088a9842..7653cdf6ea73 100644 --- a/metadata/md5-cache/sci-electronics/Stage-4.3.0-r1 +++ b/metadata/md5-cache/sci-electronics/Stage-4.3.0-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/libltdl:0 media-libs/libpng:0= sys-libs/zlib:0= x11-libs/fltk[opengl] virtual/glu virtual/jpeg:0 virtual/opengl SLOT=0/4.3 SRC_URI=https://github.com/rtv/Stage/archive/v4.3.0.tar.gz -> Stage-4.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d8f136297c0aec65c3df0220ce8bc73b diff --git a/metadata/md5-cache/sci-electronics/gazebo-11.12.0 b/metadata/md5-cache/sci-electronics/gazebo-11.12.0 index 19fe3b0743e3..cda54d76ff22 100644 --- a/metadata/md5-cache/sci-electronics/gazebo-11.12.0 +++ b/metadata/md5-cache/sci-electronics/gazebo-11.12.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/protobuf-2:= virtual/opengl media-libs/openal net-misc/curl d RESTRICT=!test? ( test ) SLOT=0/11 SRC_URI=https://osrf-distributions.s3.amazonaws.com/gazebo/releases/gazebo-11.12.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a64b4c1f014522257aeddf090a48f1b8 diff --git a/metadata/md5-cache/sci-electronics/kicad-6.0.9 b/metadata/md5-cache/sci-electronics/kicad-6.0.9 index 9708b8508852..05e3f2543697 100644 --- a/metadata/md5-cache/sci-electronics/kicad-6.0.9 +++ b/metadata/md5-cache/sci-electronics/kicad-6.0.9 @@ -12,5 +12,5 @@ RDEPEND=!sci-electronics/kicad-i18n dev-libs/boost:=[context,nls] media-libs/fre REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://gitlab.com/kicad/code/kicad/-/archive/6.0.9/kicad-6.0.9.tar.gz -> kicad-6.0.9.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2e2fa44dbce4ca71589b07e28e51d83f diff --git a/metadata/md5-cache/sci-electronics/kicad-7.0.0-r1 b/metadata/md5-cache/sci-electronics/kicad-7.0.0-r1 index 1ef147589722..fbaf48487363 100644 --- a/metadata/md5-cache/sci-electronics/kicad-7.0.0-r1 +++ b/metadata/md5-cache/sci-electronics/kicad-7.0.0-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-db/unixODBC dev-libs/boost:=[context,nls] media-libs/freeglut media- REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://gitlab.com/kicad/code/kicad/-/archive/7.0.0/kicad-7.0.0.tar.bz2 -> kicad-7.0.0.tar.bz2 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9d4120b09dfd47f7b91465a9965dc051 diff --git a/metadata/md5-cache/sci-electronics/kicad-9999 b/metadata/md5-cache/sci-electronics/kicad-9999 index 3eaa14581335..5cf306f6fa79 100644 --- a/metadata/md5-cache/sci-electronics/kicad-9999 +++ b/metadata/md5-cache/sci-electronics/kicad-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-db/unixODBC dev-libs/boost:=[context,nls] media-libs/freeglut media-libs/glew:0= >=media-libs/glm-0.9.9.1 media-libs/mesa[X(+)] net-misc/curl >=sci-libs/opencascade-7.3.0:0= >=x11-libs/cairo-1.8.8:= >=x11-libs/pixman-0.30 x11-libs/wxGTK:3.2-gtk3[X,opengl] sys-libs/zlib python_single_target_python3_9? ( dev-libs/boost:=[context,nls,python,python_targets_python3_9(-)] ~dev-python/wxpython-4.2.0:*[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-libs/boost:=[context,nls,python,python_targets_python3_10(-)] ~dev-python/wxpython-4.2.0:*[python_targets_python3_10(-)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) ngspice? ( >sci-electronics/ngspice-27[shared] ) nls? ( sys-devel/gettext ) sci-electronics/electronics-menu REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c21a46106ef912828f2659df77a68c79 diff --git a/metadata/md5-cache/sci-electronics/kicad-footprints-6.0.9 b/metadata/md5-cache/sci-electronics/kicad-footprints-6.0.9 index e496bba76c5d..561e1341c8aa 100644 --- a/metadata/md5-cache/sci-electronics/kicad-footprints-6.0.9 +++ b/metadata/md5-cache/sci-electronics/kicad-footprints-6.0.9 @@ -9,5 +9,5 @@ LICENSE=CC-BY-SA-4.0 RDEPEND=>=sci-electronics/kicad-6.0.0 SLOT=0 SRC_URI=https://gitlab.com/kicad/libraries/kicad-footprints/-/archive/6.0.9/kicad-footprints-6.0.9.tar.gz -> kicad-footprints-6.0.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e65065761c582114ba68d8ce08f5f05 diff --git a/metadata/md5-cache/sci-electronics/kicad-footprints-7.0.0 b/metadata/md5-cache/sci-electronics/kicad-footprints-7.0.0 index 2f3232ed3458..4ca2dbd99487 100644 --- a/metadata/md5-cache/sci-electronics/kicad-footprints-7.0.0 +++ b/metadata/md5-cache/sci-electronics/kicad-footprints-7.0.0 @@ -9,5 +9,5 @@ LICENSE=CC-BY-SA-4.0 RDEPEND=>=sci-electronics/kicad-7.0.0 SLOT=0 SRC_URI=https://gitlab.com/kicad/libraries/kicad-footprints/-/archive/7.0.0/kicad-footprints-7.0.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=152785b97e9e6d7aec8becf6fe9025d4 diff --git a/metadata/md5-cache/sci-electronics/kicad-footprints-9999 b/metadata/md5-cache/sci-electronics/kicad-footprints-9999 index fe6ce0cfb74e..0b5f494a3686 100644 --- a/metadata/md5-cache/sci-electronics/kicad-footprints-9999 +++ b/metadata/md5-cache/sci-electronics/kicad-footprints-9999 @@ -8,5 +8,5 @@ LICENSE=CC-BY-SA-4.0 PROPERTIES=live RDEPEND=>=sci-electronics/kicad-6.0.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e9cb569771c26ad43395336f29496052 diff --git a/metadata/md5-cache/sci-electronics/kicad-packages3d-6.0.9 b/metadata/md5-cache/sci-electronics/kicad-packages3d-6.0.9 index c1489f13a409..9064d986375b 100644 --- a/metadata/md5-cache/sci-electronics/kicad-packages3d-6.0.9 +++ b/metadata/md5-cache/sci-electronics/kicad-packages3d-6.0.9 @@ -10,5 +10,5 @@ LICENSE=CC-BY-SA-4.0 RDEPEND=>=sci-electronics/kicad-6.0.0[occ=] SLOT=0 SRC_URI=https://gitlab.com/kicad/libraries/kicad-packages3D/-/archive/6.0.9/kicad-packages3D-6.0.9.tar.gz -> kicad-packages3d-6.0.9.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b9154bf1d472e8df28152ac13829f132 diff --git a/metadata/md5-cache/sci-electronics/kicad-packages3d-7.0.0 b/metadata/md5-cache/sci-electronics/kicad-packages3d-7.0.0 index aa5a0143449b..3d5e9b468bef 100644 --- a/metadata/md5-cache/sci-electronics/kicad-packages3d-7.0.0 +++ b/metadata/md5-cache/sci-electronics/kicad-packages3d-7.0.0 @@ -9,5 +9,5 @@ LICENSE=CC-BY-SA-4.0 RDEPEND=>=sci-electronics/kicad-7.0.0 SLOT=0 SRC_URI=https://gitlab.com/kicad/libraries/kicad-packages3D/-/archive/7.0.0/kicad-packages3D-7.0.0.tar.bz2 -> kicad-packages3d-7.0.0.tar.bz2 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ae356807f63c6e8e3081ae52d7bbc29d diff --git a/metadata/md5-cache/sci-electronics/kicad-packages3d-9999 b/metadata/md5-cache/sci-electronics/kicad-packages3d-9999 index c9c3807791a1..6e72ef2a5363 100644 --- a/metadata/md5-cache/sci-electronics/kicad-packages3d-9999 +++ b/metadata/md5-cache/sci-electronics/kicad-packages3d-9999 @@ -8,5 +8,5 @@ LICENSE=CC-BY-SA-4.0 PROPERTIES=live RDEPEND=>=sci-electronics/kicad-6.0.0 SLOT=0 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=97f7c9cbde60899f29c6d9772f520970 diff --git a/metadata/md5-cache/sci-electronics/kicad-symbols-6.0.9 b/metadata/md5-cache/sci-electronics/kicad-symbols-6.0.9 index db4f08a06795..12a6d647fcad 100644 --- a/metadata/md5-cache/sci-electronics/kicad-symbols-6.0.9 +++ b/metadata/md5-cache/sci-electronics/kicad-symbols-6.0.9 @@ -9,5 +9,5 @@ LICENSE=CC-BY-SA-4.0 RDEPEND=>=sci-electronics/kicad-6.0.0 SLOT=0 SRC_URI=https://gitlab.com/kicad/libraries/kicad-symbols/-/archive/6.0.9/kicad-symbols-6.0.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7abcd358958da20c121e85a2ccc48b9b diff --git a/metadata/md5-cache/sci-electronics/kicad-symbols-7.0.0 b/metadata/md5-cache/sci-electronics/kicad-symbols-7.0.0 index b7aa27ed9f17..1120da093cdc 100644 --- a/metadata/md5-cache/sci-electronics/kicad-symbols-7.0.0 +++ b/metadata/md5-cache/sci-electronics/kicad-symbols-7.0.0 @@ -9,5 +9,5 @@ LICENSE=CC-BY-SA-4.0 RDEPEND=>=sci-electronics/kicad-7.0.0 SLOT=0 SRC_URI=https://gitlab.com/kicad/libraries/kicad-symbols/-/archive/7.0.0/kicad-symbols-7.0.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bab79a631f2c0b7594d88f8cb58ddada diff --git a/metadata/md5-cache/sci-electronics/kicad-symbols-9999 b/metadata/md5-cache/sci-electronics/kicad-symbols-9999 index 27188d771530..e556b148ebc9 100644 --- a/metadata/md5-cache/sci-electronics/kicad-symbols-9999 +++ b/metadata/md5-cache/sci-electronics/kicad-symbols-9999 @@ -8,5 +8,5 @@ LICENSE=CC-BY-SA-4.0 PROPERTIES=live RDEPEND=>=sci-electronics/kicad-6.0.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=abe5e8d23217f9d10882918673a032fe diff --git a/metadata/md5-cache/sci-electronics/kicad-templates-6.0.9 b/metadata/md5-cache/sci-electronics/kicad-templates-6.0.9 index bec9127fa6ab..9d6c354d1293 100644 --- a/metadata/md5-cache/sci-electronics/kicad-templates-6.0.9 +++ b/metadata/md5-cache/sci-electronics/kicad-templates-6.0.9 @@ -9,5 +9,5 @@ LICENSE=CC-BY-SA-4.0 RDEPEND=>=sci-electronics/kicad-6.0.0 SLOT=0 SRC_URI=https://gitlab.com/kicad/libraries/kicad-templates/-/archive/6.0.9/kicad-templates-6.0.9.tar.gz -> kicad-templates-6.0.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d2b55f2afda0ee6cef02e48c19c66cfd diff --git a/metadata/md5-cache/sci-electronics/kicad-templates-7.0.0 b/metadata/md5-cache/sci-electronics/kicad-templates-7.0.0 index 2c92ee2337d4..e1606e9a7974 100644 --- a/metadata/md5-cache/sci-electronics/kicad-templates-7.0.0 +++ b/metadata/md5-cache/sci-electronics/kicad-templates-7.0.0 @@ -9,5 +9,5 @@ LICENSE=CC-BY-SA-4.0 RDEPEND=>=sci-electronics/kicad-7.0.0 SLOT=0 SRC_URI=https://gitlab.com/kicad/libraries/kicad-templates/-/archive/7.0.0/kicad-templates-7.0.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1bed559adb1a0c2f3379bf573fffabcd diff --git a/metadata/md5-cache/sci-electronics/kicad-templates-9999 b/metadata/md5-cache/sci-electronics/kicad-templates-9999 index b3a831881a52..d955d18c9768 100644 --- a/metadata/md5-cache/sci-electronics/kicad-templates-9999 +++ b/metadata/md5-cache/sci-electronics/kicad-templates-9999 @@ -8,5 +8,5 @@ LICENSE=CC-BY-SA-4.0 PROPERTIES=live RDEPEND=>=sci-electronics/kicad-6.0.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c32b150e1c96c622cdd9173fd5ca89f diff --git a/metadata/md5-cache/sci-electronics/ktechlab-0.50.0-r2 b/metadata/md5-cache/sci-electronics/ktechlab-0.50.0-r2 index a6ed54d09c2e..4778c874f2a0 100644 --- a/metadata/md5-cache/sci-electronics/ktechlab-0.50.0-r2 +++ b/metadata/md5-cache/sci-electronics/ktechlab-0.50.0-r2 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.1:5 >=dev-qt/qtgui-5.15.1:5 >=dev-qt/qtprintsupport RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/unstable/ktechlab/ktechlab-0.50.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f2d3bc90fd5c3caee4311f879358b5f diff --git a/metadata/md5-cache/sci-electronics/librepcb-0.1.6-r1 b/metadata/md5-cache/sci-electronics/librepcb-0.1.6-r1 index 707ac398d893..e900efb398dd 100644 --- a/metadata/md5-cache/sci-electronics/librepcb-0.1.6-r1 +++ b/metadata/md5-cache/sci-electronics/librepcb-0.1.6-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-cpp/muParser:= dev-libs/quazip:=[qt5(+)] dev-qt/qtcore:5 dev-qt/qtco RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.librepcb.org/releases/0.1.6/librepcb-0.1.6-source.zip -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a5c8666aa80aa593824847ae733abb9d diff --git a/metadata/md5-cache/sci-electronics/librepcb-0.1.7 b/metadata/md5-cache/sci-electronics/librepcb-0.1.7 index fd9e2e7c6b7c..b9dcd2f1dcf1 100644 --- a/metadata/md5-cache/sci-electronics/librepcb-0.1.7 +++ b/metadata/md5-cache/sci-electronics/librepcb-0.1.7 @@ -13,5 +13,5 @@ RDEPEND=dev-cpp/muParser:= dev-libs/quazip:=[qt5(+)] dev-qt/qtcore:5 dev-qt/qtco RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.librepcb.org/releases/0.1.7/librepcb-0.1.7-source.zip -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=64c54bcec6418cadead245f94bab1c5d diff --git a/metadata/md5-cache/sci-electronics/osqoop-1.2.0_pre20170131 b/metadata/md5-cache/sci-electronics/osqoop-1.2.0_pre20170131 index ef41a8c3e29f..7262a776f96d 100644 --- a/metadata/md5-cache/sci-electronics/osqoop-1.2.0_pre20170131 +++ b/metadata/md5-cache/sci-electronics/osqoop-1.2.0_pre20170131 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 sci-libs/fftw:3.0 virtual/libusb:0 x11-libs/libXtst SLOT=0 SRC_URI=https://github.com/sandsmark/osqoop/archive/b5bd459dd5c2a180a9a3e5a706ed5039159d7286.tar.gz -> osqoop-1.2.0_pre20170131.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c756ba429b28b15dc263a2db8f81ee9b diff --git a/metadata/md5-cache/sci-electronics/pulseview-0.4.2-r1 b/metadata/md5-cache/sci-electronics/pulseview-0.4.2-r1 index 3f0b75feb3b1..d94b5c044bf6 100644 --- a/metadata/md5-cache/sci-electronics/pulseview-0.4.2-r1 +++ b/metadata/md5-cache/sci-electronics/pulseview-0.4.2-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=>=dev-cpp/glibmm-2.28.0:2 dev-libs/boost:= >=dev-libs/glib-2.28.0:2 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 >=sci-libs/libsigrok-0.5.1:=[cxx] decode? ( >=sci-libs/libsigrokdecode-0.5.2:= ) SLOT=0 SRC_URI=https://sigrok.org/download/source/pulseview/pulseview-0.4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0d2c7fb282febef5225496d2542a15b3 diff --git a/metadata/md5-cache/sci-electronics/pulseview-9999 b/metadata/md5-cache/sci-electronics/pulseview-9999 index da5aec0c1030..58f519971bcd 100644 --- a/metadata/md5-cache/sci-electronics/pulseview-9999 +++ b/metadata/md5-cache/sci-electronics/pulseview-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-3 PROPERTIES=live RDEPEND=>=dev-cpp/glibmm-2.28.0:2 dev-libs/boost:= >=dev-libs/glib-2.28.0:2 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 >=sci-libs/libsigrok-0.6.0:=[cxx] decode? ( >=sci-libs/libsigrokdecode-0.6.0:= ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3470d8ea5833b73cc1d415a24f1692d3 diff --git a/metadata/md5-cache/sci-geosciences/GeographicLib-1.52-r2 b/metadata/md5-cache/sci-geosciences/GeographicLib-1.52-r2 index 9f49e8dbbcac..64a53d4742b1 100644 --- a/metadata/md5-cache/sci-geosciences/GeographicLib-1.52-r2 +++ b/metadata/md5-cache/sci-geosciences/GeographicLib-1.52-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 p RESTRICT=!test? ( test ) SLOT=0/19 SRC_URI=mirror://sourceforge/geographiclib/GeographicLib-1.52.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f486a38e3bf474ffd6dcdca6c53142da diff --git a/metadata/md5-cache/sci-geosciences/Manifest.gz b/metadata/md5-cache/sci-geosciences/Manifest.gz index 9a385217d85b..6a489e304d8e 100644 Binary files a/metadata/md5-cache/sci-geosciences/Manifest.gz and b/metadata/md5-cache/sci-geosciences/Manifest.gz differ diff --git a/metadata/md5-cache/sci-geosciences/gmt-5.4.4 b/metadata/md5-cache/sci-geosciences/gmt-5.4.4 index 1570f0c9879d..9df94ce224de 100644 --- a/metadata/md5-cache/sci-geosciences/gmt-5.4.4 +++ b/metadata/md5-cache/sci-geosciences/gmt-5.4.4 @@ -12,5 +12,5 @@ RDEPEND=app-text/ghostscript-gpl net-misc/curl >=sci-libs/netcdf-4.1:=[hdf5] sys REQUIRED_USE=?? ( pcre pcre2 ) SLOT=5 SRC_URI=mirror://gmt/gmt-5.4.4-src.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c92061049c195dc4232f4216d05b1e3 diff --git a/metadata/md5-cache/sci-geosciences/gmt-6.4.0 b/metadata/md5-cache/sci-geosciences/gmt-6.4.0 index 18c23de24a34..47bdaf4f580d 100644 --- a/metadata/md5-cache/sci-geosciences/gmt-6.4.0 +++ b/metadata/md5-cache/sci-geosciences/gmt-6.4.0 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ gmttria? ( Artistic ) RDEPEND=app-text/ghostscript-gpl:= media-gfx/graphicsmagick:= net-misc/curl >=sci-libs/netcdf-4.1:=[hdf5] media-video/ffmpeg:= blas? ( virtual/blas ) fftw? ( sci-libs/fftw:3.0= ) gdal? ( sci-libs/gdal:= ) geos? ( sci-libs/geos ) lapack? ( virtual/lapack ) pcre? ( dev-libs/libpcre2 ) zlib? ( sys-libs/zlib:= ) !sci-biology/probcons sci-geosciences/dcw-gmt sci-geosciences/gshhg-gmt SLOT=6 SRC_URI=https://github.com/GenericMappingTools/gmt/releases/download/6.4.0/gmt-6.4.0-src.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5b2c9237eaf9ca5b87b782b6f5c6a74f diff --git a/metadata/md5-cache/sci-geosciences/gnome-maps-43.5 b/metadata/md5-cache/sci-geosciences/gnome-maps-43.5 new file mode 100644 index 000000000000..4fb4ada872e6 --- /dev/null +++ b/metadata/md5-cache/sci-geosciences/gnome-maps-43.5 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=>=dev-libs/glib-2.66.0:2 >=dev-libs/gjs-1.69.2 >=dev-libs/gobject-introspection-0.10.1:= gui-libs/gtk:4[introspection] >=app-misc/geoclue-0.12.99:2.0[introspection] >=gui-libs/libadwaita-1.0:1[introspection] >=dev-libs/libgweather-4.2.0:4=[introspection] >=sci-geosciences/geocode-glib-3.15.2:2[introspection] >=media-libs/libshumate-1.0:1.0=[introspection] dev-libs/libxml2:2 >=net-libs/rest-0.9.1:1.0[introspection] app-crypt/libsecret[introspection] media-libs/graphene[introspection] net-libs/libsoup:3.0[introspection] x11-libs/pango[introspection] +DESCRIPTION=A map application for GNOME +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Maps +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson xdg +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0 +RDEPEND=>=dev-libs/glib-2.66.0:2 >=dev-libs/gjs-1.69.2 >=dev-libs/gobject-introspection-0.10.1:= gui-libs/gtk:4[introspection] >=app-misc/geoclue-0.12.99:2.0[introspection] >=gui-libs/libadwaita-1.0:1[introspection] >=dev-libs/libgweather-4.2.0:4=[introspection] >=sci-geosciences/geocode-glib-3.15.2:2[introspection] >=media-libs/libshumate-1.0:1.0=[introspection] dev-libs/libxml2:2 >=net-libs/rest-0.9.1:1.0[introspection] app-crypt/libsecret[introspection] media-libs/graphene[introspection] net-libs/libsoup:3.0[introspection] x11-libs/pango[introspection] +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-maps/43/gnome-maps-43.5.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=e88eb5dd167e3b10f74f372ee423bbf5 diff --git a/metadata/md5-cache/sci-geosciences/gnome-maps-44.0 b/metadata/md5-cache/sci-geosciences/gnome-maps-44.0 new file mode 100644 index 000000000000..4e833fb142df --- /dev/null +++ b/metadata/md5-cache/sci-geosciences/gnome-maps-44.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=>=dev-libs/glib-2.66.0:2 >=dev-libs/gjs-1.69.2 >=dev-libs/gobject-introspection-0.10.1:= gui-libs/gtk:4[introspection] >=app-misc/geoclue-0.12.99:2.0[introspection] >=gui-libs/libadwaita-1.0:1[introspection] >=dev-libs/libgweather-4.2.0:4=[introspection] >=sci-geosciences/geocode-glib-3.15.2:2[introspection] >=media-libs/libshumate-1.0:1.0=[introspection] dev-libs/libxml2:2 >=net-libs/rest-0.9.1:1.0[introspection] app-crypt/libsecret[introspection] media-libs/graphene[introspection] net-libs/libsoup:3.0[introspection] x11-libs/pango[introspection] +DESCRIPTION=A map application for GNOME +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Maps +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson xdg +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0 +RDEPEND=>=dev-libs/glib-2.66.0:2 >=dev-libs/gjs-1.69.2 >=dev-libs/gobject-introspection-0.10.1:= gui-libs/gtk:4[introspection] >=app-misc/geoclue-0.12.99:2.0[introspection] >=gui-libs/libadwaita-1.0:1[introspection] >=dev-libs/libgweather-4.2.0:4=[introspection] >=sci-geosciences/geocode-glib-3.15.2:2[introspection] >=media-libs/libshumate-1.0:1.0=[introspection] dev-libs/libxml2:2 >=net-libs/rest-0.9.1:1.0[introspection] app-crypt/libsecret[introspection] media-libs/graphene[introspection] net-libs/libsoup:3.0[introspection] x11-libs/pango[introspection] +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-maps/44/gnome-maps-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=19e020c230b2da96b902c7e855af6e24 diff --git a/metadata/md5-cache/sci-geosciences/gpsbabel-1.8.0-r1 b/metadata/md5-cache/sci-geosciences/gpsbabel-1.8.0-r1 index 165408a06d18..59f8a98c57cb 100644 --- a/metadata/md5-cache/sci-geosciences/gpsbabel-1.8.0-r1 +++ b/metadata/md5-cache/sci-geosciences/gpsbabel-1.8.0-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/expat sci-libs/shapelib:= sys-libs/zlib:=[minizip] virtual/libusb:1 !qt6? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtserialport:5 dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets] dev-qt/qtwidgets:5 dev-qt/qtxml:5 ) qt6? ( dev-qt/qtbase:6[gui,network,widgets,xml] dev-qt/qtserialport:6 dev-qt/qtwebchannel:6 dev-qt/qtwebengine:6[widgets] dev-qt/qt5compat:6 ) SLOT=0 SRC_URI=https://github.com/gpsbabel/gpsbabel/archive/gpsbabel_1_8_0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4f146f4e51fc66728ee2fe9776ffc8b4 diff --git a/metadata/md5-cache/sci-geosciences/grass-8.2.0-r5 b/metadata/md5-cache/sci-geosciences/grass-8.2.0-r7 similarity index 58% rename from metadata/md5-cache/sci-geosciences/grass-8.2.0-r5 rename to metadata/md5-cache/sci-geosciences/grass-8.2.0-r7 index 5f5c78355f8f..4ee165d9b340 100644 --- a/metadata/md5-cache/sci-geosciences/grass-8.2.0-r5 +++ b/metadata/md5-cache/sci-geosciences/grass-8.2.0-r7 @@ -1,6 +1,6 @@ BDEPEND=sys-devel/bison sys-devel/flex sys-devel/gettext virtual/pkgconfig X? ( dev-lang/swig ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup -DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) X? ( x11-base/xorg-proto ) +DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) X? ( x11-base/xorg-proto ) DESCRIPTION=A free GIS with raster and vector functionality, as well as 3D vizualization EAPI=8 HOMEPAGE=https://grass.osgeo.org/ @@ -9,9 +9,9 @@ INHERIT=autotools desktop python-single-r1 toolchain-funcs xdg IUSE=blas cxx fftw geos lapack las mysql netcdf nls odbc opencl opengl openmp png postgres readline sqlite threads tiff truetype X zstd python_single_target_python3_9 python_single_target_python3_10 KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-2 -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) +RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) opengl? ( X ) SLOT=0/8.2 SRC_URI=https://grass.osgeo.org/grass82/source/grass-8.2.0.tar.gz _eclasses_=autotools b5529dc611971a61a30153916014f616 desktop 021728fdc1b03b36357dbc89489e0f0d gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=594bc7845868c501091ff0e4364807c1 +_md5_=6a4bf4a3de468196303df3ba727bbe23 diff --git a/metadata/md5-cache/sci-geosciences/grass-8.2.0-r6 b/metadata/md5-cache/sci-geosciences/grass-8.2.0-r8 similarity index 54% rename from metadata/md5-cache/sci-geosciences/grass-8.2.0-r6 rename to metadata/md5-cache/sci-geosciences/grass-8.2.0-r8 index 1785ba0d5680..f2fc5631e327 100644 --- a/metadata/md5-cache/sci-geosciences/grass-8.2.0-r6 +++ b/metadata/md5-cache/sci-geosciences/grass-8.2.0-r8 @@ -1,6 +1,6 @@ BDEPEND=sys-devel/bison sys-devel/flex sys-devel/gettext virtual/pkgconfig X? ( dev-lang/swig ) DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup -DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) X? ( x11-base/xorg-proto ) +DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) X? ( x11-base/xorg-proto ) DESCRIPTION=A free GIS with raster and vector functionality, as well as 3D vizualization EAPI=8 HOMEPAGE=https://grass.osgeo.org/ @@ -9,9 +9,9 @@ INHERIT=desktop python-single-r1 toolchain-funcs xdg IUSE=blas cxx fftw geos lapack las mysql netcdf nls odbc opencl opengl openmp pdal png postgres readline sqlite threads tiff truetype X zstd python_single_target_python3_9 python_single_target_python3_10 KEYWORDS=amd64 ~x86 LICENSE=GPL-2 -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) +RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( dev-python/wxpython:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) opengl? ( X ) SLOT=0/8.2 SRC_URI=https://grass.osgeo.org/grass82/source/grass-8.2.0.tar.gz _eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=0db2eb6a4d10f7fb73b5a6262b457a60 +_md5_=07aeb0ae004647fd2cecb61e8ec66ac4 diff --git a/metadata/md5-cache/sci-geosciences/grass-8.2.1-r1 b/metadata/md5-cache/sci-geosciences/grass-8.2.1-r2 similarity index 60% rename from metadata/md5-cache/sci-geosciences/grass-8.2.1-r1 rename to metadata/md5-cache/sci-geosciences/grass-8.2.1-r2 index 5604dcb59140..d60039534b81 100644 --- a/metadata/md5-cache/sci-geosciences/grass-8.2.1-r1 +++ b/metadata/md5-cache/sci-geosciences/grass-8.2.1-r2 @@ -1,6 +1,6 @@ BDEPEND=sys-devel/bison sys-devel/flex sys-devel/gettext virtual/pkgconfig X? ( dev-lang/swig ) DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup -DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/numpy[python_targets_python3_11(-)] dev-python/six[python_targets_python3_11(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) bzip2? ( app-arch/bzip2:= ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( >=dev-python/wxpython-4.1:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) X? ( x11-base/xorg-proto ) +DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/numpy[python_targets_python3_11(-)] dev-python/six[python_targets_python3_11(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) bzip2? ( app-arch/bzip2:= ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( >=dev-python/wxpython-4.1:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) X? ( x11-base/xorg-proto ) DESCRIPTION=A free GIS with raster and vector functionality, as well as 3D vizualization EAPI=8 HOMEPAGE=https://grass.osgeo.org/ @@ -9,9 +9,9 @@ INHERIT=desktop python-single-r1 toolchain-funcs xdg IUSE=blas bzip2 cxx fftw geos lapack las mysql netcdf nls odbc opencl opengl openmp pdal png postgres readline sqlite threads tiff truetype X zstd python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/numpy[python_targets_python3_11(-)] dev-python/six[python_targets_python3_11(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) bzip2? ( app-arch/bzip2:= ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( >=dev-python/wxpython-4.1:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) +RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/numpy[python_targets_python3_11(-)] dev-python/six[python_targets_python3_11(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) bzip2? ( app-arch/bzip2:= ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( >=dev-python/wxpython-4.1:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) opengl? ( X ) SLOT=0/8.2 SRC_URI=https://grass.osgeo.org/grass82/source/grass-8.2.1.tar.gz _eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=bb47fe6598e85453fad66e231aa1db91 +_md5_=4984f65f01e9ea9f8016fe67e3009728 diff --git a/metadata/md5-cache/sci-geosciences/grass-9999 b/metadata/md5-cache/sci-geosciences/grass-9999 index 304440222ed3..e3530a592605 100644 --- a/metadata/md5-cache/sci-geosciences/grass-9999 +++ b/metadata/md5-cache/sci-geosciences/grass-9999 @@ -1,6 +1,6 @@ BDEPEND=sys-devel/bison sys-devel/flex sys-devel/gettext virtual/pkgconfig X? ( dev-lang/swig ) >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/numpy[python_targets_python3_11(-)] dev-python/six[python_targets_python3_11(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) bzip2? ( app-arch/bzip2:= ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( >=dev-python/wxpython-4.1:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) X? ( x11-base/xorg-proto ) +DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/numpy[python_targets_python3_11(-)] dev-python/six[python_targets_python3_11(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) bzip2? ( app-arch/bzip2:= ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( >=dev-python/wxpython-4.1:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) X? ( x11-base/xorg-proto ) DESCRIPTION=A free GIS with raster and vector functionality, as well as 3D vizualization EAPI=8 HOMEPAGE=https://grass.osgeo.org/ @@ -9,8 +9,8 @@ INHERIT=desktop python-single-r1 toolchain-funcs xdg git-r3 IUSE=blas bzip2 cxx fftw geos lapack las mysql netcdf nls odbc opencl opengl openmp pdal png postgres readline sqlite threads tiff truetype X zstd python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 LICENSE=GPL-2 PROPERTIES=live -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/numpy[python_targets_python3_11(-)] dev-python/six[python_targets_python3_11(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) bzip2? ( app-arch/bzip2:= ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( >=dev-python/wxpython-4.1:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) +RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) >=app-admin/eselect-1.2 python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] dev-python/six[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/numpy[python_targets_python3_11(-)] dev-python/six[python_targets_python3_11(-)] ) sci-libs/gdal:= sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= sys-libs/zlib media-libs/libglvnd media-libs/glu blas? ( virtual/cblas[eselect-ldso(+)] virtual/blas[eselect-ldso(+)] ) bzip2? ( app-arch/bzip2:= ) fftw? ( sci-libs/fftw:3.0= ) geos? ( sci-libs/geos:= ) lapack? ( virtual/lapack[eselect-ldso(+)] ) las? ( sci-geosciences/liblas ) mysql? ( dev-db/mysql-connector-c:= ) netcdf? ( sci-libs/netcdf:= ) odbc? ( dev-db/unixODBC ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) pdal? ( >=sci-libs/pdal-2.0.0:= ) png? ( media-libs/libpng:= ) postgres? ( >=dev-db/postgresql-8.4:= ) readline? ( sys-libs/readline:= ) sqlite? ( dev-db/sqlite:3 ) tiff? ( media-libs/tiff:= ) truetype? ( media-libs/freetype:2 ) X? ( >=dev-python/wxpython-4.1:4.0 x11-libs/cairo[X] x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXt ) zstd? ( app-arch/zstd:= ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) opengl? ( X ) SLOT=0/8.3 _eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=3eeaf8b60c2a80b605e8f2e8ad92ee74 +_md5_=40136bc41c93079f97f0673a7a7c0c6f diff --git a/metadata/md5-cache/sci-geosciences/josm-bin-18646 b/metadata/md5-cache/sci-geosciences/josm-bin-18646 index a4c24bed11fc..fa60d73d2bb4 100644 --- a/metadata/md5-cache/sci-geosciences/josm-bin-18646 +++ b/metadata/md5-cache/sci-geosciences/josm-bin-18646 @@ -5,10 +5,10 @@ EAPI=8 HOMEPAGE=https://josm.openstreetmap.de/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=desktop java-utils-2 xdg -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=Apache-2.0 GPL-2+ GPL-3 RDEPEND=>=virtual/jre-1.8 SLOT=0 SRC_URI=https://josm.openstreetmap.de/download/josm-snapshot-18646.jar _eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d java-utils-2 eefed04ac580a259ecda1fbd966640b7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=9dfd4caa61f71bd24a95f434358615ae +_md5_=711bc97740fd0c513d245237af5f660c diff --git a/metadata/md5-cache/sci-geosciences/laszip-3.4.1 b/metadata/md5-cache/sci-geosciences/laszip-3.4.1 index 0b11b8fccca3..82b1d344c456 100644 --- a/metadata/md5-cache/sci-geosciences/laszip-3.4.1 +++ b/metadata/md5-cache/sci-geosciences/laszip-3.4.1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm ~arm64 ~ia64 ppc ppc64 x86 LICENSE=LGPL-2.1+ SLOT=0 SRC_URI=https://github.com/LASzip/LASzip/releases/download/3.4.1/laszip-src-3.4.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2ac2e75cc1ef308c04c355f16d016482 diff --git a/metadata/md5-cache/sci-geosciences/liblas-1.8.1-r3 b/metadata/md5-cache/sci-geosciences/liblas-1.8.1-r3 index af318c1180c6..bc1af74ab91b 100644 --- a/metadata/md5-cache/sci-geosciences/liblas-1.8.1-r3 +++ b/metadata/md5-cache/sci-geosciences/liblas-1.8.1-r3 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= sci-geosciences/laszip sci-libs/libgeotiff:= gdal? ( sc RESTRICT=test SLOT=0 SRC_URI=https://github.com/libLAS/libLAS/archive/1.8.1.tar.gz -> liblas-1.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0d4e1877144680886756fc955f592962 diff --git a/metadata/md5-cache/sci-geosciences/mapserver-7.6.4 b/metadata/md5-cache/sci-geosciences/mapserver-7.6.4 index 0472e58f7523..c309f7d37108 100644 --- a/metadata/md5-cache/sci-geosciences/mapserver-7.6.4 +++ b/metadata/md5-cache/sci-geosciences/mapserver-7.6.4 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 ) RESTRICT=test SLOT=0 SRC_URI=https://download.osgeo.org/mapserver/mapserver-7.6.4.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb depend.apache 416d1c5005c5f4594e79812fb7323f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 php-ext-source-r3 dc84cf08bcde05a1e04a95194d5a19c1 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b webapp ad783226c3d38ede384db5643af60dbd wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 depend.apache 416d1c5005c5f4594e79812fb7323f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 php-ext-source-r3 dc84cf08bcde05a1e04a95194d5a19c1 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b webapp ad783226c3d38ede384db5643af60dbd wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=891d5943b892b36cfac0024f827ab7d7 diff --git a/metadata/md5-cache/sci-geosciences/mapserver-8.0.0 b/metadata/md5-cache/sci-geosciences/mapserver-8.0.0 index d9171c9fce9e..22bc47eadc9a 100644 --- a/metadata/md5-cache/sci-geosciences/mapserver-8.0.0 +++ b/metadata/md5-cache/sci-geosciences/mapserver-8.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 p RESTRICT=test SLOT=0 SRC_URI=https://download.osgeo.org/mapserver/mapserver-8.0.0.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake a5763be3a7ea9d44c19c5a73586aeeeb depend.apache 416d1c5005c5f4594e79812fb7323f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 php-ext-source-r3 dc84cf08bcde05a1e04a95194d5a19c1 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b webapp ad783226c3d38ede384db5643af60dbd wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=autotools b5529dc611971a61a30153916014f616 cmake 2e47edc2986d4e1c0363867058cd4489 depend.apache 416d1c5005c5f4594e79812fb7323f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 perl-functions c3fca037246e877693badea0df3b0ef8 php-ext-source-r3 dc84cf08bcde05a1e04a95194d5a19c1 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b webapp ad783226c3d38ede384db5643af60dbd wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=13ef3ff279cf8ebb030bd79cfae6573a diff --git a/metadata/md5-cache/sci-geosciences/opencpn-5.6.2 b/metadata/md5-cache/sci-geosciences/opencpn-5.6.2 index d57bd18f57a6..d42096829249 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-5.6.2 +++ b/metadata/md5-cache/sci-geosciences/opencpn-5.6.2 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=app-arch/bzip2 lzma? ( app-arch/xz-utils ) dev-libs/tinyxml media-libs/freetype:2 media-libs/portaudio net-misc/curl sys-libs/zlib opengl? ( virtual/opengl ) x11-libs/gtk+:3 x11-libs/wxGTK:3.0-gtk3[X] SLOT=0 SRC_URI=https://github.com/OpenCPN/OpenCPN/archive/refs/tags/Release_5.6.2.tar.gz -> opencpn-5.6.2.tar.gz doc? ( https://launchpad.net/~opencpn/+archive/ubuntu/opencpn/+files/opencpn-doc_4.8.2.0.orig.tar.xz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e6585b24834a05822becdfe89bc9999 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-aisradar-1.2.17.0 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-aisradar-1.2.17.0 index 1165a9a7bee1..15bc833d360d 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-aisradar-1.2.17.0 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-aisradar-1.2.17.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 SRC_URI=https://github.com/rgleason/AISradar_pi/archive/v1.2.17.0.tar.gz -> opencpn-plugin-aisradar-1.2.17.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e6046420ea2d0c902cc20c6d416bf65b diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-aisradar-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-aisradar-9999 index 2806067b5863..f5baa54f4489 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-aisradar-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-aisradar-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e6046420ea2d0c902cc20c6d416bf65b diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-climatology-1.4.32.0 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-climatology-1.4.32.0 index 676ad5183b01..76e6434e045a 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-climatology-1.4.32.0 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-climatology-1.4.32.0 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 SRC_URI=https://github.com/rgleason/climatology_pi/archive/v1.4.32.0.tar.gz -> opencpn-plugin-climatology-1.4.32.0.tar.gz mirror://sourceforge/opencpnplugins/climatology_pi/CL-DATA-1.0.tar.xz -> opencpn-plugin-climatology-1.0-CL-DATA.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=81cf16231c8dd5656253ab7140d9d7c8 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-climatology-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-climatology-9999 index 5b76e2be8dba..e52f6193faa3 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-climatology-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-climatology-9999 @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 SRC_URI=mirror://sourceforge/opencpnplugins/climatology_pi/CL-DATA-1.0.tar.xz -> opencpn-plugin-climatology-1.0-CL-DATA.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=81cf16231c8dd5656253ab7140d9d7c8 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-dr-4.0.0 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-dr-4.0.0 index 2673be7855f1..bd05415cd4dc 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-dr-4.0.0 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-dr-4.0.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 SRC_URI=https://github.com/Rasbats/DR_pi/archive/v4.0.0.tar.gz -> opencpn-plugin-dr-4.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4b42441f3b51ed97b38d6ccee0cad404 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-dr-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-dr-9999 index 1aadc5aa3a6b..822a309aed9f 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-dr-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-dr-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4b42441f3b51ed97b38d6ccee0cad404 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-findit-1.2.12.0 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-findit-1.2.12.0 index 6f9638b42451..e4ab9bba6b4e 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-findit-1.2.12.0 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-findit-1.2.12.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 SRC_URI=https://github.com/rgleason/FindIt_pi/archive/v1.2.12.0.tar.gz -> opencpn-plugin-findit-1.2.12.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=32cf1818bd41d63e3ff9aeb0ac34760a diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-findit-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-findit-9999 index 9fc92a35837a..2feb23f780c0 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-findit-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-findit-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=32cf1818bd41d63e3ff9aeb0ac34760a diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-gxradar-1.1 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-gxradar-1.1 index 371a29055cf2..b06d44c37038 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-gxradar-1.1 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-gxradar-1.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/trudK45/gxradar_pi/archive/v.1.1.tar.gz -> opencpn-plugin-gxradar-1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=321a7e3ce592e9e3f7e9f0b6e18c4fa2 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-gxradar-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-gxradar-9999 index 7f15a3ccce39..9bd3b6ee472d 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-gxradar-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-gxradar-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=321a7e3ce592e9e3f7e9f0b6e18c4fa2 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-iacfleet-0.21.1 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-iacfleet-0.21.1 index b744a4ab7767..ea7744a61d62 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-iacfleet-0.21.1 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-iacfleet-0.21.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 SRC_URI=https://github.com/nohal/iacfleet_pi/archive/v0.21.1.tar.gz -> opencpn-plugin-iacfleet-0.21.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=857d2f3e692ca5f2e67b0fa896e9d4a2 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-iacfleet-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-iacfleet-9999 index 45335ceb570c..fb20721b3913 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-iacfleet-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-iacfleet-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=857d2f3e692ca5f2e67b0fa896e9d4a2 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-launcher-1.3 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-launcher-1.3 index 0f9a8958b32c..328a13318f02 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-launcher-1.3 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-launcher-1.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 SRC_URI=https://github.com/nohal/launcher_pi/archive/v1.3.tar.gz -> opencpn-plugin-launcher-1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f727580f7a35dbce133f06a016a8a77 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-launcher-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-launcher-9999 index c54860137fab..8b5c04d46e9d 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-launcher-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-launcher-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f727580f7a35dbce133f06a016a8a77 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-logbookkonni-1.4.22.0 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-logbookkonni-1.4.22.0 index 6e98cfd518a3..f8ba73e5191a 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-logbookkonni-1.4.22.0 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-logbookkonni-1.4.22.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= sys-devel/gettext SLOT=0 SRC_URI=https://github.com/rgleason/LogbookKonni_pi/archive/v1.4.22.0.tar.gz -> opencpn-plugin-logbookkonni-1.4.22.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f09cceeeb0b50cfdc1b97fdcc43ca3e4 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-logbookkonni-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-logbookkonni-9999 index b76e51a93d0f..fcf5175bbe27 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-logbookkonni-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-logbookkonni-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0-gtk3 sci-geosciences/opencpn:= sys-devel/gettext SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f09cceeeb0b50cfdc1b97fdcc43ca3e4 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-objsearch-0.7 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-objsearch-0.7 index b4b700084ce0..d58b45a1d14e 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-objsearch-0.7 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-objsearch-0.7 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/nohal/objsearch_pi/archive/v0.7.tar.gz -> opencpn-plugin-objsearch-0.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4d9d62da80a00cf73476c86417dbdf6e diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-objsearch-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-objsearch-9999 index 73efb87c54f9..eb8769e7b785 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-objsearch-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-objsearch-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4d9d62da80a00cf73476c86417dbdf6e diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpn_draw-1.3.14 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpn_draw-1.3.14 index e2f20404b4ae..7b666883f5c2 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpn_draw-1.3.14 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpn_draw-1.3.14 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/jongough/ocpn_draw_pi/archive/V1.3.14.tar.gz -> opencpn-plugin-ocpn_draw-1.3.14.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e60e3e36e203fcb4a642ad187119a73d diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpn_draw-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpn_draw-9999 index a6d6812d8059..6fde98af4f83 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpn_draw-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpn_draw-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e60e3e36e203fcb4a642ad187119a73d diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpndebugger-1.3 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpndebugger-1.3 index 3dfec2b1a6a3..6d8454accb49 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpndebugger-1.3 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpndebugger-1.3 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/nohal/ocpndebugger_pi/archive/v1.3.tar.gz -> opencpn-plugin-ocpndebugger-1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=85b2fae74970da4527307f80c5924ffe diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpndebugger-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpndebugger-9999 index a260bc0eb389..fa71866372ef 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpndebugger-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-ocpndebugger-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=85b2fae74970da4527307f80c5924ffe diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-oesenc-1.6.0 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-oesenc-1.6.0 index 6cf4961a2996..6934279b570e 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-oesenc-1.6.0 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-oesenc-1.6.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/mschiff/oesenc_pi/archive/v1.6.0.tar.gz -> opencpn-plugin-oesenc-1.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4c15a590635c6c027f40ab5d273edfb8 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-oesenc-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-oesenc-9999 index 38fa34213f3c..ce9364a2a250 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-oesenc-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-oesenc-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4c15a590635c6c027f40ab5d273edfb8 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-otcurrent-1.2 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-otcurrent-1.2 index db2f22bc4f89..8dcbc7b7f215 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-otcurrent-1.2 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-otcurrent-1.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/Rasbats/otcurrent_pi/archive/v1.2.tar.gz -> opencpn-plugin-otcurrent-1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5b57206cbf1752f0efae1635a38ee461 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-otcurrent-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-otcurrent-9999 index 1b1a13aee716..e23fe5fd89a7 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-otcurrent-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-otcurrent-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5b57206cbf1752f0efae1635a38ee461 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-polar-1.1007 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-polar-1.1007 index f97001c04706..3c93c3642060 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-polar-1.1007 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-polar-1.1007 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/ptulp/polar_pi/archive/v1.1007.tar.gz -> opencpn-plugin-polar-1.1007.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=210f6a36493d12ae947c1c9a3dd82425 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-polar-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-polar-9999 index 2a3f0a96f7da..91de828f8aed 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-polar-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-polar-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=210f6a36493d12ae947c1c9a3dd82425 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-radar-0.98 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-radar-0.98 index 8b1ea75f44a6..d2416a44c341 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-radar-0.98 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-radar-0.98 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/Verezano/radar_pi/archive/aisradar_pi-0.98.tar.gz -> opencpn-plugin-radar-0.98.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c3cb8fbc697547bca001bb7f02448fa3 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-radar-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-radar-9999 index fe8ffab41463..d0132439f951 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-radar-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-radar-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c3cb8fbc697547bca001bb7f02448fa3 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-route-1.2 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-route-1.2 index 109b0b03a98b..46ed68d471ae 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-route-1.2 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-route-1.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/SaltyPaws/route_pi/archive/v1.2.tar.gz -> opencpn-plugin-route-1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cb4bd410dfdc995c3a26d63ea0e6fa5c diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-route-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-route-9999 index be40db6f6306..26adc3f3b10e 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-route-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-route-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cb4bd410dfdc995c3a26d63ea0e6fa5c diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-squiddio-0.7 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-squiddio-0.7 index 2403592b2a90..74df848bd4a6 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-squiddio-0.7 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-squiddio-0.7 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 sys-devel/gettext SLOT=0 SRC_URI=https://github.com/mauroc/squiddio_pi/archive/0.7.tar.gz -> opencpn-plugin-squiddio-0.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ba4c3afbd215da4e4e4eeb7255c52b99 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-squiddio-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-squiddio-9999 index fe6049a0ba08..7c0aa598328e 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-squiddio-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-squiddio-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 sys-devel/gettext SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ba4c3afbd215da4e4e4eeb7255c52b99 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-statusbar-0.5.20180316 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-statusbar-0.5.20180316 index 4976e95a1b03..0fac45bb1285 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-statusbar-0.5.20180316 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-statusbar-0.5.20180316 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/mschiff/statusbar_pi/archive/v0.5.20180316.tar.gz -> opencpn-plugin-statusbar-0.5.20180316.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f36c15ed6fa7c929cd97a986cfe6458a diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-statusbar-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-statusbar-9999 index cc95b690feaf..181cfa003c02 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-statusbar-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-statusbar-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f36c15ed6fa7c929cd97a986cfe6458a diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-watchdog-1.9.051 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-watchdog-1.9.051 index 39257d011a0e..565fd75c7db7 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-watchdog-1.9.051 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-watchdog-1.9.051 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/seandepagnier/watchdog_pi/archive/v1.9.051.tar.gz -> opencpn-plugin-watchdog-1.9.051.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bc4c7f579674e50ec35335284f03b8c6 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-watchdog-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-watchdog-9999 index e2492efc83e1..dbb60fe5389e 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-watchdog-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-watchdog-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bc4c7f579674e50ec35335284f03b8c6 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-weather_routing-1.13.1 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-weather_routing-1.13.1 index 0ab15d839fdd..f09a409c0e63 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-weather_routing-1.13.1 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-weather_routing-1.13.1 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=x11-libs/wxGTK:3.0-gtk3 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/rgleason/weather_routing_pi/archive/v1.13.1.tar.gz -> opencpn-plugin-weather_routing-1.13.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cf8a29c47a97c58878d7d935190ce2a1 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-weather_routing-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-weather_routing-9999 index 74c4c128fc50..e0aa6ed520f7 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-weather_routing-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-weather_routing-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0-gtk3 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cf8a29c47a97c58878d7d935190ce2a1 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-weatherfax-1.3.20180316 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-weatherfax-1.3.20180316 index a7e5b21b85b3..ac6ea3c61ba2 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-weatherfax-1.3.20180316 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-weatherfax-1.3.20180316 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 SRC_URI=https://github.com/mschiff/weatherfax_pi/archive/v1.3.20180316.tar.gz -> opencpn-plugin-weatherfax-1.3.20180316.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=beaa68ff1859dbd74b287108c5e21c02 diff --git a/metadata/md5-cache/sci-geosciences/opencpn-plugin-weatherfax-9999 b/metadata/md5-cache/sci-geosciences/opencpn-plugin-weatherfax-9999 index 04a94496983e..b5ebdbad06a2 100644 --- a/metadata/md5-cache/sci-geosciences/opencpn-plugin-weatherfax-9999 +++ b/metadata/md5-cache/sci-geosciences/opencpn-plugin-weatherfax-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ PROPERTIES=live RDEPEND=x11-libs/wxGTK:3.0 >=sci-geosciences/opencpn-4.2.0 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=beaa68ff1859dbd74b287108c5e21c02 diff --git a/metadata/md5-cache/sci-geosciences/osm2pgsql-1.4.0-r100 b/metadata/md5-cache/sci-geosciences/osm2pgsql-1.4.0-r100 index f3d675ebba85..aa33adf48ea5 100644 --- a/metadata/md5-cache/sci-geosciences/osm2pgsql-1.4.0-r100 +++ b/metadata/md5-cache/sci-geosciences/osm2pgsql-1.4.0-r100 @@ -13,5 +13,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_s RESTRICT=test SLOT=0 SRC_URI=https://github.com/openstreetmap/osm2pgsql/archive/1.4.0.tar.gz -> osm2pgsql-1.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e200255909eb349855a397f37405e749 diff --git a/metadata/md5-cache/sci-geosciences/osm2pgsql-99999999 b/metadata/md5-cache/sci-geosciences/osm2pgsql-99999999 index c990e10b8d03..96bdf3cc8e20 100644 --- a/metadata/md5-cache/sci-geosciences/osm2pgsql-99999999 +++ b/metadata/md5-cache/sci-geosciences/osm2pgsql-99999999 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2 dev-db/postgresql:= dev-libs/expat sci-libs/proj:= sys-li REQUIRED_USE=lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ed395602b576e8ad5891e2255e74bb2e diff --git a/metadata/md5-cache/sci-geosciences/qgis-3.22.13 b/metadata/md5-cache/sci-geosciences/qgis-3.22.13 index 43d576ce87a9..9eaf4aedec0e 100644 --- a/metadata/md5-cache/sci-geosciences/qgis-3.22.13 +++ b/metadata/md5-cache/sci-geosciences/qgis-3.22.13 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://qgis.org/downloads/qgis-3.22.13.tar.bz2 examples? ( https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> qgis_sample_data-2.8.14.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f674eaa6c871b821da729ed2155bcef diff --git a/metadata/md5-cache/sci-geosciences/qgis-3.22.9 b/metadata/md5-cache/sci-geosciences/qgis-3.22.9 index 6ce35856787f..3d4522c2559e 100644 --- a/metadata/md5-cache/sci-geosciences/qgis-3.22.9 +++ b/metadata/md5-cache/sci-geosciences/qgis-3.22.9 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://qgis.org/downloads/qgis-3.22.9.tar.bz2 examples? ( https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> qgis_sample_data-2.8.14.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=16e1da42d4ad636d10466e0585e99a1b diff --git a/metadata/md5-cache/sci-geosciences/qgis-3.28.1 b/metadata/md5-cache/sci-geosciences/qgis-3.28.1 index 3d501a6dd97e..131d72cf3e18 100644 --- a/metadata/md5-cache/sci-geosciences/qgis-3.28.1 +++ b/metadata/md5-cache/sci-geosciences/qgis-3.28.1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://qgis.org/downloads/qgis-3.28.1.tar.bz2 examples? ( https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> qgis_sample_data-2.8.14.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7dbe51ec496a1f2407c0a293be7e941c diff --git a/metadata/md5-cache/sci-geosciences/qgis-3.28.2 b/metadata/md5-cache/sci-geosciences/qgis-3.28.2 index d87004977586..9443376a4e58 100644 --- a/metadata/md5-cache/sci-geosciences/qgis-3.28.2 +++ b/metadata/md5-cache/sci-geosciences/qgis-3.28.2 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://qgis.org/downloads/qgis-3.28.2.tar.bz2 examples? ( https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> qgis_sample_data-2.8.14.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d9dc146ce0d8420a608d9d0a23a4bc6f diff --git a/metadata/md5-cache/sci-geosciences/qgis-9999 b/metadata/md5-cache/sci-geosciences/qgis-9999 index c04384937bda..3cdd1e8d970d 100644 --- a/metadata/md5-cache/sci-geosciences/qgis-9999 +++ b/metadata/md5-cache/sci-geosciences/qgis-9999 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/qca:2[qt5(+),ssl] >=dev-db/spatialite-4.2.0 dev-db/sqlite:3 de REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) mapserver? ( python ) test? ( postgres ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=58092f1ddc83a02fd9c0a593e7eb2ab0 diff --git a/metadata/md5-cache/sci-geosciences/qmapshack-1.16.1-r1 b/metadata/md5-cache/sci-geosciences/qmapshack-1.16.1-r1 index ca2e597d8e09..61483434c422 100644 --- a/metadata/md5-cache/sci-geosciences/qmapshack-1.16.1-r1 +++ b/metadata/md5-cache/sci-geosciences/qmapshack-1.16.1-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=dev-libs/quazip:0=[qt5(+)] dev-qt/designer:5 dev-qt/qtdbus:5 dev-qt/qtdeclarative:5[widgets] dev-qt/qthelp:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtprintsupport:5 dev-qt/qtsql:5 dev-qt/qtwebengine:5[widgets] >=sci-geosciences/routino-3.1.1 sci-libs/alglib sci-libs/gdal:= >=sci-libs/proj-8:= SLOT=0 SRC_URI=https://github.com/Maproom/qmapshack/archive/V_1.16.1.tar.gz -> qmapshack-1.16.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6d4ebb129e4cbde413a65aa3f8ae3584 diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz index f9d866227de9..8889b41a5b94 100644 Binary files a/metadata/md5-cache/sci-libs/Manifest.gz and b/metadata/md5-cache/sci-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sci-libs/NNPACK-2020.12.22-r1 b/metadata/md5-cache/sci-libs/NNPACK-2020.12.22-r1 index be047c932704..dcacdde1af2d 100644 --- a/metadata/md5-cache/sci-libs/NNPACK-2020.12.22-r1 +++ b/metadata/md5-cache/sci-libs/NNPACK-2020.12.22-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/pthreadpool dev-libs/cpuinfo RESTRICT=test SLOT=0 SRC_URI=https://github.com/Maratyszcza/NNPACK/archive/c07e3a0400713d546e0dea2d5466dd22ea389c73.tar.gz -> NNPACK-2020.12.22.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a27c2150dea91bb7042b262fb1688ece diff --git a/metadata/md5-cache/sci-libs/QNNPACK-2019.08.28 b/metadata/md5-cache/sci-libs/QNNPACK-2019.08.28 index f71ad53cf2a8..a36f95f6411c 100644 --- a/metadata/md5-cache/sci-libs/QNNPACK-2019.08.28 +++ b/metadata/md5-cache/sci-libs/QNNPACK-2019.08.28 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( static-libs ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pytorch/QNNPACK/archive/7d2a4e9931a82adc3814275b6219a03e24e36b4c.tar.gz -> QNNPACK-2019.08.28.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8e95f178daa1eed9a5090d77a3ec7ef0 diff --git a/metadata/md5-cache/sci-libs/ViSP-3.5.0 b/metadata/md5-cache/sci-libs/ViSP-3.5.0 index 6bb1eed202cd..776d9fd8509c 100644 --- a/metadata/md5-cache/sci-libs/ViSP-3.5.0 +++ b/metadata/md5-cache/sci-libs/ViSP-3.5.0 @@ -13,5 +13,5 @@ REQUIRED_USE=motif? ( coin ) RESTRICT=!test? ( test ) SLOT=0/3.5 SRC_URI=https://visp-doc.inria.fr/download/releases/visp-3.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2f12394897ad1caf7ecc4c654602a5f diff --git a/metadata/md5-cache/sci-libs/XNNPACK-2022.02.17-r1 b/metadata/md5-cache/sci-libs/XNNPACK-2022.02.17-r1 index 8eacf5b822b8..97eb8fe28e50 100644 --- a/metadata/md5-cache/sci-libs/XNNPACK-2022.02.17-r1 +++ b/metadata/md5-cache/sci-libs/XNNPACK-2022.02.17-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( static-libs ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/XNNPACK/archive/84b02ad55f089598aa42a557573dc4eb6f92f3ff.tar.gz -> XNNPACK-2022.02.17.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=460d1de2910edf3c16406186c995fb69 diff --git a/metadata/md5-cache/sci-libs/alglib-3.17.0 b/metadata/md5-cache/sci-libs/alglib-3.17.0 index ba57024abfe8..1462a44b5d5f 100644 --- a/metadata/md5-cache/sci-libs/alglib-3.17.0 +++ b/metadata/md5-cache/sci-libs/alglib-3.17.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RESTRICT=!test? ( test ) SLOT=0/3.8 SRC_URI=https://www.alglib.net/translator/re/alglib-3.17.0.cpp.gpl.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d08aca2fad627b5dd1a9822f4e4af6e9 diff --git a/metadata/md5-cache/sci-libs/arborx-1.2 b/metadata/md5-cache/sci-libs/arborx-1.2 index c31aa4a9087b..1d211e706bb1 100644 --- a/metadata/md5-cache/sci-libs/arborx-1.2 +++ b/metadata/md5-cache/sci-libs/arborx-1.2 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ RDEPEND=dev-libs/boost:= mpi? ( virtual/mpi[cxx] ) sci-libs/trilinos SLOT=0 SRC_URI=https://github.com/arborx/ArborX/archive/refs/tags/v1.2.tar.gz -> arborx-1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e64108fa776c6f99387ba0ab3d3d5e20 diff --git a/metadata/md5-cache/sci-libs/armadillo-10.2.0-r1 b/metadata/md5-cache/sci-libs/armadillo-10.2.0-r1 index a290698348a9..072c777af5e0 100644 --- a/metadata/md5-cache/sci-libs/armadillo-10.2.0-r1 +++ b/metadata/md5-cache/sci-libs/armadillo-10.2.0-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=test? ( lapack ) RESTRICT=!test? ( test ) SLOT=0/10 SRC_URI=mirror://sourceforge/arma/armadillo-10.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4e9a5edf36143d6ce7546030ae144a71 diff --git a/metadata/md5-cache/sci-libs/armadillo-10.7.1 b/metadata/md5-cache/sci-libs/armadillo-10.7.1 index 0037b39bf2a0..850c721fa0e4 100644 --- a/metadata/md5-cache/sci-libs/armadillo-10.7.1 +++ b/metadata/md5-cache/sci-libs/armadillo-10.7.1 @@ -14,5 +14,5 @@ REQUIRED_USE=test? ( lapack ) RESTRICT=!test? ( test ) SLOT=0/10 SRC_URI=mirror://sourceforge/arma/armadillo-10.7.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0c12dcc80442ef76eaa49e15fadc1ba2 diff --git a/metadata/md5-cache/sci-libs/armadillo-10.8.2 b/metadata/md5-cache/sci-libs/armadillo-10.8.2 index 95782012e32e..31e6bb31df90 100644 --- a/metadata/md5-cache/sci-libs/armadillo-10.8.2 +++ b/metadata/md5-cache/sci-libs/armadillo-10.8.2 @@ -14,5 +14,5 @@ REQUIRED_USE=test? ( lapack ) RESTRICT=!test? ( test ) SLOT=0/10 SRC_URI=mirror://sourceforge/arma/armadillo-10.8.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8718dc4236abe095ecebc85a17fb53a7 diff --git a/metadata/md5-cache/sci-libs/armadillo-11.4.0 b/metadata/md5-cache/sci-libs/armadillo-11.4.0 index fd44e843983e..7cdff57131e3 100644 --- a/metadata/md5-cache/sci-libs/armadillo-11.4.0 +++ b/metadata/md5-cache/sci-libs/armadillo-11.4.0 @@ -14,5 +14,5 @@ REQUIRED_USE=test? ( arpack lapack superlu ) RESTRICT=!test? ( test ) SLOT=0/11 SRC_URI=mirror://sourceforge/arma/armadillo-11.4.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5dab4b118f0217cd44a8767b225ad705 diff --git a/metadata/md5-cache/sci-libs/avogadrolibs-1.95.1-r1 b/metadata/md5-cache/sci-libs/avogadrolibs-1.95.1-r1 index 7a4e4692807a..5b7710ffa5e3 100644 --- a/metadata/md5-cache/sci-libs/avogadrolibs-1.95.1-r1 +++ b/metadata/md5-cache/sci-libs/avogadrolibs-1.95.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=vtk? ( qt5 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/OpenChemistry/avogadrolibs/archive/1.95.1.tar.gz -> avogadrolibs-1.95.1.tar.gz https://github.com/OpenChemistry/molecules/archive/refs/tags/1.0.0.tar.gz -> avogadrolibs-molecules-1.0.0.tar.gz https://github.com/OpenChemistry/crystals/archive/refs/tags/1.0.1.tar.gz -> avogadrolibs-crystals-1.0.1.tar.gz vtk? ( https://github.com/psavery/genXrdPattern/releases/download/1.0-static/linux64-genXrdPattern -> linux64-genXrdPattern-avogadrolibs-1.95.1 ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d336d65b8ef27b5473c8fa174b674c99 diff --git a/metadata/md5-cache/sci-libs/avogadrolibs-1.97.0 b/metadata/md5-cache/sci-libs/avogadrolibs-1.97.0 index f4fd7ff7fdd9..a7e8a47daa3f 100644 --- a/metadata/md5-cache/sci-libs/avogadrolibs-1.97.0 +++ b/metadata/md5-cache/sci-libs/avogadrolibs-1.97.0 @@ -13,5 +13,5 @@ REQUIRED_USE=vtk? ( qt5 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/OpenChemistry/avogadrolibs/archive/1.97.0.tar.gz -> avogadrolibs-1.97.0.tar.gz https://github.com/OpenChemistry/molecules/archive/refs/tags/1.0.0.tar.gz -> avogadrolibs-molecules-1.0.0.tar.gz https://github.com/OpenChemistry/crystals/archive/refs/tags/1.0.1.tar.gz -> avogadrolibs-crystals-1.0.1.tar.gz vtk? ( https://github.com/psavery/genXrdPattern/releases/download/1.0-static/linux64-genXrdPattern -> linux64-genXrdPattern-avogadrolibs-1.97.0 ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=997e9afa2d2669841a24017769131b18 diff --git a/metadata/md5-cache/sci-libs/bliss-0.77 b/metadata/md5-cache/sci-libs/bliss-0.77 index b691bd0f75be..9de9b63aab03 100644 --- a/metadata/md5-cache/sci-libs/bliss-0.77 +++ b/metadata/md5-cache/sci-libs/bliss-0.77 @@ -11,5 +11,5 @@ LICENSE=LGPL-3 RDEPEND=gmp? ( dev-libs/gmp:0= ) SLOT=0/1 SRC_URI=https://users.aalto.fi/~tjunttil/bliss/downloads/bliss-0.77.zip -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=30e0634cce1e37652e6587c1e7c45b28 diff --git a/metadata/md5-cache/sci-libs/caffe2-1.13.1-r4 b/metadata/md5-cache/sci-libs/caffe2-1.13.1-r4 index 824129911655..d9495b0e86ca 100644 --- a/metadata/md5-cache/sci-libs/caffe2-1.13.1-r4 +++ b/metadata/md5-cache/sci-libs/caffe2-1.13.1-r4 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=https://github.com/pytorch/pytorch/archive/refs/tags/v1.13.1.tar.gz -> pytorch-1.13.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=75e55a2f5be42b5a26bc6d46cfe8bf92 diff --git a/metadata/md5-cache/sci-libs/ceres-solver-2.1.0 b/metadata/md5-cache/sci-libs/ceres-solver-2.1.0 index 178a58563780..4da48f76873f 100644 --- a/metadata/md5-cache/sci-libs/ceres-solver-2.1.0 +++ b/metadata/md5-cache/sci-libs/ceres-solver-2.1.0 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( gflags ) sparse? ( lapack ) abi_x86_32? ( !sparse !lapack ) RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=http://ceres-solver.org/ceres-solver-2.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ec69fced1e79d4b74f9b451137f00e4b diff --git a/metadata/md5-cache/sci-libs/cgnslib-4.3.0 b/metadata/md5-cache/sci-libs/cgnslib-4.3.0 index 63d68d164f10..c6afe03ec3ba 100644 --- a/metadata/md5-cache/sci-libs/cgnslib-4.3.0 +++ b/metadata/md5-cache/sci-libs/cgnslib-4.3.0 @@ -13,5 +13,5 @@ REQUIRED_USE=mpi? ( hdf5 ) szip? ( hdf5 ) RESTRICT=fortran? ( test ) !test? ( test ) SLOT=0/4 SRC_URI=https://github.com/CGNS/CGNS/archive/v4.3.0.tar.gz -> cgnslib-4.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=78ea9c6ef9eac24d92a268f2feeaaea7 diff --git a/metadata/md5-cache/sci-libs/clapack-3.2.1-r8 b/metadata/md5-cache/sci-libs/clapack-3.2.1-r8 index 8ce8584c6894..16446000d91c 100644 --- a/metadata/md5-cache/sci-libs/clapack-3.2.1-r8 +++ b/metadata/md5-cache/sci-libs/clapack-3.2.1-r8 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libf2c-20090407-r1 virtual/blas RESTRICT=test SLOT=0 SRC_URI=https://www.netlib.org/clapack/clapack-3.2.1-CMAKE.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e18661b09af2361783062c2871dc190a diff --git a/metadata/md5-cache/sci-libs/clblas-2.12-r1 b/metadata/md5-cache/sci-libs/clblas-2.12-r1 index a5ab49de062a..2c2e64d2e25b 100644 --- a/metadata/md5-cache/sci-libs/clblas-2.12-r1 +++ b/metadata/md5-cache/sci-libs/clblas-2.12-r1 @@ -12,5 +12,5 @@ RDEPEND=virtual/opencl client? ( virtual/cblas ) RESTRICT=test SLOT=0/2 SRC_URI=https://github.com/clMathLibraries/clBLAS/archive/v2.12.tar.gz -> clblas-2.12.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7074096d4eb447b1022af60ce13763f1 diff --git a/metadata/md5-cache/sci-libs/clblast-1.5.2 b/metadata/md5-cache/sci-libs/clblast-1.5.2 index 9bd455aa2861..0cf961a4cee8 100644 --- a/metadata/md5-cache/sci-libs/clblast-1.5.2 +++ b/metadata/md5-cache/sci-libs/clblast-1.5.2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( cuda opencl ) test? ( client ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/CNugteren/CLBlast/archive/1.5.2.tar.gz -> clblast-1.5.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0977d13a2e592c7a8065754862b70509 diff --git a/metadata/md5-cache/sci-libs/clblast-1.5.2-r1 b/metadata/md5-cache/sci-libs/clblast-1.5.2-r1 index 1c0e7465ba36..65f75f17b9b7 100644 --- a/metadata/md5-cache/sci-libs/clblast-1.5.2-r1 +++ b/metadata/md5-cache/sci-libs/clblast-1.5.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( cuda opencl ) test? ( client ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/CNugteren/CLBlast/archive/refs/tags/1.5.2.tar.gz -> clblast-1.5.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e6cf31a3c187ce302c5dae7786c5b3a diff --git a/metadata/md5-cache/sci-libs/cminpack-1.3.8 b/metadata/md5-cache/sci-libs/cminpack-1.3.8 index ee0fcb9af875..9233925337dc 100644 --- a/metadata/md5-cache/sci-libs/cminpack-1.3.8 +++ b/metadata/md5-cache/sci-libs/cminpack-1.3.8 @@ -10,5 +10,5 @@ LICENSE=minpack RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/devernay/cminpack/archive/v1.3.8.tar.gz -> cminpack-1.3.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bf40a6073fc2c9a44d675feabd116c15 diff --git a/metadata/md5-cache/sci-libs/coinor-cppad-20210000.5-r1 b/metadata/md5-cache/sci-libs/coinor-cppad-20210000.5-r1 index 651f00c761f3..1e4657b21ef2 100644 --- a/metadata/md5-cache/sci-libs/coinor-cppad-20210000.5-r1 +++ b/metadata/md5-cache/sci-libs/coinor-cppad-20210000.5-r1 @@ -11,5 +11,5 @@ LICENSE=EPL-2.0 RESTRICT=adolc? ( test ) ipopt? ( test ) SLOT=0/20210000.5 SRC_URI=https://github.com/coin-or/CppAD/archive/20210000.5.tar.gz -> coinor-cppad-20210000.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c07f83220ba0739c1492894fdf4722eb diff --git a/metadata/md5-cache/sci-libs/dcmtk-3.6.7-r1 b/metadata/md5-cache/sci-libs/dcmtk-3.6.7-r1 index eea6556107de..06284c0a0025 100644 --- a/metadata/md5-cache/sci-libs/dcmtk-3.6.7-r1 +++ b/metadata/md5-cache/sci-libs/dcmtk-3.6.7-r1 @@ -11,5 +11,5 @@ LICENSE=OFFIS RDEPEND=dev-libs/icu:= png? ( media-libs/libpng:* ) ssl? ( dev-libs/openssl:= ) tcpd? ( sys-apps/tcp-wrappers ) tiff? ( media-libs/tiff:= ) xml? ( dev-libs/libxml2:2 ) zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=https://dicom.offis.de/download/dcmtk/release/dcmtk-3.6.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=41e2c43460f405c0e827e58eadc320c5 diff --git a/metadata/md5-cache/sci-libs/dealii-9.4.0-r1 b/metadata/md5-cache/sci-libs/dealii-9.4.0-r1 index 7659cd396437..1e51cf47cfc4 100644 --- a/metadata/md5-cache/sci-libs/dealii-9.4.0-r1 +++ b/metadata/md5-cache/sci-libs/dealii-9.4.0-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= app-arch/bzip2 sys-libs/zlib dev-cpp/tbb:= arborx? ( sc REQUIRED_USE=arborx? ( trilinos ) p4est? ( mpi ) slepc? ( petsc ) trilinos? ( mpi ) SLOT=0 SRC_URI=https://github.com/dealii/dealii/releases/download/v9.4.0/dealii-9.4.0.tar.gz verify-sig? ( https://github.com/dealii/dealii/releases/download/v9.4.0/dealii-9.4.0.tar.gz.asc ) doc? ( https://github.com/dealii/dealii/releases/download/v9.4.0/dealii-9.4.0-offline_documentation.tar.gz verify-sig? ( https://github.com/dealii/dealii/releases/download/v9.4.0/dealii-9.4.0-offline_documentation.tar.gz.asc ) ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43b658a9ef67a0548d3a18d83123a3df diff --git a/metadata/md5-cache/sci-libs/dealii-9.4.1-r1 b/metadata/md5-cache/sci-libs/dealii-9.4.1-r1 index 6052311ea8fb..7b6e917ed164 100644 --- a/metadata/md5-cache/sci-libs/dealii-9.4.1-r1 +++ b/metadata/md5-cache/sci-libs/dealii-9.4.1-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= app-arch/bzip2 sys-libs/zlib dev-cpp/tbb:= arborx? ( sc REQUIRED_USE=arborx? ( trilinos ) p4est? ( mpi ) slepc? ( petsc ) trilinos? ( mpi ) SLOT=0 SRC_URI=https://github.com/dealii/dealii/releases/download/v9.4.1/dealii-9.4.1.tar.gz verify-sig? ( https://github.com/dealii/dealii/releases/download/v9.4.1/dealii-9.4.1.tar.gz.asc ) doc? ( https://github.com/dealii/dealii/releases/download/v9.4.1/dealii-9.4.1-offline_documentation.tar.gz verify-sig? ( https://github.com/dealii/dealii/releases/download/v9.4.1/dealii-9.4.1-offline_documentation.tar.gz.asc ) ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43b658a9ef67a0548d3a18d83123a3df diff --git a/metadata/md5-cache/sci-libs/dealii-9999 b/metadata/md5-cache/sci-libs/dealii-9999 index a1e0e6b07692..4f141eb08a93 100644 --- a/metadata/md5-cache/sci-libs/dealii-9999 +++ b/metadata/md5-cache/sci-libs/dealii-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/boost:= app-arch/bzip2 sys-libs/zlib dev-cpp/tbb:= arborx? ( sci-libs/arborx[mpi=] ) adolc? ( sci-libs/adolc ) arpack? ( sci-libs/arpack[mpi=] ) assimp? ( media-libs/assimp:= ) cgal? ( sci-mathematics/cgal ) cuda? ( dev-util/nvidia-cuda-toolkit ) ginkgo? ( sci-libs/ginkgo ) gmsh? ( sci-libs/gmsh ) gsl? ( sci-libs/gsl:= ) hdf5? ( sci-libs/hdf5[mpi=] ) lapack? ( virtual/lapack ) metis? ( >=sci-libs/metis-5 mpi? ( >=sci-libs/parmetis-4 ) ) mpi? ( virtual/mpi[cxx] ) muparser? ( dev-cpp/muParser ) opencascade? ( sci-libs/opencascade:= ) p4est? ( sci-libs/p4est[mpi] ) petsc? ( sci-mathematics/petsc[mpi=] ) scalapack? ( sci-libs/scalapack ) slepc? ( sci-mathematics/slepc[mpi=] ) sparse? ( sci-libs/umfpack ) sundials? ( sci-libs/sundials:= ) symengine? ( >=sci-libs/symengine-0.4:= ) trilinos? ( sci-libs/trilinos ) REQUIRED_USE=arborx? ( trilinos ) p4est? ( mpi ) slepc? ( petsc ) trilinos? ( mpi ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=07895b41aee985d93beb1d7c40973376 diff --git a/metadata/md5-cache/sci-libs/dlib-19.24 b/metadata/md5-cache/sci-libs/dlib-19.24 index 830fd4cb429b..9283bf472218 100644 --- a/metadata/md5-cache/sci-libs/dlib-19.24 +++ b/metadata/md5-cache/sci-libs/dlib-19.24 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( png || ( python_targets_python3_9 python_targets_python3_ RESTRICT=!test? ( test ) SLOT=0/19.24 SRC_URI=https://github.com/davisking/dlib/archive/v19.24.tar.gz -> dlib-19.24.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=348e3669dc31b47c2fd4e087926e3cae diff --git a/metadata/md5-cache/sci-libs/dmlc-core-0.5 b/metadata/md5-cache/sci-libs/dmlc-core-0.5 index dab7640b9124..3f7060ee4685 100644 --- a/metadata/md5-cache/sci-libs/dmlc-core-0.5 +++ b/metadata/md5-cache/sci-libs/dmlc-core-0.5 @@ -12,5 +12,5 @@ RDEPEND=s3? ( net-misc/curl[ssl] ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dmlc/dmlc-core/archive/refs/tags/v0.5.tar.gz -> dmlc-core-0.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a49754856500fb848636d23b4daf8b81 diff --git a/metadata/md5-cache/sci-libs/dmlc-core-0_p20170719-r1 b/metadata/md5-cache/sci-libs/dmlc-core-0_p20170719-r1 index 8cea68496827..a97461d691f3 100644 --- a/metadata/md5-cache/sci-libs/dmlc-core-0_p20170719-r1 +++ b/metadata/md5-cache/sci-libs/dmlc-core-0_p20170719-r1 @@ -12,5 +12,5 @@ RDEPEND=net-misc/curl[ssl] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dmlc/dmlc-core/archive/54db57d5d1b2a7b93319053011802888b827a539.tar.gz -> dmlc-core-0_p20170719.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b0f56d611962575b9035e011e5682377 diff --git a/metadata/md5-cache/sci-libs/eccodes-2.18.0 b/metadata/md5-cache/sci-libs/eccodes-2.18.0 index d596ab4eb02a..ad3f6b2461f8 100644 --- a/metadata/md5-cache/sci-libs/eccodes-2.18.0 +++ b/metadata/md5-cache/sci-libs/eccodes-2.18.0 @@ -13,5 +13,5 @@ REQUIRED_USE=fortran? ( !threads ( openmp ) ) openmp? ( !threads ( fortran ) ) t RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://confluence.ecmwf.int/download/attachments/45757960/eccodes-2.18.0-Source.tar.gz extra-test? ( http://download.ecmwf.org/test-data/eccodes/eccodes_test_data.tar.gz http://download.ecmwf.org/test-data/eccodes/data/mercator.grib2 ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6dafa74f9ea7f026ced285a83040a174 diff --git a/metadata/md5-cache/sci-libs/exodusii-6.09-r1 b/metadata/md5-cache/sci-libs/exodusii-6.09-r1 index 63bc8bb1b671..79e6d163646e 100644 --- a/metadata/md5-cache/sci-libs/exodusii-6.09-r1 +++ b/metadata/md5-cache/sci-libs/exodusii-6.09-r1 @@ -12,5 +12,5 @@ RDEPEND=sci-libs/netcdf:=[hdf5] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://dev.gentoo.org/~asturm/distfiles/exodus-6.09.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cad54e5493ef12f61137fb5c9f361204 diff --git a/metadata/md5-cache/sci-libs/fcl-0.6.1-r1 b/metadata/md5-cache/sci-libs/fcl-0.6.1-r1 index 248cc1ee8a49..32c113aad2b5 100644 --- a/metadata/md5-cache/sci-libs/fcl-0.6.1-r1 +++ b/metadata/md5-cache/sci-libs/fcl-0.6.1-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/eigen:3 dev-libs/boost:= sci-libs/flann sci-libs/libccd[double-p RESTRICT=!test? ( test ) SLOT=0/6 SRC_URI=https://github.com/flexible-collision-library/fcl/archive/v0.6.1.tar.gz -> fcl-0.6.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c66233e91e8cb72b1792846a4c91ec4c diff --git a/metadata/md5-cache/sci-libs/fcl-9999 b/metadata/md5-cache/sci-libs/fcl-9999 index ca56fc45f72d..d3fe7b2c9c1a 100644 --- a/metadata/md5-cache/sci-libs/fcl-9999 +++ b/metadata/md5-cache/sci-libs/fcl-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-cpp/eigen:3 dev-libs/boost:= sci-libs/flann sci-libs/libccd[double-precision] octomap? ( sci-libs/octomap:= ) RESTRICT=!test? ( test ) SLOT=0/6 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d58f4090a2ee4449645032998bdcc1b3 diff --git a/metadata/md5-cache/sci-libs/flann-1.9.1-r5 b/metadata/md5-cache/sci-libs/flann-1.9.1-r5 index 1864a3837fd3..d32c6046cf52 100644 --- a/metadata/md5-cache/sci-libs/flann-1.9.1-r5 +++ b/metadata/md5-cache/sci-libs/flann-1.9.1-r5 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=app-arch/lz4:= cuda? ( >=dev-util/nvidia-cuda-toolkit-5.5 ) mpi? ( dev-libs/boost:=[mpi] sci-libs/hdf5[mpi] ) !mpi? ( !sci-libs/hdf5[mpi] ) octave? ( >=sci-mathematics/octave-3.6.4-r1:= ) SLOT=0 SRC_URI=https://github.com/mariusmuja/flann/archive/1.9.1.tar.gz -> flann-1.9.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bf3177931db7806569c35d1115e57680 diff --git a/metadata/md5-cache/sci-libs/foxi-2021.05.27 b/metadata/md5-cache/sci-libs/foxi-2021.05.27 index d6088ac1767e..a92bd5e4eb8f 100644 --- a/metadata/md5-cache/sci-libs/foxi-2021.05.27 +++ b/metadata/md5-cache/sci-libs/foxi-2021.05.27 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=test SLOT=0 SRC_URI=https://github.com/houseroad/foxi/archive/c278588e34e535f0bb8f00df3880d26928038cad.tar.gz -> foxi-2021.05.27.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2c18d069b99edfb08c66fedbc3bd5e9b diff --git a/metadata/md5-cache/sci-libs/gdal-3.5.3-r1 b/metadata/md5-cache/sci-libs/gdal-3.5.3-r1 index cd29b8983379..8bbbc3a979fe 100644 --- a/metadata/md5-cache/sci-libs/gdal-3.5.3-r1 +++ b/metadata/md5-cache/sci-libs/gdal-3.5.3-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) test SLOT=0/31 SRC_URI=https://download.osgeo.org/gdal/3.5.3/gdal-3.5.3.tar.xz test? ( https://download.osgeo.org/gdal/3.5.3/gdalautotest-3.5.3.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e2f03f6f9dd57c2539227140d96f75c3 diff --git a/metadata/md5-cache/sci-libs/gdal-3.6.1-r1 b/metadata/md5-cache/sci-libs/gdal-3.6.1-r1 index f79f0e1e929f..277b4ca6e44d 100644 --- a/metadata/md5-cache/sci-libs/gdal-3.6.1-r1 +++ b/metadata/md5-cache/sci-libs/gdal-3.6.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/32 SRC_URI=https://download.osgeo.org/gdal/3.6.1/gdal-3.6.1.tar.xz test? ( https://download.osgeo.org/gdal/3.6.1/gdalautotest-3.6.1.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bfd1cd3e23651fb2f20096de28344ff4 diff --git a/metadata/md5-cache/sci-libs/gdal-3.6.2 b/metadata/md5-cache/sci-libs/gdal-3.6.2 index 5c9ce5aae1cb..fb17aadfbd34 100644 --- a/metadata/md5-cache/sci-libs/gdal-3.6.2 +++ b/metadata/md5-cache/sci-libs/gdal-3.6.2 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/32 SRC_URI=https://download.osgeo.org/gdal/3.6.2/gdal-3.6.2.tar.xz test? ( https://download.osgeo.org/gdal/3.6.2/gdalautotest-3.6.2.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=db3cf6ed93b44b4f41a9fd4632fdcfdb diff --git a/metadata/md5-cache/sci-libs/gdal-3.6.3 b/metadata/md5-cache/sci-libs/gdal-3.6.3 index 98e0ea8d3a84..b50411a5ccc2 100644 --- a/metadata/md5-cache/sci-libs/gdal-3.6.3 +++ b/metadata/md5-cache/sci-libs/gdal-3.6.3 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0/32 SRC_URI=https://download.osgeo.org/gdal/3.6.3/gdal-3.6.3.tar.xz test? ( https://download.osgeo.org/gdal/3.6.3/gdalautotest-3.6.3.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=41f2fe4cc3d1eca927f6a9e4b6ec536a diff --git a/metadata/md5-cache/sci-libs/geos-3.11.0 b/metadata/md5-cache/sci-libs/geos-3.11.0 index bd5a8ce1618a..7f3ab8665e70 100644 --- a/metadata/md5-cache/sci-libs/geos-3.11.0 +++ b/metadata/md5-cache/sci-libs/geos-3.11.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.osgeo.org/geos/geos-3.11.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=964ca1d9dd19fb0be0da1429e0aebec0 diff --git a/metadata/md5-cache/sci-libs/geos-3.11.1 b/metadata/md5-cache/sci-libs/geos-3.11.1 index f37b5e28f928..fcf686438b32 100644 --- a/metadata/md5-cache/sci-libs/geos-3.11.1 +++ b/metadata/md5-cache/sci-libs/geos-3.11.1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.osgeo.org/geos/geos-3.11.1.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b58bafe365f17b45df3a5dfeb4f00b77 diff --git a/metadata/md5-cache/sci-libs/geos-3.11.2 b/metadata/md5-cache/sci-libs/geos-3.11.2 index f698913bf0aa..4c108cb2c481 100644 --- a/metadata/md5-cache/sci-libs/geos-3.11.2 +++ b/metadata/md5-cache/sci-libs/geos-3.11.2 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.osgeo.org/geos/geos-3.11.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=083ae4e5e9a42edcd486bb05ba2a8a46 diff --git a/metadata/md5-cache/sci-libs/ginkgo-1.4.0-r3 b/metadata/md5-cache/sci-libs/ginkgo-1.4.0-r3 index 850bbd628eb3..b229b7996434 100644 --- a/metadata/md5-cache/sci-libs/ginkgo-1.4.0-r3 +++ b/metadata/md5-cache/sci-libs/ginkgo-1.4.0-r3 @@ -11,5 +11,5 @@ LICENSE=BSD-with-attribution RDEPEND=cuda? ( dev-util/nvidia-cuda-toolkit ) hwloc? ( sys-apps/hwloc:= ) SLOT=0 SRC_URI=https://github.com/ginkgo-project/ginkgo/archive/v1.4.0.tar.gz -> ginkgo-1.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5bfc02c5a5de6010198d4ab782dbd103 diff --git a/metadata/md5-cache/sci-libs/gloo-2022.05.18-r1 b/metadata/md5-cache/sci-libs/gloo-2022.05.18-r1 index 110807ea82e0..4be8cb9d0ef9 100644 --- a/metadata/md5-cache/sci-libs/gloo-2022.05.18-r1 +++ b/metadata/md5-cache/sci-libs/gloo-2022.05.18-r1 @@ -12,5 +12,5 @@ RDEPEND=libuv? ( dev-libs/libuv ) mpi? ( virtual/mpi ) redis? ( dev-db/redis dev RESTRICT=test SLOT=0 SRC_URI=https://github.com/facebookincubator/gloo/archive/5b143513263133af2b95547e97c07cebeb72bf72.tar.gz -> gloo-2022.05.18.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=defe23a4ceb80203c8eab628a0d01706 diff --git a/metadata/md5-cache/sci-libs/gmsh-4.10.3 b/metadata/md5-cache/sci-libs/gmsh-4.10.3 index b5f37a816ae0..fa246db61b3e 100644 --- a/metadata/md5-cache/sci-libs/gmsh-4.10.3 +++ b/metadata/md5-cache/sci-libs/gmsh-4.10.3 @@ -12,5 +12,5 @@ RDEPEND=virtual/fortran X? ( x11-libs/fltk:1[xft] ) alglib? ( sci-libs/alglib ) REQUIRED_USE=^^ ( blas eigen ) mumps? ( blas ) slepc? ( petsc ) SLOT=0 SRC_URI=https://gmsh.info/src/gmsh-4.10.3-source.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4d8ef2b9903e969c2b92a2c5b0d86c21 diff --git a/metadata/md5-cache/sci-libs/gmsh-4.9.5-r2 b/metadata/md5-cache/sci-libs/gmsh-4.9.5-r2 index f3e2a5ce626f..321a0918d1b9 100644 --- a/metadata/md5-cache/sci-libs/gmsh-4.9.5-r2 +++ b/metadata/md5-cache/sci-libs/gmsh-4.9.5-r2 @@ -12,5 +12,5 @@ RDEPEND=virtual/fortran X? ( x11-libs/fltk:1[xft] ) blas? ( virtual/blas virtual REQUIRED_USE=med? ( mpi ) SLOT=0 SRC_URI=https://gmsh.info/src/gmsh-4.9.5-source.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2113fd2bcada210683b87f6bdd33b5f7 diff --git a/metadata/md5-cache/sci-libs/hipBLAS-5.1.3 b/metadata/md5-cache/sci-libs/hipBLAS-5.1.3 index 87a8c261a48a..d15bc57e0c83 100644 --- a/metadata/md5-cache/sci-libs/hipBLAS-5.1.3 +++ b/metadata/md5-cache/sci-libs/hipBLAS-5.1.3 @@ -12,5 +12,5 @@ RDEPEND=dev-util/hip sci-libs/rocBLAS:0/5.1[amdgpu_targets_gfx906(-)?,amdgpu_tar REQUIRED_USE=|| ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_targets_gfx90a amdgpu_targets_gfx1030 amdgpu_targets_gfx803 amdgpu_targets_gfx900 amdgpu_targets_gfx1010 amdgpu_targets_gfx1011 amdgpu_targets_gfx1012 amdgpu_targets_gfx1031 ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/hipBLAS/archive/rocm-5.1.3.tar.gz -> hipBLAS-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57df0baf730b4ce18aeb3acb5502c8f1 diff --git a/metadata/md5-cache/sci-libs/hipCUB-5.1.3 b/metadata/md5-cache/sci-libs/hipCUB-5.1.3 index cece2bd92f3d..1b8e011a1872 100644 --- a/metadata/md5-cache/sci-libs/hipCUB-5.1.3 +++ b/metadata/md5-cache/sci-libs/hipCUB-5.1.3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_targets_gfx RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/hipCUB/archive/rocm-5.1.3.tar.gz -> hipCUB-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7de6e962b2597459ebed4b5e7b5abb10 diff --git a/metadata/md5-cache/sci-libs/hipFFT-5.1.3 b/metadata/md5-cache/sci-libs/hipFFT-5.1.3 index 2d9048efeddc..16e6f3479671 100644 --- a/metadata/md5-cache/sci-libs/hipFFT-5.1.3 +++ b/metadata/md5-cache/sci-libs/hipFFT-5.1.3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_targets_gfx RESTRICT=test SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/hipFFT/archive/refs/tags/rocm-5.1.3.tar.gz -> hipFFT-rocm-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a82f3733f851d2413b5363534b761b20 diff --git a/metadata/md5-cache/sci-libs/hipSPARSE-5.1.3-r1 b/metadata/md5-cache/sci-libs/hipSPARSE-5.1.3-r1 index ad6b7e3d12b0..9712a7a30293 100644 --- a/metadata/md5-cache/sci-libs/hipSPARSE-5.1.3-r1 +++ b/metadata/md5-cache/sci-libs/hipSPARSE-5.1.3-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_targets_gfx RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/hipSPARSE/archive/rocm-5.1.3.tar.gz -> hipSPARSE-5.1.tar.gz test? ( https://sparse.tamu.edu/MM/SNAP/amazon0312.tar.gz -> rocSPARSE_amazon0312.tar.gz https://sparse.tamu.edu/MM/Muite/Chebyshev4.tar.gz -> rocSPARSE_Chebyshev4.tar.gz https://sparse.tamu.edu/MM/FEMLAB/sme3Dc.tar.gz -> rocSPARSE_sme3Dc.tar.gz https://sparse.tamu.edu/MM/Williams/webbase-1M.tar.gz -> rocSPARSE_webbase-1M.tar.gz https://sparse.tamu.edu/MM/Bova/rma10.tar.gz -> rocSPARSE_rma10.tar.gz https://sparse.tamu.edu/MM/JGD_BIBD/bibd_22_8.tar.gz -> rocSPARSE_bibd_22_8.tar.gz https://sparse.tamu.edu/MM/Williams/mac_econ_fwd500.tar.gz -> rocSPARSE_mac_econ_fwd500.tar.gz https://sparse.tamu.edu/MM/Williams/mc2depi.tar.gz -> rocSPARSE_mc2depi.tar.gz https://sparse.tamu.edu/MM/Hamm/scircuit.tar.gz -> rocSPARSE_scircuit.tar.gz https://sparse.tamu.edu/MM/Sandia/ASIC_320k.tar.gz -> rocSPARSE_ASIC_320k.tar.gz https://sparse.tamu.edu/MM/GHS_psdef/bmwcra_1.tar.gz -> rocSPARSE_bmwcra_1.tar.gz https://sparse.tamu.edu/MM/HB/nos1.tar.gz -> rocSPARSE_nos1.tar.gz https://sparse.tamu.edu/MM/HB/nos2.tar.gz -> rocSPARSE_nos2.tar.gz https://sparse.tamu.edu/MM/HB/nos3.tar.gz -> rocSPARSE_nos3.tar.gz https://sparse.tamu.edu/MM/HB/nos4.tar.gz -> rocSPARSE_nos4.tar.gz https://sparse.tamu.edu/MM/HB/nos5.tar.gz -> rocSPARSE_nos5.tar.gz https://sparse.tamu.edu/MM/HB/nos6.tar.gz -> rocSPARSE_nos6.tar.gz https://sparse.tamu.edu/MM/HB/nos7.tar.gz -> rocSPARSE_nos7.tar.gz https://sparse.tamu.edu/MM/DNVS/shipsec1.tar.gz -> rocSPARSE_shipsec1.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bb766d3fda3d9f143fb70e5fcfdcd16b diff --git a/metadata/md5-cache/sci-libs/ignition-common-3.14.2 b/metadata/md5-cache/sci-libs/ignition-common-3.14.2 index e9c74367377d..deb6334cedda 100644 --- a/metadata/md5-cache/sci-libs/ignition-common-3.14.2 +++ b/metadata/md5-cache/sci-libs/ignition-common-3.14.2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/tinyxml2:= sci-libs/ignition-math:6= sys-apps/util-linux media- RESTRICT=test SLOT=3 SRC_URI=https://github.com/ignitionrobotics/ign-common/archive/ignition-common3_3.14.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8ad100ee60ec2796a3f0b097e0104d97 diff --git a/metadata/md5-cache/sci-libs/ignition-fuel-tools-4.4.0 b/metadata/md5-cache/sci-libs/ignition-fuel-tools-4.4.0 index 148de6303f53..c9f48aaa173c 100644 --- a/metadata/md5-cache/sci-libs/ignition-fuel-tools-4.4.0 +++ b/metadata/md5-cache/sci-libs/ignition-fuel-tools-4.4.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/tinyxml2:= net-misc/curl:= dev-libs/jsoncpp:= dev-libs/libyaml: RESTRICT=!test? ( test ) SLOT=4 SRC_URI=https://github.com/ignitionrobotics/ign-fuel-tools/archive/ignition-fuel-tools4_4.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a2d25fafd0d9d7216264b43ff170b3d4 diff --git a/metadata/md5-cache/sci-libs/ignition-math-6.10.0 b/metadata/md5-cache/sci-libs/ignition-math-6.10.0 index 19da227a2584..aedbcef975ee 100644 --- a/metadata/md5-cache/sci-libs/ignition-math-6.10.0 +++ b/metadata/md5-cache/sci-libs/ignition-math-6.10.0 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 LICENSE=Apache-2.0 SLOT=6/6 SRC_URI=https://github.com/ignitionrobotics/ign-math/archive/ignition-math6_6.10.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=673202b7752e25a8a874701e2eb6d822 diff --git a/metadata/md5-cache/sci-libs/indilib-1.9.8 b/metadata/md5-cache/sci-libs/indilib-1.9.8 index 4183c489a221..9d7afe11723a 100644 --- a/metadata/md5-cache/sci-libs/indilib-1.9.8 +++ b/metadata/md5-cache/sci-libs/indilib-1.9.8 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libev media-libs/libjpeg-turbo:= net-misc/curl sci-libs/cfitsio RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/indilib/indi/archive/v1.9.8.tar.gz -> indilib-1.9.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f1a2b7ec5681ccf3532b85ba25336f45 diff --git a/metadata/md5-cache/sci-libs/itpp-4.3.1-r2 b/metadata/md5-cache/sci-libs/itpp-4.3.1-r2 index b37ded7b5b97..c84eaa42451c 100644 --- a/metadata/md5-cache/sci-libs/itpp-4.3.1-r2 +++ b/metadata/md5-cache/sci-libs/itpp-4.3.1-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=sci-libs/fftw:3.0= virtual/blas virtual/lapack SLOT=0 SRC_URI=mirror://sourceforge/itpp/itpp-4.3.1.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ed7bec67daa1b8391af31017d9df7dfe diff --git a/metadata/md5-cache/sci-libs/kim-api-2.2.1 b/metadata/md5-cache/sci-libs/kim-api-2.2.1 index ca9b6ef92e56..688ee420b037 100644 --- a/metadata/md5-cache/sci-libs/kim-api-2.2.1 +++ b/metadata/md5-cache/sci-libs/kim-api-2.2.1 @@ -10,5 +10,5 @@ LICENSE=CDDL RDEPEND=app-editors/vim-core virtual/fortran SLOT=0 SRC_URI=https://s3.openkim.org/kim-api/kim-api-2.2.1.txz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca26624f7059868e49639e0d2d9428f2 diff --git a/metadata/md5-cache/sci-libs/kineto-0.4.0 b/metadata/md5-cache/sci-libs/kineto-0.4.0 index cbac68f1fd4f..499d2300e98e 100644 --- a/metadata/md5-cache/sci-libs/kineto-0.4.0 +++ b/metadata/md5-cache/sci-libs/kineto-0.4.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libfmt RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pytorch/kineto/archive/refs/tags/v0.4.0.tar.gz -> kineto-0.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0e1fc323e2745b17f649631b8d7b310d diff --git a/metadata/md5-cache/sci-libs/kissfft-131.1.0 b/metadata/md5-cache/sci-libs/kissfft-131.1.0 index efac8087c364..5ea2be600916 100644 --- a/metadata/md5-cache/sci-libs/kissfft-131.1.0 +++ b/metadata/md5-cache/sci-libs/kissfft-131.1.0 @@ -11,5 +11,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mborgerding/kissfft/archive/131.1.0.tar.gz -> kissfft-131.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2f66cdf3fc70e53b8b1bf4d708c08f4f diff --git a/metadata/md5-cache/sci-libs/kissfft-9999 b/metadata/md5-cache/sci-libs/kissfft-9999 index 5fe8146b66c5..7502ca1b16d0 100644 --- a/metadata/md5-cache/sci-libs/kissfft-9999 +++ b/metadata/md5-cache/sci-libs/kissfft-9999 @@ -10,5 +10,5 @@ LICENSE=BSD PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=17865bc2f6eac711988a321f570b8f98 diff --git a/metadata/md5-cache/sci-libs/lapack-3.10.1 b/metadata/md5-cache/sci-libs/lapack-3.10.1 index 4b1c503a8358..3008cd3601d0 100644 --- a/metadata/md5-cache/sci-libs/lapack-3.10.1 +++ b/metadata/md5-cache/sci-libs/lapack-3.10.1 @@ -12,5 +12,5 @@ RDEPEND=!app-eselect/eselect-cblas virtual/fortran eselect-ldso? ( >=app-eselect RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Reference-LAPACK/lapack/archive/v3.10.1.tar.gz -> lapack-3.10.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2d026e0769ae3453aeff47adc73f7559 diff --git a/metadata/md5-cache/sci-libs/lapack-3.11 b/metadata/md5-cache/sci-libs/lapack-3.11 index 5c4ab1310949..7c5bd8ade2ab 100644 --- a/metadata/md5-cache/sci-libs/lapack-3.11 +++ b/metadata/md5-cache/sci-libs/lapack-3.11 @@ -12,5 +12,5 @@ RDEPEND=!app-eselect/eselect-cblas virtual/fortran eselect-ldso? ( >=app-eselect RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Reference-LAPACK/lapack/archive/v3.11.tar.gz -> lapack-3.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=c81825762f4e0039db30fb91210ed2a7 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=66fc45e43acafd2eda5638649dbc615e diff --git a/metadata/md5-cache/sci-libs/lemon-1.3.1-r1 b/metadata/md5-cache/sci-libs/lemon-1.3.1-r1 index 0e57381e9001..ee384cdfb794 100644 --- a/metadata/md5-cache/sci-libs/lemon-1.3.1-r1 +++ b/metadata/md5-cache/sci-libs/lemon-1.3.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( coin glpk ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://lemon.cs.elte.hu/pub/sources/lemon-1.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e1911db23ff972c61186356fc11a8695 diff --git a/metadata/md5-cache/sci-libs/levmar-2.6-r1 b/metadata/md5-cache/sci-libs/levmar-2.6-r1 index 2f0fbf0c2781..6422f3875253 100644 --- a/metadata/md5-cache/sci-libs/levmar-2.6-r1 +++ b/metadata/md5-cache/sci-libs/levmar-2.6-r1 @@ -12,5 +12,5 @@ RDEPEND=virtual/blas virtual/lapack RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.ics.forth.gr/~lourakis/levmar/levmar-2.6.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e9ffe13384292cef3124bdafe9bdecd diff --git a/metadata/md5-cache/sci-libs/libaec-1.0.6 b/metadata/md5-cache/sci-libs/libaec-1.0.6 index ae19b0c47e9b..6d7c06262c29 100644 --- a/metadata/md5-cache/sci-libs/libaec-1.0.6 +++ b/metadata/md5-cache/sci-libs/libaec-1.0.6 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=szip? ( !sci-libs/szip ) SLOT=0/2 SRC_URI=https://gitlab.dkrz.de/k202009/libaec/-/archive/v1.0.6/libaec-v1.0.6.tar.gz -> libaec-1.0.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1e1f01d7e7324f0951e3513a79bf2375 diff --git a/metadata/md5-cache/sci-libs/libccd-2.1 b/metadata/md5-cache/sci-libs/libccd-2.1 index 0639024b22b0..d95ad90b47a7 100644 --- a/metadata/md5-cache/sci-libs/libccd-2.1 +++ b/metadata/md5-cache/sci-libs/libccd-2.1 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/danfis/libccd/archive/v2.1.tar.gz -> libccd-2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=64ea239fddb13cba047c70d9eca877d9 diff --git a/metadata/md5-cache/sci-libs/libccd-9999 b/metadata/md5-cache/sci-libs/libccd-9999 index 683e1740c31a..bd030b261d3e 100644 --- a/metadata/md5-cache/sci-libs/libccd-9999 +++ b/metadata/md5-cache/sci-libs/libccd-9999 @@ -9,5 +9,5 @@ LICENSE=BSD PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e1cc6973015e027f5c2c5a525d223bbd diff --git a/metadata/md5-cache/sci-libs/libcerf-1.17 b/metadata/md5-cache/sci-libs/libcerf-1.17 index d874fb4d20aa..338a3ede1533 100644 --- a/metadata/md5-cache/sci-libs/libcerf-1.17 +++ b/metadata/md5-cache/sci-libs/libcerf-1.17 @@ -8,5 +8,5 @@ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc LICENSE=MIT SLOT=0 SRC_URI=https://jugit.fz-juelich.de/mlz/libcerf/-/archive/v1.17/libcerf-v1.17.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d81cffce7a531b7e5e5b2c10b5d6f8ff diff --git a/metadata/md5-cache/sci-libs/libcifpp-2.0.4-r1 b/metadata/md5-cache/sci-libs/libcifpp-2.0.4-r1 index 83f40396991f..985fad70662d 100644 --- a/metadata/md5-cache/sci-libs/libcifpp-2.0.4-r1 +++ b/metadata/md5-cache/sci-libs/libcifpp-2.0.4-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/PDB-REDO/libcifpp/archive/refs/tags/v2.0.4.tar.gz -> libcifpp-2.0.4.tar.gz ftp://ftp.wwpdb.org/pub/pdb/data/monomers/components.cif.gz -> components-2.0.4.cif.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=edf6710066d780eff22e177db04474fd diff --git a/metadata/md5-cache/sci-libs/libcifpp-3.0.0 b/metadata/md5-cache/sci-libs/libcifpp-3.0.0 index 728918eb6419..8c7fb26b4d32 100644 --- a/metadata/md5-cache/sci-libs/libcifpp-3.0.0 +++ b/metadata/md5-cache/sci-libs/libcifpp-3.0.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/PDB-REDO/libcifpp/archive/refs/tags/v3.0.0.tar.gz -> libcifpp-3.0.0.tar.gz ftp://ftp.wwpdb.org/pub/pdb/data/monomers/components.cif.gz -> components-3.0.0.cif.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0b67e4c9208d160c4c283fa9f97121fd diff --git a/metadata/md5-cache/sci-libs/libcifpp-5.0.5 b/metadata/md5-cache/sci-libs/libcifpp-5.0.5 index 779462e44cf7..3ca4c2b96df0 100644 --- a/metadata/md5-cache/sci-libs/libcifpp-5.0.5 +++ b/metadata/md5-cache/sci-libs/libcifpp-5.0.5 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/PDB-REDO/libcifpp/archive/refs/tags/v5.0.5.tar.gz -> libcifpp-5.0.5.tar.gz https://dev.gentoo.org/~pacho/libcifpp/libcifpp-5.0.5-components.cif.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=89972910bb7c2deaaa27aaf75c3875cc diff --git a/metadata/md5-cache/sci-libs/libcifpp-5.0.8 b/metadata/md5-cache/sci-libs/libcifpp-5.0.8 index 0a029b1a8de9..3a86c04a29ad 100644 --- a/metadata/md5-cache/sci-libs/libcifpp-5.0.8 +++ b/metadata/md5-cache/sci-libs/libcifpp-5.0.8 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/PDB-REDO/libcifpp/archive/refs/tags/v5.0.8.tar.gz -> libcifpp-5.0.8.tar.gz https://dev.gentoo.org/~pacho/libcifpp/libcifpp-5.0.8-components.cif.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=68667b23e90b7aeb3d505b44efd83a34 diff --git a/metadata/md5-cache/sci-libs/libecpint-1.0.6 b/metadata/md5-cache/sci-libs/libecpint-1.0.6 index 1accc87b7993..860fc78e2dd8 100644 --- a/metadata/md5-cache/sci-libs/libecpint-1.0.6 +++ b/metadata/md5-cache/sci-libs/libecpint-1.0.6 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/pugixml RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/robashaw/libecpint/archive/v1.0.6.tar.gz -> libecpint-1.0.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=070eb3cac5c692e4ec15c27cea5684e9 diff --git a/metadata/md5-cache/sci-libs/libecpint-1.0.6-r1 b/metadata/md5-cache/sci-libs/libecpint-1.0.6-r1 index 3756d75d5917..64bd95782360 100644 --- a/metadata/md5-cache/sci-libs/libecpint-1.0.6-r1 +++ b/metadata/md5-cache/sci-libs/libecpint-1.0.6-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/pugixml RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/robashaw/libecpint/archive/v1.0.6.tar.gz -> libecpint-1.0.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b908d762a7b998831d6b6bc5e80c963d diff --git a/metadata/md5-cache/sci-libs/libgeodecomp-0.5.0_pre20201009 b/metadata/md5-cache/sci-libs/libgeodecomp-0.5.0_pre20201009 index 2bb4207eea82..2bf9ab4e0029 100644 --- a/metadata/md5-cache/sci-libs/libgeodecomp-0.5.0_pre20201009 +++ b/metadata/md5-cache/sci-libs/libgeodecomp-0.5.0_pre20201009 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/STEllAR-GROUP/libgeodecomp/archive/6848b3a17b359e03585e56dd1f37dc7c71136114.tar.gz -> libgeodecomp-0.5.0_pre20201009.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c8c957247d69b0c82856d9641f206718 diff --git a/metadata/md5-cache/sci-libs/libgeotiff-1.7.1-r3 b/metadata/md5-cache/sci-libs/libgeotiff-1.7.1-r3 index 9d876314d762..a31ef3ed3cf1 100644 --- a/metadata/md5-cache/sci-libs/libgeotiff-1.7.1-r3 +++ b/metadata/md5-cache/sci-libs/libgeotiff-1.7.1-r3 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=>=sci-libs/proj-6.0.0:= jpeg? ( media-libs/libjpeg-turbo:= ) tiff? ( >=media-libs/tiff-3.9.1:= ) zlib? ( sys-libs/zlib ) SLOT=0/5 SRC_URI=https://download.osgeo.org/geotiff/libgeotiff/libgeotiff-1.7.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4a69f9db72a3ea41c05e93731d9c750 diff --git a/metadata/md5-cache/sci-libs/libigl-2.4.0 b/metadata/md5-cache/sci-libs/libigl-2.4.0 index b253900fd5da..996e4c50895c 100644 --- a/metadata/md5-cache/sci-libs/libigl-2.4.0 +++ b/metadata/md5-cache/sci-libs/libigl-2.4.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ MPL-2.0 RDEPEND=dev-cpp/eigen:3 SLOT=0 SRC_URI=https://github.com/libigl/libigl/archive/v2.4.0.tar.gz -> libigl-2.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=07ff1bad83ae337793dfde29f21f0711 diff --git a/metadata/md5-cache/sci-libs/liborigin-3.0.1_p20210828-r1 b/metadata/md5-cache/sci-libs/liborigin-3.0.1_p20210828-r1 index a84caf945d19..78cb88fc829e 100644 --- a/metadata/md5-cache/sci-libs/liborigin-3.0.1_p20210828-r1 +++ b/metadata/md5-cache/sci-libs/liborigin-3.0.1_p20210828-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-cpp/tree SLOT=2 SRC_URI=https://github.com/SciDAVis/liborigin/archive/970b90ada051dfa2e80929cde91d052bf28be674.tar.gz -> liborigin-3.0.1_p20210828.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=56b52fde4ee1d7b8aa97fc1374fadd16 diff --git a/metadata/md5-cache/sci-libs/libsc-2.8.3 b/metadata/md5-cache/sci-libs/libsc-2.8.3 index 3172b021996f..885afecdfc25 100644 --- a/metadata/md5-cache/sci-libs/libsc-2.8.3 +++ b/metadata/md5-cache/sci-libs/libsc-2.8.3 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ RDEPEND=sys-apps/util-linux sys-libs/zlib virtual/blas virtual/lapack mpi? ( virtual/mpi[romio] ) SLOT=0 SRC_URI=https://github.com/cburstedde/libsc/archive/v2.8.3.tar.gz -> libsc-2.8.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a0d0c79f67618320eaa99cf4eba5388a diff --git a/metadata/md5-cache/sci-libs/libsc-9999 b/metadata/md5-cache/sci-libs/libsc-9999 index 457f055bdc65..d940a0f97320 100644 --- a/metadata/md5-cache/sci-libs/libsc-9999 +++ b/metadata/md5-cache/sci-libs/libsc-9999 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1+ PROPERTIES=live RDEPEND=sys-apps/util-linux sys-libs/zlib virtual/blas virtual/lapack mpi? ( virtual/mpi[romio] ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3ca41f9813bd648d9595224772431404 diff --git a/metadata/md5-cache/sci-libs/libspatialindex-1.9.3-r1 b/metadata/md5-cache/sci-libs/libspatialindex-1.9.3-r1 index 60803a43375d..b5594eab065a 100644 --- a/metadata/md5-cache/sci-libs/libspatialindex-1.9.3-r1 +++ b/metadata/md5-cache/sci-libs/libspatialindex-1.9.3-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/6 SRC_URI=https://github.com/libspatialindex/libspatialindex/releases/download/1.9.3/spatialindex-src-1.9.3.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=00d9e363256328d1ee4105b8cc468528 diff --git a/metadata/md5-cache/sci-libs/libspatialindex-1.9.3-r2 b/metadata/md5-cache/sci-libs/libspatialindex-1.9.3-r2 index d4e6d19af708..68b48b553445 100644 --- a/metadata/md5-cache/sci-libs/libspatialindex-1.9.3-r2 +++ b/metadata/md5-cache/sci-libs/libspatialindex-1.9.3-r2 @@ -11,5 +11,5 @@ LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/6 SRC_URI=https://github.com/libspatialindex/libspatialindex/releases/download/1.9.3/spatialindex-src-1.9.3.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0be149709afbd0184463a3e5235cfc20 diff --git a/metadata/md5-cache/sci-libs/lmfit-9.0-r1 b/metadata/md5-cache/sci-libs/lmfit-9.0-r1 index ba19dd117195..3ec965554688 100644 --- a/metadata/md5-cache/sci-libs/lmfit-9.0-r1 +++ b/metadata/md5-cache/sci-libs/lmfit-9.0-r1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 arm ~arm64 x86 LICENSE=BSD-2 SLOT=0/9 SRC_URI=https://jugit.fz-juelich.de/mlz/lmfit/-/archive/v9.0/lmfit-v9.0.tar.gz -> lmfit-9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a810950d62100050f351f84c4bd872eb diff --git a/metadata/md5-cache/sci-libs/mathgl-2.4.4-r1 b/metadata/md5-cache/sci-libs/mathgl-2.4.4-r1 index cd1af1cdde6c..02bd868e252d 100644 --- a/metadata/md5-cache/sci-libs/mathgl-2.4.4-r1 +++ b/metadata/md5-cache/sci-libs/mathgl-2.4.4-r1 @@ -12,5 +12,5 @@ RDEPEND=virtual/opengl fltk? ( x11-libs/fltk:1 ) gif? ( media-libs/giflib ) glut REQUIRED_USE=mpi? ( hdf5 ) openmp? ( !threads ) png? ( zlib ) pdf? ( png ) SLOT=0/7.5.0 SRC_URI=mirror://sourceforge/mathgl/mathgl-2.4.4.tar.gz mirror://sourceforge/mathgl/STIX_font.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aa3ca5b98a6badc2627a6b2de6658181 diff --git a/metadata/md5-cache/sci-libs/med-4.1.1 b/metadata/md5-cache/sci-libs/med-4.1.1 index 037a2c4c0936..04d9b4d55c96 100644 --- a/metadata/md5-cache/sci-libs/med-4.1.1 +++ b/metadata/md5-cache/sci-libs/med-4.1.1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) python? ( test ) SLOT=0 SRC_URI=https://files.salome-platform.org/Salome/other/med-4.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e1fab4a59f0ec07ddd71fdbcb361d45 diff --git a/metadata/md5-cache/sci-libs/metis-5.1.0-r5 b/metadata/md5-cache/sci-libs/metis-5.1.0-r5 index b6aceeb4a48b..1c7e25b2726f 100644 --- a/metadata/md5-cache/sci-libs/metis-5.1.0-r5 +++ b/metadata/md5-cache/sci-libs/metis-5.1.0-r5 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RDEPEND=!=dev-util/hip-5.1.3 >=dev-db/sqlite-3.17 sci-libs/rocBLAS:0/5.1[amdgpu_ RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/MIOpen/archive/rocm-5.1.3.tar.gz -> MIOpen-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fb373885d26b519fccb307c5b28d43b5 diff --git a/metadata/md5-cache/sci-libs/nanoflann-1.3.2 b/metadata/md5-cache/sci-libs/nanoflann-1.3.2 index cfb75b6cdb04..94ee9e277748 100644 --- a/metadata/md5-cache/sci-libs/nanoflann-1.3.2 +++ b/metadata/md5-cache/sci-libs/nanoflann-1.3.2 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/eigen:3 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jlblancoc/nanoflann/archive/v1.3.2.tar.gz -> nanoflann-1.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1852a3ee370e05bebefafd9addc689e2 diff --git a/metadata/md5-cache/sci-libs/nanoflann-9999 b/metadata/md5-cache/sci-libs/nanoflann-9999 index ec4651f52978..86b253d42167 100644 --- a/metadata/md5-cache/sci-libs/nanoflann-9999 +++ b/metadata/md5-cache/sci-libs/nanoflann-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-cpp/eigen:3 RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1852a3ee370e05bebefafd9addc689e2 diff --git a/metadata/md5-cache/sci-libs/neartree-5.1.1 b/metadata/md5-cache/sci-libs/neartree-5.1.1 index 7c2a5db91d5e..22d040e7e1e7 100644 --- a/metadata/md5-cache/sci-libs/neartree-5.1.1 +++ b/metadata/md5-cache/sci-libs/neartree-5.1.1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/cvector SLOT=0 SRC_URI=mirror://sourceforge/neartree/NearTree-5.1.1.tar.gz -> neartree-5.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b8893968df08d4e0fa35e7c100204a4d diff --git a/metadata/md5-cache/sci-libs/nemesis-6.09 b/metadata/md5-cache/sci-libs/nemesis-6.09 index 0d4940193c4e..247e39d3a239 100644 --- a/metadata/md5-cache/sci-libs/nemesis-6.09 +++ b/metadata/md5-cache/sci-libs/nemesis-6.09 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=sci-libs/exodusii sci-libs/netcdf SLOT=0 SRC_URI=https://dev.gentoo.org/~asturm/distfiles/exodus-6.09.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=996b0f2ae0b271f909c6448d109e829a diff --git a/metadata/md5-cache/sci-libs/netcdf-4.8.1-r1 b/metadata/md5-cache/sci-libs/netcdf-4.8.1-r1 index ae7b9f19763f..366935d055a4 100644 --- a/metadata/md5-cache/sci-libs/netcdf-4.8.1-r1 +++ b/metadata/md5-cache/sci-libs/netcdf-4.8.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( tools ) szip? ( hdf5 ) mpi? ( hdf5 ) RESTRICT=!test? ( test ) SLOT=0/19 SRC_URI=https://github.com/Unidata/netcdf-c/archive/v4.8.1.tar.gz -> netcdf-4.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e50ff13df7f09267437ad3d90934dc7c diff --git a/metadata/md5-cache/sci-libs/netcdf-4.8.1-r2 b/metadata/md5-cache/sci-libs/netcdf-4.8.1-r2 index cb20a55f0787..a0a6fa5daab6 100644 --- a/metadata/md5-cache/sci-libs/netcdf-4.8.1-r2 +++ b/metadata/md5-cache/sci-libs/netcdf-4.8.1-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( tools ) szip? ( hdf5 ) mpi? ( hdf5 ) RESTRICT=!test? ( test ) SLOT=0/19 SRC_URI=https://github.com/Unidata/netcdf-c/archive/v4.8.1.tar.gz -> netcdf-4.8.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4236da7032fe3a3547ad889b32af83f2 diff --git a/metadata/md5-cache/sci-libs/netcdf-4.9.2 b/metadata/md5-cache/sci-libs/netcdf-4.9.2 index f86014ad87f3..5c5464521390 100644 --- a/metadata/md5-cache/sci-libs/netcdf-4.9.2 +++ b/metadata/md5-cache/sci-libs/netcdf-4.9.2 @@ -13,5 +13,5 @@ REQUIRED_USE=szip? ( hdf5 ) mpi? ( hdf5 ) RESTRICT=!test? ( test ) SLOT=0/19 SRC_URI=https://downloads.unidata.ucar.edu/netcdf-c/4.9.2/netcdf-c-4.9.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cc471dae39de9909e6e0e9f9bee7236c diff --git a/metadata/md5-cache/sci-libs/nlopt-2.7.1-r1 b/metadata/md5-cache/sci-libs/nlopt-2.7.1-r1 index 59714909f313..b2c18beca6c2 100644 --- a/metadata/md5-cache/sci-libs/nlopt-2.7.1-r1 +++ b/metadata/md5-cache/sci-libs/nlopt-2.7.1-r1 @@ -1,6 +1,6 @@ -BDEPEND=python? ( dev-lang/swig ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 virtual/fortran +BDEPEND=python? ( dev-lang/swig ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 test? ( virtual/fortran ) DEFINED_PHASES=compile configure install prepare setup test -DEPEND=guile? ( dev-scheme/guile:* ) octave? ( >=sci-mathematics/octave-6 ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) virtual/fortran +DEPEND=guile? ( dev-scheme/guile:* ) octave? ( >=sci-mathematics/octave-6 ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) DESCRIPTION=Non-linear optimization library EAPI=8 HOMEPAGE=https://github.com/stevengj/nlopt @@ -8,10 +8,10 @@ INHERIT=python-r1 cmake fortran-2 IUSE=cxx guile octave python test python_targets_python3_9 python_targets_python3_10 KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=LGPL-2.1 MIT -RDEPEND=guile? ( dev-scheme/guile:* ) octave? ( >=sci-mathematics/octave-6 ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) virtual/fortran +RDEPEND=guile? ( dev-scheme/guile:* ) octave? ( >=sci-mathematics/octave-6 ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/stevengj/nlopt/archive/v2.7.1.tar.gz -> nlopt-2.7.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=413bcf0ce97bd57ae90fe0db25b95867 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=3e805f3446e4a36efdd53b83ffde0f05 diff --git a/metadata/md5-cache/sci-libs/nlopt-2.7.1-r2 b/metadata/md5-cache/sci-libs/nlopt-2.7.1-r2 index c0dcc4feadba..f303d3ad3c9f 100644 --- a/metadata/md5-cache/sci-libs/nlopt-2.7.1-r2 +++ b/metadata/md5-cache/sci-libs/nlopt-2.7.1-r2 @@ -1,6 +1,6 @@ -BDEPEND=python? ( dev-lang/swig ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 virtual/fortran +BDEPEND=python? ( dev-lang/swig ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 test? ( virtual/fortran ) DEFINED_PHASES=compile configure install prepare setup test -DEPEND=guile? ( dev-scheme/guile:* ) octave? ( >=sci-mathematics/octave-6:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) virtual/fortran +DEPEND=guile? ( dev-scheme/guile:* ) octave? ( >=sci-mathematics/octave-6:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) DESCRIPTION=Non-linear optimization library EAPI=8 HOMEPAGE=https://github.com/stevengj/nlopt @@ -8,10 +8,10 @@ INHERIT=python-r1 cmake fortran-2 IUSE=cxx guile octave python test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=LGPL-2.1 MIT -RDEPEND=guile? ( dev-scheme/guile:* ) octave? ( >=sci-mathematics/octave-6:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) virtual/fortran +RDEPEND=guile? ( dev-scheme/guile:* ) octave? ( >=sci-mathematics/octave-6:= ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/stevengj/nlopt/archive/v2.7.1.tar.gz -> nlopt-2.7.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=fae7706fa082ec99a1266a3d120595f1 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=0491a5c6cc40399b7449e836eb3d0cd8 diff --git a/metadata/md5-cache/sci-libs/octomap-1.9.8 b/metadata/md5-cache/sci-libs/octomap-1.9.8 index 2f6eaa60d7e0..e0f2a6fff708 100644 --- a/metadata/md5-cache/sci-libs/octomap-1.9.8 +++ b/metadata/md5-cache/sci-libs/octomap-1.9.8 @@ -10,5 +10,5 @@ LICENSE=BSD qt5? ( GPL-2 ) RDEPEND=qt5? ( virtual/opengl dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 x11-libs/libQGLViewer:= ) SLOT=0/19 SRC_URI=https://github.com/OctoMap/octomap/archive/v1.9.8.tar.gz -> octomap-1.9.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca4b1c7c4737bfa852d5b211b9ff2260 diff --git a/metadata/md5-cache/sci-libs/onnx-1.11.0-r2 b/metadata/md5-cache/sci-libs/onnx-1.11.0-r2 index e65443424296..5cd84ba1160f 100644 --- a/metadata/md5-cache/sci-libs/onnx-1.11.0-r2 +++ b/metadata/md5-cache/sci-libs/onnx-1.11.0-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/protobuf:= RESTRICT=test SLOT=0 SRC_URI=https://github.com/onnx/onnx/archive/refs/tags/v1.11.0.tar.gz -> onnx-1.11.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=98d047b16b1ba3295f8f308bc78ae884 diff --git a/metadata/md5-cache/sci-libs/onnx-1.12.0 b/metadata/md5-cache/sci-libs/onnx-1.12.0 index e9c1376b62cb..a17cd8b50abf 100644 --- a/metadata/md5-cache/sci-libs/onnx-1.12.0 +++ b/metadata/md5-cache/sci-libs/onnx-1.12.0 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/protobuf:= RESTRICT=test SLOT=0 SRC_URI=https://github.com/onnx/onnx/archive/refs/tags/v1.12.0.tar.gz -> onnx-1.12.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=98d047b16b1ba3295f8f308bc78ae884 diff --git a/metadata/md5-cache/sci-libs/opencascade-7.6.3-r1 b/metadata/md5-cache/sci-libs/opencascade-7.6.3-r1 index da0abc0d5954..49a9f379ba91 100644 --- a/metadata/md5-cache/sci-libs/opencascade-7.6.3-r1 +++ b/metadata/md5-cache/sci-libs/opencascade-7.6.3-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=?? ( optimize tbb ) RESTRICT=test SLOT=0/7.6 SRC_URI=https://git.dev.opencascade.org/gitweb/?p=occt.git;a=snapshot;h=b079fb9877ef64d4a8158a60fa157f59b096debb;sf=tgz -> opencascade-7.6.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c4b8f42ccdb91259acfe9a4e503d2aed diff --git a/metadata/md5-cache/sci-libs/opencascade-7.7.0-r1 b/metadata/md5-cache/sci-libs/opencascade-7.7.0-r1 index 980ab14339de..6c1115e94a44 100644 --- a/metadata/md5-cache/sci-libs/opencascade-7.7.0-r1 +++ b/metadata/md5-cache/sci-libs/opencascade-7.7.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=?? ( optimize tbb ) RESTRICT=test SLOT=0/7.7 SRC_URI=https://git.dev.opencascade.org/gitweb/?p=occt.git;a=snapshot;h=185d29b92f6764ffa9fc195b7dbe7bba3c4ac855;sf=tgz -> opencascade-7.7.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=08a72e44f9eed1fd0c9f713c3d1a88f8 diff --git a/metadata/md5-cache/sci-libs/orocos-bfl-0.8.0 b/metadata/md5-cache/sci-libs/orocos-bfl-0.8.0 index cf6fbb08c89f..0263f7984435 100644 --- a/metadata/md5-cache/sci-libs/orocos-bfl-0.8.0 +++ b/metadata/md5-cache/sci-libs/orocos-bfl-0.8.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://people.mech.kuleuven.be/~tdelaet/bfl_tar/orocos-bfl-0.8.0-src.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b0ca042fb128929be88995f8885c47ca diff --git a/metadata/md5-cache/sci-libs/orocos_kdl-1.5.1 b/metadata/md5-cache/sci-libs/orocos_kdl-1.5.1 index 8f1fd4b3fd5c..3c59fe1c0543 100644 --- a/metadata/md5-cache/sci-libs/orocos_kdl-1.5.1 +++ b/metadata/md5-cache/sci-libs/orocos_kdl-1.5.1 @@ -13,5 +13,5 @@ REQUIRED_USE=examples? ( models ) RESTRICT=!test? ( test ) SLOT=0/15 SRC_URI=https://github.com/orocos/orocos_kinematics_dynamics/archive/v1.5.1.tar.gz -> orocos_kinematics_dynamics-1.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f33d57c9487f84352d047ed452075a2 diff --git a/metadata/md5-cache/sci-libs/orocos_kdl-9999 b/metadata/md5-cache/sci-libs/orocos_kdl-9999 index 261614e4c744..2ff3ff9de18d 100644 --- a/metadata/md5-cache/sci-libs/orocos_kdl-9999 +++ b/metadata/md5-cache/sci-libs/orocos_kdl-9999 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/eigen:3 REQUIRED_USE=examples? ( models ) RESTRICT=!test? ( test ) SLOT=0/15 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b2108dad7e5f72e092c96949ff56e7d3 diff --git a/metadata/md5-cache/sci-libs/p4est-2.8-r1 b/metadata/md5-cache/sci-libs/p4est-2.8-r1 index afc7f75d52d3..93b3bffb95d2 100644 --- a/metadata/md5-cache/sci-libs/p4est-2.8-r1 +++ b/metadata/md5-cache/sci-libs/p4est-2.8-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=~sci-libs/libsc-2.8.3[mpi=,openmp=,threads=] sys-apps/util-linux virtual/blas virtual/lapack mpi? ( virtual/mpi[romio] ) SLOT=0 SRC_URI=https://github.com/cburstedde/p4est/archive/v2.8.tar.gz -> p4est-2.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cb4bb5f9f4b267cf762ffa2b89b788e2 diff --git a/metadata/md5-cache/sci-libs/p4est-9999 b/metadata/md5-cache/sci-libs/p4est-9999 index fd7b03bf09d1..e50aec832590 100644 --- a/metadata/md5-cache/sci-libs/p4est-9999 +++ b/metadata/md5-cache/sci-libs/p4est-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=~sci-libs/libsc-2.8.3[mpi=,openmp=,threads=] sys-apps/util-linux virtual/blas virtual/lapack mpi? ( virtual/mpi[romio] ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2f69a9f505d49fdf078f0ac3ee94708e diff --git a/metadata/md5-cache/sci-libs/parmetis-4.0.3-r2 b/metadata/md5-cache/sci-libs/parmetis-4.0.3-r2 index 832b6c5e96aa..58643811765f 100644 --- a/metadata/md5-cache/sci-libs/parmetis-4.0.3-r2 +++ b/metadata/md5-cache/sci-libs/parmetis-4.0.3-r2 @@ -12,5 +12,5 @@ RDEPEND=>=sci-libs/metis-5.1.0-r5 virtual/mpi[fortran] pcre? ( dev-libs/libpcre: RESTRICT=mirror bindist SLOT=0 SRC_URI=http://glaros.dtc.umn.edu/gkhome/fetch/sw/parmetis/parmetis-4.0.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=320abb1918ffaa948b905c8e011f6229 diff --git a/metadata/md5-cache/sci-libs/pastix-6.0.3 b/metadata/md5-cache/sci-libs/pastix-6.0.3 index d5db9fd2e699..2289f578c996 100644 --- a/metadata/md5-cache/sci-libs/pastix-6.0.3 +++ b/metadata/md5-cache/sci-libs/pastix-6.0.3 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gforge.inria.fr/frs/download.php/file/38205/pastix-6.0.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=abb0edab1bf4d3c1ed046b6f76411440 diff --git a/metadata/md5-cache/sci-libs/pcl-1.12.1-r2 b/metadata/md5-cache/sci-libs/pcl-1.12.1-r2 index b95af09e4d21..96536923acd8 100644 --- a/metadata/md5-cache/sci-libs/pcl-1.12.1-r2 +++ b/metadata/md5-cache/sci-libs/pcl-1.12.1-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=openni? ( usb ) openni2? ( usb ) tutorials? ( doc ) RESTRICT=test SLOT=0/1.12 SRC_URI=https://github.com/PointCloudLibrary/pcl/archive/pcl-1.12.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fec42890acf49a2eafa8b6f90ef6c4bd diff --git a/metadata/md5-cache/sci-libs/pcl-9999 b/metadata/md5-cache/sci-libs/pcl-9999 index 1a51284c99d0..0e32727dfd21 100644 --- a/metadata/md5-cache/sci-libs/pcl-9999 +++ b/metadata/md5-cache/sci-libs/pcl-9999 @@ -12,5 +12,5 @@ RDEPEND=>=sci-libs/flann-1.7.1 dev-libs/boost:= dev-cpp/eigen:3 opengl? ( virtua REQUIRED_USE=openni? ( usb ) openni2? ( usb ) tutorials? ( doc ) RESTRICT=test SLOT=0/1.12 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=23b26e1ae9c7a0fe993977af41600d29 diff --git a/metadata/md5-cache/sci-libs/pdal-2.4.0-r1 b/metadata/md5-cache/sci-libs/pdal-2.4.0-r1 index f2021825e315..e71c01339350 100644 --- a/metadata/md5-cache/sci-libs/pdal-2.4.0-r1 +++ b/metadata/md5-cache/sci-libs/pdal-2.4.0-r1 @@ -12,5 +12,5 @@ RDEPEND=net-misc/curl app-arch/zstd:= dev-libs/libxml2 dev-libs/openssl:= sci-li RESTRICT=!test? ( test ) SLOT=0/14 SRC_URI=https://github.com/PDAL/PDAL/releases/download/2.4.0/PDAL-2.4.0-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=50085141f9e3fa4bb06568b7fac1c9ef diff --git a/metadata/md5-cache/sci-libs/pdal-2.4.3 b/metadata/md5-cache/sci-libs/pdal-2.4.3 index b1c16923b9a6..da05009062c9 100644 --- a/metadata/md5-cache/sci-libs/pdal-2.4.3 +++ b/metadata/md5-cache/sci-libs/pdal-2.4.3 @@ -12,5 +12,5 @@ RDEPEND=net-misc/curl app-arch/zstd:= dev-libs/libxml2 dev-libs/openssl:= sci-li RESTRICT=!test? ( test ) SLOT=0/14 SRC_URI=https://github.com/PDAL/PDAL/releases/download/2.4.3/PDAL-2.4.3-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d49a1ed42450c191f6684625aa8936c3 diff --git a/metadata/md5-cache/sci-libs/pdal-2.5.0 b/metadata/md5-cache/sci-libs/pdal-2.5.0 index f71f50319c37..538fe652e1c2 100644 --- a/metadata/md5-cache/sci-libs/pdal-2.5.0 +++ b/metadata/md5-cache/sci-libs/pdal-2.5.0 @@ -12,5 +12,5 @@ RDEPEND=net-misc/curl app-arch/zstd:= dev-libs/libxml2 dev-libs/openssl:= sci-li RESTRICT=!test? ( test ) SLOT=0/15 SRC_URI=https://github.com/PDAL/PDAL/releases/download/2.5.0/PDAL-2.5.0-src.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=deb4d4938097ac762027dabdda653b2d diff --git a/metadata/md5-cache/sci-libs/plplot-5.15.0-r104 b/metadata/md5-cache/sci-libs/plplot-5.15.0-r104 index 7326bfae813c..b08b41fa63fa 100644 --- a/metadata/md5-cache/sci-libs/plplot-5.15.0-r104 +++ b/metadata/md5-cache/sci-libs/plplot-5.15.0-r104 @@ -13,5 +13,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_lua5-1 ) ) python? ( ^^ ( python_sing RESTRICT=!test? ( test ) octave? ( test ) SLOT=0/14 SRC_URI=mirror://sourceforge/plplot/plplot-5.15.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=10ba57ca6d1ab503547bda1f3a597dce diff --git a/metadata/md5-cache/sci-libs/proj-9.1.0-r1 b/metadata/md5-cache/sci-libs/proj-9.1.0-r1 index eef62855c13b..7b881460adde 100644 --- a/metadata/md5-cache/sci-libs/proj-9.1.0-r1 +++ b/metadata/md5-cache/sci-libs/proj-9.1.0-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-db/sqlite:3 curl? ( net-misc/curl ) tiff? ( media-libs/tiff:= ) RESTRICT=!test? ( test ) SLOT=0/9 SRC_URI=https://download.osgeo.org/proj/proj-9.1.0.tar.gz https://download.osgeo.org/proj/proj-data-1.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1531c04e9ad223b84b19e08e4d5c194a diff --git a/metadata/md5-cache/sci-libs/proj-9.1.1-r1 b/metadata/md5-cache/sci-libs/proj-9.1.1-r1 index b5a1715ad6d8..de0401206d96 100644 --- a/metadata/md5-cache/sci-libs/proj-9.1.1-r1 +++ b/metadata/md5-cache/sci-libs/proj-9.1.1-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-db/sqlite:3 curl? ( net-misc/curl ) tiff? ( media-libs/tiff:= ) RESTRICT=!test? ( test ) SLOT=0/9 SRC_URI=https://download.osgeo.org/proj/proj-9.1.1.tar.gz https://download.osgeo.org/proj/proj-data-1.12.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0d98aa87a78db3a8dacef38981996504 diff --git a/metadata/md5-cache/sci-libs/proj-9.2.0 b/metadata/md5-cache/sci-libs/proj-9.2.0 index 40eb93d32397..0c242055657f 100644 --- a/metadata/md5-cache/sci-libs/proj-9.2.0 +++ b/metadata/md5-cache/sci-libs/proj-9.2.0 @@ -12,5 +12,5 @@ RDEPEND=dev-db/sqlite:3 curl? ( net-misc/curl ) tiff? ( media-libs/tiff:= ) RESTRICT=!test? ( test ) SLOT=0/9 SRC_URI=https://download.osgeo.org/proj/proj-9.2.0.tar.gz https://download.osgeo.org/proj/proj-data-1.13.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e4e211947431c40b854af735554e52f3 diff --git a/metadata/md5-cache/sci-libs/rocBLAS-5.1.3-r2 b/metadata/md5-cache/sci-libs/rocBLAS-5.1.3-r2 index a5e58e6c7640..97972c8cab68 100644 --- a/metadata/md5-cache/sci-libs/rocBLAS-5.1.3-r2 +++ b/metadata/md5-cache/sci-libs/rocBLAS-5.1.3-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_targets_gfx RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/rocBLAS/archive/rocm-5.1.3.tar.gz -> rocm-rocBLAS-5.1.3.tar.gz https://media.githubusercontent.com/media/littlewu2508/littlewu2508.github.io/main/gentoo-distfiles/rocBLAS-5.0.2-Tensile-asm_full-navi22.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb docs d8252aed4deb205674b4feefc1775bf3 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 docs d8252aed4deb205674b4feefc1775bf3 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b prefix eab3c99d77fe00506c109c8a736186f7 rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=10feffdfe6bb828f9d8a346b9fd30bb8 diff --git a/metadata/md5-cache/sci-libs/rocBLAS-5.4.2-r2 b/metadata/md5-cache/sci-libs/rocBLAS-5.4.2-r2 index 121d6a6cd58d..57515cb58f9e 100644 --- a/metadata/md5-cache/sci-libs/rocBLAS-5.4.2-r2 +++ b/metadata/md5-cache/sci-libs/rocBLAS-5.4.2-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_targets_gfx RESTRICT=!test? ( test ) SLOT=0/5.4 SRC_URI=https://github.com/ROCmSoftwarePlatform/rocBLAS/archive/rocm-5.4.2.tar.gz -> rocm-rocBLAS-5.4.2.tar.gz https://media.githubusercontent.com/media/littlewu2508/littlewu2508.github.io/main/gentoo-distfiles/rocBLAS-5.4.2-Tensile-asm_full-navi22.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb docs d8252aed4deb205674b4feefc1775bf3 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 docs d8252aed4deb205674b4feefc1775bf3 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7e2277aac750f7bc26de3c0de95a77dc diff --git a/metadata/md5-cache/sci-libs/rocFFT-5.1.3 b/metadata/md5-cache/sci-libs/rocFFT-5.1.3 index aa498a882170..e9ec3bbfed03 100644 --- a/metadata/md5-cache/sci-libs/rocFFT-5.1.3 +++ b/metadata/md5-cache/sci-libs/rocFFT-5.1.3 @@ -13,5 +13,5 @@ REQUIRED_USE=perfscripts? ( benchmark ) || ( python_targets_python3_9 python_tar RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/rocFFT/archive/rocm-5.1.3.tar.gz -> rocFFT-5.1.3.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b0c38a39dd1eb7bd992c2508dd711a6b diff --git a/metadata/md5-cache/sci-libs/rocPRIM-5.1.3 b/metadata/md5-cache/sci-libs/rocPRIM-5.1.3 index 3279627d38a9..e8dab726f1cd 100644 --- a/metadata/md5-cache/sci-libs/rocPRIM-5.1.3 +++ b/metadata/md5-cache/sci-libs/rocPRIM-5.1.3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_targets_gfx RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/rocPRIM/archive/rocm-5.1.3.tar.gz -> rocPRIM-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=356c750a03c041ca5fbcb8bc86653b5f diff --git a/metadata/md5-cache/sci-libs/rocRAND-5.1.3 b/metadata/md5-cache/sci-libs/rocRAND-5.1.3 index f59109452502..07e9f981f755 100644 --- a/metadata/md5-cache/sci-libs/rocRAND-5.1.3 +++ b/metadata/md5-cache/sci-libs/rocRAND-5.1.3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_targets_gfx RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/rocRAND/archive/rocm-5.1.3.tar.gz -> rocRAND-5.1.3.tar.gz https://github.com/ROCmSoftwarePlatform/hipRAND/archive/de941a7eb9ede2a862d719cd3ca23234a3692d07.tar.gz -> hipRAND-de941a7eb9ede2a862d719cd3ca23234a3692d07.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2aa37a2c03bcb4fc678adce2eed2be42 diff --git a/metadata/md5-cache/sci-libs/rocSOLVER-5.1.3 b/metadata/md5-cache/sci-libs/rocSOLVER-5.1.3 index 015e5d378457..a96af512eaa0 100644 --- a/metadata/md5-cache/sci-libs/rocSOLVER-5.1.3 +++ b/metadata/md5-cache/sci-libs/rocSOLVER-5.1.3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_targets_gfx RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/rocSOLVER/archive/rocm-5.1.3.tar.gz -> rocSOLVER-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4aa107d6ef560393d5f58d034bf5aa0f diff --git a/metadata/md5-cache/sci-libs/rocSPARSE-5.1.3-r1 b/metadata/md5-cache/sci-libs/rocSPARSE-5.1.3-r1 index 83a32a802df5..2a3fca9c0fd2 100644 --- a/metadata/md5-cache/sci-libs/rocSPARSE-5.1.3-r1 +++ b/metadata/md5-cache/sci-libs/rocSPARSE-5.1.3-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_targets_gfx RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/rocSPARSE/archive/rocm-5.1.3.tar.gz -> rocSPARSE-5.1.3.tar.gz test? ( https://sparse.tamu.edu/MM/SNAP/amazon0312.tar.gz -> rocSPARSE_amazon0312.tar.gz https://sparse.tamu.edu/MM/Muite/Chebyshev4.tar.gz -> rocSPARSE_Chebyshev4.tar.gz https://sparse.tamu.edu/MM/FEMLAB/sme3Dc.tar.gz -> rocSPARSE_sme3Dc.tar.gz https://sparse.tamu.edu/MM/Williams/webbase-1M.tar.gz -> rocSPARSE_webbase-1M.tar.gz https://sparse.tamu.edu/MM/Bova/rma10.tar.gz -> rocSPARSE_rma10.tar.gz https://sparse.tamu.edu/MM/JGD_BIBD/bibd_22_8.tar.gz -> rocSPARSE_bibd_22_8.tar.gz https://sparse.tamu.edu/MM/Williams/mac_econ_fwd500.tar.gz -> rocSPARSE_mac_econ_fwd500.tar.gz https://sparse.tamu.edu/MM/Williams/mc2depi.tar.gz -> rocSPARSE_mc2depi.tar.gz https://sparse.tamu.edu/MM/Hamm/scircuit.tar.gz -> rocSPARSE_scircuit.tar.gz https://sparse.tamu.edu/MM/Sandia/ASIC_320k.tar.gz -> rocSPARSE_ASIC_320k.tar.gz https://sparse.tamu.edu/MM/GHS_psdef/bmwcra_1.tar.gz -> rocSPARSE_bmwcra_1.tar.gz https://sparse.tamu.edu/MM/HB/nos1.tar.gz -> rocSPARSE_nos1.tar.gz https://sparse.tamu.edu/MM/HB/nos2.tar.gz -> rocSPARSE_nos2.tar.gz https://sparse.tamu.edu/MM/HB/nos3.tar.gz -> rocSPARSE_nos3.tar.gz https://sparse.tamu.edu/MM/HB/nos4.tar.gz -> rocSPARSE_nos4.tar.gz https://sparse.tamu.edu/MM/HB/nos5.tar.gz -> rocSPARSE_nos5.tar.gz https://sparse.tamu.edu/MM/HB/nos6.tar.gz -> rocSPARSE_nos6.tar.gz https://sparse.tamu.edu/MM/HB/nos7.tar.gz -> rocSPARSE_nos7.tar.gz https://sparse.tamu.edu/MM/DNVS/shipsec1.tar.gz -> rocSPARSE_shipsec1.tar.gz https://sparse.tamu.edu/MM/Cote/mplate.tar.gz -> rocSPARSE_mplate.tar.gz https://sparse.tamu.edu/MM/Bai/qc2534.tar.gz -> rocSPARSE_qc2534.tar.gz https://sparse.tamu.edu/MM/Chevron/Chevron2.tar.gz -> rocSPARSE_Chevron2.tar.gz https://sparse.tamu.edu/MM/Chevron/Chevron3.tar.gz -> rocSPARSE_Chevron3.tar.gz https://sparse.tamu.edu/MM/Chevron/Chevron4.tar.gz -> rocSPARSE_Chevron4.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b5d9781faf9abd4fde6794a307d1b813 diff --git a/metadata/md5-cache/sci-libs/rocThrust-5.1.3 b/metadata/md5-cache/sci-libs/rocThrust-5.1.3 index 0636b0043d43..ddc2baf68f17 100644 --- a/metadata/md5-cache/sci-libs/rocThrust-5.1.3 +++ b/metadata/md5-cache/sci-libs/rocThrust-5.1.3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( amdgpu_targets_gfx906 amdgpu_targets_gfx908 amdgpu_targets_gfx RESTRICT=!test? ( test ) SLOT=0/5.1 SRC_URI=https://github.com/ROCmSoftwarePlatform/rocThrust/archive/rocm-5.1.3.tar.gz -> rocThrust-5.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b rocm d027c5dabbfc98896a8fe0defa5a6c0a toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=46cd1fdaba0f822cb706340904aa8722 diff --git a/metadata/md5-cache/sci-libs/rtabmap-0.20.18 b/metadata/md5-cache/sci-libs/rtabmap-0.20.18 index 6b4e87cc5a48..38e96c7f9cea 100644 --- a/metadata/md5-cache/sci-libs/rtabmap-0.20.18 +++ b/metadata/md5-cache/sci-libs/rtabmap-0.20.18 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=media-libs/opencv:=[qt5(-)?] sci-libs/pcl:=[openni,vtk,qt5(-)?] sci-libs/vtk:=[qt5(-)?] sys-libs/zlib sci-libs/octomap:= dev-libs/boost:= dev-cpp/yaml-cpp:= ieee1394? ( media-libs/libdc1394:2= ) openni2? ( dev-libs/OpenNI2 ) qt5? ( dev-qt/qtwidgets:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 ) SLOT=0 SRC_URI=https://github.com/introlab/rtabmap/archive/0.20.18-rolling.tar.gz -> rtabmap-0.20.18.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=76335db60170c413d1722fade9792316 diff --git a/metadata/md5-cache/sci-libs/rtabmap-0.20.23 b/metadata/md5-cache/sci-libs/rtabmap-0.20.23 index 3520d761a406..5f5326d46c57 100644 --- a/metadata/md5-cache/sci-libs/rtabmap-0.20.23 +++ b/metadata/md5-cache/sci-libs/rtabmap-0.20.23 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=media-libs/opencv:=[qt5(-)?] sci-libs/pcl:=[openni,vtk,qt5(-)?] sci-libs/vtk:=[qt5(-)?] sys-libs/zlib sci-libs/octomap:= dev-libs/boost:= dev-cpp/yaml-cpp:= ieee1394? ( media-libs/libdc1394:2= ) openni2? ( dev-libs/OpenNI2 ) qt5? ( dev-qt/qtwidgets:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 ) SLOT=0 SRC_URI=https://github.com/introlab/rtabmap/archive/0.20.23-rolling.tar.gz -> rtabmap-0.20.23.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0ffb8518318efacc36355c6e6f13b4dc diff --git a/metadata/md5-cache/sci-libs/rtabmap-9999 b/metadata/md5-cache/sci-libs/rtabmap-9999 index 058f0824b411..2a9b399b26ed 100644 --- a/metadata/md5-cache/sci-libs/rtabmap-9999 +++ b/metadata/md5-cache/sci-libs/rtabmap-9999 @@ -10,5 +10,5 @@ LICENSE=BSD PROPERTIES=live RDEPEND=media-libs/opencv:=[qt5(-)?] sci-libs/pcl:=[openni,vtk,qt5(-)?] sci-libs/vtk:=[qt5(-)?] sys-libs/zlib sci-libs/octomap:= dev-libs/boost:= dev-cpp/yaml-cpp:= ieee1394? ( media-libs/libdc1394:2= ) openni2? ( dev-libs/OpenNI2 ) qt5? ( dev-qt/qtwidgets:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c85f44cb66c8d1714291b773bcc3ebf9 diff --git a/metadata/md5-cache/sci-libs/scalapack-2.1.0 b/metadata/md5-cache/sci-libs/scalapack-2.1.0 index bb10dc79bcbf..bccb445328fa 100644 --- a/metadata/md5-cache/sci-libs/scalapack-2.1.0 +++ b/metadata/md5-cache/sci-libs/scalapack-2.1.0 @@ -12,5 +12,5 @@ RDEPEND=virtual/lapack virtual/mpi virtual/fortran RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.netlib.org/scalapack/scalapack-2.1.0.tgz https://github.com/Reference-ScaLAPACK/scalapack/commit/bc6cad585362aa58e05186bb85d4b619080c45a9.patch -> scalapack-2.1.0-gcc10.patch -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=989592508d8c7ea73ed36dd4c8fb9a24 diff --git a/metadata/md5-cache/sci-libs/stellarsolver-2.4 b/metadata/md5-cache/sci-libs/stellarsolver-2.4 index cc28217d7369..8298be88fa8f 100644 --- a/metadata/md5-cache/sci-libs/stellarsolver-2.4 +++ b/metadata/md5-cache/sci-libs/stellarsolver-2.4 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-3 RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 sci-libs/cfitsio:= sci-libs/gsl:= sci-astronomy/wcslib:= SLOT=0 SRC_URI=https://github.com/rlancaste/stellarsolver/archive/2.4.tar.gz -> stellarsolver-2.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4eb2d907d8b7de9b87c64895f7e7156a diff --git a/metadata/md5-cache/sci-libs/sundials-5.2.0 b/metadata/md5-cache/sci-libs/sundials-5.2.0 index 329768c53cd5..7079ac587c42 100644 --- a/metadata/md5-cache/sci-libs/sundials-5.2.0 +++ b/metadata/md5-cache/sci-libs/sundials-5.2.0 @@ -12,5 +12,5 @@ RDEPEND=lapack? ( virtual/lapack ) mpi? ( virtual/mpi sci-libs/hypre:= ) sparse? REQUIRED_USE=hypre? ( mpi ) SLOT=0/5 SRC_URI=https://computation.llnl.gov/projects/sundials/download/sundials-5.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=837f5a5e0890bb4cba1a202c52e1ba8e diff --git a/metadata/md5-cache/sci-libs/sundials-5.8.0 b/metadata/md5-cache/sci-libs/sundials-5.8.0 index 46c36a616d0f..b29785e538e1 100644 --- a/metadata/md5-cache/sci-libs/sundials-5.8.0 +++ b/metadata/md5-cache/sci-libs/sundials-5.8.0 @@ -12,5 +12,5 @@ RDEPEND=lapack? ( virtual/lapack ) mpi? ( sci-libs/hypre:=[fortran?,mpi?] virtua REQUIRED_USE=fortran? ( static-libs ) hypre? ( mpi ) SLOT=0/5 SRC_URI=https://github.com/LLNL/sundials/releases/download/v5.8.0/sundials-5.8.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=85ed5229cc5b1c9ef71102caad938714 diff --git a/metadata/md5-cache/sci-libs/sundials-6.2.0 b/metadata/md5-cache/sci-libs/sundials-6.2.0 index 4da6c2b4d2ce..5b4d4515b07a 100644 --- a/metadata/md5-cache/sci-libs/sundials-6.2.0 +++ b/metadata/md5-cache/sci-libs/sundials-6.2.0 @@ -12,5 +12,5 @@ RDEPEND=lapack? ( virtual/lapack ) mpi? ( sci-libs/hypre:=[fortran?,mpi?] virtua REQUIRED_USE=fortran? ( static-libs ) hypre? ( mpi ) SLOT=0/6 SRC_URI=https://github.com/LLNL/sundials/releases/download/v6.2.0/sundials-6.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c816c8d4a68eaf04d86f5d73a87ff54f diff --git a/metadata/md5-cache/sci-libs/sundials-6.5.0 b/metadata/md5-cache/sci-libs/sundials-6.5.0 index c1b7d6792f7e..90de923f3ade 100644 --- a/metadata/md5-cache/sci-libs/sundials-6.5.0 +++ b/metadata/md5-cache/sci-libs/sundials-6.5.0 @@ -12,5 +12,5 @@ RDEPEND=lapack? ( virtual/lapack ) mpi? ( sci-libs/hypre:=[fortran?,mpi?] virtua REQUIRED_USE=fortran? ( static-libs ) hypre? ( mpi ) SLOT=0/6 SRC_URI=https://github.com/LLNL/sundials/releases/download/v6.5.0/sundials-6.5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd28ad8b083370072e6dcfad349122a6 diff --git a/metadata/md5-cache/sci-libs/superlu-5.3.0 b/metadata/md5-cache/sci-libs/superlu-5.3.0 index ba32ed2b6d44..6a2150dd27b2 100644 --- a/metadata/md5-cache/sci-libs/superlu-5.3.0 +++ b/metadata/md5-cache/sci-libs/superlu-5.3.0 @@ -12,5 +12,5 @@ RDEPEND=virtual/blas virtual/fortran RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=https://github.com/xiaoyeli/superlu/archive/refs/tags/v5.3.0.tar.gz -> superlu-5.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e14e8b7298f6823eb5b50e589d988a5b diff --git a/metadata/md5-cache/sci-libs/symengine-0.9.0-r3 b/metadata/md5-cache/sci-libs/symengine-0.9.0-r3 index 2e058ec8a911..6861c1f9435d 100644 --- a/metadata/md5-cache/sci-libs/symengine-0.9.0-r3 +++ b/metadata/md5-cache/sci-libs/symengine-0.9.0-r3 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/gmp:= sys-libs/binutils-libs:= arb? ( sci-mathematics/arb:= ) b RESTRICT=!test? ( test ) SLOT=0/0.9 SRC_URI=https://github.com/symengine/symengine/archive/v0.9.0.tar.gz -> symengine-0.9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d6c887c0cb613be581fa73d130b177ec diff --git a/metadata/md5-cache/sci-libs/tensorpipe-2022.05.13 b/metadata/md5-cache/sci-libs/tensorpipe-2022.05.13 index 3e1b19089f9c..84c5f498dd2d 100644 --- a/metadata/md5-cache/sci-libs/tensorpipe-2022.05.13 +++ b/metadata/md5-cache/sci-libs/tensorpipe-2022.05.13 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/libuv RESTRICT=test SLOT=0 SRC_URI=https://github.com/pytorch/tensorpipe/archive/bb1473a4b38b18268e8693044afdb8635bc8351b.tar.gz -> tensorpipe-2022.05.13.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d10bf917cc7bf2e221cafcd06915cb65 diff --git a/metadata/md5-cache/sci-libs/trilinos-13.4.0-r3 b/metadata/md5-cache/sci-libs/trilinos-13.4.0-r3 index f30c1379e8fb..6c619b74c842 100644 --- a/metadata/md5-cache/sci-libs/trilinos-13.4.0-r3 +++ b/metadata/md5-cache/sci-libs/trilinos-13.4.0-r3 @@ -12,5 +12,5 @@ RDEPEND=!dev-cpp/kokkos dev-libs/boost:= sys-libs/binutils-libs:= virtual/blas v RESTRICT=test SLOT=0 SRC_URI=https://github.com/trilinos/Trilinos/archive/trilinos-release-13-4-0.tar.gz -> trilinos-13.4.0.tar.gz https://dev.gentoo.org/~tamiko/distfiles/trilinos-13.4.0-patches-r0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=78fa61320159b0c298c4818a1547aea9 diff --git a/metadata/md5-cache/sci-libs/trilinos-13.4.1 b/metadata/md5-cache/sci-libs/trilinos-13.4.1 index f766ce7dc130..f042336a70bf 100644 --- a/metadata/md5-cache/sci-libs/trilinos-13.4.1 +++ b/metadata/md5-cache/sci-libs/trilinos-13.4.1 @@ -12,5 +12,5 @@ RDEPEND=!dev-cpp/kokkos dev-libs/boost:= sys-libs/binutils-libs:= virtual/blas v RESTRICT=test SLOT=0 SRC_URI=https://github.com/trilinos/Trilinos/archive/trilinos-release-13-4-1.tar.gz -> trilinos-13.4.1.tar.gz https://dev.gentoo.org/~tamiko/distfiles/trilinos-13.4.0-patches-r0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=127dbf10f358ce8b90b53eae5458e33a diff --git a/metadata/md5-cache/sci-libs/volk-2.5.1 b/metadata/md5-cache/sci-libs/volk-2.5.1 index 96004ca0eaee..189f5fbd465d 100644 --- a/metadata/md5-cache/sci-libs/volk-2.5.1 +++ b/metadata/md5-cache/sci-libs/volk-2.5.1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0/2.5 SRC_URI=https://github.com/gnuradio/volk/releases/download/v2.5.1/volk-2.5.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5b6eb161ffec3392b8c62c1668f2857c diff --git a/metadata/md5-cache/sci-libs/voro++-0.4.6-r1 b/metadata/md5-cache/sci-libs/voro++-0.4.6-r1 index 398eb383b9d1..62c7f8cdb601 100644 --- a/metadata/md5-cache/sci-libs/voro++-0.4.6-r1 +++ b/metadata/md5-cache/sci-libs/voro++-0.4.6-r1 @@ -8,5 +8,5 @@ KEYWORDS=amd64 x86 LICENSE=BSD SLOT=0 SRC_URI=http://math.lbl.gov/voro++/download/dir/voro++-0.4.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bca78e3ba5e551ae3cfc0fd78460d9a1 diff --git a/metadata/md5-cache/sci-libs/vtk-9.2.5 b/metadata/md5-cache/sci-libs/vtk-9.2.5 index 308f95fb57a4..766bb2830c5a 100644 --- a/metadata/md5-cache/sci-libs/vtk-9.2.5 +++ b/metadata/md5-cache/sci-libs/vtk-9.2.5 @@ -13,5 +13,5 @@ REQUIRED_USE=all-modules? ( boost ffmpeg freetype gdal imaging las mysql odbc op RESTRICT=!test? ( test ) !test? ( test ) SLOT=0/9.2 SRC_URI=https://www.vtk.org/files/release/9.2/VTK-9.2.5.tar.gz https://www.vtk.org/files/release/9.2/VTKData-9.2.5.tar.gz https://www.vtk.org/files/release/9.2/VTKDataFiles-9.2.5.tar.gz doc? ( https://www.vtk.org/files/release/9.2/vtkDocHtml-9.2.5.tar.gz ) examples? ( https://www.vtk.org/files/release/9.2/VTKLargeData-9.2.5.tar.gz https://www.vtk.org/files/release/9.2/VTKLargeDataFiles-9.2.5.tar.gz ) test? ( https://www.vtk.org/files/release/9.2/VTKLargeData-9.2.5.tar.gz https://www.vtk.org/files/release/9.2/VTKLargeDataFiles-9.2.5.tar.gz ) -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 webapp ad783226c3d38ede384db5643af60dbd xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 webapp ad783226c3d38ede384db5643af60dbd xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=704851f67979ca9d87caf2d3431f7600 diff --git a/metadata/md5-cache/sci-libs/xdmf2-1.0_p141226-r4 b/metadata/md5-cache/sci-libs/xdmf2-1.0_p141226-r4 index 86bac6a8367f..5522571d5246 100644 --- a/metadata/md5-cache/sci-libs/xdmf2-1.0_p141226-r4 +++ b/metadata/md5-cache/sci-libs/xdmf2-1.0_p141226-r4 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= dev-libs/libxml2:2 sci-libs/hdf5:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://dev.gentoo.org/~jlec/distfiles/xdmf2-1.0_p141226.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a2c033e41edf7ee78acafa5983fbb38c diff --git a/metadata/md5-cache/sci-mathematics/Manifest.gz b/metadata/md5-cache/sci-mathematics/Manifest.gz index d99c31d681b4..51fd5c9054ea 100644 Binary files a/metadata/md5-cache/sci-mathematics/Manifest.gz and b/metadata/md5-cache/sci-mathematics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-mathematics/arb-2.23.0 b/metadata/md5-cache/sci-mathematics/arb-2.23.0 index e103dfeb3e4a..ec9f474d111d 100644 --- a/metadata/md5-cache/sci-mathematics/arb-2.23.0 +++ b/metadata/md5-cache/sci-mathematics/arb-2.23.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/gmp:0= dev-libs/mpfr:0= >=sci-mathematics/flint-2.9.0:= RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=https://github.com/fredrik-johansson/arb/archive/2.23.0.tar.gz -> arb-2.23.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8fdc803485bfe1c79f59359782c0d3a0 diff --git a/metadata/md5-cache/sci-mathematics/boolector-3.2.2_p20220110 b/metadata/md5-cache/sci-mathematics/boolector-3.2.2_p20220110 index e45653dc8a3a..2031b5646951 100644 --- a/metadata/md5-cache/sci-mathematics/boolector-3.2.2_p20220110 +++ b/metadata/md5-cache/sci-mathematics/boolector-3.2.2_p20220110 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Boolector/boolector/archive/13a8a06d561041cafcaf5458e404c1ec354b2841.tar.gz -> boolector-3.2.2_p20220110.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=38c5e146c0c6da6e8fc45214ecbbf639 diff --git a/metadata/md5-cache/sci-mathematics/btor2tools-1.0.0_pre20220518-r1 b/metadata/md5-cache/sci-mathematics/btor2tools-1.0.0_pre20220518-r1 index 177c923f1c50..7d1cf8a35d0a 100644 --- a/metadata/md5-cache/sci-mathematics/btor2tools-1.0.0_pre20220518-r1 +++ b/metadata/md5-cache/sci-mathematics/btor2tools-1.0.0_pre20220518-r1 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/Boolector/btor2tools/archive/b8456dda4780789e882f5791eb486f295ade4da4.tar.gz -> btor2tools-1.0.0_pre20220518.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c276ec66337a42e48e2194b4a977133c diff --git a/metadata/md5-cache/sci-mathematics/cadabra-2.4.2.1-r1 b/metadata/md5-cache/sci-mathematics/cadabra-2.4.2.1-r1 index 919a3cfd38cc..8e1d83bc7d6a 100644 --- a/metadata/md5-cache/sci-mathematics/cadabra-2.4.2.1-r1 +++ b/metadata/md5-cache/sci-mathematics/cadabra-2.4.2.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/kpeeters/cadabra2/archive/2.4.2.1.tar.gz -> cadabra-2.4.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b60bac52009a77570cf7b9d7020e3cf6 diff --git a/metadata/md5-cache/sci-mathematics/cadabra-2.4.2.2-r1 b/metadata/md5-cache/sci-mathematics/cadabra-2.4.2.2-r1 index 963006142c7d..0615b5931103 100644 --- a/metadata/md5-cache/sci-mathematics/cadabra-2.4.2.2-r1 +++ b/metadata/md5-cache/sci-mathematics/cadabra-2.4.2.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/kpeeters/cadabra2/archive/2.4.2.2.tar.gz -> cadabra-2.4.2.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b60bac52009a77570cf7b9d7020e3cf6 diff --git a/metadata/md5-cache/sci-mathematics/cadabra-2.4.3.2 b/metadata/md5-cache/sci-mathematics/cadabra-2.4.3.2 index 2e00a12b7bc8..b231d9a287dd 100644 --- a/metadata/md5-cache/sci-mathematics/cadabra-2.4.3.2 +++ b/metadata/md5-cache/sci-mathematics/cadabra-2.4.3.2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/kpeeters/cadabra2/archive/2.4.3.2.tar.gz -> cadabra-2.4.3.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d78527d9042303b867d6635bc032c88d diff --git a/metadata/md5-cache/sci-mathematics/cgal-5.5 b/metadata/md5-cache/sci-mathematics/cgal-5.5 index ae5190fbdf1c..bee5aba06407 100644 --- a/metadata/md5-cache/sci-mathematics/cgal-5.5 +++ b/metadata/md5-cache/sci-mathematics/cgal-5.5 @@ -11,5 +11,5 @@ LICENSE=LGPL-3 GPL-3 Boost-1.0 RDEPEND=dev-cpp/eigen dev-libs/boost:= dev-libs/gmp:=[cxx] dev-libs/mpfr:= sys-libs/zlib x11-libs/libX11:= virtual/glu:= virtual/opengl:= SLOT=0/14 SRC_URI=https://github.com/CGAL/cgal/releases/download/v5.5/CGAL-5.5.tar.xz doc? ( https://github.com/CGAL/cgal/releases/download/v5.5/CGAL-5.5-doc_html.tar.xz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=639d7ef18dc6914932d301de9401d787 diff --git a/metadata/md5-cache/sci-mathematics/cryptominisat-5.11.4 b/metadata/md5-cache/sci-mathematics/cryptominisat-5.11.4 index 8eccfcfbe4c5..d3a0309dbf13 100644 --- a/metadata/md5-cache/sci-mathematics/cryptominisat-5.11.4 +++ b/metadata/md5-cache/sci-mathematics/cryptominisat-5.11.4 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/boost:= sys-libs/zlib:= RESTRICT=test SLOT=0/5.11.4 SRC_URI=https://github.com/msoos/cryptominisat/archive/5.11.4.tar.gz -> cryptominisat-5.11.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=aa164f4b19a9d1190f0aa284fc68008e diff --git a/metadata/md5-cache/sci-mathematics/cryptominisat-5.8.0 b/metadata/md5-cache/sci-mathematics/cryptominisat-5.8.0 index dccff0a12461..aaf4ecf18abf 100644 --- a/metadata/md5-cache/sci-mathematics/cryptominisat-5.8.0 +++ b/metadata/md5-cache/sci-mathematics/cryptominisat-5.8.0 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=test SLOT=0/5.8.0 SRC_URI=https://github.com/msoos/cryptominisat/archive/5.8.0.tar.gz -> cryptominisat-5.8.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=624cfe2abfd6cfc30a583ab0bc97dfea diff --git a/metadata/md5-cache/sci-mathematics/cvc4-1.8-r4 b/metadata/md5-cache/sci-mathematics/cvc4-1.8-r4 index 39c26f789935..07166c00353b 100644 --- a/metadata/md5-cache/sci-mathematics/cvc4-1.8-r4 +++ b/metadata/md5-cache/sci-mathematics/cvc4-1.8-r4 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/antlr-c dev-java/antlr:3 dev-libs/boost readline? ( sys-libs/readline:0= ) cln? ( sci-libs/cln ) !cln? ( dev-libs/gmp:= ) SLOT=0 SRC_URI=https://github.com/CVC4/CVC4-archived/archive/refs/tags/1.8.tar.gz -> cvc4-1.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=779b5140e62b9e1f70d19407f1230c89 diff --git a/metadata/md5-cache/sci-mathematics/diagrtb-2.64 b/metadata/md5-cache/sci-mathematics/diagrtb-2.64 index 184ea4f030f6..055d6b0b794f 100644 --- a/metadata/md5-cache/sci-mathematics/diagrtb-2.64 +++ b/metadata/md5-cache/sci-mathematics/diagrtb-2.64 @@ -12,5 +12,5 @@ RDEPEND=virtual/fortran RESTRICT=mirror bindist SLOT=0 SRC_URI=http://ecole.modelisation.free.fr/rtb2011.tar.gz -> diagrtb-2.64.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9d6abef4976841d445b75446ef4cc6d3 diff --git a/metadata/md5-cache/sci-mathematics/fann-2.2.0-r1 b/metadata/md5-cache/sci-mathematics/fann-2.2.0-r1 index 13e8b454779f..022cae1f4e1b 100644 --- a/metadata/md5-cache/sci-mathematics/fann-2.2.0-r1 +++ b/metadata/md5-cache/sci-mathematics/fann-2.2.0-r1 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~ppc ~x86 LICENSE=LGPL-2.1 SLOT=0 SRC_URI=mirror://sourceforge/fann/FANN-2.2.0-Source.zip -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea96bdf2c2e09f211063ecbad1fe07d0 diff --git a/metadata/md5-cache/sci-mathematics/fann-9999 b/metadata/md5-cache/sci-mathematics/fann-9999 index 82c965d7f6f2..16c3009218d0 100644 --- a/metadata/md5-cache/sci-mathematics/fann-9999 +++ b/metadata/md5-cache/sci-mathematics/fann-9999 @@ -8,5 +8,5 @@ IUSE=examples LICENSE=LGPL-2.1 PROPERTIES=live SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f307ad7613ca946ca89005f1d38fc29 diff --git a/metadata/md5-cache/sci-mathematics/flint-2.8.4 b/metadata/md5-cache/sci-mathematics/flint-2.8.4 index 73a9b3e5a79e..bfdbe4556312 100644 --- a/metadata/md5-cache/sci-mathematics/flint-2.8.4 +++ b/metadata/md5-cache/sci-mathematics/flint-2.8.4 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/gmp:= dev-libs/mpfr:= ntl? ( dev-libs/ntl:= ) virtual/cblas RESTRICT=!test? ( test ) SLOT=0/16 SRC_URI=https://github.com/wbhart/flint2/archive/refs/tags/v2.8.4.tar.gz -> flint-2.8.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43c8248fc35f3edadc18495c4f92ea06 diff --git a/metadata/md5-cache/sci-mathematics/flint-2.8.5 b/metadata/md5-cache/sci-mathematics/flint-2.8.5 index 250fd73f11c0..0154c05547c8 100644 --- a/metadata/md5-cache/sci-mathematics/flint-2.8.5 +++ b/metadata/md5-cache/sci-mathematics/flint-2.8.5 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/gmp:= dev-libs/mpfr:= ntl? ( dev-libs/ntl:= ) virtual/cblas RESTRICT=!test? ( test ) SLOT=0/16 SRC_URI=https://github.com/wbhart/flint2/archive/refs/tags/v2.8.5.tar.gz -> flint-2.8.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=521ca2347f1d5304cb1a34a551dce193 diff --git a/metadata/md5-cache/sci-mathematics/flint-2.9.0 b/metadata/md5-cache/sci-mathematics/flint-2.9.0 index 2c5c0fd1bbcc..d731665f8388 100644 --- a/metadata/md5-cache/sci-mathematics/flint-2.9.0 +++ b/metadata/md5-cache/sci-mathematics/flint-2.9.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/gmp:= dev-libs/mpfr:= ntl? ( dev-libs/ntl:= ) virtual/cblas RESTRICT=!test? ( test ) SLOT=0/17 SRC_URI=https://github.com/wbhart/flint2/archive/refs/tags/v2.9.0.tar.gz -> flint-2.9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=75647f44a7ca7688b0f2bfffe467521b diff --git a/metadata/md5-cache/sci-mathematics/lean-3.49.0 b/metadata/md5-cache/sci-mathematics/lean-3.49.0 index cf3ccfc54d09..72f935479769 100644 --- a/metadata/md5-cache/sci-mathematics/lean-3.49.0 +++ b/metadata/md5-cache/sci-mathematics/lean-3.49.0 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-libs/gmp:= SLOT=0/3 SRC_URI=https://github.com/leanprover-community/lean/archive/refs/tags/v3.49.0.tar.gz -> lean-3.49.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=175b5aed49c7ce0fa483af51cb447962 diff --git a/metadata/md5-cache/sci-mathematics/lean-3.50.1 b/metadata/md5-cache/sci-mathematics/lean-3.50.1 index d4916dd17fdc..473e5d16d4b7 100644 --- a/metadata/md5-cache/sci-mathematics/lean-3.50.1 +++ b/metadata/md5-cache/sci-mathematics/lean-3.50.1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-libs/gmp:= SLOT=0/3 SRC_URI=https://github.com/leanprover-community/lean/archive/refs/tags/v3.50.1.tar.gz -> lean-3.50.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9a0acb3193721cd936e6ac59b20e20bd diff --git a/metadata/md5-cache/sci-mathematics/lean-3.50.2 b/metadata/md5-cache/sci-mathematics/lean-3.50.2 index d4afeba5a21b..110fba3ccf5a 100644 --- a/metadata/md5-cache/sci-mathematics/lean-3.50.2 +++ b/metadata/md5-cache/sci-mathematics/lean-3.50.2 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-libs/gmp:= SLOT=0/3 SRC_URI=https://github.com/leanprover-community/lean/archive/refs/tags/v3.50.2.tar.gz -> lean-3.50.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9a0acb3193721cd936e6ac59b20e20bd diff --git a/metadata/md5-cache/sci-mathematics/lean-3.50.3 b/metadata/md5-cache/sci-mathematics/lean-3.50.3 index 91a6fb4dfd12..6df5572ffe31 100644 --- a/metadata/md5-cache/sci-mathematics/lean-3.50.3 +++ b/metadata/md5-cache/sci-mathematics/lean-3.50.3 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-libs/gmp:= SLOT=0/3 SRC_URI=https://github.com/leanprover-community/lean/archive/refs/tags/v3.50.3.tar.gz -> lean-3.50.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9a0acb3193721cd936e6ac59b20e20bd diff --git a/metadata/md5-cache/sci-mathematics/lean-3.9999 b/metadata/md5-cache/sci-mathematics/lean-3.9999 index 90ee312a2ef7..a8ee59f89060 100644 --- a/metadata/md5-cache/sci-mathematics/lean-3.9999 +++ b/metadata/md5-cache/sci-mathematics/lean-3.9999 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 PROPERTIES=live RDEPEND=dev-libs/gmp:= SLOT=0/3 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=979d60fcec742724540b851215bf31f7 diff --git a/metadata/md5-cache/sci-mathematics/libpoly-0.1.11 b/metadata/md5-cache/sci-mathematics/libpoly-0.1.11 index 756a7feae14e..f3dfddc7a36b 100644 --- a/metadata/md5-cache/sci-mathematics/libpoly-0.1.11 +++ b/metadata/md5-cache/sci-mathematics/libpoly-0.1.11 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/gmp:= python? ( python_single_target_python3_9? ( >=dev-lang/py REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0/0.1.11 SRC_URI=https://github.com/SRI-CSL/libpoly/archive/v0.1.11.tar.gz -> libpoly-0.1.11.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bad7171fb79eba78457844ea3710d6cc diff --git a/metadata/md5-cache/sci-mathematics/minisat-2.2.1-r1 b/metadata/md5-cache/sci-mathematics/minisat-2.2.1-r1 index 5bc87efc310f..8579d03c1c26 100644 --- a/metadata/md5-cache/sci-mathematics/minisat-2.2.1-r1 +++ b/metadata/md5-cache/sci-mathematics/minisat-2.2.1-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=sys-libs/zlib:= SLOT=0/2.2.1 SRC_URI=https://github.com/stp/minisat/archive/releases/2.2.1.tar.gz -> minisat-2.2.1.tar.gz doc? ( http://minisat.se/downloads/MiniSat.pdf ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ea1be27bc65784e2692a2a88abe2b96 diff --git a/metadata/md5-cache/sci-mathematics/opensmt-2.4.3-r1 b/metadata/md5-cache/sci-mathematics/opensmt-2.4.3-r1 index d78068d55911..d654a4fcf97d 100644 --- a/metadata/md5-cache/sci-mathematics/opensmt-2.4.3-r1 +++ b/metadata/md5-cache/sci-mathematics/opensmt-2.4.3-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=?? ( libedit readline ) RESTRICT=!test? ( test ) SLOT=0/2.4.3 SRC_URI=https://github.com/usi-verification-and-security/opensmt/archive/v2.4.3.tar.gz -> opensmt-2.4.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b059a38629e9354ca5386ede9fb1bdeb diff --git a/metadata/md5-cache/sci-mathematics/pari-2.15.2-r2 b/metadata/md5-cache/sci-mathematics/pari-2.15.3 similarity index 95% rename from metadata/md5-cache/sci-mathematics/pari-2.15.2-r2 rename to metadata/md5-cache/sci-mathematics/pari-2.15.3 index 72563bdbb736..aae5c48f1f3c 100644 --- a/metadata/md5-cache/sci-mathematics/pari-2.15.2-r2 +++ b/metadata/md5-cache/sci-mathematics/pari-2.15.3 @@ -11,6 +11,6 @@ LICENSE=GPL-2 RDEPEND=sys-libs/readline:0= data? ( sci-mathematics/pari-data ) doc? ( X? ( x11-misc/xdg-utils ) ) fltk? ( x11-libs/fltk:1= ) gmp? ( dev-libs/gmp:0= ) X? ( x11-libs/libX11:0= ) RESTRICT=!test? ( test ) SLOT=0/8 -SRC_URI=https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.15.2.tar.gz +SRC_URI=https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.15.3.tar.gz _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=1687593c1cbafdc32f8b53d8c2aa6d19 +_md5_=13ddedc420330ae8de0cf37ce53fe068 diff --git a/metadata/md5-cache/sci-mathematics/primecount-7.6 b/metadata/md5-cache/sci-mathematics/primecount-7.6 index c942079de764..c4454a5555cf 100644 --- a/metadata/md5-cache/sci-mathematics/primecount-7.6 +++ b/metadata/md5-cache/sci-mathematics/primecount-7.6 @@ -12,5 +12,5 @@ RDEPEND=>=sci-mathematics/primesieve-11.0:= RESTRICT=!test? ( test ) SLOT=0/7 SRC_URI=https://github.com/kimwalisch/primecount/archive/refs/tags/v7.6.tar.gz -> primecount-7.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c33f6e586da6e5287289f7027f600353 diff --git a/metadata/md5-cache/sci-mathematics/primesieve-11.0 b/metadata/md5-cache/sci-mathematics/primesieve-11.0 index aaf6407e47e0..e8056b2ec3f2 100644 --- a/metadata/md5-cache/sci-mathematics/primesieve-11.0 +++ b/metadata/md5-cache/sci-mathematics/primesieve-11.0 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RESTRICT=!test? ( test ) SLOT=0/11 SRC_URI=https://github.com/kimwalisch/primesieve/archive/refs/tags/v11.0.tar.gz -> primesieve-11.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7b5e636188f50e0facb10131cdb6ccca diff --git a/metadata/md5-cache/sci-mathematics/rkward-0.7.5 b/metadata/md5-cache/sci-mathematics/rkward-0.7.5 index 398fee874974..0e6850095201 100644 --- a/metadata/md5-cache/sci-mathematics/rkward-0.7.5 +++ b/metadata/md5-cache/sci-mathematics/rkward-0.7.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ LGPL-2 RDEPEND=dev-lang/R dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtwebengine:5[widgets] dev-qt/qtwidgets:5 dev-qt/qtxml:5 kde-frameworks/karchive:5 kde-frameworks/kcompletion:5 kde-frameworks/kconfig:5 kde-frameworks/kconfigwidgets:5 kde-frameworks/kcoreaddons:5 kde-frameworks/kcrash:5 kde-frameworks/ki18n:5 kde-frameworks/kio:5 kde-frameworks/kjobwidgets:5 kde-frameworks/knotifications:5 kde-frameworks/kparts:5 kde-frameworks/kservice:5 kde-frameworks/ktexteditor:5 kde-frameworks/kwidgetsaddons:5 kde-frameworks/kwindowsystem:5 kde-frameworks/kxmlgui:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/rkward/0.7.5/rkward-0.7.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b873b8005db47cafb5a62065c40f765a diff --git a/metadata/md5-cache/sci-mathematics/stp-2.3.3-r3 b/metadata/md5-cache/sci-mathematics/stp-2.3.3-r3 index 4b10b94cd2d9..b28a0958235d 100644 --- a/metadata/md5-cache/sci-mathematics/stp-2.3.3-r3 +++ b/metadata/md5-cache/sci-mathematics/stp-2.3.3-r3 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_10 python_single_target RESTRICT=!test? ( test ) SLOT=0/2.3.3 SRC_URI=https://github.com/stp/stp/archive/2.3.3.tar.gz -> stp-2.3.3.tar.gz test? ( https://github.com/stp/OutputCheck/archive/119fe41a83bc455a24a11ecc9b78e7b13fcfcc45.tar.gz -> stp-2.3.3_OutputCheck.tar.gz https://github.com/stp/googletest/archive/2ad076167a676e3ed62f90b754b30fac5caa1f88.tar.gz -> stp-2.3.3_gtest.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9c4295d738ae3595f718058f0880b4df diff --git a/metadata/md5-cache/sci-mathematics/vampire-4.6.1-r2 b/metadata/md5-cache/sci-mathematics/vampire-4.6.1-r2 index c1acd04c5d4e..ec5c81a54603 100644 --- a/metadata/md5-cache/sci-mathematics/vampire-4.6.1-r2 +++ b/metadata/md5-cache/sci-mathematics/vampire-4.6.1-r2 @@ -12,5 +12,5 @@ RDEPEND=z3? ( dev-libs/gmp:= >=sci-mathematics/z3-4.11.2:= ) RESTRICT=!debug? ( test ) SLOT=0/4.6.1 SRC_URI=https://github.com/vprover/vampire/archive/v4.6.1.tar.gz -> vampire-4.6.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=adaabe076f15150cc3940fc31cc19bad diff --git a/metadata/md5-cache/sci-mathematics/vampire-4.7-r1 b/metadata/md5-cache/sci-mathematics/vampire-4.7-r1 index 382f071ad409..9ca07432acef 100644 --- a/metadata/md5-cache/sci-mathematics/vampire-4.7-r1 +++ b/metadata/md5-cache/sci-mathematics/vampire-4.7-r1 @@ -12,5 +12,5 @@ RDEPEND=z3? ( dev-libs/gmp:= >=sci-mathematics/z3-4.11.2:= ) RESTRICT=!debug? ( test ) SLOT=0/4.7 SRC_URI=https://github.com/vprover/vampire/archive/2d02e4655e1b08d1ca9ee7c0aade40f59f046460.tar.gz -> vampire-4.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ace6dac4dbc37c4fdd69226724f36980 diff --git a/metadata/md5-cache/sci-mathematics/wxmaxima-20.12.2 b/metadata/md5-cache/sci-mathematics/wxmaxima-20.12.2 index 0d123f9be543..f4877b5efdb0 100644 --- a/metadata/md5-cache/sci-mathematics/wxmaxima-20.12.2 +++ b/metadata/md5-cache/sci-mathematics/wxmaxima-20.12.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/libxml2:2 x11-libs/wxGTK:3.0-gtk3 media-fonts/jsmath sci-visualization/gnuplot[wxwidgets] sci-mathematics/maxima SLOT=0 SRC_URI=https://github.com/wxMaxima-developers/wxmaxima/archive/Version-20.12.2.tar.gz -> wxmaxima-20.12.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5081022d100b00d2d646664e8fe694d6 diff --git a/metadata/md5-cache/sci-mathematics/wxmaxima-22.12.0 b/metadata/md5-cache/sci-mathematics/wxmaxima-22.12.0 index 912c82c58420..4c471eaa2b8e 100644 --- a/metadata/md5-cache/sci-mathematics/wxmaxima-22.12.0 +++ b/metadata/md5-cache/sci-mathematics/wxmaxima-22.12.0 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libxml2:2 x11-libs/wxGTK:3.0-gtk3[webkit] media-fonts/jsmath sc RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/wxMaxima-developers/wxmaxima/archive/Version-22.12.0.tar.gz -> wxmaxima-22.12.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e3b14959be4f2f73feba1cab127ff20b diff --git a/metadata/md5-cache/sci-mathematics/wxmaxima-23.02.0 b/metadata/md5-cache/sci-mathematics/wxmaxima-23.02.0 index 762fc4c50130..92e0b46553c4 100644 --- a/metadata/md5-cache/sci-mathematics/wxmaxima-23.02.0 +++ b/metadata/md5-cache/sci-mathematics/wxmaxima-23.02.0 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libxml2:2 x11-libs/wxGTK:3.0-gtk3[webkit] media-fonts/jsmath sc RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/wxMaxima-developers/wxmaxima/archive/Version-23.02.0.tar.gz -> wxmaxima-23.02.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e3b14959be4f2f73feba1cab127ff20b diff --git a/metadata/md5-cache/sci-mathematics/yacas-1.9.1 b/metadata/md5-cache/sci-mathematics/yacas-1.9.1 index bae25accd4d4..c8268f11849e 100644 --- a/metadata/md5-cache/sci-mathematics/yacas-1.9.1 +++ b/metadata/md5-cache/sci-mathematics/yacas-1.9.1 @@ -13,5 +13,5 @@ RDEPEND=gui? ( dev-libs/mathjax dev-qt/qtcore:5[icu] dev-qt/qtgui:5 dev-qt/qtmul RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/grzegorzmazur/yacas/archive/refs/tags/v1.9.1.tar.gz -> yacas-1.9.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=91cc1983ba155b7ae051e794a1edc81e diff --git a/metadata/md5-cache/sci-mathematics/z3-4.11.2 b/metadata/md5-cache/sci-mathematics/z3-4.11.2 index 55340fa5c113..782657706cae 100644 --- a/metadata/md5-cache/sci-mathematics/z3-4.11.2 +++ b/metadata/md5-cache/sci-mathematics/z3-4.11.2 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0/4.11 SRC_URI=https://github.com/Z3Prover/z3/archive/z3-4.11.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0485c6d91f3ccec13f25dde19032be98 diff --git a/metadata/md5-cache/sci-mathematics/z3-4.12.0 b/metadata/md5-cache/sci-mathematics/z3-4.12.0 index dc9bf5b7b4d2..522893d1668d 100644 --- a/metadata/md5-cache/sci-mathematics/z3-4.12.0 +++ b/metadata/md5-cache/sci-mathematics/z3-4.12.0 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0/4.12 SRC_URI=https://github.com/Z3Prover/z3/archive/z3-4.12.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=63b1e460a1688e0b61a30ffe902a194f diff --git a/metadata/md5-cache/sci-mathematics/z3-4.12.1 b/metadata/md5-cache/sci-mathematics/z3-4.12.1 index 5cff031ea4e8..86f846d15e9e 100644 --- a/metadata/md5-cache/sci-mathematics/z3-4.12.1 +++ b/metadata/md5-cache/sci-mathematics/z3-4.12.1 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0/4.12 SRC_URI=https://github.com/Z3Prover/z3/archive/z3-4.12.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 eefed04ac580a259ecda1fbd966640b7 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=63b1e460a1688e0b61a30ffe902a194f diff --git a/metadata/md5-cache/sci-physics/Manifest.gz b/metadata/md5-cache/sci-physics/Manifest.gz index 46a2964ffa7c..4b69fec7abd0 100644 Binary files a/metadata/md5-cache/sci-physics/Manifest.gz and b/metadata/md5-cache/sci-physics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-physics/bullet-3.21 b/metadata/md5-cache/sci-physics/bullet-3.21 index fcc6fcb0a53b..802cd68317e5 100644 --- a/metadata/md5-cache/sci-physics/bullet-3.21 +++ b/metadata/md5-cache/sci-physics/bullet-3.21 @@ -13,5 +13,5 @@ REQUIRED_USE=openmp? ( threads ) tbb? ( threads ) RESTRICT=test SLOT=0/3.21 SRC_URI=https://github.com/bulletphysics/bullet3/archive/3.21.tar.gz -> bullet-3.21.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c607a9dfc2a4e5207cb5b0edeae798dc diff --git a/metadata/md5-cache/sci-physics/bullet-3.22b b/metadata/md5-cache/sci-physics/bullet-3.22b index 2d535f1ac32f..3de3e0dea01a 100644 --- a/metadata/md5-cache/sci-physics/bullet-3.22b +++ b/metadata/md5-cache/sci-physics/bullet-3.22b @@ -13,5 +13,5 @@ REQUIRED_USE=openmp? ( threads ) tbb? ( threads ) RESTRICT=test SLOT=0/3.22b SRC_URI=https://github.com/bulletphysics/bullet3/archive/3.22b.tar.gz -> bullet-3.22b.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f4671f3eedfeb23a3c0f889a9b1b726b diff --git a/metadata/md5-cache/sci-physics/clhep-2.4.5.3 b/metadata/md5-cache/sci-physics/clhep-2.4.5.3 index 556bce088298..31c77e872495 100644 --- a/metadata/md5-cache/sci-physics/clhep-2.4.5.3 +++ b/metadata/md5-cache/sci-physics/clhep-2.4.5.3 @@ -10,5 +10,5 @@ LICENSE=GPL-3 LGPL-3 RESTRICT=!test? ( test ) SLOT=2/2.4.5.3 SRC_URI=http://proj-clhep.web.cern.ch/proj-clhep/dist1/clhep-2.4.5.3.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=019a1d1d1c388a115b59afb0f865ede7 diff --git a/metadata/md5-cache/sci-physics/clhep-2.4.6.2 b/metadata/md5-cache/sci-physics/clhep-2.4.6.2 index b94d5271e3ec..192028cf670a 100644 --- a/metadata/md5-cache/sci-physics/clhep-2.4.6.2 +++ b/metadata/md5-cache/sci-physics/clhep-2.4.6.2 @@ -10,5 +10,5 @@ LICENSE=GPL-3 LGPL-3 RESTRICT=!test? ( test ) SLOT=2/2.4.6.2 SRC_URI=http://proj-clhep.web.cern.ch/proj-clhep/dist1/clhep-2.4.6.2.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f1b1412e944c2b174a44bb8c9808a0bf diff --git a/metadata/md5-cache/sci-physics/espresso-4.2.0 b/metadata/md5-cache/sci-physics/espresso-4.2.0 index 203acdf9abc0..15b8b22e87c2 100644 --- a/metadata/md5-cache/sci-physics/espresso-4.2.0 +++ b/metadata/md5-cache/sci-physics/espresso-4.2.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=https://github.com/espressomd/espresso/releases/download/4.2.0/espresso-4.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b portability 58227860123d3e8da23290064ce3373e python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 savedconfig 8b5f9d995a970e49cd427c55d5840285 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b portability 58227860123d3e8da23290064ce3373e python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 savedconfig 8b5f9d995a970e49cd427c55d5840285 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fbe65f57c57d3824c7cd18daae33cab2 diff --git a/metadata/md5-cache/sci-physics/espresso-9999 b/metadata/md5-cache/sci-physics/espresso-9999 index f3539c72315d..5a7f66191574 100644 --- a/metadata/md5-cache/sci-physics/espresso-9999 +++ b/metadata/md5-cache/sci-physics/espresso-9999 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b portability 58227860123d3e8da23290064ce3373e python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 savedconfig 8b5f9d995a970e49cd427c55d5840285 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b portability 58227860123d3e8da23290064ce3373e python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 savedconfig 8b5f9d995a970e49cd427c55d5840285 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3fb9fb5ecc5d1140b5b0e415051facba diff --git a/metadata/md5-cache/sci-physics/geant-4.11.0.2-r1 b/metadata/md5-cache/sci-physics/geant-4.11.0.2-r1 index 10aa3fecf75f..f1ac32020f9a 100644 --- a/metadata/md5-cache/sci-physics/geant-4.11.0.2-r1 +++ b/metadata/md5-cache/sci-physics/geant-4.11.0.2-r1 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/expat >=sci-physics/clhep-2.4.5.1:2=[threads?] data? ( ~sci-phy REQUIRED_USE=^^ ( c++17 c++20 ) inventor? ( opengl ) motif? ( opengl ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) qt5? ( opengl ) tbb? ( threads ) vtk? ( qt5 ) SLOT=4 SRC_URI=https://geant4-data.web.cern.ch/geant4-data/releases/geant4-v11.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c6726943b240d8a40778b45bdcfcf886 diff --git a/metadata/md5-cache/sci-physics/geant-4.11.0.3 b/metadata/md5-cache/sci-physics/geant-4.11.0.3 index bb11361e87a1..e6fa0dbd3ab8 100644 --- a/metadata/md5-cache/sci-physics/geant-4.11.0.3 +++ b/metadata/md5-cache/sci-physics/geant-4.11.0.3 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/expat >=sci-physics/clhep-2.4.5.1:2=[threads?] data? ( ~sci-phy REQUIRED_USE=^^ ( c++17 c++20 ) inventor? ( opengl ) motif? ( opengl ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) qt5? ( opengl ) tbb? ( threads ) vtk? ( qt5 ) SLOT=4 SRC_URI=https://geant4-data.web.cern.ch/geant4-data/releases/geant4-v11.0.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=41945be52e34d5693724d262904f5f87 diff --git a/metadata/md5-cache/sci-physics/geant-4.11.1.0 b/metadata/md5-cache/sci-physics/geant-4.11.1.0 index 5acf51f42a0e..95cb16532d41 100644 --- a/metadata/md5-cache/sci-physics/geant-4.11.1.0 +++ b/metadata/md5-cache/sci-physics/geant-4.11.1.0 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/expat >=sci-physics/clhep-2.4.6.2:2=[threads?] data? ( ~sci-phy REQUIRED_USE=^^ ( c++17 c++20 ) inventor? ( opengl ) motif? ( opengl ) qt5? ( opengl ) tbb? ( threads ) vtk? ( qt5 ) SLOT=4 SRC_URI=https://geant4-data.web.cern.ch/geant4-data/releases/geant4-v11.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=58213be3bf307d3fb3b3912580d136b9 diff --git a/metadata/md5-cache/sci-physics/geant4_vmc-6.1_p2 b/metadata/md5-cache/sci-physics/geant4_vmc-6.1_p2 index b981ba9de4ba..108571c116fa 100644 --- a/metadata/md5-cache/sci-physics/geant4_vmc-6.1_p2 +++ b/metadata/md5-cache/sci-physics/geant4_vmc-6.1_p2 @@ -12,5 +12,5 @@ RDEPEND=>=sci-physics/geant-4.11[c++17,opengl,geant3?] sci-physics/root:=[c++17, RESTRICT=!examples? ( test ) !geant3? ( test ) !g4root? ( test ) !test? ( test ) !vgm? ( test ) SLOT=4 SRC_URI=https://github.com/vmc-project/geant4_vmc/archive/v6-1-p2.tar.gz -> geant4_vmc-6.1_p2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ca846e08eda7be9a9feb017d24c9758 diff --git a/metadata/md5-cache/sci-physics/geant4_vmc-6.1_p3 b/metadata/md5-cache/sci-physics/geant4_vmc-6.1_p3 index 67686940795a..6654ef5ffbe5 100644 --- a/metadata/md5-cache/sci-physics/geant4_vmc-6.1_p3 +++ b/metadata/md5-cache/sci-physics/geant4_vmc-6.1_p3 @@ -12,5 +12,5 @@ RDEPEND=>=sci-physics/geant-4.11[c++17,opengl,geant3?] sci-physics/root:=[c++17, RESTRICT=!examples? ( test ) !geant3? ( test ) !g4root? ( test ) !test? ( test ) !vgm? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/vmc-project/geant4_vmc/archive/v6-1-p3.tar.gz -> geant4_vmc-6.1_p3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a22b6055b31c409c1d686cc7084a7ef7 diff --git a/metadata/md5-cache/sci-physics/geant4_vmc-6.2 b/metadata/md5-cache/sci-physics/geant4_vmc-6.2 index 0493316bdcc0..daec4f656e3e 100644 --- a/metadata/md5-cache/sci-physics/geant4_vmc-6.2 +++ b/metadata/md5-cache/sci-physics/geant4_vmc-6.2 @@ -12,5 +12,5 @@ RDEPEND=>=sci-physics/geant-4.11.1:=[c++17,opengl,geant3?] sci-physics/root:=[c+ RESTRICT=!examples? ( test ) !geant3? ( test ) !g4root? ( test ) !test? ( test ) !vgm? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/vmc-project/geant4_vmc/archive/v6-2.tar.gz -> geant4_vmc-6.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=83fbd04fca60675c6988aaf8e2e1dda6 diff --git a/metadata/md5-cache/sci-physics/geant4_vmc-9999 b/metadata/md5-cache/sci-physics/geant4_vmc-9999 index a91f6fbe7cef..791a39ee0c82 100644 --- a/metadata/md5-cache/sci-physics/geant4_vmc-9999 +++ b/metadata/md5-cache/sci-physics/geant4_vmc-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=sci-physics/geant:=[c++17,opengl,geant3?] sci-physics/root:=[c++17,-vmc(-)] sci-physics/vmc:=[c++17] vgm? ( sci-physics/vgm:= ) RESTRICT=!examples? ( test ) !geant3? ( test ) !g4root? ( test ) !test? ( test ) !vgm? ( test ) !test? ( test ) SLOT=4 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=35b51882ecf7f1cb2e5f5cb0d83d3346 diff --git a/metadata/md5-cache/sci-physics/hepmc-2.06.09-r2 b/metadata/md5-cache/sci-physics/hepmc-2.06.09-r2 index b3d23d72e86a..df55c1eff06b 100644 --- a/metadata/md5-cache/sci-physics/hepmc-2.06.09-r2 +++ b/metadata/md5-cache/sci-physics/hepmc-2.06.09-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://lcgapp.cern.ch/project/simu/HepMC/download/HepMC-2.06.09.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9973ae34f400fba5219515567ff6bb5d diff --git a/metadata/md5-cache/sci-physics/hepmc-2.06.11 b/metadata/md5-cache/sci-physics/hepmc-2.06.11 index 220c0cf15028..6cf81b58b9ee 100644 --- a/metadata/md5-cache/sci-physics/hepmc-2.06.11 +++ b/metadata/md5-cache/sci-physics/hepmc-2.06.11 @@ -11,5 +11,5 @@ RDEPEND=!sci-physics/hepmc:0 RESTRICT=!test? ( test ) SLOT=2 SRC_URI=https://hepmc.web.cern.ch/hepmc/releases/hepmc2.06.11.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0772e31d727f5f8487288f10fc0f7e97 diff --git a/metadata/md5-cache/sci-physics/hepmc-3.2.5 b/metadata/md5-cache/sci-physics/hepmc-3.2.5 index 3783b36dfc16..07e55acd13bd 100644 --- a/metadata/md5-cache/sci-physics/hepmc-3.2.5 +++ b/metadata/md5-cache/sci-physics/hepmc-3.2.5 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://hepmc.web.cern.ch/hepmc/releases/HepMC3-3.2.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6a5f39e888ed2b43b989d809dc1279e5 diff --git a/metadata/md5-cache/sci-physics/hepmc-3.2.5_p20230225 b/metadata/md5-cache/sci-physics/hepmc-3.2.5_p20230225 index 8eb93b428658..ce677f9108bd 100644 --- a/metadata/md5-cache/sci-physics/hepmc-3.2.5_p20230225 +++ b/metadata/md5-cache/sci-physics/hepmc-3.2.5_p20230225 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://gitlab.cern.ch/hepmc/HepMC3/-/archive/e05d32ebac8705c0097e9e7d00ce815a205110db/HepMC3-e05d32ebac8705c0097e9e7d00ce815a205110db.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=55de4bee79a96b47d5c92333abbbbaa6 diff --git a/metadata/md5-cache/sci-physics/hepmc-9999 b/metadata/md5-cache/sci-physics/hepmc-9999 index bc698332b6a5..3e083ac905a4 100644 --- a/metadata/md5-cache/sci-physics/hepmc-9999 +++ b/metadata/md5-cache/sci-physics/hepmc-9999 @@ -12,5 +12,5 @@ RDEPEND=python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1: REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=!test? ( test ) SLOT=3 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b89b83fe377062efad0a112e8e226907 diff --git a/metadata/md5-cache/sci-physics/lammps-20220217 b/metadata/md5-cache/sci-physics/lammps-20220217 index db69ead525b9..019c59796018 100644 --- a/metadata/md5-cache/sci-physics/lammps-20220217 +++ b/metadata/md5-cache/sci-physics/lammps-20220217 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 ) RESTRICT=test SLOT=0 SRC_URI=https://download.lammps.org/tars/lammps-17Feb2022.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b9043e745c815a7bc77c1c1e9fd3439d diff --git a/metadata/md5-cache/sci-physics/reduze-2.4-r1 b/metadata/md5-cache/sci-physics/reduze-2.4-r1 index 562adb9ba2a8..dd3e6165d41a 100644 --- a/metadata/md5-cache/sci-physics/reduze-2.4-r1 +++ b/metadata/md5-cache/sci-physics/reduze-2.4-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=>=sci-mathematics/ginac-1.4.1 berkdb? ( sys-libs/db:5.3=[cxx] ) mpi? ( virtual/mpi ) SLOT=0 SRC_URI=https://reduze.hepforge.org/download/reduze-2.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2b017dff548b7b606271e56c0cb7d7ba diff --git a/metadata/md5-cache/sci-physics/root-6.26.08 b/metadata/md5-cache/sci-physics/root-6.26.08 index d2ac6bd20242..1717d295c961 100644 --- a/metadata/md5-cache/sci-physics/root-6.26.08 +++ b/metadata/md5-cache/sci-physics/root-6.26.08 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asimage !o RESTRICT=test SLOT=6.26/08 SRC_URI=https://root.cern/download/root_v6.26.08.source.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e661f402c99843b60d67b184b19067f diff --git a/metadata/md5-cache/sci-physics/root-6.26.9999 b/metadata/md5-cache/sci-physics/root-6.26.9999 index 2395855c95f8..6596a3412a2b 100644 --- a/metadata/md5-cache/sci-physics/root-6.26.9999 +++ b/metadata/md5-cache/sci-physics/root-6.26.9999 @@ -12,5 +12,5 @@ RDEPEND=app-arch/lz4 app-arch/zstd app-arch/xz-utils fortran? ( dev-lang/cfortra REQUIRED_USE=^^ ( c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asimage !opengl !qt5 ) davix? ( ssl xml ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) qt5? ( root7 ) root7? ( || ( c++17 ) ) tmva? ( gsl python ) uring? ( root7 ) RESTRICT=test SLOT=6.26/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9e661f402c99843b60d67b184b19067f diff --git a/metadata/md5-cache/sci-physics/root-6.28.00 b/metadata/md5-cache/sci-physics/root-6.28.00 index 964622e7318a..affc05790e18 100644 --- a/metadata/md5-cache/sci-physics/root-6.28.00 +++ b/metadata/md5-cache/sci-physics/root-6.28.00 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asimage !o RESTRICT=test SLOT=6/6.28.00 SRC_URI=https://root.cern/download/root_v6.28.00.source.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=90a006eaa39f12576243e188197910cc diff --git a/metadata/md5-cache/sci-physics/root-6.28.9999 b/metadata/md5-cache/sci-physics/root-6.28.9999 index e57c56fc7da2..f8fe66265c0e 100644 --- a/metadata/md5-cache/sci-physics/root-6.28.9999 +++ b/metadata/md5-cache/sci-physics/root-6.28.9999 @@ -12,5 +12,5 @@ RDEPEND=app-arch/lz4 app-arch/zstd app-arch/xz-utils fortran? ( dev-lang/cfortra REQUIRED_USE=^^ ( c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asimage !opengl !qt5 ) davix? ( ssl xml ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) qt5? ( root7 ) root7? ( || ( c++17 ) ) tmva? ( gsl python ) uring? ( root7 ) RESTRICT=test SLOT=6/6.28.9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=90a006eaa39f12576243e188197910cc diff --git a/metadata/md5-cache/sci-physics/root-9999 b/metadata/md5-cache/sci-physics/root-9999 index 2df1fc2ac147..9a1e9c3718c6 100644 --- a/metadata/md5-cache/sci-physics/root-9999 +++ b/metadata/md5-cache/sci-physics/root-9999 @@ -12,5 +12,5 @@ RDEPEND=app-arch/lz4 app-arch/zstd app-arch/xz-utils fortran? ( dev-lang/cfortra REQUIRED_USE=^^ ( c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asimage !opengl !qt5 ) davix? ( ssl xml ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) qt5? ( root7 ) root7? ( || ( c++17 ) ) tmva? ( gsl python ) uring? ( root7 ) RESTRICT=test SLOT=6/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cuda 7eb7de2721889fc97055d9d7141e33c0 flag-o-matic 69394e25812406faa1f90edaf4969395 fortran-2 7eb0cd2524143c5f3298ba4bcc95391b git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=90a006eaa39f12576243e188197910cc diff --git a/metadata/md5-cache/sci-physics/vgm-5.0 b/metadata/md5-cache/sci-physics/vgm-5.0 index 1a969b7fa2bf..303664865a4f 100644 --- a/metadata/md5-cache/sci-physics/vgm-5.0 +++ b/metadata/md5-cache/sci-physics/vgm-5.0 @@ -12,5 +12,5 @@ RDEPEND=sci-physics/clhep:= geant4? ( >=sci-physics/geant-4.11[c++17] vgm-5.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=94ec343163c01f8a1129ae59a9d00bab diff --git a/metadata/md5-cache/sci-physics/vgm-5.1 b/metadata/md5-cache/sci-physics/vgm-5.1 index 2ae7c1f13cae..4c8c5b4e9333 100644 --- a/metadata/md5-cache/sci-physics/vgm-5.1 +++ b/metadata/md5-cache/sci-physics/vgm-5.1 @@ -12,5 +12,5 @@ RDEPEND=sci-physics/clhep:= geant4? ( >=sci-physics/geant-4.11:=[c++17] ) root? RESTRICT=!geant4? ( test ) !root? ( test ) !test? ( test ) !examples? ( test ) SLOT=0 SRC_URI=https://github.com/vmc-project/vgm/archive/v5-1.tar.gz -> vgm-5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=749d964af06349e6e2696e177968411a diff --git a/metadata/md5-cache/sci-physics/vgm-9999 b/metadata/md5-cache/sci-physics/vgm-9999 index 450d06dc50d3..a385734a498b 100644 --- a/metadata/md5-cache/sci-physics/vgm-9999 +++ b/metadata/md5-cache/sci-physics/vgm-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=sci-physics/clhep:= geant4? ( sci-physics/geant:=[c++17] ) root? ( sci-physics/root:=[c++17] ) RESTRICT=!geant4? ( test ) !root? ( test ) !test? ( test ) !examples? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ad0232cff5c2c2ad4ce8ba1c3e634cd diff --git a/metadata/md5-cache/sci-physics/vmc-1.1_p1 b/metadata/md5-cache/sci-physics/vmc-1.1_p1 index 4daf21ad5430..6f40ed208a88 100644 --- a/metadata/md5-cache/sci-physics/vmc-1.1_p1 +++ b/metadata/md5-cache/sci-physics/vmc-1.1_p1 @@ -12,5 +12,5 @@ RDEPEND=sci-physics/root:=[c++14?,c++17?,-vmc(-)] REQUIRED_USE=^^ ( c++14 c++17 ) SLOT=0 SRC_URI=https://github.com/vmc-project/vmc/archive/v1-1-p1.tar.gz -> vmc-1.1_p1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa4a3baaba58fd59b62cb1cb14d563ed diff --git a/metadata/md5-cache/sci-physics/vmc-2.0 b/metadata/md5-cache/sci-physics/vmc-2.0 index 55e8191a5b6a..042de22956e6 100644 --- a/metadata/md5-cache/sci-physics/vmc-2.0 +++ b/metadata/md5-cache/sci-physics/vmc-2.0 @@ -12,5 +12,5 @@ RDEPEND=sci-physics/root:=[c++14?,c++17?,-vmc(-)] REQUIRED_USE=^^ ( c++14 c++17 ) SLOT=0 SRC_URI=https://github.com/vmc-project/vmc/archive/v2-0.tar.gz -> vmc-2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fa4a3baaba58fd59b62cb1cb14d563ed diff --git a/metadata/md5-cache/sci-physics/vmc-9999 b/metadata/md5-cache/sci-physics/vmc-9999 index 17e65cc67685..74466d4a9db4 100644 --- a/metadata/md5-cache/sci-physics/vmc-9999 +++ b/metadata/md5-cache/sci-physics/vmc-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=sci-physics/root:=[c++14?,c++17?,-vmc(-)] REQUIRED_USE=^^ ( c++14 c++17 ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0aba714dea4cc6bdb509c933b8b1022d diff --git a/metadata/md5-cache/sci-visualization/Manifest.gz b/metadata/md5-cache/sci-visualization/Manifest.gz index e24b0572f81d..cbd6ed2aae65 100644 Binary files a/metadata/md5-cache/sci-visualization/Manifest.gz and b/metadata/md5-cache/sci-visualization/Manifest.gz differ diff --git a/metadata/md5-cache/sci-visualization/gle-4.3.3-r3 b/metadata/md5-cache/sci-visualization/gle-4.3.3-r3 index c335dd5db7af..86d1c5779549 100644 --- a/metadata/md5-cache/sci-visualization/gle-4.3.3-r3 +++ b/metadata/md5-cache/sci-visualization/gle-4.3.3-r3 @@ -11,5 +11,5 @@ LICENSE=BSD GPL-2+ RDEPEND=app-text/ghostscript-gpl dev-libs/boost dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 media-libs/freeglut media-libs/glu media-libs/libpng media-libs/tiff sys-libs/zlib media-libs/libjpeg-turbo x11-libs/cairo x11-libs/pixman emacs? ( app-editors/emacs:* ) virtual/latex-base SLOT=0 SRC_URI=https://github.com/vlabella/GLE/archive/refs/tags/4.3.3.tar.gz -> gle-4.3.3.tar.gz https://github.com/vlabella/gle-library/archive/d476418f006b001dc7f47dcafb413c0557fa44a7.tar.gz -> gle-library.tar.gz https://dev.gentoo.org/~grozin/gle-c++17.patch.gz doc? ( https://dev.gentoo.org/~grozin/gle-manual.pdf.gz ) emacs? ( https://dev.gentoo.org/~grozin/gle-mode.el.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 79f8e13c80c89792e5c9b3fc8ef59f3b eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b7647ca0080039744d68c1aa0011267a diff --git a/metadata/md5-cache/sci-visualization/gr-0.53.0-r1 b/metadata/md5-cache/sci-visualization/gr-0.53.0-r1 index 5b8d33b72778..f5d2928ce899 100644 --- a/metadata/md5-cache/sci-visualization/gr-0.53.0-r1 +++ b/metadata/md5-cache/sci-visualization/gr-0.53.0-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/qtgui:5 media-libs/fontconfig media-libs/glfw media-libs/libjpeg- REQUIRED_USE=cairo? ( truetype ) SLOT=0 SRC_URI=https://github.com/sciapp/gr/archive/v0.53.0.tar.gz -> gr-0.53.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3d10f96e4fc7454ec2fe7b2fe6c5f7c4 diff --git a/metadata/md5-cache/sci-visualization/kst-2.0.8-r2 b/metadata/md5-cache/sci-visualization/kst-2.0.8-r2 index 405c4b22c913..920dee2af9d1 100644 --- a/metadata/md5-cache/sci-visualization/kst-2.0.8-r2 +++ b/metadata/md5-cache/sci-visualization/kst-2.0.8-r2 @@ -12,5 +12,5 @@ RDEPEND=dev-qt/designer:5 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 d RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/kst/Kst-2.0.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=928fa5b0a9c8d760d5780cda9a9d0644 diff --git a/metadata/md5-cache/sci-visualization/labplot-2.9.0-r1 b/metadata/md5-cache/sci-visualization/labplot-2.9.0-r1 index f84f1c6c4e86..1ed35ebe0f2b 100644 --- a/metadata/md5-cache/sci-visualization/labplot-2.9.0-r1 +++ b/metadata/md5-cache/sci-visualization/labplot-2.9.0-r1 @@ -13,5 +13,5 @@ RDEPEND=app-text/poppler >=dev-qt/qtconcurrent-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/labplot/2.9.0/labplot-2.9.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c8754a1d7631284f6bd135a11b94ad6 diff --git a/metadata/md5-cache/sci-visualization/labplot-9999 b/metadata/md5-cache/sci-visualization/labplot-9999 index bedbd72d1050..bffbf524a670 100644 --- a/metadata/md5-cache/sci-visualization/labplot-9999 +++ b/metadata/md5-cache/sci-visualization/labplot-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=app-text/poppler >=dev-qt/qtconcurrent-5.15.2:5 >=dev-qt/qtgui-5.15.2:5 >=dev-qt/qtnetwork-5.15.2:5 >=dev-qt/qtprintsupport-5.15.2:5 >=dev-qt/qtsql-5.15.2:5 >=dev-qt/qtsvg-5.15.2:5 >=dev-qt/qtwidgets-5.15.2:5 >=kde-frameworks/karchive-5.88.0:5 >=kde-frameworks/kcompletion-5.88.0:5 >=kde-frameworks/kconfig-5.88.0:5 >=kde-frameworks/kconfigwidgets-5.88.0:5 >=kde-frameworks/kcoreaddons-5.88.0:5 >=kde-frameworks/ki18n-5.88.0:5 >=kde-frameworks/kiconthemes-5.88.0:5 >=kde-frameworks/kio-5.88.0:5 >=kde-frameworks/knewstuff-5.88.0:5 >=kde-frameworks/kcrash-5.88.0:5 >=kde-frameworks/ktextwidgets-5.88.0:5 >=kde-frameworks/kwidgetsaddons-5.88.0:5 >=kde-frameworks/kxmlgui-5.88.0:5 >=kde-frameworks/syntax-highlighting-5.88.0:5 >=sci-libs/gsl-1.15:= cantor? ( >=kde-apps/cantor-19.12.0:5 >=kde-frameworks/kparts-5.88.0:5 >=kde-frameworks/kservice-5.88.0:5 ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:= ) hdf5? ( sci-libs/hdf5:= ) libcerf? ( sci-libs/libcerf ) markdown? ( app-text/discount:= ) matio? ( sci-libs/matio:= ) netcdf? ( sci-libs/netcdf:= ) origin? ( sci-libs/liborigin:2 ) root? ( app-arch/lz4 sys-libs/zlib ) serial? ( >=dev-qt/qtserialport-5.15.2:5 ) telemetry? ( dev-libs/kuserfeedback:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7c8754a1d7631284f6bd135a11b94ad6 diff --git a/metadata/md5-cache/sci-visualization/paraview-5.10.1-r4 b/metadata/md5-cache/sci-visualization/paraview-5.10.1-r4 index 6dd4bb15ac2e..60188901098b 100644 --- a/metadata/md5-cache/sci-visualization/paraview-5.10.1-r4 +++ b/metadata/md5-cache/sci-visualization/paraview-5.10.1-r4 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( mpi ^^ ( python_single_target_python3_9 python_single_tar RESTRICT=mirror test SLOT=0 SRC_URI=https://www.paraview.org/files/v5.10/ParaView-v5.10.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=47657d0c5814eec703f5e9389105234b diff --git a/metadata/md5-cache/sci-visualization/paraview-5.11.0_rc2-r1 b/metadata/md5-cache/sci-visualization/paraview-5.11.0_rc2-r1 index d9d5d5ecbcaf..5c0257c5b4ae 100644 --- a/metadata/md5-cache/sci-visualization/paraview-5.11.0_rc2-r1 +++ b/metadata/md5-cache/sci-visualization/paraview-5.11.0_rc2-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=python? ( mpi ^^ ( python_single_target_python3_9 python_single_tar RESTRICT=mirror test SLOT=0 SRC_URI=https://www.paraview.org/files/v5.11/ParaView-v5.11.0-RC2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=eb7af5027e5f121bede332b44f394b26 diff --git a/metadata/md5-cache/sci-visualization/scidavis-2.9.0 b/metadata/md5-cache/sci-visualization/scidavis-2.9.0 index 0a47fe7418e2..e30bb66bd1f8 100644 --- a/metadata/md5-cache/sci-visualization/scidavis-2.9.0 +++ b/metadata/md5-cache/sci-visualization/scidavis-2.9.0 @@ -15,5 +15,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://github.com/SciDAVis/scidavis/archive/refs/tags/2.9.0.tar.gz -> scidavis-2.9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=746ee9635b94e85d1501f5cf63d7cf95 diff --git a/metadata/md5-cache/sec-keys/Manifest.gz b/metadata/md5-cache/sec-keys/Manifest.gz index 825ca29600b5..f7a0e9a97ec8 100644 Binary files a/metadata/md5-cache/sec-keys/Manifest.gz and b/metadata/md5-cache/sec-keys/Manifest.gz differ diff --git a/metadata/md5-cache/sec-keys/openpgp-keys-spamassassin-20221226 b/metadata/md5-cache/sec-keys/openpgp-keys-spamassassin-20221226 index f7656977f6e6..f8875e9f23c0 100644 --- a/metadata/md5-cache/sec-keys/openpgp-keys-spamassassin-20221226 +++ b/metadata/md5-cache/sec-keys/openpgp-keys-spamassassin-20221226 @@ -2,8 +2,8 @@ DEFINED_PHASES=install DESCRIPTION=OpenPGP keys used by spamassassin.apache.org EAPI=8 HOMEPAGE=https://spamassassin.apache.org/downloads.cgi -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=public-domain SLOT=0 SRC_URI=https://downloads.apache.org/spamassassin/KEYS -> openpgp-keys-spamassassin-20221226-KEYS.asc -_md5_=358b8ccc673d1271e1fe18808291213f +_md5_=cd2417218406492bf0b02acf7ad62032 diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index d16318e04085..220d45f9d022 100644 Binary files a/metadata/md5-cache/sys-apps/Manifest.gz and b/metadata/md5-cache/sys-apps/Manifest.gz differ diff --git a/metadata/md5-cache/sys-apps/agedu-20211129 b/metadata/md5-cache/sys-apps/agedu-20211129 index 4bbd8b16b82c..57cbf336ca8a 100644 --- a/metadata/md5-cache/sys-apps/agedu-20211129 +++ b/metadata/md5-cache/sys-apps/agedu-20211129 @@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://www.chiark.greenend.org.uk/~sgtatham/agedu/agedu-20211129.8cd63c5.tar.gz -> agedu-20211129.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ca3c0513a8c74ce4687ce66c62b7bf5f diff --git a/metadata/md5-cache/sys-apps/baobab-44.0 b/metadata/md5-cache/sys-apps/baobab-44.0 new file mode 100644 index 000000000000..63fbc73dffba --- /dev/null +++ b/metadata/md5-cache/sys-apps/baobab-44.0 @@ -0,0 +1,15 @@ +BDEPEND=|| ( dev-lang/vala:0.56 ) >=gui-libs/libadwaita-1.2:1[vala] dev-util/itstool >=sys-devel/gettext-0.21 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=dev-libs/glib-2.44:2 >=gui-libs/gtk-4.4.0:4 >=gui-libs/libadwaita-1.2:1 +DESCRIPTION=Disk usage browser for GNOME +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Baobab +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson vala xdg +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2+ FDL-1.1+ +RDEPEND=>=dev-libs/glib-2.44:2 >=gui-libs/gtk-4.4.0:4 >=gui-libs/libadwaita-1.2:1 +SLOT=0 +SRC_URI=mirror://gnome/sources/baobab/44/baobab-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=b8a95f392daea109a1efcb0667fa52cf diff --git a/metadata/md5-cache/sys-apps/colorized-logs-2.6 b/metadata/md5-cache/sys-apps/colorized-logs-2.6 index 3e0d22daeca8..f89feb5a2c99 100644 --- a/metadata/md5-cache/sys-apps/colorized-logs-2.6 +++ b/metadata/md5-cache/sys-apps/colorized-logs-2.6 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm64 ~ppc64 ~riscv x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/kilobyte/colorized-logs/archive/v2.6.tar.gz -> colorized-logs-2.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e645751c635221041fdcb9f87c392d8c diff --git a/metadata/md5-cache/sys-apps/coreutils-9.1_p20230313 b/metadata/md5-cache/sys-apps/coreutils-9.2 similarity index 85% rename from metadata/md5-cache/sys-apps/coreutils-9.1_p20230313 rename to metadata/md5-cache/sys-apps/coreutils-9.2 index a7dc1a24a3ad..89705c298fcb 100644 --- a/metadata/md5-cache/sys-apps/coreutils-9.1_p20230313 +++ b/metadata/md5-cache/sys-apps/coreutils-9.2 @@ -6,10 +6,11 @@ EAPI=8 HOMEPAGE=https://www.gnu.org/software/coreutils/ INHERIT=flag-o-matic python-any-r1 toolchain-funcs verify-sig IUSE=acl caps gmp hostname kill multicall nls +openssl selinux +split-usr static test vanilla xattr verify-sig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x86-linux LICENSE=GPL-3+ RDEPEND=!static? ( acl? ( sys-apps/acl ) caps? ( sys-libs/libcap ) gmp? ( dev-libs/gmp:= ) openssl? ( dev-libs/openssl:= ) xattr? ( sys-apps/attr ) ) selinux? ( sys-libs/libselinux ) nls? ( virtual/libintl ) hostname? ( !sys-apps/net-tools[hostname] ) kill? ( !sys-apps/util-linux[kill] !sys-process/procps[kill] ) !app-misc/realpath ! coreutils-9.1_p20230313.tar.xz verify-sig? ( https://www.pixelbeat.org/cu/coreutils-9.1.198-e68b1.tar.xz.sig -> coreutils-9.1_p20230313.tar.xz.sig ) !vanilla? ( https://dev.gentoo.org/~sam/distfiles/sys-apps/coreutils/coreutils-9.0_p20220409-patches-01.tar.xz ) +SRC_URI=mirror://gnu/coreutils/coreutils-9.2.tar.xz verify-sig? ( mirror://gnu/coreutils/coreutils-9.2.tar.xz.sig ) !vanilla? ( https://dev.gentoo.org/~sam/distfiles/sys-apps/coreutils/coreutils-9.0_p20220409-patches-01.tar.xz ) _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 _md5_=fdf5c87e04083ad16b135a75d709a04b diff --git a/metadata/md5-cache/sys-apps/cpu-x-4.5.1 b/metadata/md5-cache/sys-apps/cpu-x-4.5.1 index d255c79349f4..d8051d0c02d0 100644 --- a/metadata/md5-cache/sys-apps/cpu-x-4.5.1 +++ b/metadata/md5-cache/sys-apps/cpu-x-4.5.1 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/pango forc RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/TheTumultuousUnicornOfDarkness/CPU-X/archive/v4.5.1.tar.gz -> cpu-x-4.5.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fe5ee024a46f6265bf91db08de881191 diff --git a/metadata/md5-cache/sys-apps/cpu-x-4.5.2 b/metadata/md5-cache/sys-apps/cpu-x-4.5.2 index 38b4ce7df939..5b4fe02bf700 100644 --- a/metadata/md5-cache/sys-apps/cpu-x-4.5.2 +++ b/metadata/md5-cache/sys-apps/cpu-x-4.5.2 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/pango forc RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/TheTumultuousUnicornOfDarkness/CPU-X/archive/v4.5.2.tar.gz -> cpu-x-4.5.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fe5ee024a46f6265bf91db08de881191 diff --git a/metadata/md5-cache/sys-apps/crazydiskinfo-1.1.0-r1 b/metadata/md5-cache/sys-apps/crazydiskinfo-1.1.0-r1 index 5214ec9ffc72..59ec217bf6ea 100644 --- a/metadata/md5-cache/sys-apps/crazydiskinfo-1.1.0-r1 +++ b/metadata/md5-cache/sys-apps/crazydiskinfo-1.1.0-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/libatasmart:0= sys-libs/ncurses:0= SLOT=0 SRC_URI=https://github.com/otakuto/crazydiskinfo/archive/1.1.0.tar.gz -> crazydiskinfo-1.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cdb07fd40199ed228696b151bfd3a6ac diff --git a/metadata/md5-cache/sys-apps/dmidecode-3.4 b/metadata/md5-cache/sys-apps/dmidecode-3.4-r1 similarity index 64% rename from metadata/md5-cache/sys-apps/dmidecode-3.4 rename to metadata/md5-cache/sys-apps/dmidecode-3.4-r1 index 49c5626944c0..9a4124d5f1a6 100644 --- a/metadata/md5-cache/sys-apps/dmidecode-3.4 +++ b/metadata/md5-cache/sys-apps/dmidecode-3.4-r1 @@ -2,12 +2,12 @@ DEFINED_PHASES=compile postinst prepare DESCRIPTION=DMI (Desktop Management Interface) table related utilities EAPI=8 HOMEPAGE=https://www.nongnu.org/dmidecode/ -INHERIT=toolchain-funcs +INHERIT=flag-o-matic toolchain-funcs IUSE=selinux KEYWORDS=-* ~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv x86 ~x86-solaris LICENSE=GPL-2 RDEPEND=selinux? ( sec-policy/selinux-dmidecode ) SLOT=0 SRC_URI=https://savannah.nongnu.org/download/dmidecode/dmidecode-3.4.tar.xz -_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=1cdbb83b86f781894336ee40b9b567f6 +_eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=fdbf6d94583062d3ce004b15cc6e8cff diff --git a/metadata/md5-cache/sys-apps/dmidecode-3.5 b/metadata/md5-cache/sys-apps/dmidecode-3.5-r1 similarity index 64% rename from metadata/md5-cache/sys-apps/dmidecode-3.5 rename to metadata/md5-cache/sys-apps/dmidecode-3.5-r1 index b6218bf253d2..3af0b13d870e 100644 --- a/metadata/md5-cache/sys-apps/dmidecode-3.5 +++ b/metadata/md5-cache/sys-apps/dmidecode-3.5-r1 @@ -2,12 +2,12 @@ DEFINED_PHASES=compile postinst prepare DESCRIPTION=DMI (Desktop Management Interface) table related utilities EAPI=8 HOMEPAGE=https://www.nongnu.org/dmidecode/ -INHERIT=toolchain-funcs +INHERIT=flag-o-matic toolchain-funcs IUSE=selinux KEYWORDS=-* ~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~x86-solaris LICENSE=GPL-2 RDEPEND=selinux? ( sec-policy/selinux-dmidecode ) SLOT=0 SRC_URI=https://savannah.nongnu.org/download/dmidecode/dmidecode-3.5.tar.xz -_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=804434359d05aa8f662355c6b88cd492 +_eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=2c8003e62b10e37ea9e860847e56a427 diff --git a/metadata/md5-cache/sys-apps/grep-3.9_p20230319 b/metadata/md5-cache/sys-apps/grep-3.9_p20230319 new file mode 100644 index 000000000000..c524d66f24cf --- /dev/null +++ b/metadata/md5-cache/sys-apps/grep-3.9_p20230319 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig nls? ( sys-devel/gettext ) verify-sig? ( sec-keys/openpgp-keys-grep ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=configure install prepare unpack +DEPEND=!static? ( pcre? ( >=dev-libs/libpcre2-7.8-r1 ) sparc? ( dev-libs/libsigsegv ) ) nls? ( virtual/libintl ) virtual/libiconv static? ( pcre? ( >=dev-libs/libpcre2-7.8-r1[static-libs(+)] ) sparc? ( dev-libs/libsigsegv ) ) +DESCRIPTION=GNU regular expression matcher +EAPI=8 +HOMEPAGE=https://www.gnu.org/software/grep/ +INHERIT=flag-o-matic verify-sig +IUSE=+egrep-fgrep nls pcre static verify-sig +LICENSE=GPL-3+ +RDEPEND=!static? ( pcre? ( >=dev-libs/libpcre2-7.8-r1 ) sparc? ( dev-libs/libsigsegv ) ) nls? ( virtual/libintl ) virtual/libiconv +REQUIRED_USE=static? ( !sparc ) +SLOT=0 +SRC_URI=https://meyering.net/grep/grep-3.9.8-026c.tar.xz verify-sig? ( https://meyering.net/grep/grep-3.9.8-026c.tar.xz.sig ) +_eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 +_md5_=a1d7d1606f3b8eaa36d9b8c375e74a4b diff --git a/metadata/md5-cache/sys-apps/hd-idle-1.05-r2 b/metadata/md5-cache/sys-apps/hd-idle-1.05-r2 index 23be4e226341..33a222d20fd0 100644 --- a/metadata/md5-cache/sys-apps/hd-idle-1.05-r2 +++ b/metadata/md5-cache/sys-apps/hd-idle-1.05-r2 @@ -4,9 +4,9 @@ DESCRIPTION=Utility for spinning down hard disks after a period of idle time EAPI=8 HOMEPAGE=https://hd-idle.sourceforge.net/ INHERIT=linux-info systemd -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://sourceforge/hd-idle/hd-idle-1.05.tgz _eclasses_=linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=b3f3eaec31e972969d9b0cf1594e01dc +_md5_=46a5f5da9e69738a327a92fe37a9dbb2 diff --git a/metadata/md5-cache/sys-apps/inxi-3.3.20.1 b/metadata/md5-cache/sys-apps/inxi-3.3.20.1 index 68fa7d486eaf..9fa777d7bd2a 100644 --- a/metadata/md5-cache/sys-apps/inxi-3.3.20.1 +++ b/metadata/md5-cache/sys-apps/inxi-3.3.20.1 @@ -3,9 +3,9 @@ DESCRIPTION=The CLI inxi collects and prints hardware and system information EAPI=8 HOMEPAGE=https://github.com/smxi/inxi IUSE=bluetooth hddtemp opengl -KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=amd64 arm ~arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=GPL-3+ RDEPEND=dev-lang/perl sys-apps/pciutils sys-apps/usbutils bluetooth? ( net-wireless/bluez ) hddtemp? ( app-admin/hddtemp ) opengl? ( x11-apps/mesa-progs ) SLOT=0 SRC_URI=https://github.com/smxi/inxi/archive/3.3.20-1.tar.gz -> inxi-3.3.20.1.tar.gz -_md5_=74baaca437195ea3bd0278c0bfa221ed +_md5_=64c4d95c7efd73facebb76791b9dda89 diff --git a/metadata/md5-cache/sys-apps/moar-1.11.4 b/metadata/md5-cache/sys-apps/moar-1.13.0 similarity index 76% rename from metadata/md5-cache/sys-apps/moar-1.11.4 rename to metadata/md5-cache/sys-apps/moar-1.13.0 index 51c02645647d..7e94b60e3dc9 100644 --- a/metadata/md5-cache/sys-apps/moar-1.11.4 +++ b/metadata/md5-cache/sys-apps/moar-1.13.0 @@ -9,6 +9,6 @@ LICENSE=BSD-2 BSD MIT RDEPEND=!dev-lang/moarvm RESTRICT=strip SLOT=0 -SRC_URI=https://github.com/walles/moar/archive/refs/tags/v1.11.4.tar.gz -> moar-1.11.4.tar.gz https://dev.gentoo.org/~sam/distfiles/sys-apps/moar/moar-1.11.4-deps.tar.xz +SRC_URI=https://github.com/walles/moar/archive/refs/tags/v1.13.0.tar.gz -> moar-1.13.0.tar.gz https://dev.gentoo.org/~sam/distfiles/sys-apps/moar/moar-1.13.0-deps.tar.xz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b _md5_=c10fc1c90c4e26f38f30f26d4cb1751c diff --git a/metadata/md5-cache/sys-apps/portage-3.0.45.3 b/metadata/md5-cache/sys-apps/portage-3.0.45.3 new file mode 100644 index 000000000000..5e5d23a71152 --- /dev/null +++ b/metadata/md5-cache/sys-apps/portage-3.0.45.3 @@ -0,0 +1,18 @@ +BDEPEND=app-arch/xz-utils test? ( dev-vcs/git ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[bzip2(+),threads(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[bzip2(+),threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[bzip2(+),threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[bzip2(+),threads(+)] ) >=dev-python/setuptools-65.7.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install postinst preinst prepare pretend setup test +DEPEND=!build? ( python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[ssl(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[ssl(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[ssl(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[ssl(+)] ) ) >=app-arch/tar-1.27 dev-lang/python-exec:2 >=sys-apps/sed-4.0.5 sys-devel/patch doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) apidoc? ( dev-python/sphinx[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/sphinx-epytext[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) +DESCRIPTION=The package management and distribution system for Gentoo +EAPI=7 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Portage +INHERIT=distutils-r1 linux-info toolchain-funcs tmpfiles prefix +IUSE=apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify selinux test xattr python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +PDEPEND=!build? ( >=net-misc/rsync-2.6.4 >=sys-apps/coreutils-6.4 >=sys-apps/file-5.44-r3 ) +RDEPEND=acct-user/portage app-arch/zstd >=app-arch/tar-1.27 dev-lang/python-exec:2 >=sys-apps/findutils-4.4 !build? ( >=sys-apps/sed-4.0.5 >=app-shells/bash-5.0:0[readline] >=app-admin/eselect-1.2 rsync-verify? ( >=app-portage/gemato-14.5[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=sec-keys/openpgp-keys-gentoo-release-20220101 >=app-crypt/gnupg-2.2.4-r2[ssl(-)] ) ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_musl? ( >=sys-apps/sandbox-2.2 ) kernel_linux? ( sys-apps/util-linux ) >=app-misc/pax-utils-0.1.17 selinux? ( >=sys-libs/libselinux-2.0.94[python,python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) xattr? ( kernel_linux? ( >=sys-apps/install-xattr-0.3 ) ) !=dev-python/pypy3-7.3.11-r1:0=[bzip2(+),threads(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[bzip2(+),threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[bzip2(+),threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[bzip2(+),threads(+)] ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://gitweb.gentoo.org/proj/portage.git/snapshot/portage-3.0.45.3.tar.bz2 +_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b eapi8-dosym 741bfa77afb2a9321261501aca58c208 linux-info ecb03306c95c6ccc55852c98abcfcc64 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=e03f5dc025c564fc09d67c720bfd487d diff --git a/metadata/md5-cache/sys-apps/razercfg-0.42 b/metadata/md5-cache/sys-apps/razercfg-0.42 index 60f049b9510e..960726bd298f 100644 --- a/metadata/md5-cache/sys-apps/razercfg-0.42 +++ b/metadata/md5-cache/sys-apps/razercfg-0.42 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 SRC_URI=https://bues.ch/razercfg/razercfg-0.42.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=112091c1cad97cdfb60a7b768adc7aec diff --git a/metadata/md5-cache/sys-apps/roccat-tools-5.9.0-r101 b/metadata/md5-cache/sys-apps/roccat-tools-5.9.0-r101 index 406e7c47b687..7dcf2596a4c6 100644 --- a/metadata/md5-cache/sys-apps/roccat-tools-5.9.0-r101 +++ b/metadata/md5-cache/sys-apps/roccat-tools-5.9.0-r101 @@ -12,5 +12,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 ) ) input_devices_roccat_ryosmkfx? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) ) input_devices_roccat_ryostkl? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) ) SLOT=0 SRC_URI=mirror://sourceforge/roccat/roccat-tools-5.9.0.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=34c2dabd810c4c63b5bf1e4715141140 diff --git a/metadata/md5-cache/sys-apps/sensei-raw-ctl-0.0_pre20180729-r1 b/metadata/md5-cache/sys-apps/sensei-raw-ctl-0.0_pre20180729-r1 index f8efe03b1b3e..fc50f594bc25 100644 --- a/metadata/md5-cache/sys-apps/sensei-raw-ctl-0.0_pre20180729-r1 +++ b/metadata/md5-cache/sys-apps/sensei-raw-ctl-0.0_pre20180729-r1 @@ -11,5 +11,5 @@ LICENSE=ISC RDEPEND=virtual/libusb:1 gtk? ( x11-libs/gtk+:3 ) SLOT=0 SRC_URI=https://git.janouch.name/p/sensei-raw-ctl/archive/175d72ee849afe6e3547739132103cb26acf9173.tar.gz -> sensei-raw-ctl-0.0_pre20180729.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8ee43daf88e891d777cd751701022bdc diff --git a/metadata/md5-cache/sys-apps/texinfo-7.0.2.90 b/metadata/md5-cache/sys-apps/texinfo-7.0.2.90 new file mode 100644 index 000000000000..c31426e30dc9 --- /dev/null +++ b/metadata/md5-cache/sys-apps/texinfo-7.0.2.90 @@ -0,0 +1,14 @@ +BDEPEND=nls? ( >=sys-devel/gettext-0.19.6 ) +DEFINED_PHASES=configure prepare +DEPEND=!=app-text/tetex-2* >=sys-libs/ncurses-5.2-r2:= virtual/perl-Data-Dumper virtual/perl-Encode standalone? ( >=dev-lang/perl-5.8.1 ) !standalone? ( >=dev-lang/perl-5.8.1:= ) nls? ( virtual/libintl ) +DESCRIPTION=The GNU info program and utilities +EAPI=8 +HOMEPAGE=https://www.gnu.org/software/texinfo/ +INHERIT=flag-o-matic toolchain-funcs +IUSE=nls +standalone static +LICENSE=GPL-3+ +RDEPEND=!=app-text/tetex-2* >=sys-libs/ncurses-5.2-r2:= virtual/perl-Data-Dumper virtual/perl-Encode standalone? ( >=dev-lang/perl-5.8.1 ) !standalone? ( >=dev-lang/perl-5.8.1:= ) nls? ( virtual/libintl ) +SLOT=0 +SRC_URI=https://alpha.gnu.org/gnu/texinfo/texinfo-7.0.2.90.tar.xz +_eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=b695d0b9ff17c1440d3447ddbde999ec diff --git a/metadata/md5-cache/sys-apps/thunderbolt-software-user-space-0.9.3-r1 b/metadata/md5-cache/sys-apps/thunderbolt-software-user-space-0.9.3-r1 index b4175b760b54..8b99a097f455 100644 --- a/metadata/md5-cache/sys-apps/thunderbolt-software-user-space-0.9.3-r1 +++ b/metadata/md5-cache/sys-apps/thunderbolt-software-user-space-0.9.3-r1 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=dev-libs/boost:= SLOT=0 SRC_URI=https://github.com/intel/thunderbolt-software-user-space/archive/v0.9.3.tar.gz -> thunderbolt-software-user-space-0.9.3.tar.gz https://dev.gentoo.org/~asturm/distfiles/thunderbolt-software-user-space-0.9.3-tbtadm.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f07df4ba1b33cd7131af37d7e2ee85aa diff --git a/metadata/md5-cache/sys-apps/util-linux-2.39_rc1 b/metadata/md5-cache/sys-apps/util-linux-2.39_rc1 new file mode 100644 index 000000000000..d043ff7035ad --- /dev/null +++ b/metadata/md5-cache/sys-apps/util-linux-2.39_rc1 @@ -0,0 +1,16 @@ +BDEPEND=virtual/pkgconfig nls? ( sys-devel/gettext ) test? ( sys-devel/bc ) verify-sig? ( sec-keys/openpgp-keys-karelzak ) >=app-portage/elt-patches-20170815 virtual/pkgconfig verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=compile configure install postinst prepare pretend test unpack +DEPEND=virtual/libcrypt:= audit? ( >=sys-process/audit-2.6:= ) caps? ( sys-libs/libcap-ng ) cramfs? ( sys-libs/zlib:= ) cryptsetup? ( >=sys-fs/cryptsetup-2.1.0 ) hardlink? ( dev-libs/libpcre2:= ) ncurses? ( sys-libs/ncurses:=[unicode(+)?] magic? ( sys-apps/file:0= ) ) nls? ( virtual/libintl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pam? ( sys-libs/pam ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) rtas? ( sys-libs/librtas ) selinux? ( >=sys-libs/libselinux-2.2.2-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) slang? ( sys-libs/slang ) !build? ( systemd? ( sys-apps/systemd ) ) udev? ( virtual/libudev:= ) virtual/os-headers acct-group/root +DESCRIPTION=Various useful Linux utilities +EAPI=8 +HOMEPAGE=https://www.kernel.org/pub/linux/utils/util-linux/ https://github.com/util-linux/util-linux +INHERIT=toolchain-funcs libtool flag-o-matic bash-completion-r1 usr-ldscript pam python-r1 multilib-minimal multiprocessing systemd verify-sig +IUSE=audit build caps +cramfs cryptsetup fdformat +hardlink kill +logger magic ncurses nls pam python +readline rtas selinux slang static-libs +su +suid systemd test tty-helpers udev unicode split-usr python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig +LICENSE=GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain +RDEPEND=virtual/libcrypt:= audit? ( >=sys-process/audit-2.6:= ) caps? ( sys-libs/libcap-ng ) cramfs? ( sys-libs/zlib:= ) cryptsetup? ( >=sys-fs/cryptsetup-2.1.0 ) hardlink? ( dev-libs/libpcre2:= ) ncurses? ( sys-libs/ncurses:=[unicode(+)?] magic? ( sys-apps/file:0= ) ) nls? ( virtual/libintl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pam? ( sys-libs/pam ) python? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) readline? ( sys-libs/readline:0= ) rtas? ( sys-libs/librtas ) selinux? ( >=sys-libs/libselinux-2.2.2-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) slang? ( sys-libs/slang ) !build? ( systemd? ( sys-apps/systemd ) ) udev? ( virtual/libudev:= ) hardlink? ( !app-arch/hardlink ) logger? ( !>=app-admin/sysklogd-2.0[logger] ) kill? ( !sys-apps/coreutils[kill] !sys-process/procps[kill] ) su? ( !=sys-apps/shadow-4.7-r2[su] ) !net-wireless/rfkill +REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) su? ( pam ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://www.kernel.org/pub/linux/utils/util-linux/v2.39/util-linux-2.39-rc1.tar.xz verify-sig? ( https://www.kernel.org/pub/linux/utils/util-linux/v2.39/util-linux-2.39-rc1.tar.sign ) https://dev.gentoo.org/~sam/distfiles/sys-apps/util-linux/util-linux-2.39_rc1-autotools-regenerate.patch.xz +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 69394e25812406faa1f90edaf4969395 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pam 01b77091d5b6560b0aeafa7fbb1bd818 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b usr-ldscript cd36f6d91e8173d95e25b0e0cf036960 verify-sig fef00f802a62a8d9e66affc69e141df0 +_md5_=0c592494ce78448767f83c896c726faf diff --git a/metadata/md5-cache/sys-apps/xdg-desktop-portal-gnome-44.0 b/metadata/md5-cache/sys-apps/xdg-desktop-portal-gnome-44.0 new file mode 100644 index 000000000000..389741cc4c5d --- /dev/null +++ b/metadata/md5-cache/sys-apps/xdg-desktop-portal-gnome-44.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-util/gdbus-codegen sys-devel/gettext virtual/pkgconfig wayland? ( dev-util/wayland-scanner ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=dev-libs/glib:2 gnome-base/gnome-desktop:4= gui-libs/libadwaita:1 media-libs/fontconfig sys-apps/dbus >=sys-apps/xdg-desktop-portal-1.15.0 >=sys-apps/xdg-desktop-portal-gtk-1.14.0 gui-libs/gtk:4[wayland?,X?] X? ( x11-libs/libX11 ) wayland? ( dev-libs/wayland ) +DESCRIPTION=Backend implementation for xdg-desktop-portal using GNOME +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org meson systemd xdg +IUSE=wayland X +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1 +RDEPEND=dev-libs/glib:2 gnome-base/gnome-desktop:4= gui-libs/libadwaita:1 media-libs/fontconfig sys-apps/dbus >=sys-apps/xdg-desktop-portal-1.15.0 >=sys-apps/xdg-desktop-portal-gtk-1.14.0 gui-libs/gtk:4[wayland?,X?] X? ( x11-libs/libX11 ) wayland? ( dev-libs/wayland ) +SLOT=0 +SRC_URI=mirror://gnome/sources/xdg-desktop-portal-gnome/44/xdg-desktop-portal-gnome-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=edbebf4001988c6d79986770ab24ecbb diff --git a/metadata/md5-cache/sys-auth/AusweisApp2-1.26.2 b/metadata/md5-cache/sys-auth/AusweisApp2-1.26.2 index 8c39f8d77fbc..ee35edd137dd 100644 --- a/metadata/md5-cache/sys-auth/AusweisApp2-1.26.2 +++ b/metadata/md5-cache/sys-auth/AusweisApp2-1.26.2 @@ -10,5 +10,5 @@ LICENSE=EUPL-1.2 RDEPEND=dev-libs/openssl:0= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtquickcontrols2:5 dev-qt/qtsvg:5 dev-qt/qtwebsockets:5[qml] dev-qt/qtwidgets:5 net-libs/http-parser:0= sys-apps/pcsc-lite virtual/udev SLOT=0 SRC_URI=https://github.com/Governikus/AusweisApp2/archive/1.26.2.tar.gz -> AusweisApp2-1.26.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c5fb0998d53409859caa7bdd1f7b1a98 diff --git a/metadata/md5-cache/sys-auth/AusweisApp2-1.26.3 b/metadata/md5-cache/sys-auth/AusweisApp2-1.26.3 index d3425b22540c..058f196fd93f 100644 --- a/metadata/md5-cache/sys-auth/AusweisApp2-1.26.3 +++ b/metadata/md5-cache/sys-auth/AusweisApp2-1.26.3 @@ -10,5 +10,5 @@ LICENSE=EUPL-1.2 RDEPEND=dev-libs/openssl:0= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtquickcontrols2:5 dev-qt/qtsvg:5 dev-qt/qtwebsockets:5[qml] dev-qt/qtwidgets:5 net-libs/http-parser:0= sys-apps/pcsc-lite virtual/udev SLOT=0 SRC_URI=https://github.com/Governikus/AusweisApp2/archive/1.26.3.tar.gz -> AusweisApp2-1.26.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=354c531cfa11fd3c92d1b8a0982e92e0 diff --git a/metadata/md5-cache/sys-auth/AusweisApp2-9999 b/metadata/md5-cache/sys-auth/AusweisApp2-9999 index f32528a34a0f..f231c804d6fd 100644 --- a/metadata/md5-cache/sys-auth/AusweisApp2-9999 +++ b/metadata/md5-cache/sys-auth/AusweisApp2-9999 @@ -9,5 +9,5 @@ LICENSE=EUPL-1.2 PROPERTIES=live RDEPEND=dev-libs/openssl:0= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtquickcontrols2:5 dev-qt/qtsvg:5 dev-qt/qtwebsockets:5[qml] dev-qt/qtwidgets:5 net-libs/http-parser:0= sys-apps/pcsc-lite virtual/udev SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=91dcc6572a616830addeac1a18856931 diff --git a/metadata/md5-cache/sys-auth/Manifest.gz b/metadata/md5-cache/sys-auth/Manifest.gz index 3cb925ea4ec8..252d2161e6d4 100644 Binary files a/metadata/md5-cache/sys-auth/Manifest.gz and b/metadata/md5-cache/sys-auth/Manifest.gz differ diff --git a/metadata/md5-cache/sys-auth/google-authenticator-wrappers-1 b/metadata/md5-cache/sys-auth/google-authenticator-wrappers-1 index c1104e7d8e38..a2f4ecbd8be9 100644 --- a/metadata/md5-cache/sys-auth/google-authenticator-wrappers-1 +++ b/metadata/md5-cache/sys-auth/google-authenticator-wrappers-1 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=sys-auth/google-authenticator SLOT=0 SRC_URI=https://github.com/mgorny/google-authenticator-wrappers/archive/v1.tar.gz -> google-authenticator-wrappers-1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=878486b464432d265fc1f15092b56056 diff --git a/metadata/md5-cache/sys-auth/google-authenticator-wrappers-2 b/metadata/md5-cache/sys-auth/google-authenticator-wrappers-2 index 3a0ec191614b..531758620df6 100644 --- a/metadata/md5-cache/sys-auth/google-authenticator-wrappers-2 +++ b/metadata/md5-cache/sys-auth/google-authenticator-wrappers-2 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=sys-auth/google-authenticator SLOT=0 SRC_URI=https://github.com/mgorny/google-authenticator-wrappers/archive/v2.tar.gz -> google-authenticator-wrappers-2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=878486b464432d265fc1f15092b56056 diff --git a/metadata/md5-cache/sys-auth/google-authenticator-wrappers-3-r1 b/metadata/md5-cache/sys-auth/google-authenticator-wrappers-3-r1 index 7b2607fd17d2..f205444b213c 100644 --- a/metadata/md5-cache/sys-auth/google-authenticator-wrappers-3-r1 +++ b/metadata/md5-cache/sys-auth/google-authenticator-wrappers-3-r1 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=acct-group/gauth acct-user/gauth sys-auth/google-authenticator SLOT=0 SRC_URI=https://github.com/mgorny/google-authenticator-wrappers/archive/v3.tar.gz -> google-authenticator-wrappers-3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=53bd4903099877f0dbe3753fde09bf5a diff --git a/metadata/md5-cache/sys-auth/nss-pam-ldapd-0.9.12-r3 b/metadata/md5-cache/sys-auth/nss-pam-ldapd-0.9.12-r3 new file mode 100644 index 000000000000..d9d29e5c3e09 --- /dev/null +++ b/metadata/md5-cache/sys-auth/nss-pam-ldapd-0.9.12-r3 @@ -0,0 +1,17 @@ +BDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) test? ( dev-python/pylint[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=acct-group/nslcd acct-user/nslcd net-nds/openldap:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sasl? ( dev-libs/cyrus-sasl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[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/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(-)?] utils? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) pynslcd? ( dev-python/python-ldap[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-daemon[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) elibc_musl? ( sys-libs/musl-nscd ) !sys-auth/nss_ldap !sys-auth/pam_ldap +DESCRIPTION=NSS module for name lookups using LDAP +EAPI=8 +HOMEPAGE=https://arthurdejong.org/nss-pam-ldapd/ +INHERIT=autotools python-r1 s6 systemd tmpfiles multilib-minimal +IUSE=debug kerberos +pam pynslcd sasl test +utils python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~amd64 ~hppa ~ia64 ~sparc ~x86 +LICENSE=LGPL-2.1 +RDEPEND=acct-group/nslcd acct-user/nslcd net-nds/openldap:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sasl? ( dev-libs/cyrus-sasl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[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/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(-)?] utils? ( python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) pynslcd? ( dev-python/python-ldap[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-daemon[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) elibc_musl? ( sys-libs/musl-nscd ) !sys-auth/nss_ldap !sys-auth/pam_ldap virtual/tmpfiles +REQUIRED_USE=utils? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) test? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) pynslcd ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-0.9.12.tar.gz +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 s6 1871df76e59fa5c51359faaca02b385d systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=3b909989e37670864e32dd8530d321b5 diff --git a/metadata/md5-cache/sys-auth/pam_abl-0.6.0 b/metadata/md5-cache/sys-auth/pam_abl-0.6.0 index dff71ef1ca9e..2f58b7e73871 100644 --- a/metadata/md5-cache/sys-auth/pam_abl-0.6.0 +++ b/metadata/md5-cache/sys-auth/pam_abl-0.6.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=>=sys-libs/pam-0.78-r2 >=sys-libs/db-4.2.52_p2:= SLOT=0 SRC_URI=mirror://sourceforge/pam-abl/pam-abl-0.6.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb db-use 3807d3e43e20aaa6e4decedd2bb2db4c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 db-use 3807d3e43e20aaa6e4decedd2bb2db4c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=183abbe9f645cb4839d18c3a5147d281 diff --git a/metadata/md5-cache/sys-auth/polkit-qt-0.114.0-r3 b/metadata/md5-cache/sys-auth/polkit-qt-0.114.0-r3 index aca8dc05f8e4..21006d993eb6 100644 --- a/metadata/md5-cache/sys-auth/polkit-qt-0.114.0-r3 +++ b/metadata/md5-cache/sys-auth/polkit-qt-0.114.0-r3 @@ -10,5 +10,5 @@ LICENSE=LGPL-2 RDEPEND=dev-libs/glib:2 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 >=sys-auth/polkit-0.103[daemon(+)] SLOT=0 SRC_URI=mirror://kde/stable/polkit-qt-1/polkit-qt-1-0.114.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0bdf692abec68e0aec39b30c67aaaaf7 diff --git a/metadata/md5-cache/sys-auth/yubico-piv-tool-2.3.0 b/metadata/md5-cache/sys-auth/yubico-piv-tool-2.3.0 index 845cc507220e..5479cf10b689 100644 --- a/metadata/md5-cache/sys-auth/yubico-piv-tool-2.3.0 +++ b/metadata/md5-cache/sys-auth/yubico-piv-tool-2.3.0 @@ -12,5 +12,5 @@ RDEPEND=sys-apps/pcsc-lite dev-libs/openssl:=[-bindist(-)] RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://developers.yubico.com/yubico-piv-tool/Releases/yubico-piv-tool-2.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=faacf9c6277a5a309a5d19d1827fa617 diff --git a/metadata/md5-cache/sys-auth/yubico-piv-tool-2.3.1 b/metadata/md5-cache/sys-auth/yubico-piv-tool-2.3.1 index ae9583fe2e35..d81ebe0877c3 100644 --- a/metadata/md5-cache/sys-auth/yubico-piv-tool-2.3.1 +++ b/metadata/md5-cache/sys-auth/yubico-piv-tool-2.3.1 @@ -12,5 +12,5 @@ RDEPEND=sys-apps/pcsc-lite dev-libs/openssl:=[-bindist(-)] RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://developers.yubico.com/yubico-piv-tool/Releases/yubico-piv-tool-2.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4fe38d3b74d15a337e2ad77fc3c02f1d diff --git a/metadata/md5-cache/sys-block/Manifest.gz b/metadata/md5-cache/sys-block/Manifest.gz index 206e633396c2..25e276127561 100644 Binary files a/metadata/md5-cache/sys-block/Manifest.gz and b/metadata/md5-cache/sys-block/Manifest.gz differ diff --git a/metadata/md5-cache/sys-block/partitionmanager-22.08.3 b/metadata/md5-cache/sys-block/partitionmanager-22.08.3 index a8c9f98672f6..1f514d073b25 100644 --- a/metadata/md5-cache/sys-block/partitionmanager-22.08.3 +++ b/metadata/md5-cache/sys-block/partitionmanager-22.08.3 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.96.0:5 >=kde-frameworks/kconfigwidgets-5.96.0:5 >=kde-frameworks/kcoreaddons-5.96.0:5 >=kde-frameworks/kcrash-5.96.0:5 >=kde-frameworks/kdbusaddons-5.96.0:5 >=kde-frameworks/ki18n-5.96.0:5 >=kde-frameworks/kio-5.96.0:5 >=kde-frameworks/kjobwidgets-5.96.0:5 >=kde-frameworks/kwidgetsaddons-5.96.0:5 >=kde-frameworks/kwindowsystem-5.96.0:5 >=kde-frameworks/kxmlgui-5.96.0:5 >=sys-auth/polkit-qt-0.113.0[qt5(+)] >=sys-libs/kpmcore-22.08.3:5= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/partitionmanager-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=45f079dfff8ae73470df6e2ede165c4d diff --git a/metadata/md5-cache/sys-block/partitionmanager-22.12.3 b/metadata/md5-cache/sys-block/partitionmanager-22.12.3 index 62aff6d26438..f3181165c4a3 100644 --- a/metadata/md5-cache/sys-block/partitionmanager-22.12.3 +++ b/metadata/md5-cache/sys-block/partitionmanager-22.12.3 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=>=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.101.0:5 >=kde-frameworks/kconfigwidgets-5.101.0:5 >=kde-frameworks/kcoreaddons-5.101.0:5 >=kde-frameworks/kcrash-5.101.0:5 >=kde-frameworks/kdbusaddons-5.101.0:5 >=kde-frameworks/ki18n-5.101.0:5 >=kde-frameworks/kio-5.101.0:5 >=kde-frameworks/kjobwidgets-5.101.0:5 >=kde-frameworks/kwidgetsaddons-5.101.0:5 >=kde-frameworks/kwindowsystem-5.101.0:5 >=kde-frameworks/kxmlgui-5.101.0:5 >=sys-auth/polkit-qt-0.113.0[qt5(+)] >=sys-libs/kpmcore-22.12.3:5= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/partitionmanager-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5a7343f6b085de166070023b091b54d6 diff --git a/metadata/md5-cache/sys-cluster/Manifest.gz b/metadata/md5-cache/sys-cluster/Manifest.gz index df4868d57e80..8baa40d74a7c 100644 Binary files a/metadata/md5-cache/sys-cluster/Manifest.gz and b/metadata/md5-cache/sys-cluster/Manifest.gz differ diff --git a/metadata/md5-cache/sys-cluster/ceph-15.2.17-r3 b/metadata/md5-cache/sys-cluster/ceph-15.2.17-r3 index 5fa624063d89..1a84cc51688a 100644 --- a/metadata/md5-cache/sys-cluster/ceph-15.2.17-r3 +++ b/metadata/md5-cache/sys-cluster/ceph-15.2.17-r3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 ) ?? ( jemalloc tcmalloc ) diskpredic RESTRICT=test? ( userpriv ) test SLOT=0 SRC_URI=https://download.ceph.com/tarballs/ceph-15.2.17.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e6cb7905514186e45a88ba44ab5834f0 diff --git a/metadata/md5-cache/sys-cluster/ceph-16.2.10-r5 b/metadata/md5-cache/sys-cluster/ceph-16.2.10-r5 index 424566f93de3..5c1099240b18 100644 --- a/metadata/md5-cache/sys-cluster/ceph-16.2.10-r5 +++ b/metadata/md5-cache/sys-cluster/ceph-16.2.10-r5 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) ^^ ( lua_ RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://download.ceph.com/tarballs/ceph-16.2.10.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=84787807d3b93c3421933fc5697f67de diff --git a/metadata/md5-cache/sys-cluster/ceph-16.2.11 b/metadata/md5-cache/sys-cluster/ceph-16.2.11 index 928ea7c7237e..3e3b20220724 100644 --- a/metadata/md5-cache/sys-cluster/ceph-16.2.11 +++ b/metadata/md5-cache/sys-cluster/ceph-16.2.11 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) ^^ ( lua_ RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://download.ceph.com/tarballs/ceph-16.2.11.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=98fe0d78a4bcfacf0c1a0c04e2137095 diff --git a/metadata/md5-cache/sys-cluster/ceph-16.2.9-r3 b/metadata/md5-cache/sys-cluster/ceph-16.2.9-r3 index b9875238f6f8..2af14244d6bc 100644 --- a/metadata/md5-cache/sys-cluster/ceph-16.2.9-r3 +++ b/metadata/md5-cache/sys-cluster/ceph-16.2.9-r3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) ^^ ( lua_ RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://download.ceph.com/tarballs/ceph-16.2.9.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c67543d12ea4e52c3b9575cfe19fd183 diff --git a/metadata/md5-cache/sys-cluster/ceph-17.2.5-r3 b/metadata/md5-cache/sys-cluster/ceph-17.2.5-r3 index af0e512b38e4..574fbecb597f 100644 --- a/metadata/md5-cache/sys-cluster/ceph-17.2.5-r3 +++ b/metadata/md5-cache/sys-cluster/ceph-17.2.5-r3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://download.ceph.com/tarballs/ceph-17.2.5.tar.gz parquet? ( https://github.com/xtensor-stack/xsimd/archive/aeec9c872c8b475dedd7781336710f2dd2666cb2.tar.gz -> ceph-xsimd-17.2.5.tar.gz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8fc1ae1b6649c83a7cc86b72fb51d9d4 diff --git a/metadata/md5-cache/sys-cluster/hpx-1.8.0 b/metadata/md5-cache/sys-cluster/hpx-1.8.0 index f626e88257db..d8b24003f012 100644 --- a/metadata/md5-cache/sys-cluster/hpx-1.8.0 +++ b/metadata/md5-cache/sys-cluster/hpx-1.8.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=https://github.com/STEllAR-GROUP/hpx/archive/1.8.0.tar.gz -> hpx-1.8.0.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b0f709c040e56be6b2b8d6b27fc83fa0 diff --git a/metadata/md5-cache/sys-cluster/hpx-1.8.1 b/metadata/md5-cache/sys-cluster/hpx-1.8.1 index cbabc4436602..e4751c5620bb 100644 --- a/metadata/md5-cache/sys-cluster/hpx-1.8.1 +++ b/metadata/md5-cache/sys-cluster/hpx-1.8.1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=https://github.com/STEllAR-GROUP/hpx/archive/1.8.1.tar.gz -> hpx-1.8.1.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=12afa16e84cc53277827d5e2b42d7019 diff --git a/metadata/md5-cache/sys-cluster/hpx-9999 b/metadata/md5-cache/sys-cluster/hpx-9999 index 56801308112a..66e482fddc6d 100644 --- a/metadata/md5-cache/sys-cluster/hpx-9999 +++ b/metadata/md5-cache/sys-cluster/hpx-9999 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ?? ( jemalloc perftools tbb ) RESTRICT=test SLOT=0 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6787bef8004c31aae6661a5928617463 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.23.16 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.23.16 deleted file mode 100644 index 8b9266cde630..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.23.16 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.17 >=dev-lang/go-1.18 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-apiserver acct-user/kube-apiserver -DESCRIPTION=Kubernetes API server -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module systemd -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.16.tar.gz -> kubernetes-1.23.16.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a345c3c786da7b23496863cdc8e0a656 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.23.17 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.23.17 index 343adc8702be..03aab6637d6e 100644 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kube-apiserver-1.23.17 @@ -6,11 +6,11 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module systemd IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=3f3a85fc142f55d1993bff854fa51911 +_md5_=a345c3c786da7b23496863cdc8e0a656 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.10 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.10 deleted file mode 100644 index 314be5f16805..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.10 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.18.1 >=dev-lang/go-1.18 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-apiserver acct-user/kube-apiserver -DESCRIPTION=Kubernetes API server -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module systemd -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.10.tar.gz -> kubernetes-1.24.10.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=8b056d18443353fb05af12e6bfa49cd1 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.11 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.11 index 86ef0a7da217..b19df8ee6e8c 100644 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.11 @@ -6,11 +6,11 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module systemd IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=6b1647a8a3ca657444fb8bf921c6c477 +_md5_=8b056d18443353fb05af12e6bfa49cd1 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.6 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.6 deleted file mode 100644 index b067c6d6034a..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.6 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-apiserver acct-user/kube-apiserver -DESCRIPTION=Kubernetes API server -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module systemd -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.6.tar.gz -> kubernetes-1.25.6.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=568892010c4c4394551119661b51a4f6 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.7 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.7 index f4a93df4ae6b..3d03d6b14906 100644 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.7 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module systemd IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=4cd4947a68a2a8004bd2a53e2d46b9ee +_md5_=568892010c4c4394551119661b51a4f6 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.1 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.1 deleted file mode 100644 index 5424aecbde36..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-apiserver acct-user/kube-apiserver -DESCRIPTION=Kubernetes API server -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module systemd -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.1.tar.gz -> kubernetes-1.26.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=568892010c4c4394551119661b51a4f6 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.2 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.2 index 6a0dabb395e9..cec090630c1f 100644 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.2 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module systemd IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=4cd4947a68a2a8004bd2a53e2d46b9ee +_md5_=568892010c4c4394551119661b51a4f6 diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.23.16 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.23.16 deleted file mode 100644 index 01cbe6fc6b23..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.23.16 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.17 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager -DESCRIPTION=Kubernetes Controller Manager -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.16.tar.gz -> kubernetes-1.23.16.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=7b6799ec38cfa5a70a302ef71a197af9 diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.23.17 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.23.17 index 24792541c0bc..5baf2d492d39 100644 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.23.17 @@ -6,11 +6,11 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=03ebbd7a1585ac5dce19e7fb04e3aed6 +_md5_=7b6799ec38cfa5a70a302ef71a197af9 diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.10 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.10 deleted file mode 100644 index d6ac5cfbfa60..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.10 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.18.1 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager -DESCRIPTION=Kubernetes Controller Manager -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.10.tar.gz -> kubernetes-1.24.10.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=ce10ba3ae5bd3c69df7e356bb79338df diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.11 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.11 index a4fa3c0b8c8d..7c4c73e5a692 100644 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.11 @@ -6,11 +6,11 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=93d5d80c64c44d7d183756279aa1c7e3 +_md5_=ce10ba3ae5bd3c69df7e356bb79338df diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.6 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.6 deleted file mode 100644 index 5c22fec45aca..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.6 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager -DESCRIPTION=Kubernetes Controller Manager -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.6.tar.gz -> kubernetes-1.25.6.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=7e66467d2517afe515e9ea13cd6d0975 diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.7 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.7 index 97f1e7327be7..4f146d92372f 100644 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.7 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=72c01f80663487d145745735cb43ad55 +_md5_=7e66467d2517afe515e9ea13cd6d0975 diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.1 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.1 deleted file mode 100644 index 0b45042a014f..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager -DESCRIPTION=Kubernetes Controller Manager -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.1.tar.gz -> kubernetes-1.26.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=7e66467d2517afe515e9ea13cd6d0975 diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.2 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.2 index 72639068b375..beb1ec6cb76f 100644 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.2 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=72c01f80663487d145745735cb43ad55 +_md5_=7e66467d2517afe515e9ea13cd6d0975 diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.23.16 b/metadata/md5-cache/sys-cluster/kube-proxy-1.23.16 deleted file mode 100644 index 51148ce8c574..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.23.16 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.17 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=Kubernetes Proxy service -EAPI=7 -HOMEPAGE=https://github.com/kubernetes/kubernetes https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=net-firewall/conntrack-tools -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.16.tar.gz -> kubernetes-1.23.16.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=09ac3ece47910a781592bc5312444b4a diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.23.17 b/metadata/md5-cache/sys-cluster/kube-proxy-1.23.17 index 3669bc31d4c6..99d526e4d65a 100644 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kube-proxy-1.23.17 @@ -5,11 +5,11 @@ EAPI=7 HOMEPAGE=https://github.com/kubernetes/kubernetes https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=net-firewall/conntrack-tools RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=9a11f3c9b8fdef5c754dbf6a4f3a0524 +_md5_=09ac3ece47910a781592bc5312444b4a diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.24.10 b/metadata/md5-cache/sys-cluster/kube-proxy-1.24.10 deleted file mode 100644 index 6725bbc983e3..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.24.10 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.18.1 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=Kubernetes Proxy service -EAPI=7 -HOMEPAGE=https://github.com/kubernetes/kubernetes https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=net-firewall/conntrack-tools -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.10.tar.gz -> kubernetes-1.24.10.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=528423a95b0c1cb892fd67052bc580a3 diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.24.11 b/metadata/md5-cache/sys-cluster/kube-proxy-1.24.11 index cb3674c08ba2..7d6c5958aa10 100644 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kube-proxy-1.24.11 @@ -5,11 +5,11 @@ EAPI=7 HOMEPAGE=https://github.com/kubernetes/kubernetes https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=net-firewall/conntrack-tools RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=efec6f66b408d40de804fd660132df36 +_md5_=528423a95b0c1cb892fd67052bc580a3 diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.25.6 b/metadata/md5-cache/sys-cluster/kube-proxy-1.25.6 deleted file mode 100644 index 5707776a64ac..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.25.6 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=Kubernetes Proxy service -EAPI=8 -HOMEPAGE=https://github.com/kubernetes/kubernetes https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=net-firewall/conntrack-tools -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.6.tar.gz -> kubernetes-1.25.6.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=dc5e9d2646ae373f813081396ff53bfb diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.25.7 b/metadata/md5-cache/sys-cluster/kube-proxy-1.25.7 index 3c9ac809e871..dd3669767a88 100644 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kube-proxy-1.25.7 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://github.com/kubernetes/kubernetes https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=net-firewall/conntrack-tools RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=4d07d6e6a85f4283214166e3e03bd6da +_md5_=dc5e9d2646ae373f813081396ff53bfb diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.26.1 b/metadata/md5-cache/sys-cluster/kube-proxy-1.26.1 deleted file mode 100644 index b0b622f30fee..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.26.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=Kubernetes Proxy service -EAPI=8 -HOMEPAGE=https://github.com/kubernetes/kubernetes https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=net-firewall/conntrack-tools -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.1.tar.gz -> kubernetes-1.26.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=dc5e9d2646ae373f813081396ff53bfb diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.26.2 b/metadata/md5-cache/sys-cluster/kube-proxy-1.26.2 index 610b726da351..f1a08db02840 100644 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kube-proxy-1.26.2 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://github.com/kubernetes/kubernetes https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=net-firewall/conntrack-tools RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=4d07d6e6a85f4283214166e3e03bd6da +_md5_=dc5e9d2646ae373f813081396ff53bfb diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.23.16 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.23.16 deleted file mode 100644 index be49fac00d57..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.23.16 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.17 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-scheduler acct-user/kube-scheduler -DESCRIPTION=Kubernetes Scheduler -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.16.tar.gz -> kubernetes-1.23.16.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=89d77857f3cb363b8b04a118f4dd90ce diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.23.17 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.23.17 index 79ce930322e8..14564835ac85 100644 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kube-scheduler-1.23.17 @@ -6,11 +6,11 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=8ddf0aafe57482b0ec1ea1900b12e72d +_md5_=89d77857f3cb363b8b04a118f4dd90ce diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.10 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.10 deleted file mode 100644 index 6142e5d2f699..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.10 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.18.1 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-scheduler acct-user/kube-scheduler -DESCRIPTION=Kubernetes Scheduler -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.10.tar.gz -> kubernetes-1.24.10.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=89efe7f05e5372117ac5e1dd931c8ad1 diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.11 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.11 index 01580ed30caf..a96659e9fcbe 100644 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.11 @@ -6,11 +6,11 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f8c4b21f370d76e38c776fecb43d97bd +_md5_=89efe7f05e5372117ac5e1dd931c8ad1 diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.6 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.6 deleted file mode 100644 index 43cdb69c9f2d..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.6 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-scheduler acct-user/kube-scheduler -DESCRIPTION=Kubernetes Scheduler -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.6.tar.gz -> kubernetes-1.25.6.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=d00c6dbc8f577db9007e1ca64579a741 diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.7 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.7 index 4ad8790ef8c9..002e7d307f57 100644 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.7 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=27109a0647e998e2663cfeb27fd9d8df +_md5_=d00c6dbc8f577db9007e1ca64579a741 diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.1 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.1 deleted file mode 100644 index 574dccee6efe..000000000000 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DEPEND=acct-group/kube-scheduler acct-user/kube-scheduler -DESCRIPTION=Kubernetes Scheduler -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.1.tar.gz -> kubernetes-1.26.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=d00c6dbc8f577db9007e1ca64579a741 diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.2 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.2 index c5617451b641..fa5742a9e39c 100644 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.2 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=27109a0647e998e2663cfeb27fd9d8df +_md5_=d00c6dbc8f577db9007e1ca64579a741 diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.23.16 b/metadata/md5-cache/sys-cluster/kubeadm-1.23.16 deleted file mode 100644 index 202157a7b93e..000000000000 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.23.16 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.17 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=CLI to Easily bootstrap a secure Kubernetes cluster -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module -IUSE=hardened selinux -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.16.tar.gz -> kubernetes-1.23.16.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=b6f97b3c97261505c8cdd62024c1d4ba diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.23.17 b/metadata/md5-cache/sys-cluster/kubeadm-1.23.17 index fe9682ea384b..29d5ef4c80a9 100644 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kubeadm-1.23.17 @@ -5,11 +5,11 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module IUSE=hardened selinux -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=7ae7dd8418e82d695591886ef277730f +_md5_=b6f97b3c97261505c8cdd62024c1d4ba diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.24.10 b/metadata/md5-cache/sys-cluster/kubeadm-1.24.10 deleted file mode 100644 index f7987f3f8a9a..000000000000 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.24.10 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.18.1 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=CLI to Easily bootstrap a secure Kubernetes cluster -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module -IUSE=hardened selinux -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.10.tar.gz -> kubernetes-1.24.10.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=21341ede70d5e0b86ada648e49ef3896 diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.24.11 b/metadata/md5-cache/sys-cluster/kubeadm-1.24.11 index 12690d163579..e5bb5320d061 100644 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kubeadm-1.24.11 @@ -5,11 +5,11 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module IUSE=hardened selinux -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=fe95d0269667cc7f10422ff8d11a734a +_md5_=21341ede70d5e0b86ada648e49ef3896 diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.25.6 b/metadata/md5-cache/sys-cluster/kubeadm-1.25.6 deleted file mode 100644 index bb9c17f10115..000000000000 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.25.6 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=CLI to Easily bootstrap a secure Kubernetes cluster -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module -IUSE=hardened selinux -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.6.tar.gz -> kubernetes-1.25.6.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a1d6e48fff34b8182a7cf41e408c0de9 diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.25.7 b/metadata/md5-cache/sys-cluster/kubeadm-1.25.7 index 1fb689d69515..0d976e9cbd9b 100644 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kubeadm-1.25.7 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module IUSE=hardened selinux -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=9134c716e4a64b1e49b242943c6f147a +_md5_=a1d6e48fff34b8182a7cf41e408c0de9 diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.26.1 b/metadata/md5-cache/sys-cluster/kubeadm-1.26.1 deleted file mode 100644 index 85ca7e581d99..000000000000 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.26.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=CLI to Easily bootstrap a secure Kubernetes cluster -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module -IUSE=hardened selinux -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.1.tar.gz -> kubernetes-1.26.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a1d6e48fff34b8182a7cf41e408c0de9 diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.26.2 b/metadata/md5-cache/sys-cluster/kubeadm-1.26.2 index f4ccad47d268..33fccf0d3109 100644 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kubeadm-1.26.2 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module IUSE=hardened selinux -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=9134c716e4a64b1e49b242943c6f147a +_md5_=a1d6e48fff34b8182a7cf41e408c0de9 diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.23.16 b/metadata/md5-cache/sys-cluster/kubectl-1.23.16 deleted file mode 100644 index 6b22f4a3a7f4..000000000000 --- a/metadata/md5-cache/sys-cluster/kubectl-1.23.16 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=dev-lang/go-1.17 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=CLI to run commands against Kubernetes clusters -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.16.tar.gz -> kubernetes-1.23.16.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=e1a8d85f09fff055b131d807f7caf46b diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.23.17 b/metadata/md5-cache/sys-cluster/kubectl-1.23.17 index c5936e13cf87..cea874dbe5bb 100644 --- a/metadata/md5-cache/sys-cluster/kubectl-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kubectl-1.23.17 @@ -5,10 +5,10 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=9642168109eb8d3162bae375175349f5 +_md5_=e1a8d85f09fff055b131d807f7caf46b diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.24.10 b/metadata/md5-cache/sys-cluster/kubectl-1.24.10 deleted file mode 100644 index 8dcfb39f8f95..000000000000 --- a/metadata/md5-cache/sys-cluster/kubectl-1.24.10 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=dev-lang/go-1.18.1 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=CLI to run commands against Kubernetes clusters -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.10.tar.gz -> kubernetes-1.24.10.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=e2d032be9496ce0453643631710c406d diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.24.11 b/metadata/md5-cache/sys-cluster/kubectl-1.24.11 index 09430a16fce2..67ee35239388 100644 --- a/metadata/md5-cache/sys-cluster/kubectl-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kubectl-1.24.11 @@ -5,10 +5,10 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=248acdbaaaeb65f61e297ffd2f4cc4f7 +_md5_=e2d032be9496ce0453643631710c406d diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.25.6 b/metadata/md5-cache/sys-cluster/kubectl-1.25.6 deleted file mode 100644 index bff796eea213..000000000000 --- a/metadata/md5-cache/sys-cluster/kubectl-1.25.6 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=CLI to run commands against Kubernetes clusters -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.6.tar.gz -> kubernetes-1.25.6.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=e33bf31ad700a1488df20de29f4be865 diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.25.7 b/metadata/md5-cache/sys-cluster/kubectl-1.25.7 index efb7705cc939..d4470b00153e 100644 --- a/metadata/md5-cache/sys-cluster/kubectl-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kubectl-1.25.7 @@ -5,10 +5,10 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=8d7568fac85c8036aac1e62b6f4ea63f +_md5_=e33bf31ad700a1488df20de29f4be865 diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.26.1 b/metadata/md5-cache/sys-cluster/kubectl-1.26.1 deleted file mode 100644 index c17c68bf0b41..000000000000 --- a/metadata/md5-cache/sys-cluster/kubectl-1.26.1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=CLI to run commands against Kubernetes clusters -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=bash-completion-r1 go-module -IUSE=hardened -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.1.tar.gz -> kubernetes-1.26.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=e33bf31ad700a1488df20de29f4be865 diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.26.2 b/metadata/md5-cache/sys-cluster/kubectl-1.26.2 index 0fe2c9d6820e..4f1d46865476 100644 --- a/metadata/md5-cache/sys-cluster/kubectl-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kubectl-1.26.2 @@ -5,10 +5,10 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=bash-completion-r1 go-module IUSE=hardened -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=8d7568fac85c8036aac1e62b6f4ea63f +_md5_=e33bf31ad700a1488df20de29f4be865 diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.23.16 b/metadata/md5-cache/sys-cluster/kubelet-1.23.16 deleted file mode 100644 index 7caa5346f1e3..000000000000 --- a/metadata/md5-cache/sys-cluster/kubelet-1.23.16 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.17 >=dev-lang/go-1.18 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install unpack -DESCRIPTION=Kubernetes Node Agent -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module systemd -IUSE=hardened selinux -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.16.tar.gz -> kubernetes-1.23.16.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=6c1e2e5cc7cb84e80adc8eed71ff1ed9 diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.23.17 b/metadata/md5-cache/sys-cluster/kubelet-1.23.17 index 995529d0a852..d37940bc7dbf 100644 --- a/metadata/md5-cache/sys-cluster/kubelet-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kubelet-1.23.17 @@ -5,11 +5,11 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=go-module systemd IUSE=hardened selinux -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=1961ddbb96626604f0436553b17d620a +_md5_=6c1e2e5cc7cb84e80adc8eed71ff1ed9 diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.24.10 b/metadata/md5-cache/sys-cluster/kubelet-1.24.10 deleted file mode 100644 index fea108d6593e..000000000000 --- a/metadata/md5-cache/sys-cluster/kubelet-1.24.10 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.18.1 >=dev-lang/go-1.18 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install unpack -DESCRIPTION=Kubernetes Node Agent -EAPI=7 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module systemd -IUSE=hardened selinux -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) -RESTRICT=strip test -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.10.tar.gz -> kubernetes-1.24.10.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=e01050717f23091bc5aefc5ef93e498b diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.24.11 b/metadata/md5-cache/sys-cluster/kubelet-1.24.11 index 289e012fa7c0..876e8e19bec4 100644 --- a/metadata/md5-cache/sys-cluster/kubelet-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kubelet-1.24.11 @@ -5,11 +5,11 @@ EAPI=7 HOMEPAGE=https://kubernetes.io INHERIT=go-module systemd IUSE=hardened selinux -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f3f5358d449d67021cb414c8a182e2ab +_md5_=e01050717f23091bc5aefc5ef93e498b diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.25.6 b/metadata/md5-cache/sys-cluster/kubelet-1.25.6 deleted file mode 100644 index cb9155370fa0..000000000000 --- a/metadata/md5-cache/sys-cluster/kubelet-1.25.6 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install unpack -DESCRIPTION=Kubernetes Node Agent -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module systemd -IUSE=hardened selinux -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.6.tar.gz -> kubernetes-1.25.6.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=07f9ce5b96157561e08be78f63243777 diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.25.7 b/metadata/md5-cache/sys-cluster/kubelet-1.25.7 index b3d1710c37e3..402b572ee5da 100644 --- a/metadata/md5-cache/sys-cluster/kubelet-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kubelet-1.25.7 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=go-module systemd IUSE=hardened selinux -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=5af1a3c3e2ecac0c7e0ebb16fbfff2da +_md5_=07f9ce5b96157561e08be78f63243777 diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.26.1 b/metadata/md5-cache/sys-cluster/kubelet-1.26.1 deleted file mode 100644 index 7f2f36b8fad7..000000000000 --- a/metadata/md5-cache/sys-cluster/kubelet-1.26.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-lang/go-1.19 >=dev-lang/go-1.18 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install unpack -DESCRIPTION=Kubernetes Node Agent -EAPI=8 -HOMEPAGE=https://kubernetes.io -INHERIT=go-module systemd -IUSE=hardened selinux -KEYWORDS=amd64 ~arm64 -LICENSE=Apache-2.0 -RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) -RESTRICT=test strip -SLOT=0 -SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.1.tar.gz -> kubernetes-1.26.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=07f9ce5b96157561e08be78f63243777 diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.26.2 b/metadata/md5-cache/sys-cluster/kubelet-1.26.2 index 177a42a2afa6..6b5a2c74ebb5 100644 --- a/metadata/md5-cache/sys-cluster/kubelet-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kubelet-1.26.2 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://kubernetes.io INHERIT=go-module systemd IUSE=hardened selinux -KEYWORDS=~amd64 ~arm64 +KEYWORDS=amd64 ~arm64 LICENSE=Apache-2.0 RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz _eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=5af1a3c3e2ecac0c7e0ebb16fbfff2da +_md5_=07f9ce5b96157561e08be78f63243777 diff --git a/metadata/md5-cache/sys-cluster/legion-21.09.0-r1 b/metadata/md5-cache/sys-cluster/legion-21.09.0-r1 index 72d22d8f3306..a165e7e0be47 100644 --- a/metadata/md5-cache/sys-cluster/legion-21.09.0-r1 +++ b/metadata/md5-cache/sys-cluster/legion-21.09.0-r1 @@ -12,5 +12,5 @@ RDEPEND=examples? ( virtual/mpi[cxx] ) gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/StanfordLegion/legion/archive/legion-21.09.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e8ddcd1ef49cebbeada4bfa3cbf11353 diff --git a/metadata/md5-cache/sys-cluster/legion-9999 b/metadata/md5-cache/sys-cluster/legion-9999 index f7b1f68ec2c6..608000546aad 100644 --- a/metadata/md5-cache/sys-cluster/legion-9999 +++ b/metadata/md5-cache/sys-cluster/legion-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=examples? ( virtual/mpi[cxx] ) gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) hwloc? ( =dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) !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_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b perl-functions c3fca037246e877693badea0df3b0ef8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b perl-functions c3fca037246e877693badea0df3b0ef8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6aec4d758575aeb5dc3b3d405f0e58b3 diff --git a/metadata/md5-cache/sys-cluster/zookeeper-bin-3.8.1 b/metadata/md5-cache/sys-cluster/zookeeper-bin-3.8.1 new file mode 100644 index 000000000000..777e996c2005 --- /dev/null +++ b/metadata/md5-cache/sys-cluster/zookeeper-bin-3.8.1 @@ -0,0 +1,14 @@ +BDEPEND=acct-group/zookeeper acct-user/zookeeper +DEFINED_PHASES=install prepare +DESCRIPTION=A high-performance coordination service for distributed applications +EAPI=8 +HOMEPAGE=https://zookeeper.apache.org/ +INHERIT=java-utils-2 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=acct-group/zookeeper acct-user/zookeeper >=virtual/jre-1.8 +RESTRICT=mirror binchecks +SLOT=0 +SRC_URI=https://downloads.apache.org/zookeeper/zookeeper-3.8.1/apache-zookeeper-3.8.1-bin.tar.gz -> zookeeper-bin-3.8.1.tar.gz +_eclasses_=java-utils-2 eefed04ac580a259ecda1fbd966640b7 +_md5_=8f4981be5e860453b6b04076da8eeb4b diff --git a/metadata/md5-cache/sys-devel/Manifest.gz b/metadata/md5-cache/sys-devel/Manifest.gz index a79f0e2ab39f..c0694dc45723 100644 Binary files a/metadata/md5-cache/sys-devel/Manifest.gz and b/metadata/md5-cache/sys-devel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-devel/autoconf-archive-2023.02.20 b/metadata/md5-cache/sys-devel/autoconf-archive-2023.02.20 index 1469ddc19484..5b9f74e0649e 100644 --- a/metadata/md5-cache/sys-devel/autoconf-archive-2023.02.20 +++ b/metadata/md5-cache/sys-devel/autoconf-archive-2023.02.20 @@ -2,9 +2,9 @@ DEFINED_PHASES=- DESCRIPTION=GNU Autoconf Macro Archive EAPI=8 HOMEPAGE=https://www.gnu.org/software/autoconf-archive/ -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-3 RDEPEND=!=gnome-base/gnome-common-3.14.0-r0 !>=gnome-base/gnome-common-3.14.0-r1[-autoconf-archive(+)] SLOT=0 SRC_URI=mirror://gnu/autoconf-archive/autoconf-archive-2023.02.20.tar.xz -_md5_=baef9260c55c126c475b81809f5f182f +_md5_=6bc37ba9be14f85318879a6f55eee29c diff --git a/metadata/md5-cache/sys-devel/binutils-apple-8.2.1-r101 b/metadata/md5-cache/sys-devel/binutils-apple-8.2.1-r101 index 9ca57dd7fff0..f2f0427f50d5 100644 --- a/metadata/md5-cache/sys-devel/binutils-apple-8.2.1-r101 +++ b/metadata/md5-cache/sys-devel/binutils-apple-8.2.1-r101 @@ -10,5 +10,5 @@ LICENSE=APSL-2 RDEPEND=sys-devel/binutils-config || ( sys-devel/gcc:* sys-devel/clang:* ) app-arch/xar dev-libs/libyaml SLOT=8 SRC_URI=https://github.com/grobian/darwin-xtools/archive/gentoo-8.2.1-r101.tar.gz -> darwin-xtools-8.2.1-r101.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1555d44e4c920751aea6148598a7a4b6 diff --git a/metadata/md5-cache/sys-devel/clang-14.0.6-r1 b/metadata/md5-cache/sys-devel/clang-14.0.6-r1 index 7798f0044d15..8f9a4fa5e14a 100644 --- a/metadata/md5-cache/sys-devel/clang-14.0.6-r1 +++ b/metadata/md5-cache/sys-devel/clang-14.0.6-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) !test? ( test ) SLOT=14 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) !doc? ( https://dev.gentoo.org/~mgorny/dist/llvm/llvm-14.0.6-manpages.tar.bz2 ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-14.0.6-r2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=86c93692eb7f156cf22a7a103b6e1bea diff --git a/metadata/md5-cache/sys-devel/clang-15.0.7-r1 b/metadata/md5-cache/sys-devel/clang-15.0.7-r1 index c14d1dd265ae..0635de9fa167 100644 --- a/metadata/md5-cache/sys-devel/clang-15.0.7-r1 +++ b/metadata/md5-cache/sys-devel/clang-15.0.7-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) !test? ( test ) SLOT=15/15g1 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) !doc? ( https://dev.gentoo.org/~mgorny/dist/llvm/llvm-15.0.7-manpages.tar.bz2 ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-15.0.7.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a165541c0e27cc5aaa8e451e68bd7128 diff --git a/metadata/md5-cache/sys-devel/clang-16.0.0 b/metadata/md5-cache/sys-devel/clang-16.0.0 index fb4f0a2835ee..99f41a85870f 100644 --- a/metadata/md5-cache/sys-devel/clang-16.0.0 +++ b/metadata/md5-cache/sys-devel/clang-16.0.0 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) !test? ( test ) SLOT=16/16 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) !doc? ( https://dev.gentoo.org/~mgorny/dist/llvm/llvm-16.0.0-manpages.tar.bz2 ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=405b881a42872da962e7accb1d97fb55 diff --git a/metadata/md5-cache/sys-devel/clang-16.0.0.9999 b/metadata/md5-cache/sys-devel/clang-16.0.0.9999 index 8a4908c5104b..eb4fa9d6fb40 100644 --- a/metadata/md5-cache/sys-devel/clang-16.0.0.9999 +++ b/metadata/md5-cache/sys-devel/clang-16.0.0.9999 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) || ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=16/16 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=26c367d242e54669c25aac28cede3165 diff --git a/metadata/md5-cache/sys-devel/clang-16.0.0_rc3 b/metadata/md5-cache/sys-devel/clang-16.0.0_rc3 deleted file mode 100644 index 7404169c5379..000000000000 --- a/metadata/md5-cache/sys-devel/clang-16.0.0_rc3 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-util/cmake-3.16 doc? ( python_single_target_python3_9? ( dev-python/recommonmark[python_targets_python3_9(-)] dev-python/sphinx[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/recommonmark[python_targets_python3_10(-)] dev-python/sphinx[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/recommonmark[python_targets_python3_11(-)] dev-python/sphinx[python_targets_python3_11(-)] ) ) xml? ( virtual/pkgconfig ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) dev-python/sphinx >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~sys-devel/llvm-16.0.0_rc3:16=[debug=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] static-analyzer? ( dev-lang/perl:* ) xml? ( dev-libs/libxml2: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(-)?] ) llvm_targets_AArch64? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Xtensa] ) !!sys-devel/llvm:0 -DESCRIPTION=C language family frontend for LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm llvm.org multilib multilib-minimal prefix python-single-r1 toolchain-funcs flag-o-matic -IUSE=debug doc +extra ieee-long-double +pie +static-analyzer test xml test doc llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa verify-sig 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_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT -PDEPEND=~sys-devel/clang-runtime-16.0.0_rc3 sys-devel/clang-toolchain-symlinks:16 -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ~sys-devel/llvm-16.0.0_rc3:16=[debug=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] static-analyzer? ( dev-lang/perl:* ) xml? ( dev-libs/libxml2: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(-)?] ) >=sys-devel/clang-common-16.0.0_rc3 llvm_targets_AArch64? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-16.0.0_rc3[llvm_targets_Xtensa] ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) || ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=16/16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=38a6e26399d1c00c341ec62dc29ab579 diff --git a/metadata/md5-cache/sys-devel/clang-16.0.0_rc4 b/metadata/md5-cache/sys-devel/clang-16.0.0_rc4 deleted file mode 100644 index 91ece0bd2fcd..000000000000 --- a/metadata/md5-cache/sys-devel/clang-16.0.0_rc4 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-util/cmake-3.16 doc? ( python_single_target_python3_9? ( dev-python/recommonmark[python_targets_python3_9(-)] dev-python/sphinx[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/recommonmark[python_targets_python3_10(-)] dev-python/sphinx[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/recommonmark[python_targets_python3_11(-)] dev-python/sphinx[python_targets_python3_11(-)] ) ) xml? ( virtual/pkgconfig ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) dev-python/sphinx >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~sys-devel/llvm-16.0.0_rc4:16=[debug=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] static-analyzer? ( dev-lang/perl:* ) xml? ( dev-libs/libxml2: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(-)?] ) llvm_targets_AArch64? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Xtensa] ) !!sys-devel/llvm:0 -DESCRIPTION=C language family frontend for LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm llvm.org multilib multilib-minimal prefix python-single-r1 toolchain-funcs flag-o-matic -IUSE=debug doc +extra ieee-long-double +pie +static-analyzer test xml test doc llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa verify-sig 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_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT -PDEPEND=~sys-devel/clang-runtime-16.0.0_rc4 sys-devel/clang-toolchain-symlinks:16 -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ~sys-devel/llvm-16.0.0_rc4:16=[debug=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] static-analyzer? ( dev-lang/perl:* ) xml? ( dev-libs/libxml2: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(-)?] ) >=sys-devel/clang-common-16.0.0_rc4 llvm_targets_AArch64? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-16.0.0_rc4[llvm_targets_Xtensa] ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) || ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=16/16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=21cf4874c7002bc65473d9cc9bdc7a7b diff --git a/metadata/md5-cache/sys-devel/clang-17.0.0.9999 b/metadata/md5-cache/sys-devel/clang-17.0.0.9999 index 14386734893d..432c831825df 100644 --- a/metadata/md5-cache/sys-devel/clang-17.0.0.9999 +++ b/metadata/md5-cache/sys-devel/clang-17.0.0.9999 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) || ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=17/17.0.0.9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b0e5d9f135423dd030004fedbd759e39 diff --git a/metadata/md5-cache/sys-devel/clang-17.0.0_pre20230304 b/metadata/md5-cache/sys-devel/clang-17.0.0_pre20230304 deleted file mode 100644 index 7ddfaeee6918..000000000000 --- a/metadata/md5-cache/sys-devel/clang-17.0.0_pre20230304 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-util/cmake-3.16 doc? ( python_single_target_python3_9? ( dev-python/recommonmark[python_targets_python3_9(-)] dev-python/sphinx[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/recommonmark[python_targets_python3_10(-)] dev-python/sphinx[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/recommonmark[python_targets_python3_11(-)] dev-python/sphinx[python_targets_python3_11(-)] ) ) xml? ( virtual/pkgconfig ) dev-python/sphinx >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~sys-devel/llvm-17.0.0_pre20230304:17=[debug=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] static-analyzer? ( dev-lang/perl:* ) xml? ( dev-libs/libxml2: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(-)?] ) llvm_targets_AArch64? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Xtensa] ) !!sys-devel/llvm:0 -DESCRIPTION=C language family frontend for LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm llvm.org multilib multilib-minimal prefix python-single-r1 toolchain-funcs flag-o-matic -IUSE=debug doc +extra ieee-long-double +pie +static-analyzer test xml test doc llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa 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_9 python_single_target_python3_10 python_single_target_python3_11 -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT -PDEPEND=~sys-devel/clang-runtime-17.0.0_pre20230304 sys-devel/clang-toolchain-symlinks:17 -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ~sys-devel/llvm-17.0.0_pre20230304:17=[debug=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] static-analyzer? ( dev-lang/perl:* ) xml? ( dev-libs/libxml2: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(-)?] ) >=sys-devel/clang-common-17.0.0_pre20230304 llvm_targets_AArch64? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AArch64] ) llvm_targets_AMDGPU? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AMDGPU] ) llvm_targets_ARM? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_ARM] ) llvm_targets_AVR? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_AVR] ) llvm_targets_BPF? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_BPF] ) llvm_targets_Hexagon? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Hexagon] ) llvm_targets_Lanai? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Lanai] ) llvm_targets_LoongArch? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_LoongArch] ) llvm_targets_Mips? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Mips] ) llvm_targets_MSP430? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_MSP430] ) llvm_targets_NVPTX? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_NVPTX] ) llvm_targets_PowerPC? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_PowerPC] ) llvm_targets_RISCV? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_RISCV] ) llvm_targets_Sparc? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Sparc] ) llvm_targets_SystemZ? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_SystemZ] ) llvm_targets_VE? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_VE] ) llvm_targets_WebAssembly? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_WebAssembly] ) llvm_targets_X86? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_X86] ) llvm_targets_XCore? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_XCore] ) llvm_targets_ARC? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_ARC] ) llvm_targets_CSKY? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_CSKY] ) llvm_targets_DirectX? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_DirectX] ) llvm_targets_M68k? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_M68k] ) llvm_targets_SPIRV? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_SPIRV] ) llvm_targets_Xtensa? ( ~sys-devel/llvm-17.0.0_pre20230304[llvm_targets_Xtensa] ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) || ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=17/17.0.0_pre20230304 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=26c367d242e54669c25aac28cede3165 diff --git a/metadata/md5-cache/sys-devel/clang-17.0.0_pre20230314 b/metadata/md5-cache/sys-devel/clang-17.0.0_pre20230314 index 48e0dd9887c7..8d27f4b3cf5a 100644 --- a/metadata/md5-cache/sys-devel/clang-17.0.0_pre20230314 +++ b/metadata/md5-cache/sys-devel/clang-17.0.0_pre20230314 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) !test? ( test ) SLOT=17/17.0.0_pre20230314 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 prefix eab3c99d77fe00506c109c8a736186f7 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b0e5d9f135423dd030004fedbd759e39 diff --git a/metadata/md5-cache/sys-devel/clang-common-16.0.0_rc3-r2 b/metadata/md5-cache/sys-devel/clang-common-16.0.0_rc3-r2 deleted file mode 100644 index feeb060b6bdc..000000000000 --- a/metadata/md5-cache/sys-devel/clang-common-16.0.0_rc3-r2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=install preinst prepare pretend unpack -DESCRIPTION=Common files shared between multiple slots of clang -EAPI=8 -HOMEPAGE=https://llvm.org/ -IDEPEND=!default-compiler-rt? ( sys-devel/gcc-config ) !default-libcxx? ( sys-devel/gcc-config ) -INHERIT=bash-completion-r1 llvm.org -IUSE=default-compiler-rt default-libcxx default-lld llvm-libunwind hardened stricter verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -PDEPEND=sys-devel/clang:* default-compiler-rt? ( sys-devel/clang-runtime[compiler-rt] llvm-libunwind? ( sys-libs/llvm-libunwind[static-libs] ) !llvm-libunwind? ( sys-libs/libunwind[static-libs] ) ) !default-compiler-rt? ( sys-devel/gcc ) default-libcxx? ( >=sys-libs/libcxx-16.0.0_rc3 ) !default-libcxx? ( sys-devel/gcc ) default-lld? ( sys-devel/lld ) !default-lld? ( sys-devel/binutils ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=6d93600235ac60e81c00ec3afb641fc8 diff --git a/metadata/md5-cache/sys-devel/clang-common-16.0.0_rc4-r1 b/metadata/md5-cache/sys-devel/clang-common-16.0.0_rc4-r1 deleted file mode 100644 index 913eb2671ff4..000000000000 --- a/metadata/md5-cache/sys-devel/clang-common-16.0.0_rc4-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=install preinst prepare pretend unpack -DESCRIPTION=Common files shared between multiple slots of clang -EAPI=8 -HOMEPAGE=https://llvm.org/ -IDEPEND=!default-compiler-rt? ( sys-devel/gcc-config ) !default-libcxx? ( sys-devel/gcc-config ) -INHERIT=bash-completion-r1 llvm.org -IUSE=default-compiler-rt default-libcxx default-lld llvm-libunwind hardened stricter verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -PDEPEND=sys-devel/clang:* default-compiler-rt? ( sys-devel/clang-runtime[compiler-rt] llvm-libunwind? ( sys-libs/llvm-libunwind[static-libs] ) !llvm-libunwind? ( sys-libs/libunwind[static-libs] ) ) !default-compiler-rt? ( sys-devel/gcc ) default-libcxx? ( >=sys-libs/libcxx-16.0.0_rc4 ) !default-libcxx? ( sys-devel/gcc ) default-lld? ( sys-devel/lld ) !default-lld? ( sys-devel/binutils ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=6d93600235ac60e81c00ec3afb641fc8 diff --git a/metadata/md5-cache/sys-devel/clang-common-17.0.0_pre20230304-r1 b/metadata/md5-cache/sys-devel/clang-common-17.0.0_pre20230304-r1 deleted file mode 100644 index 0dda72e89140..000000000000 --- a/metadata/md5-cache/sys-devel/clang-common-17.0.0_pre20230304-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install preinst prepare pretend unpack -DESCRIPTION=Common files shared between multiple slots of clang -EAPI=8 -HOMEPAGE=https://llvm.org/ -IDEPEND=!default-compiler-rt? ( sys-devel/gcc-config ) !default-libcxx? ( sys-devel/gcc-config ) -INHERIT=bash-completion-r1 llvm.org -IUSE=default-compiler-rt default-libcxx default-lld llvm-libunwind hardened stricter -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -PDEPEND=sys-devel/clang:* default-compiler-rt? ( sys-devel/clang-runtime[compiler-rt] llvm-libunwind? ( sys-libs/llvm-libunwind[static-libs] ) !llvm-libunwind? ( sys-libs/libunwind[static-libs] ) ) !default-compiler-rt? ( sys-devel/gcc ) default-libcxx? ( >=sys-libs/libcxx-17.0.0_pre20230304 ) !default-libcxx? ( sys-devel/gcc ) default-lld? ( sys-devel/lld ) !default-lld? ( sys-devel/binutils ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=b31a4440fba471753d516578ec57412e diff --git a/metadata/md5-cache/sys-devel/clang-runtime-16.0.0_rc3 b/metadata/md5-cache/sys-devel/clang-runtime-16.0.0_rc3 deleted file mode 100644 index ae1aa28a6bc9..000000000000 --- a/metadata/md5-cache/sys-devel/clang-runtime-16.0.0_rc3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=pretend -DESCRIPTION=Meta-ebuild for clang runtime libraries -EAPI=8 -HOMEPAGE=https://clang.llvm.org/ -INHERIT=multilib-build toolchain-funcs -IUSE=+compiler-rt libcxx openmp +sanitize 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=~loong -LICENSE=metapackage -RDEPEND=compiler-rt? ( ~sys-libs/compiler-rt-16.0.0_rc3:16[abi_x86_32(+)?,abi_x86_64(+)?] sanitize? ( ~sys-libs/compiler-rt-sanitizers-16.0.0_rc3:16[abi_x86_32(+)?,abi_x86_64(+)?] ) ) libcxx? ( >=sys-libs/libcxx-16.0.0_rc3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openmp? ( >=sys-libs/libomp-16.0.0_rc3[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=sanitize? ( compiler-rt ) -SLOT=16 -_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=4bde4e3ec743139da6bad5fb1f1b9c88 diff --git a/metadata/md5-cache/sys-devel/clang-runtime-16.0.0_rc4 b/metadata/md5-cache/sys-devel/clang-runtime-16.0.0_rc4 deleted file mode 100644 index 54c3b15b26ff..000000000000 --- a/metadata/md5-cache/sys-devel/clang-runtime-16.0.0_rc4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=pretend -DESCRIPTION=Meta-ebuild for clang runtime libraries -EAPI=8 -HOMEPAGE=https://clang.llvm.org/ -INHERIT=multilib-build toolchain-funcs -IUSE=+compiler-rt libcxx openmp +sanitize 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=~loong -LICENSE=metapackage -RDEPEND=compiler-rt? ( ~sys-libs/compiler-rt-16.0.0_rc4:16[abi_x86_32(+)?,abi_x86_64(+)?] sanitize? ( ~sys-libs/compiler-rt-sanitizers-16.0.0_rc4:16[abi_x86_32(+)?,abi_x86_64(+)?] ) ) libcxx? ( >=sys-libs/libcxx-16.0.0_rc4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openmp? ( >=sys-libs/libomp-16.0.0_rc4[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=sanitize? ( compiler-rt ) -SLOT=16 -_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=4bde4e3ec743139da6bad5fb1f1b9c88 diff --git a/metadata/md5-cache/sys-devel/clang-runtime-17.0.0_pre20230304 b/metadata/md5-cache/sys-devel/clang-runtime-17.0.0_pre20230304 deleted file mode 100644 index a47938e1b2f1..000000000000 --- a/metadata/md5-cache/sys-devel/clang-runtime-17.0.0_pre20230304 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=pretend -DESCRIPTION=Meta-ebuild for clang runtime libraries -EAPI=8 -HOMEPAGE=https://clang.llvm.org/ -INHERIT=multilib-build toolchain-funcs -IUSE=+compiler-rt libcxx openmp +sanitize abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -LICENSE=metapackage -PROPERTIES=live -RDEPEND=compiler-rt? ( ~sys-libs/compiler-rt-17.0.0_pre20230304:17[abi_x86_32(+)?,abi_x86_64(+)?] sanitize? ( ~sys-libs/compiler-rt-sanitizers-17.0.0_pre20230304:17[abi_x86_32(+)?,abi_x86_64(+)?] ) ) libcxx? ( >=sys-libs/libcxx-17.0.0_pre20230304[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openmp? ( >=sys-libs/libomp-17.0.0_pre20230304[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=sanitize? ( compiler-rt ) -SLOT=17 -_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=a2cbb671ba47f2c77b593a6e199d20d0 diff --git a/metadata/md5-cache/sys-devel/dwz-0.15-r1 b/metadata/md5-cache/sys-devel/dwz-0.15-r1 new file mode 100644 index 000000000000..fd0bd48cd1fa --- /dev/null +++ b/metadata/md5-cache/sys-devel/dwz-0.15-r1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-libs/elfutils[utils] dev-util/dejagnu sys-devel/gdb ) +DEFINED_PHASES=compile install prepare test +DEPEND=dev-libs/elfutils dev-libs/xxhash +DESCRIPTION=DWARF optimization and duplicate removal tool +EAPI=8 +HOMEPAGE=https://sourceware.org/dwz +INHERIT=toolchain-funcs +IUSE=test +KEYWORDS=~amd64 +LICENSE=GPL-2+ GPL-3+ +RDEPEND=dev-libs/elfutils dev-libs/xxhash +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://sourceware.org/ftp/dwz/releases/dwz-0.15.tar.xz +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=495c5c896486f130a1948a94fa5909c9 diff --git a/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230318 b/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230318 new file mode 100644 index 000000000000..411acd95e5b5 --- /dev/null +++ b/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230318 @@ -0,0 +1,16 @@ +BDEPEND=>=sys-devel/binutils-2.30[cet(-)?] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) sys-apps/texinfo valgrind? ( dev-util/valgrind ) d? ( || ( sys-devel/gcc[d(-)] =dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) sanitize? ( virtual/libcrypt ) systemtap? ( dev-util/systemtap ) zstd? ( app-arch/zstd:= ) +DESCRIPTION=The GNU Compiler Collection +EAPI=8 +HOMEPAGE=https://gcc.gnu.org/ +INHERIT=toolchain +IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection +LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ +PDEPEND=>=sys-devel/gcc-config-2.3 +RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) +RESTRICT=!test? ( test ) +SLOT=12 +SRC_URI=https://gcc.gnu.org/pub/gcc/snapshots/12-20230318/gcc-12-20230318.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-patches-14.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-musl-patches-7.tar.xz +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 5734141a297e4cf0595dc5b0870cd6ee toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=a0ad45c2e7ac0644c495b29db710ac25 diff --git a/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230319 b/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230319 new file mode 100644 index 000000000000..dc0ea0a89041 --- /dev/null +++ b/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230319 @@ -0,0 +1,17 @@ +BDEPEND=sys-devel/binutils[cet(-)?] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) sys-apps/texinfo valgrind? ( dev-util/valgrind ) d? ( || ( sys-devel/gcc[d(-)] =dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) sanitize? ( virtual/libcrypt ) systemtap? ( dev-util/systemtap ) zstd? ( app-arch/zstd:= ) +DESCRIPTION=The GNU Compiler Collection +EAPI=8 +HOMEPAGE=https://gcc.gnu.org/ +INHERIT=toolchain +IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection rust +KEYWORDS=~loong +LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ +PDEPEND=>=sys-devel/gcc-config-2.3 +RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) +RESTRICT=!test? ( test ) +SLOT=13 +SRC_URI=https://gcc.gnu.org/pub/gcc/snapshots/13-20230319/gcc-13-20230319.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-musl-patches-1.tar.xz +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 5734141a297e4cf0595dc5b0870cd6ee toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=c6fcae0511491438a9612f287118351c diff --git a/metadata/md5-cache/sys-devel/gdb-13.1-r1 b/metadata/md5-cache/sys-devel/gdb-13.1-r1 index 3ffc96da8d2d..4ad18b50f2bb 100644 --- a/metadata/md5-cache/sys-devel/gdb-13.1-r1 +++ b/metadata/md5-cache/sys-devel/gdb-13.1-r1 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnu/gdb/gdb-13.1.tar.xz https://sourceware.org/pub/gdb/releases/gdb-13.1.tar.xz _eclasses_=flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=5481d9504ca43482b17629d2f95f995e +_md5_=a519ed501a953bd090132ebfd2e3414d diff --git a/metadata/md5-cache/sys-devel/lld-14.0.6-r1 b/metadata/md5-cache/sys-devel/lld-14.0.6-r1 index 0e617a65a7e1..34c0fce3b1da 100644 --- a/metadata/md5-cache/sys-devel/lld-14.0.6-r1 +++ b/metadata/md5-cache/sys-devel/lld-14.0.6-r1 @@ -12,5 +12,5 @@ RDEPEND=~sys-devel/llvm-14.0.6 !sys-devel/lld:0 RESTRICT=!test? ( test ) !test? ( test ) SLOT=14/14 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=26671ae41a4c43c90c6965c6a33bad29 diff --git a/metadata/md5-cache/sys-devel/lld-15.0.7 b/metadata/md5-cache/sys-devel/lld-15.0.7 index d62f167f63a1..408afce52d86 100644 --- a/metadata/md5-cache/sys-devel/lld-15.0.7 +++ b/metadata/md5-cache/sys-devel/lld-15.0.7 @@ -13,5 +13,5 @@ RDEPEND=~sys-devel/llvm-15.0.7 sys-libs/zlib:= !sys-devel/lld:0 RESTRICT=!test? ( test ) !test? ( test ) SLOT=15/15 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=77afdbb022522342650c5d0c89af55de diff --git a/metadata/md5-cache/sys-devel/lld-16.0.0 b/metadata/md5-cache/sys-devel/lld-16.0.0 index 9800a8509fb2..670190c88e36 100644 --- a/metadata/md5-cache/sys-devel/lld-16.0.0 +++ b/metadata/md5-cache/sys-devel/lld-16.0.0 @@ -13,5 +13,5 @@ RDEPEND=~sys-devel/llvm-16.0.0[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=16/16 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=67393891fb7b536eee357f74739193b9 diff --git a/metadata/md5-cache/sys-devel/lld-16.0.0.9999 b/metadata/md5-cache/sys-devel/lld-16.0.0.9999 index e56deb735618..48718d556636 100644 --- a/metadata/md5-cache/sys-devel/lld-16.0.0.9999 +++ b/metadata/md5-cache/sys-devel/lld-16.0.0.9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=~sys-devel/llvm-16.0.0.9999[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !sys-devel/lld:0 RESTRICT=!test? ( test ) !test? ( test ) SLOT=16/16 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=280d570522b478b6f0784657376bc989 diff --git a/metadata/md5-cache/sys-devel/lld-16.0.0_rc3 b/metadata/md5-cache/sys-devel/lld-16.0.0_rc3 deleted file mode 100644 index 7c9b601ca3a1..000000000000 --- a/metadata/md5-cache/sys-devel/lld-16.0.0_rc3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=sys-devel/llvm:16 test? ( >=dev-util/cmake-3.16 || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/lit-16.0.0_rc3[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/lit-16.0.0_rc3[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/lit-16.0.0_rc3[python_targets_python3_9(-)] ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=~sys-devel/llvm-16.0.0_rc3[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !!sys-devel/llvm:0 -DESCRIPTION=The LLVM linker (link editor) -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=debug test zstd test verify-sig -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -PDEPEND=>=sys-devel/lld-toolchain-symlinks-16-r2:16 -RDEPEND=~sys-devel/llvm-16.0.0_rc3[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !sys-devel/lld:0 -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=16/16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=280d570522b478b6f0784657376bc989 diff --git a/metadata/md5-cache/sys-devel/lld-16.0.0_rc4 b/metadata/md5-cache/sys-devel/lld-16.0.0_rc4 deleted file mode 100644 index 66ae81bc36a8..000000000000 --- a/metadata/md5-cache/sys-devel/lld-16.0.0_rc4 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=sys-devel/llvm:16 test? ( >=dev-util/cmake-3.16 || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/lit-16.0.0_rc4[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/lit-16.0.0_rc4[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/lit-16.0.0_rc4[python_targets_python3_9(-)] ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=~sys-devel/llvm-16.0.0_rc4[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !!sys-devel/llvm:0 -DESCRIPTION=The LLVM linker (link editor) -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=debug test zstd test verify-sig -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -PDEPEND=>=sys-devel/lld-toolchain-symlinks-16-r2:16 -RDEPEND=~sys-devel/llvm-16.0.0_rc4[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !sys-devel/lld:0 -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=16/16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=280d570522b478b6f0784657376bc989 diff --git a/metadata/md5-cache/sys-devel/lld-17.0.0.9999 b/metadata/md5-cache/sys-devel/lld-17.0.0.9999 index 62b1b75162e8..44f152aab4d9 100644 --- a/metadata/md5-cache/sys-devel/lld-17.0.0.9999 +++ b/metadata/md5-cache/sys-devel/lld-17.0.0.9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=~sys-devel/llvm-17.0.0.9999[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !sys-devel/lld:0 RESTRICT=!test? ( test ) SLOT=17/17.0.0.9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2aef7cd1f03a5f8c85179c598fa6b22b diff --git a/metadata/md5-cache/sys-devel/lld-17.0.0_pre20230304 b/metadata/md5-cache/sys-devel/lld-17.0.0_pre20230304 deleted file mode 100644 index 3acc3bb60b6a..000000000000 --- a/metadata/md5-cache/sys-devel/lld-17.0.0_pre20230304 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=sys-devel/llvm:17 test? ( >=dev-util/cmake-3.16 || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/lit-17.0.0_pre20230304[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/lit-17.0.0_pre20230304[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/lit-17.0.0_pre20230304[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=~sys-devel/llvm-17.0.0_pre20230304[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !!sys-devel/llvm:0 -DESCRIPTION=The LLVM linker (link editor) -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=debug test zstd test -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -PDEPEND=>=sys-devel/lld-toolchain-symlinks-16-r2:17 -RDEPEND=~sys-devel/llvm-17.0.0_pre20230304[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !sys-devel/lld:0 -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=17/17.0.0_pre20230304 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=280d570522b478b6f0784657376bc989 diff --git a/metadata/md5-cache/sys-devel/lld-17.0.0_pre20230314 b/metadata/md5-cache/sys-devel/lld-17.0.0_pre20230314 index 87e935c51f79..0befe93882c1 100644 --- a/metadata/md5-cache/sys-devel/lld-17.0.0_pre20230314 +++ b/metadata/md5-cache/sys-devel/lld-17.0.0_pre20230314 @@ -12,5 +12,5 @@ RDEPEND=~sys-devel/llvm-17.0.0_pre20230314[zstd=] sys-libs/zlib:= zstd? ( app-ar RESTRICT=!test? ( test ) SLOT=17/17.0.0_pre20230314 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2aef7cd1f03a5f8c85179c598fa6b22b diff --git a/metadata/md5-cache/sys-devel/llvm-14.0.6-r2 b/metadata/md5-cache/sys-devel/llvm-14.0.6-r2 index 3cd8adac3c6b..d5a4944cb353 100644 --- a/metadata/md5-cache/sys-devel/llvm-14.0.6-r2 +++ b/metadata/md5-cache/sys-devel/llvm-14.0.6-r2 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm RESTRICT=!test? ( test ) SLOT=14 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) !doc? ( https://dev.gentoo.org/~mgorny/dist/llvm/llvm-14.0.6-manpages.tar.bz2 ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-14.0.6-r2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c85b453ff2e87bedb11e6b27dbbb787f diff --git a/metadata/md5-cache/sys-devel/llvm-15.0.7 b/metadata/md5-cache/sys-devel/llvm-15.0.7 index 519fc8c08fe7..728e4e2a9c91 100644 --- a/metadata/md5-cache/sys-devel/llvm-15.0.7 +++ b/metadata/md5-cache/sys-devel/llvm-15.0.7 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm RESTRICT=!test? ( test ) SLOT=15/15 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) !doc? ( https://dev.gentoo.org/~mgorny/dist/llvm/llvm-15.0.7-manpages.tar.bz2 ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-15.0.7.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a76072a74390bba744b933db44e6111c diff --git a/metadata/md5-cache/sys-devel/llvm-16.0.0 b/metadata/md5-cache/sys-devel/llvm-16.0.0 index 8db65fbe9873..ce8704c34159 100644 --- a/metadata/md5-cache/sys-devel/llvm-16.0.0 +++ b/metadata/md5-cache/sys-devel/llvm-16.0.0 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm RESTRICT=!test? ( test ) !test? ( test ) SLOT=16/16 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) !doc? ( https://dev.gentoo.org/~mgorny/dist/llvm/llvm-16.0.0-manpages.tar.bz2 ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e9c515f238c8e01a8d0fa263d2823287 diff --git a/metadata/md5-cache/sys-devel/llvm-16.0.0.9999 b/metadata/md5-cache/sys-devel/llvm-16.0.0.9999 index 3c83d24940e8..bb868894cb0c 100644 --- a/metadata/md5-cache/sys-devel/llvm-16.0.0.9999 +++ b/metadata/md5-cache/sys-devel/llvm-16.0.0.9999 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_ REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=16/16 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=88105e5213bbaf009c303ec910463ff0 diff --git a/metadata/md5-cache/sys-devel/llvm-16.0.0_rc3 b/metadata/md5-cache/sys-devel/llvm-16.0.0_rc3 deleted file mode 100644 index dbfa5db61277..000000000000 --- a/metadata/md5-cache/sys-devel/llvm-16.0.0_rc3 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl >=dev-util/cmake-3.16 sys-devel/gnuconfig kernel_Darwin? ( =sys-devel/binutils-apple-5.1 ) doc? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/recommonmark[python_targets_python3_11(-)] dev-python/sphinx[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/recommonmark[python_targets_python3_10(-)] dev-python/sphinx[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/recommonmark[python_targets_python3_9(-)] dev-python/sphinx[python_targets_python3_9(-)] ) ) ) libffi? ( virtual/pkgconfig ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) dev-python/sphinx >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] exegesis? ( dev-libs/libpfm:= ) libedit? ( dev-libs/libedit: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(-)?] ) libffi? ( >=dev-libs/libffi-3.0.13-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(-)?] ) ncurses? ( >=sys-libs/ncurses-5.9-r3: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(-)?] ) xar? ( app-arch/xar ) xml? ( dev-libs/libxml2: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(-)?] ) z3? ( >=sci-mathematics/z3-4.7.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) binutils-plugin? ( sys-libs/binutils-libs ) -DESCRIPTION=Low Level Virtual Machine -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm.org multilib-minimal pax-utils python-any-r1 toolchain-funcs flag-o-matic -IUSE=+binutils-plugin debug doc exegesis libedit +libffi ncurses test xar xml z3 zstd test doc llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa verify-sig 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=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc -PDEPEND=sys-devel/llvm-common sys-devel/llvm-toolchain-symlinks:16 binutils-plugin? ( >=sys-devel/llvmgold-16 ) -RDEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] exegesis? ( dev-libs/libpfm:= ) libedit? ( dev-libs/libedit: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(-)?] ) libffi? ( >=dev-libs/libffi-3.0.13-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(-)?] ) ncurses? ( >=sys-libs/ncurses-5.9-r3: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(-)?] ) xar? ( app-arch/xar ) xml? ( dev-libs/libxml2: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(-)?] ) z3? ( >=sci-mathematics/z3-4.7.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) !sys-devel/llvm:0 -REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=16/16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=c200f47c72f7252e2bf206fed203a0a4 diff --git a/metadata/md5-cache/sys-devel/llvm-16.0.0_rc4 b/metadata/md5-cache/sys-devel/llvm-16.0.0_rc4 deleted file mode 100644 index 9890ddb1d3a9..000000000000 --- a/metadata/md5-cache/sys-devel/llvm-16.0.0_rc4 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl >=dev-util/cmake-3.16 sys-devel/gnuconfig kernel_Darwin? ( =sys-devel/binutils-apple-5.1 ) doc? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/recommonmark[python_targets_python3_11(-)] dev-python/sphinx[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/recommonmark[python_targets_python3_10(-)] dev-python/sphinx[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/recommonmark[python_targets_python3_9(-)] dev-python/sphinx[python_targets_python3_9(-)] ) ) ) libffi? ( virtual/pkgconfig ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) dev-python/sphinx >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] exegesis? ( dev-libs/libpfm:= ) libedit? ( dev-libs/libedit: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(-)?] ) libffi? ( >=dev-libs/libffi-3.0.13-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(-)?] ) ncurses? ( >=sys-libs/ncurses-5.9-r3: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(-)?] ) xar? ( app-arch/xar ) xml? ( dev-libs/libxml2: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(-)?] ) z3? ( >=sci-mathematics/z3-4.7.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) binutils-plugin? ( sys-libs/binutils-libs ) -DESCRIPTION=Low Level Virtual Machine -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm.org multilib-minimal pax-utils python-any-r1 toolchain-funcs flag-o-matic -IUSE=+binutils-plugin debug doc exegesis libedit +libffi ncurses test xar xml z3 zstd test doc llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa verify-sig 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=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc -PDEPEND=sys-devel/llvm-common sys-devel/llvm-toolchain-symlinks:16 binutils-plugin? ( >=sys-devel/llvmgold-16 ) -RDEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] exegesis? ( dev-libs/libpfm:= ) libedit? ( dev-libs/libedit: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(-)?] ) libffi? ( >=dev-libs/libffi-3.0.13-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(-)?] ) ncurses? ( >=sys-libs/ncurses-5.9-r3: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(-)?] ) xar? ( app-arch/xar ) xml? ( dev-libs/libxml2: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(-)?] ) z3? ( >=sci-mathematics/z3-4.7.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) !sys-devel/llvm:0 -REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=16/16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=70cc1659b9b9a8001d9e60befebdc748 diff --git a/metadata/md5-cache/sys-devel/llvm-17.0.0.9999 b/metadata/md5-cache/sys-devel/llvm-17.0.0.9999 index b56b68018969..3ec295e449c8 100644 --- a/metadata/md5-cache/sys-devel/llvm-17.0.0.9999 +++ b/metadata/md5-cache/sys-devel/llvm-17.0.0.9999 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_ REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) RESTRICT=!test? ( test ) SLOT=17/17.0.0.9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b96ee33afc52cb77e6e3b2b841426f1 diff --git a/metadata/md5-cache/sys-devel/llvm-17.0.0_pre20230304 b/metadata/md5-cache/sys-devel/llvm-17.0.0_pre20230304 deleted file mode 100644 index 28c3ecfbf020..000000000000 --- a/metadata/md5-cache/sys-devel/llvm-17.0.0_pre20230304 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl >=dev-util/cmake-3.16 sys-devel/gnuconfig kernel_Darwin? ( =sys-devel/binutils-apple-5.1 ) doc? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/recommonmark[python_targets_python3_11(-)] dev-python/sphinx[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/recommonmark[python_targets_python3_10(-)] dev-python/sphinx[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/recommonmark[python_targets_python3_9(-)] dev-python/sphinx[python_targets_python3_9(-)] ) ) ) libffi? ( virtual/pkgconfig ) dev-python/sphinx >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] exegesis? ( dev-libs/libpfm:= ) libedit? ( dev-libs/libedit: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(-)?] ) libffi? ( >=dev-libs/libffi-3.0.13-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(-)?] ) ncurses? ( >=sys-libs/ncurses-5.9-r3: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(-)?] ) xar? ( app-arch/xar ) xml? ( dev-libs/libxml2: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(-)?] ) z3? ( >=sci-mathematics/z3-4.7.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) binutils-plugin? ( sys-libs/binutils-libs ) -DESCRIPTION=Low Level Virtual Machine -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake llvm.org multilib-minimal pax-utils python-any-r1 toolchain-funcs flag-o-matic -IUSE=+binutils-plugin debug doc exegesis libedit +libffi ncurses test xar xml z3 zstd test doc llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc -PDEPEND=sys-devel/llvm-common sys-devel/llvm-toolchain-symlinks:17 binutils-plugin? ( >=sys-devel/llvmgold-17 ) -RDEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] exegesis? ( dev-libs/libpfm:= ) libedit? ( dev-libs/libedit: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(-)?] ) libffi? ( >=dev-libs/libffi-3.0.13-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(-)?] ) ncurses? ( >=sys-libs/ncurses-5.9-r3: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(-)?] ) xar? ( app-arch/xar ) xml? ( dev-libs/libxml2: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(-)?] ) z3? ( >=sci-mathematics/z3-4.7.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) !sys-devel/llvm:0 -REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_LoongArch llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_VE llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore llvm_targets_ARC llvm_targets_CSKY llvm_targets_DirectX llvm_targets_M68k llvm_targets_SPIRV llvm_targets_Xtensa ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=17/17.0.0_pre20230304 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=88105e5213bbaf009c303ec910463ff0 diff --git a/metadata/md5-cache/sys-devel/llvm-17.0.0_pre20230314 b/metadata/md5-cache/sys-devel/llvm-17.0.0_pre20230314 index 5ffd505f6355..c1e8ef5d03a7 100644 --- a/metadata/md5-cache/sys-devel/llvm-17.0.0_pre20230314 +++ b/metadata/md5-cache/sys-devel/llvm-17.0.0_pre20230314 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm RESTRICT=!test? ( test ) SLOT=17/17.0.0_pre20230314 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b96ee33afc52cb77e6e3b2b841426f1 diff --git a/metadata/md5-cache/sys-devel/llvm-common-16.0.0_rc3 b/metadata/md5-cache/sys-devel/llvm-common-16.0.0_rc3 deleted file mode 100644 index 6f4c0c3570a0..000000000000 --- a/metadata/md5-cache/sys-devel/llvm-common-16.0.0_rc3 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=install prepare unpack -DESCRIPTION=Common files shared between multiple slots of LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=llvm.org -IUSE=verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=!sys-devel/llvm:0 -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=llvm.org 3337b24d0baa3db792ca6d7b9f10112f multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=c9d578123645e9827b6020e0dc4dd9b3 diff --git a/metadata/md5-cache/sys-devel/llvm-common-16.0.0_rc4 b/metadata/md5-cache/sys-devel/llvm-common-16.0.0_rc4 deleted file mode 100644 index 578f9270151e..000000000000 --- a/metadata/md5-cache/sys-devel/llvm-common-16.0.0_rc4 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=install prepare unpack -DESCRIPTION=Common files shared between multiple slots of LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=llvm.org -IUSE=verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=!sys-devel/llvm:0 -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=llvm.org 3337b24d0baa3db792ca6d7b9f10112f multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 verify-sig fef00f802a62a8d9e66affc69e141df0 -_md5_=c9d578123645e9827b6020e0dc4dd9b3 diff --git a/metadata/md5-cache/sys-devel/llvm-common-17.0.0_pre20230304 b/metadata/md5-cache/sys-devel/llvm-common-17.0.0_pre20230304 deleted file mode 100644 index 58ff2124896d..000000000000 --- a/metadata/md5-cache/sys-devel/llvm-common-17.0.0_pre20230304 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install prepare unpack -DESCRIPTION=Common files shared between multiple slots of LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=llvm.org -LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA -RDEPEND=!sys-devel/llvm:0 -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=llvm.org 3337b24d0baa3db792ca6d7b9f10112f multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 -_md5_=2a5664fc02bf8988a8b1be74ec75557c diff --git a/metadata/md5-cache/sys-devel/mold-1.10.1 b/metadata/md5-cache/sys-devel/mold-1.10.1 index 19c3084d6775..7566d946f168 100644 --- a/metadata/md5-cache/sys-devel/mold-1.10.1 +++ b/metadata/md5-cache/sys-devel/mold-1.10.1 @@ -10,5 +10,5 @@ LICENSE=AGPL-3 BSD-2 RDEPEND=app-arch/zstd:= >=dev-cpp/tbb-2021.7.0-r1:= sys-libs/zlib !kernel_Darwin? ( >=dev-libs/mimalloc-2:= dev-libs/openssl:= ) SLOT=0 SRC_URI=https://github.com/rui314/mold/archive/refs/tags/v1.10.1.tar.gz -> mold-1.10.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4ffdacc67a7ce53ae521c996c5d24d0b diff --git a/metadata/md5-cache/sys-devel/mold-1.11.0 b/metadata/md5-cache/sys-devel/mold-1.11.0 index da243375dd22..fefa257faa9e 100644 --- a/metadata/md5-cache/sys-devel/mold-1.11.0 +++ b/metadata/md5-cache/sys-devel/mold-1.11.0 @@ -10,5 +10,5 @@ LICENSE=AGPL-3 BSD-2 RDEPEND=app-arch/zstd:= >=dev-cpp/tbb-2021.7.0-r1:= sys-libs/zlib !kernel_Darwin? ( >=dev-libs/mimalloc-2:= dev-libs/openssl:= ) SLOT=0 SRC_URI=https://github.com/rui314/mold/archive/refs/tags/v1.11.0.tar.gz -> mold-1.11.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=79c9ab581a0a51cb66383d81b4def837 diff --git a/metadata/md5-cache/sys-devel/mold-9999 b/metadata/md5-cache/sys-devel/mold-9999 index fe6b484b7e6c..2754fafb018d 100644 --- a/metadata/md5-cache/sys-devel/mold-9999 +++ b/metadata/md5-cache/sys-devel/mold-9999 @@ -9,5 +9,5 @@ LICENSE=AGPL-3 BSD-2 PROPERTIES=live RDEPEND=app-arch/zstd:= >=dev-cpp/tbb-2021.7.0-r1:= sys-libs/zlib !kernel_Darwin? ( >=dev-libs/mimalloc-2:= dev-libs/openssl:= ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=79c9ab581a0a51cb66383d81b4def837 diff --git a/metadata/md5-cache/sys-fs/Manifest.gz b/metadata/md5-cache/sys-fs/Manifest.gz index 8b8c3f136622..2ab51521b2d9 100644 Binary files a/metadata/md5-cache/sys-fs/Manifest.gz and b/metadata/md5-cache/sys-fs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-fs/android-file-transfer-linux-4.2 b/metadata/md5-cache/sys-fs/android-file-transfer-linux-4.2 index 783db679bf77..167a9ed50fbd 100644 --- a/metadata/md5-cache/sys-fs/android-file-transfer-linux-4.2 +++ b/metadata/md5-cache/sys-fs/android-file-transfer-linux-4.2 @@ -12,5 +12,5 @@ RDEPEND=sys-apps/file sys-libs/readline:0= fuse? ( sys-fs/fuse:0 ) python? ( pyt REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) SLOT=0 SRC_URI=https://github.com/whoozle/android-file-transfer-linux/archive/v4.2.tar.gz -> android-file-transfer-linux-4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=26ef28ad608e769faf7c7cae632df596 diff --git a/metadata/md5-cache/sys-fs/android-file-transfer-linux-9999 b/metadata/md5-cache/sys-fs/android-file-transfer-linux-9999 index 6aef3db51e6f..5cadccc4d97d 100644 --- a/metadata/md5-cache/sys-fs/android-file-transfer-linux-9999 +++ b/metadata/md5-cache/sys-fs/android-file-transfer-linux-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=sys-apps/file sys-libs/readline:0= fuse? ( sys-fs/fuse:0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/pybind11[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pybind11[python_targets_python3_10(-)] ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) taglib? ( media-libs/taglib ) zune? ( dev-libs/openssl:0= ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6442ab51b89e38c935d89f88e0e0a377 diff --git a/metadata/md5-cache/sys-fs/cryfs-0.10.3-r1 b/metadata/md5-cache/sys-fs/cryfs-0.10.3-r1 index 14556de34820..49f38ea771c1 100644 --- a/metadata/md5-cache/sys-fs/cryfs-0.10.3-r1 +++ b/metadata/md5-cache/sys-fs/cryfs-0.10.3-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= >=dev-libs/crypto++-8.2.0:= net-misc/curl:= >=sys-fs/fu RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cryfs/cryfs/releases/download/0.10.3/cryfs-0.10.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e83fdd9a797d88fec0f9abb90d14370b diff --git a/metadata/md5-cache/sys-fs/dfc-3.1.1 b/metadata/md5-cache/sys-fs/dfc-3.1.1 index 123fdb061ebd..438816a55571 100644 --- a/metadata/md5-cache/sys-fs/dfc-3.1.1 +++ b/metadata/md5-cache/sys-fs/dfc-3.1.1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=nls? ( virtual/libintl ) SLOT=0 SRC_URI=https://projects.gw-computing.net/attachments/download/615/dfc-3.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7fe7e4925812ad5fe21e1a673d795169 diff --git a/metadata/md5-cache/sys-fs/dislocker-0.7.3 b/metadata/md5-cache/sys-fs/dislocker-0.7.3 index dde53c59ec20..1061383836c5 100644 --- a/metadata/md5-cache/sys-fs/dislocker-0.7.3 +++ b/metadata/md5-cache/sys-fs/dislocker-0.7.3 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=sys-fs/fuse:0= net-libs/mbedtls:0= ruby? ( dev-lang/ruby:* ) SLOT=0 SRC_URI=https://github.com/Aorimn/dislocker/archive/v0.7.3.tar.gz -> dislocker-0.7.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5416cc0eff5c1c125490f3d98328a486 diff --git a/metadata/md5-cache/sys-fs/dislocker-9999 b/metadata/md5-cache/sys-fs/dislocker-9999 index aefc6181c730..3470baf1992f 100644 --- a/metadata/md5-cache/sys-fs/dislocker-9999 +++ b/metadata/md5-cache/sys-fs/dislocker-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=sys-fs/fuse:0= net-libs/mbedtls:0= ruby? ( dev-lang/ruby:* ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5416cc0eff5c1c125490f3d98328a486 diff --git a/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc16-r7 b/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc16-r7 index c0e33b3e407d..50a6d3de6f07 100644 --- a/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc16-r7 +++ b/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc16-r7 @@ -6,10 +6,10 @@ EAPI=7 HOMEPAGE=https://people.redhat.com/~heinzm/sw/dmraid/ INHERIT=autotools linux-info IUSE=intel-led led mini static -KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 RDEPEND=>=sys-fs/lvm2-2.02.45[lvm(+)] SLOT=0 SRC_URI=https://people.redhat.com/~heinzm/sw/dmraid/src/dmraid-1.0.0.rc16-3.tar.bz2 _eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=d70f27d88e3655e95c68e39a14d50f63 +_md5_=20643cce009a920a3655f44559c3edf6 diff --git a/metadata/md5-cache/sys-fs/encfs-1.9.5-r2 b/metadata/md5-cache/sys-fs/encfs-1.9.5-r2 index 28cae680f8b2..e5526fb5692a 100644 --- a/metadata/md5-cache/sys-fs/encfs-1.9.5-r2 +++ b/metadata/md5-cache/sys-fs/encfs-1.9.5-r2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl:= dev-libs/tinyxml2:= sys-fs/fuse:0= sys-libs/zlib RESTRICT=test SLOT=0 SRC_URI=https://github.com/vgough/encfs/archive/v1.9.5.tar.gz -> encfs-1.9.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d1e60dabceda0c6b725313e3d4fb75cb diff --git a/metadata/md5-cache/sys-fs/fatcat-1.1.1 b/metadata/md5-cache/sys-fs/fatcat-1.1.1 index 67927a12f159..0babed07b203 100644 --- a/metadata/md5-cache/sys-fs/fatcat-1.1.1 +++ b/metadata/md5-cache/sys-fs/fatcat-1.1.1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=!elibc_glibc? ( sys-libs/argp-standalone ) SLOT=0 SRC_URI=https://github.com/Gregwar/fatcat/archive/v1.1.1.tar.gz -> fatcat-1.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=381b1fc2fff86ea8ecbf1f6364fc0f36 diff --git a/metadata/md5-cache/sys-fs/fatsort-1.6.5.640 b/metadata/md5-cache/sys-fs/fatsort-1.6.5.640 new file mode 100644 index 000000000000..0f2ff592c993 --- /dev/null +++ b/metadata/md5-cache/sys-fs/fatsort-1.6.5.640 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile prepare test +DESCRIPTION=Sorts files on FAT16/32 partitions, ideal for basic audio players +EAPI=8 +HOMEPAGE=http://fatsort.sourceforge.net/ +INHERIT=toolchain-funcs +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=mirror://sourceforge/fatsort/fatsort-1.6.5.640.tar.xz +_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=baf10880ea895769663cb94379c29d3b diff --git a/metadata/md5-cache/sys-fs/fragview-0.1.1-r1 b/metadata/md5-cache/sys-fs/fragview-0.1.1-r1 index 4efdc3e2456d..d98bc90cf736 100644 --- a/metadata/md5-cache/sys-fs/fragview-0.1.1-r1 +++ b/metadata/md5-cache/sys-fs/fragview-0.1.1-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-cpp/atkmm:0 dev-cpp/cairomm:0 dev-cpp/glibmm:2 dev-cpp/gtkmm:3.0 dev-db/sqlite:3 dev-libs/glib:2 dev-libs/libsigc++:2 SLOT=0 SRC_URI=https://github.com/i-rinat/fragview/archive/v0.1.1.tar.gz -> fragview-0.1.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f8ad371502291212ec0ff3a38ac31cfa diff --git a/metadata/md5-cache/sys-fs/fragview-0.1.2 b/metadata/md5-cache/sys-fs/fragview-0.1.2 index 599842206a2b..e168d7a75c0f 100644 --- a/metadata/md5-cache/sys-fs/fragview-0.1.2 +++ b/metadata/md5-cache/sys-fs/fragview-0.1.2 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-cpp/atkmm:0 dev-cpp/cairomm:0 dev-cpp/glibmm:2 dev-cpp/gtkmm:3.0 dev-db/sqlite:3 dev-libs/glib:2 dev-libs/libsigc++:2 SLOT=0 SRC_URI=https://github.com/i-rinat/fragview/archive/v0.1.2.tar.gz -> fragview-0.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=316f602569d371a63d48a66b459ac7f5 diff --git a/metadata/md5-cache/sys-fs/fragview-9999 b/metadata/md5-cache/sys-fs/fragview-9999 index 935e76395901..bebbe75e9443 100644 --- a/metadata/md5-cache/sys-fs/fragview-9999 +++ b/metadata/md5-cache/sys-fs/fragview-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=dev-cpp/atkmm:0 dev-cpp/cairomm:0 dev-cpp/glibmm:2 dev-cpp/gtkmm:3.0 dev-db/sqlite:3 dev-libs/glib:2 dev-libs/libsigc++:2 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=316f602569d371a63d48a66b459ac7f5 diff --git a/metadata/md5-cache/sys-fs/lxcfs-5.0.3 b/metadata/md5-cache/sys-fs/lxcfs-5.0.3 index 76e6b04752bb..b640a73e66e4 100644 --- a/metadata/md5-cache/sys-fs/lxcfs-5.0.3 +++ b/metadata/md5-cache/sys-fs/lxcfs-5.0.3 @@ -12,5 +12,5 @@ RDEPEND=sys-fs/fuse:3 RESTRICT=test SLOT=0 SRC_URI=https://linuxcontainers.org/downloads/lxcfs/lxcfs-5.0.3.tar.gz verify-sig? ( https://linuxcontainers.org/downloads/lxcfs/lxcfs-5.0.3.tar.gz.asc ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9821100a2e9a892945167dad84b73544 diff --git a/metadata/md5-cache/sys-fs/reiserfs-defrag-0.2.2 b/metadata/md5-cache/sys-fs/reiserfs-defrag-0.2.2 index c29c5bc75c53..e9436227d959 100644 --- a/metadata/md5-cache/sys-fs/reiserfs-defrag-0.2.2 +++ b/metadata/md5-cache/sys-fs/reiserfs-defrag-0.2.2 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 LICENSE=GPL-3 SLOT=0 SRC_URI=https://github.com/i-rinat/reiserfs-defrag/archive/v0.2.2.tar.gz -> reiserfs-defrag-0.2.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=164fbe65d7473fdf3dd0130c8a974cdf diff --git a/metadata/md5-cache/sys-fs/shake-1.0 b/metadata/md5-cache/sys-fs/shake-1.0 index 6cc498002942..790d5c102ec0 100644 --- a/metadata/md5-cache/sys-fs/shake-1.0 +++ b/metadata/md5-cache/sys-fs/shake-1.0 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=sys-apps/attr SLOT=0 SRC_URI=https://github.com/unbrice/shake/archive/v1.0.tar.gz -> shake-1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0b57d95bf607461a8573368883dea4e2 diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index 563023324ac1..5cc140dd9ac9 100644 Binary files a/metadata/md5-cache/sys-kernel/Manifest.gz and b/metadata/md5-cache/sys-kernel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-kernel/git-sources-6.3_rc3 b/metadata/md5-cache/sys-kernel/git-sources-6.3_rc3 new file mode 100644 index 000000000000..e2f3d873382b --- /dev/null +++ b/metadata/md5-cache/sys-kernel/git-sources-6.3_rc3 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=>=sys-devel/patch-2.7.6-r4 +DESCRIPTION=The very latest -git version of the Linux kernel +EAPI=8 +HOMEPAGE=https://www.kernel.org +INHERIT=kernel-2 +IUSE=symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( app-arch/cpio dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=6.3_rc3 +SRC_URI=https://git.kernel.org/torvalds/p/v6.3-rc3/v6.2 -> patch-6.3-rc3.patch https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.2.tar.xz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 1e55bee3f3081b16ebc1ca0cf1264f6c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=c152b1e7ab9fc06fdb114e19543dd1eb diff --git a/metadata/md5-cache/sys-kernel/rt-sources-4.14.305_p143 b/metadata/md5-cache/sys-kernel/rt-sources-4.14.310_p145 similarity index 82% rename from metadata/md5-cache/sys-kernel/rt-sources-4.14.305_p143 rename to metadata/md5-cache/sys-kernel/rt-sources-4.14.310_p145 index 8a00ca47b229..77db977ac518 100644 --- a/metadata/md5-cache/sys-kernel/rt-sources-4.14.305_p143 +++ b/metadata/md5-cache/sys-kernel/rt-sources-4.14.310_p145 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~arm64 LICENSE=GPL-2 RDEPEND=!build? ( app-arch/cpio dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.14.305_p143 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.305.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz https://www.kernel.org/pub/linux/kernel/projects/rt/4.14/patch-4.14.305-rt143.patch.xz https://www.kernel.org/pub/linux/kernel/projects/rt/4.14/older/patch-4.14.305-rt143.patch.xz +SLOT=4.14.310_p145 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.310.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz https://www.kernel.org/pub/linux/kernel/projects/rt/4.14/patch-4.14.310-rt145.patch.xz https://www.kernel.org/pub/linux/kernel/projects/rt/4.14/older/patch-4.14.310-rt145.patch.xz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 1e55bee3f3081b16ebc1ca0cf1264f6c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b _md5_=79671f006cc62d6ead0bc41cedac4020 diff --git a/metadata/md5-cache/sys-kernel/rt-sources-5.10.168_p83 b/metadata/md5-cache/sys-kernel/rt-sources-5.10.175_p84 similarity index 84% rename from metadata/md5-cache/sys-kernel/rt-sources-5.10.168_p83 rename to metadata/md5-cache/sys-kernel/rt-sources-5.10.175_p84 index a6588a0003eb..18af73de4fe9 100644 --- a/metadata/md5-cache/sys-kernel/rt-sources-5.10.168_p83 +++ b/metadata/md5-cache/sys-kernel/rt-sources-5.10.175_p84 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~arm64 LICENSE=GPL-2 RDEPEND=!build? ( app-arch/cpio dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=5.10.168_p83 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.10.168.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz deblob? ( https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/tags//5.10-gnu/deblob-5.10 https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/tags//5.10-gnu/deblob-check -> deblob-check-5.10 ) https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/patch-5.10.168-rt83.patch.xz https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patch-5.10.168-rt83.patch.xz +SLOT=5.10.175_p84 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.10.175.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz deblob? ( https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/tags//5.10-gnu/deblob-5.10 https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/tags//5.10-gnu/deblob-check -> deblob-check-5.10 ) https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/patch-5.10.175-rt84.patch.xz https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patch-5.10.175-rt84.patch.xz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 1e55bee3f3081b16ebc1ca0cf1264f6c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b _md5_=f6a9c79ff5e6b5ea13a6fa587de67550 diff --git a/metadata/md5-cache/sys-libs/Manifest.gz b/metadata/md5-cache/sys-libs/Manifest.gz index a5896ca2cc4d..5be3f4858ea0 100644 Binary files a/metadata/md5-cache/sys-libs/Manifest.gz and b/metadata/md5-cache/sys-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-libs/compiler-rt-14.0.6-r1 b/metadata/md5-cache/sys-libs/compiler-rt-14.0.6-r1 index 21239f0ddbc9..c5475fc6d64c 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-14.0.6-r1 +++ b/metadata/md5-cache/sys-libs/compiler-rt-14.0.6-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) RESTRICT=!test? ( test ) !clang? ( test ) SLOT=14.0.6 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-14.0.6-r2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=7f3a74dc36235bcb8a49192085575cfb +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=f541873204a80a70f69b34092750b75d diff --git a/metadata/md5-cache/sys-libs/compiler-rt-15.0.7 b/metadata/md5-cache/sys-libs/compiler-rt-15.0.7 index f8a5bf026aac..a11f59b19026 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-15.0.7 +++ b/metadata/md5-cache/sys-libs/compiler-rt-15.0.7 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) RESTRICT=!test? ( test ) !clang? ( test ) SLOT=15.0.7 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-15.0.7.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=53e39020c8d23997da8e61e17fdb8a19 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=00933d3bb15ec9382379ccab1da56544 diff --git a/metadata/md5-cache/sys-libs/compiler-rt-16.0.0 b/metadata/md5-cache/sys-libs/compiler-rt-16.0.0 index af078947009d..5ad210362ff0 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-16.0.0 +++ b/metadata/md5-cache/sys-libs/compiler-rt-16.0.0 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) RESTRICT=!test? ( test ) !clang? ( test ) SLOT=16 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=244a0a596a9a13c591df67d430168e50 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=8e11a0826fd0a98907657995ace17948 diff --git a/metadata/md5-cache/sys-libs/compiler-rt-16.0.0.9999 b/metadata/md5-cache/sys-libs/compiler-rt-16.0.0.9999 index d9317e7d1eb3..568c8c76f014 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-16.0.0.9999 +++ b/metadata/md5-cache/sys-libs/compiler-rt-16.0.0.9999 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) PROPERTIES=live RESTRICT=!test? ( test ) !clang? ( test ) SLOT=16 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=74f1423cb0dd425d142263da2b2f30a2 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=937f480d6f34d4d8afd91781d18537cf diff --git a/metadata/md5-cache/sys-libs/compiler-rt-16.0.0_rc3 b/metadata/md5-cache/sys-libs/compiler-rt-16.0.0_rc3 deleted file mode 100644 index 336e667df2c3..000000000000 --- a/metadata/md5-cache/sys-libs/compiler-rt-16.0.0_rc3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-util/cmake-3.16 clang? ( sys-devel/clang ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/lit-15[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/lit-15[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/lit-15[python_targets_python3_9(-)] ) ) =sys-devel/clang-16.0.0*:16 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare pretend setup test unpack -DEPEND=sys-devel/llvm:16 !!sys-devel/llvm:0 -DESCRIPTION=Compiler runtime library for clang (built-in part) -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=+abi_x86_32 abi_x86_64 +clang debug test verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RESTRICT=!test? ( test ) !clang? ( test ) -SLOT=16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=7f1cfd6265c76cf75d7f4fcca558a9dc diff --git a/metadata/md5-cache/sys-libs/compiler-rt-16.0.0_rc4 b/metadata/md5-cache/sys-libs/compiler-rt-16.0.0_rc4 deleted file mode 100644 index ec1329eaa8ce..000000000000 --- a/metadata/md5-cache/sys-libs/compiler-rt-16.0.0_rc4 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-util/cmake-3.16 clang? ( sys-devel/clang ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/lit-15[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/lit-15[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/lit-15[python_targets_python3_9(-)] ) ) =sys-devel/clang-16.0.0*:16 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare pretend setup test unpack -DEPEND=sys-devel/llvm:16 !!sys-devel/llvm:0 -DESCRIPTION=Compiler runtime library for clang (built-in part) -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=+abi_x86_32 abi_x86_64 +clang debug test verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RESTRICT=!test? ( test ) !clang? ( test ) -SLOT=16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=7f1cfd6265c76cf75d7f4fcca558a9dc diff --git a/metadata/md5-cache/sys-libs/compiler-rt-17.0.0.9999 b/metadata/md5-cache/sys-libs/compiler-rt-17.0.0.9999 index 6b97b9f4bf18..cf63efec20f9 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-17.0.0.9999 +++ b/metadata/md5-cache/sys-libs/compiler-rt-17.0.0.9999 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) PROPERTIES=live RESTRICT=!test? ( test ) !clang? ( test ) SLOT=17 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=74f1423cb0dd425d142263da2b2f30a2 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=937f480d6f34d4d8afd91781d18537cf diff --git a/metadata/md5-cache/sys-libs/compiler-rt-17.0.0_pre20230304 b/metadata/md5-cache/sys-libs/compiler-rt-17.0.0_pre20230304 deleted file mode 100644 index 3db7c8f2aee7..000000000000 --- a/metadata/md5-cache/sys-libs/compiler-rt-17.0.0_pre20230304 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=dev-util/cmake-3.16 clang? ( sys-devel/clang ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/lit-15[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/lit-15[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/lit-15[python_targets_python3_9(-)] ) ) =sys-devel/clang-17.0.0*:17 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare pretend setup test unpack -DEPEND=sys-devel/llvm:17 !!sys-devel/llvm:0 -DESCRIPTION=Compiler runtime library for clang (built-in part) -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=+abi_x86_32 abi_x86_64 +clang debug test -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RESTRICT=!test? ( test ) !clang? ( test ) -SLOT=17 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=74f1423cb0dd425d142263da2b2f30a2 diff --git a/metadata/md5-cache/sys-libs/compiler-rt-17.0.0_pre20230314 b/metadata/md5-cache/sys-libs/compiler-rt-17.0.0_pre20230314 index 7d79152f1578..1769dd3ed87a 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-17.0.0_pre20230314 +++ b/metadata/md5-cache/sys-libs/compiler-rt-17.0.0_pre20230314 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) RESTRICT=!test? ( test ) !clang? ( test ) SLOT=17 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=74f1423cb0dd425d142263da2b2f30a2 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=937f480d6f34d4d8afd91781d18537cf diff --git a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-14.0.6 b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-14.0.6 index 0ad695b70d58..d157738bcf95 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-14.0.6 +++ b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-14.0.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo sha RESTRICT=!clang? ( test ) !test? ( test ) !test? ( test ) SLOT=14.0.6 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-14.0.6-r3.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1c1c912e6047d4dbf13b18213c38e789 diff --git a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-15.0.7 b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-15.0.7 index d9b3178f0e48..3877f64f0ad2 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-15.0.7 +++ b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-15.0.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo sha RESTRICT=!clang? ( test ) !test? ( test ) !test? ( test ) SLOT=15.0.7 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-15.0.7.tar.xz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=073adf97b984c7834ca31d3d6fe4093c diff --git a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0 b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0 index 237b702c4e64..9be55f564f39 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0 +++ b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo sha RESTRICT=!clang? ( test ) !test? ( test ) !test? ( test ) SLOT=16 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5e86c8a095c456e604a05f5ebefd11e0 diff --git a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0.9999 b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0.9999 index d52f64ee48e6..f61fa3158f15 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0.9999 +++ b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0.9999 @@ -11,5 +11,5 @@ PROPERTIES=live REQUIRED_USE=|| ( asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo shadowcallstack gwp-asan libfuzzer orc profile xray ) test? ( cfi? ( ubsan ) gwp-asan? ( scudo ) ) RESTRICT=!clang? ( test ) !test? ( test ) !test? ( test ) SLOT=16 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=049242e85f6315c7ba29f81552c29f36 diff --git a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0_rc3 b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0_rc3 deleted file mode 100644 index c9dccd1946dd..000000000000 --- a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0_rc3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-util/cmake-3.16 clang? ( sys-devel/clang ) elibc_glibc? ( net-libs/libtirpc ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/lit-15[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/lit-15[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/lit-15[python_targets_python3_9(-)] ) ) =sys-devel/clang-16.0.0*:16 sys-libs/compiler-rt:16 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare pretend setup test unpack -DEPEND=sys-devel/llvm:16 virtual/libcrypt[abi_x86_32(-)?,abi_x86_64(-)?] !!sys-devel/llvm:0 -DESCRIPTION=Compiler runtime libraries for clang (sanitizers & xray) -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=check-reqs cmake flag-o-matic llvm llvm.org python-any-r1 -IUSE=+abi_x86_32 abi_x86_64 +clang debug test +libfuzzer +memprof +orc +profile +xray +asan +dfsan +lsan +msan +hwasan +tsan +ubsan +safestack +cfi +scudo +shadowcallstack +gwp-asan test verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -REQUIRED_USE=|| ( asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo shadowcallstack gwp-asan libfuzzer orc profile xray ) test? ( cfi? ( ubsan ) gwp-asan? ( scudo ) ) -RESTRICT=!clang? ( test ) !test? ( test ) !test? ( test ) -SLOT=16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=fce1412d6da5b3de84960351b38788f4 diff --git a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0_rc4 b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0_rc4 deleted file mode 100644 index 81ce7eeec8f2..000000000000 --- a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-16.0.0_rc4 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-util/cmake-3.16 clang? ( sys-devel/clang ) elibc_glibc? ( net-libs/libtirpc ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/lit-15[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/lit-15[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/lit-15[python_targets_python3_9(-)] ) ) =sys-devel/clang-16.0.0*:16 sys-libs/compiler-rt:16 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare pretend setup test unpack -DEPEND=sys-devel/llvm:16 virtual/libcrypt[abi_x86_32(-)?,abi_x86_64(-)?] !!sys-devel/llvm:0 -DESCRIPTION=Compiler runtime libraries for clang (sanitizers & xray) -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=check-reqs cmake flag-o-matic llvm llvm.org python-any-r1 -IUSE=+abi_x86_32 abi_x86_64 +clang debug test +libfuzzer +memprof +orc +profile +xray +asan +dfsan +lsan +msan +hwasan +tsan +ubsan +safestack +cfi +scudo +shadowcallstack +gwp-asan test verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -REQUIRED_USE=|| ( asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo shadowcallstack gwp-asan libfuzzer orc profile xray ) test? ( cfi? ( ubsan ) gwp-asan? ( scudo ) ) -RESTRICT=!clang? ( test ) !test? ( test ) !test? ( test ) -SLOT=16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=fce1412d6da5b3de84960351b38788f4 diff --git a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-17.0.0.9999 b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-17.0.0.9999 index 23a9cfeca425..e15088f084da 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-17.0.0.9999 +++ b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-17.0.0.9999 @@ -11,5 +11,5 @@ PROPERTIES=live REQUIRED_USE=|| ( asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo shadowcallstack gwp-asan libfuzzer orc profile xray ) test? ( cfi? ( ubsan ) gwp-asan? ( scudo ) ) RESTRICT=!clang? ( test ) !test? ( test ) !test? ( test ) SLOT=17 -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=049242e85f6315c7ba29f81552c29f36 diff --git a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-17.0.0_pre20230304 b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-17.0.0_pre20230304 deleted file mode 100644 index 504eafd8bfd0..000000000000 --- a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-17.0.0_pre20230304 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-util/cmake-3.16 clang? ( sys-devel/clang ) elibc_glibc? ( net-libs/libtirpc ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/lit-15[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/lit-15[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/lit-15[python_targets_python3_9(-)] ) ) =sys-devel/clang-17.0.0*:17 sys-libs/compiler-rt:17 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare pretend setup test unpack -DEPEND=sys-devel/llvm:17 virtual/libcrypt[abi_x86_32(-)?,abi_x86_64(-)?] !!sys-devel/llvm:0 -DESCRIPTION=Compiler runtime libraries for clang (sanitizers & xray) -EAPI=8 -HOMEPAGE=https://llvm.org/ -INHERIT=check-reqs cmake flag-o-matic llvm llvm.org python-any-r1 -IUSE=+abi_x86_32 abi_x86_64 +clang debug test +libfuzzer +memprof +orc +profile +xray +asan +dfsan +lsan +msan +hwasan +tsan +ubsan +safestack +cfi +scudo +shadowcallstack +gwp-asan test -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -REQUIRED_USE=|| ( asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo shadowcallstack gwp-asan libfuzzer orc profile xray ) test? ( cfi? ( ubsan ) gwp-asan? ( scudo ) ) -RESTRICT=!clang? ( test ) !test? ( test ) !test? ( test ) -SLOT=17 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=049242e85f6315c7ba29f81552c29f36 diff --git a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-17.0.0_pre20230314 b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-17.0.0_pre20230314 index 03b4cfff4253..7a33c27b7a9a 100644 --- a/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-17.0.0_pre20230314 +++ b/metadata/md5-cache/sys-libs/compiler-rt-sanitizers-17.0.0_pre20230314 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo sha RESTRICT=!clang? ( test ) !test? ( test ) !test? ( test ) SLOT=17 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=049242e85f6315c7ba29f81552c29f36 diff --git a/metadata/md5-cache/sys-libs/db-4.8.30-r8 b/metadata/md5-cache/sys-libs/db-4.8.30-r8 index 9d21c1488ede..052265cb11cb 100644 --- a/metadata/md5-cache/sys-libs/db-4.8.30-r8 +++ b/metadata/md5-cache/sys-libs/db-4.8.30-r8 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( tcl ) test? ( tcl ) RESTRICT=!test? ( test ) SLOT=4.8 SRC_URI=http://download.oracle.com/berkeley-db/db-4.8.30.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 db 9853149d33127fcbd88be5a5214d6007 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools b5529dc611971a61a30153916014f616 db 88506965221c24fff62bc25586f10433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=b60bb6726c3f3e20ea7a24abc1af08e2 diff --git a/metadata/md5-cache/sys-libs/db-5.3.28-r9 b/metadata/md5-cache/sys-libs/db-5.3.28-r9 index e158bef61742..2d08d5bbc8a6 100644 --- a/metadata/md5-cache/sys-libs/db-5.3.28-r9 +++ b/metadata/md5-cache/sys-libs/db-5.3.28-r9 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( tcl ) test? ( tcl ) RESTRICT=!test? ( test ) SLOT=5.3 SRC_URI=http://download.oracle.com/berkeley-db/db-5.3.28.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 db 9853149d33127fcbd88be5a5214d6007 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools b5529dc611971a61a30153916014f616 db 88506965221c24fff62bc25586f10433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=4f0ac2a4608976f961b876a6a9224480 diff --git a/metadata/md5-cache/sys-libs/db-6.0.35-r4 b/metadata/md5-cache/sys-libs/db-6.0.35-r4 index 6593337de81c..a7987e5bbed2 100644 --- a/metadata/md5-cache/sys-libs/db-6.0.35-r4 +++ b/metadata/md5-cache/sys-libs/db-6.0.35-r4 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( tcl ) test? ( tcl ) RESTRICT=!test? ( test ) SLOT=6.0 SRC_URI=http://download.oracle.com/berkeley-db/db-6.0.35.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 db 9853149d33127fcbd88be5a5214d6007 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools b5529dc611971a61a30153916014f616 db 88506965221c24fff62bc25586f10433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=971fe551be71bc128e0eff6636261e14 diff --git a/metadata/md5-cache/sys-libs/kpmcore-22.08.3 b/metadata/md5-cache/sys-libs/kpmcore-22.08.3 index 35ba90ef6d79..a0b4601dca7f 100644 --- a/metadata/md5-cache/sys-libs/kpmcore-22.08.3 +++ b/metadata/md5-cache/sys-libs/kpmcore-22.08.3 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=test SLOT=5/10 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/kpmcore-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ea7b115e4d2b11db223ef93fbe368dc8 diff --git a/metadata/md5-cache/sys-libs/kpmcore-22.12.3 b/metadata/md5-cache/sys-libs/kpmcore-22.12.3 index 2cb2320db8f0..2bd4027629e2 100644 --- a/metadata/md5-cache/sys-libs/kpmcore-22.12.3 +++ b/metadata/md5-cache/sys-libs/kpmcore-22.12.3 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=test SLOT=5/10 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/kpmcore-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a32c048524e0e652fda41b535007e5be diff --git a/metadata/md5-cache/sys-libs/libavc1394-0.5.4-r2 b/metadata/md5-cache/sys-libs/libavc1394-0.5.4-r2 index 398fa785244e..f07445ced29d 100644 --- a/metadata/md5-cache/sys-libs/libavc1394-0.5.4-r2 +++ b/metadata/md5-cache/sys-libs/libavc1394-0.5.4-r2 @@ -6,10 +6,10 @@ EAPI=7 HOMEPAGE=https://sourceforge.net/projects/libavc1394/ INHERIT=flag-o-matic multilib-minimal IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 LICENSE=LGPL-2.1 RDEPEND=>=sys-libs/libraw1394-2.1.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(-)?] elibc_musl? ( sys-libs/argp-standalone ) SLOT=0 SRC_URI=mirror://sourceforge/libavc1394/libavc1394-0.5.4.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=9e4e49942d24b2c9a1f76159173e3588 +_md5_=e3b5f3fe09dd0c2fed92d669949a9d45 diff --git a/metadata/md5-cache/sys-libs/libcxx-14.0.6 b/metadata/md5-cache/sys-libs/libcxx-14.0.6 index bfa18c7c3c6f..8c0709c24a27 100644 --- a/metadata/md5-cache/sys-libs/libcxx-14.0.6 +++ b/metadata/md5-cache/sys-libs/libcxx-14.0.6 @@ -13,5 +13,5 @@ REQUIRED_USE=libunwind? ( libcxxabi ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-14.0.6-r2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=ed4b7b665367a12874548fbffbf304e1 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=40053cea23101c5d660398cf97045038 diff --git a/metadata/md5-cache/sys-libs/libcxx-15.0.7 b/metadata/md5-cache/sys-libs/libcxx-15.0.7 index ad02f3b381fc..96a26b1114c2 100644 --- a/metadata/md5-cache/sys-libs/libcxx-15.0.7 +++ b/metadata/md5-cache/sys-libs/libcxx-15.0.7 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=7f5a8fba7d5d2d43189bfb259f861a89 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=6bf73ff84b34d3321dab6eea4bfd4f08 diff --git a/metadata/md5-cache/sys-libs/libcxx-15.0.7-r1 b/metadata/md5-cache/sys-libs/libcxx-15.0.7-r1 index 22870e0458e9..59a03a2cdbdf 100644 --- a/metadata/md5-cache/sys-libs/libcxx-15.0.7-r1 +++ b/metadata/md5-cache/sys-libs/libcxx-15.0.7-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-15.0.7-r1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=ec12a0f6e108c8b13319626ed8ce9939 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=c415047838316b6921b40e0d66ed4aa0 diff --git a/metadata/md5-cache/sys-libs/libcxx-16.0.0 b/metadata/md5-cache/sys-libs/libcxx-16.0.0 index 4e7a97e9d5ce..d58f28e63da6 100644 --- a/metadata/md5-cache/sys-libs/libcxx-16.0.0 +++ b/metadata/md5-cache/sys-libs/libcxx-16.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=8c5a3a3d8e6c8737caba04f720113314 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=fd7c42169ca32c9cedf32100d0a56aec diff --git a/metadata/md5-cache/sys-libs/libcxx-16.0.0.9999 b/metadata/md5-cache/sys-libs/libcxx-16.0.0.9999 index 23a08c1be651..5ee1927032c8 100644 --- a/metadata/md5-cache/sys-libs/libcxx-16.0.0.9999 +++ b/metadata/md5-cache/sys-libs/libcxx-16.0.0.9999 @@ -12,5 +12,5 @@ RDEPEND=libcxxabi? ( ~sys-libs/libcxxabi-16.0.0.9999[static-libs?,abi_x86_32(-)? REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=fba3a27cace2150ba0c8a71502d3ab89 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=6bd8767076a012461810ec35f7118298 diff --git a/metadata/md5-cache/sys-libs/libcxx-16.0.0_rc3 b/metadata/md5-cache/sys-libs/libcxx-16.0.0_rc3 deleted file mode 100644 index 52401233703b..000000000000 --- a/metadata/md5-cache/sys-libs/libcxx-16.0.0_rc3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=clang? ( sys-devel/clang:16 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) test? ( >=dev-util/cmake-3.16 sys-devel/gdb[python] || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/lit[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/lit[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/lit[python_targets_python3_9(-)] ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=libcxxabi? ( ~sys-libs/libcxxabi-16.0.0_rc3[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !libcxxabi? ( >=sys-devel/gcc-4.7:=[cxx] ) sys-devel/llvm:16 !!sys-devel/llvm:0 -DESCRIPTION=New implementation of the C++ standard library, targeting C++11 -EAPI=8 -HOMEPAGE=https://libcxx.llvm.org/ -INHERIT=cmake-multilib flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=+clang +libcxxabi static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RDEPEND=libcxxabi? ( ~sys-libs/libcxxabi-16.0.0_rc3[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !libcxxabi? ( >=sys-devel/gcc-4.7:=[cxx] ) -REQUIRED_USE=test? ( clang ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=3b5d2a89f3ff0de6b78538deede4c459 diff --git a/metadata/md5-cache/sys-libs/libcxx-16.0.0_rc4 b/metadata/md5-cache/sys-libs/libcxx-16.0.0_rc4 deleted file mode 100644 index 6c756b18d617..000000000000 --- a/metadata/md5-cache/sys-libs/libcxx-16.0.0_rc4 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=clang? ( sys-devel/clang:16 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) test? ( >=dev-util/cmake-3.16 sys-devel/gdb[python] || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/lit[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/lit[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/lit[python_targets_python3_9(-)] ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=libcxxabi? ( ~sys-libs/libcxxabi-16.0.0_rc4[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !libcxxabi? ( >=sys-devel/gcc-4.7:=[cxx] ) sys-devel/llvm:16 !!sys-devel/llvm:0 -DESCRIPTION=New implementation of the C++ standard library, targeting C++11 -EAPI=8 -HOMEPAGE=https://libcxx.llvm.org/ -INHERIT=cmake-multilib flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=+clang +libcxxabi static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RDEPEND=libcxxabi? ( ~sys-libs/libcxxabi-16.0.0_rc4[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !libcxxabi? ( >=sys-devel/gcc-4.7:=[cxx] ) -REQUIRED_USE=test? ( clang ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=3b5d2a89f3ff0de6b78538deede4c459 diff --git a/metadata/md5-cache/sys-libs/libcxx-17.0.0.9999 b/metadata/md5-cache/sys-libs/libcxx-17.0.0.9999 index 182271d34aae..79ff821fe9e4 100644 --- a/metadata/md5-cache/sys-libs/libcxx-17.0.0.9999 +++ b/metadata/md5-cache/sys-libs/libcxx-17.0.0.9999 @@ -12,5 +12,5 @@ RDEPEND=libcxxabi? ( ~sys-libs/libcxxabi-17.0.0.9999[static-libs?,abi_x86_32(-)? REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=fba3a27cace2150ba0c8a71502d3ab89 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=6bd8767076a012461810ec35f7118298 diff --git a/metadata/md5-cache/sys-libs/libcxx-17.0.0_pre20230304 b/metadata/md5-cache/sys-libs/libcxx-17.0.0_pre20230304 deleted file mode 100644 index 42a8684727a2..000000000000 --- a/metadata/md5-cache/sys-libs/libcxx-17.0.0_pre20230304 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=clang? ( sys-devel/clang:17 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) test? ( >=dev-util/cmake-3.16 sys-devel/gdb[python] || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/lit[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/lit[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/lit[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=libcxxabi? ( ~sys-libs/libcxxabi-17.0.0_pre20230304[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !libcxxabi? ( >=sys-devel/gcc-4.7:=[cxx] ) sys-devel/llvm:17 !!sys-devel/llvm:0 -DESCRIPTION=New implementation of the C++ standard library, targeting C++11 -EAPI=8 -HOMEPAGE=https://libcxx.llvm.org/ -INHERIT=cmake-multilib flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=+clang +libcxxabi static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RDEPEND=libcxxabi? ( ~sys-libs/libcxxabi-17.0.0_pre20230304[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !libcxxabi? ( >=sys-devel/gcc-4.7:=[cxx] ) -REQUIRED_USE=test? ( clang ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=fba3a27cace2150ba0c8a71502d3ab89 diff --git a/metadata/md5-cache/sys-libs/libcxx-17.0.0_pre20230314 b/metadata/md5-cache/sys-libs/libcxx-17.0.0_pre20230314 index be8ce63ce084..3f32f6c0a172 100644 --- a/metadata/md5-cache/sys-libs/libcxx-17.0.0_pre20230314 +++ b/metadata/md5-cache/sys-libs/libcxx-17.0.0_pre20230314 @@ -12,5 +12,5 @@ REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=fba3a27cace2150ba0c8a71502d3ab89 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=6bd8767076a012461810ec35f7118298 diff --git a/metadata/md5-cache/sys-libs/libcxxabi-14.0.6 b/metadata/md5-cache/sys-libs/libcxxabi-14.0.6 index 78756acb595f..005a372b3486 100644 --- a/metadata/md5-cache/sys-libs/libcxxabi-14.0.6 +++ b/metadata/md5-cache/sys-libs/libcxxabi-14.0.6 @@ -12,5 +12,5 @@ RDEPEND=libunwind? ( || ( >=sys-libs/libunwind-1.0.1-r1[static-libs?,abi_x86_32( RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=4e54b656411cc807bdd92b2f892aa32f +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=00c7e2cea0ff0c7d843b9d8560e1e855 diff --git a/metadata/md5-cache/sys-libs/libcxxabi-15.0.7 b/metadata/md5-cache/sys-libs/libcxxabi-15.0.7 index 025c05c5dcec..c28f6fce5e8d 100644 --- a/metadata/md5-cache/sys-libs/libcxxabi-15.0.7 +++ b/metadata/md5-cache/sys-libs/libcxxabi-15.0.7 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=462e3f649f8df58db11379d6fa9c34ff +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=7caa8da5e3680e5172ba7e29f5004e58 diff --git a/metadata/md5-cache/sys-libs/libcxxabi-16.0.0 b/metadata/md5-cache/sys-libs/libcxxabi-16.0.0 index 158ff7d5e1b5..39f5a94901d4 100644 --- a/metadata/md5-cache/sys-libs/libcxxabi-16.0.0 +++ b/metadata/md5-cache/sys-libs/libcxxabi-16.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=cddf10e3bb0a3c9c5e62e50963549112 +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=8eca3feceb803430599b9e66d61b5a6c diff --git a/metadata/md5-cache/sys-libs/libcxxabi-16.0.0.9999 b/metadata/md5-cache/sys-libs/libcxxabi-16.0.0.9999 index 5603ac126c21..919d3386f83f 100644 --- a/metadata/md5-cache/sys-libs/libcxxabi-16.0.0.9999 +++ b/metadata/md5-cache/sys-libs/libcxxabi-16.0.0.9999 @@ -12,5 +12,5 @@ RDEPEND=!=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/lit[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/lit[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/lit[python_targets_python3_9(-)] ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=!=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/lit[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/lit[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/lit[python_targets_python3_9(-)] ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=!=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/lit[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/lit[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/lit[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=! llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=ebb65f8eb13cd404aa74c7e28a52d71b diff --git a/metadata/md5-cache/sys-libs/libcxxabi-17.0.0_pre20230314 b/metadata/md5-cache/sys-libs/libcxxabi-17.0.0_pre20230314 index cae2b3f11a52..671e16c59b42 100644 --- a/metadata/md5-cache/sys-libs/libcxxabi-17.0.0_pre20230314 +++ b/metadata/md5-cache/sys-libs/libcxxabi-17.0.0_pre20230314 @@ -12,5 +12,5 @@ REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=ebb65f8eb13cd404aa74c7e28a52d71b +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=ab2664cef513146a1fff74697dfca74f diff --git a/metadata/md5-cache/sys-libs/libomp-14.0.6-r1 b/metadata/md5-cache/sys-libs/libomp-14.0.6-r1 index 224faaf3b8e0..bf91ac5d481b 100644 --- a/metadata/md5-cache/sys-libs/libomp-14.0.6-r1 +++ b/metadata/md5-cache/sys-libs/libomp-14.0.6-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=cuda? ( llvm_targets_NVPTX ) offload? ( cuda? ( abi_x86_64 ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-14.0.6-r2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=55c75cae8b91cb6694cc87a534f0ba90 diff --git a/metadata/md5-cache/sys-libs/libomp-15.0.7-r2 b/metadata/md5-cache/sys-libs/libomp-15.0.7-r2 index 4879ae28b638..2c9a816e8f80 100644 --- a/metadata/md5-cache/sys-libs/libomp-15.0.7-r2 +++ b/metadata/md5-cache/sys-libs/libomp-15.0.7-r2 @@ -12,5 +12,5 @@ RDEPEND=hwloc? ( >=sys-apps/hwloc-2.5:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x RESTRICT=!test? ( test ) SLOT=0/15 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) https://dev.gentoo.org/~mgorny/dist/llvm/llvm-gentoo-patchset-15.0.7-r2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=919fc31c2f3e10e592ad25fa7fc1b724 diff --git a/metadata/md5-cache/sys-libs/libomp-16.0.0 b/metadata/md5-cache/sys-libs/libomp-16.0.0 index 9ea5f6b2185c..e43a5540e05d 100644 --- a/metadata/md5-cache/sys-libs/libomp-16.0.0 +++ b/metadata/md5-cache/sys-libs/libomp-16.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=gdb-plugin? ( ^^ ( python_single_target_python3_9 python_single_tar RESTRICT=!test? ( test ) SLOT=0/16 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0bb8e878a04227c41db9cd819d0368da diff --git a/metadata/md5-cache/sys-libs/libomp-16.0.0.9999 b/metadata/md5-cache/sys-libs/libomp-16.0.0.9999 index c5b62299caa5..9c27d221a760 100644 --- a/metadata/md5-cache/sys-libs/libomp-16.0.0.9999 +++ b/metadata/md5-cache/sys-libs/libomp-16.0.0.9999 @@ -12,5 +12,5 @@ RDEPEND=gdb-plugin? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16 REQUIRED_USE=gdb-plugin? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) RESTRICT=!test? ( test ) SLOT=0/16 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5a2eb364e3f4cef2c1de7ae521228edf diff --git a/metadata/md5-cache/sys-libs/libomp-16.0.0_rc3 b/metadata/md5-cache/sys-libs/libomp-16.0.0_rc3 deleted file mode 100644 index fea9fe13861b..000000000000 --- a/metadata/md5-cache/sys-libs/libomp-16.0.0_rc3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=dev-lang/perl offload? ( llvm_targets_AMDGPU? ( sys-devel/clang ) llvm_targets_NVPTX? ( sys-devel/clang ) virtual/pkgconfig ) test? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/lit[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/lit[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/lit[python_targets_python3_11(-)] ) sys-devel/clang ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare pretend setup test unpack -DEPEND=gdb-plugin? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) hwloc? ( >=sys-apps/hwloc-2.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(-)?] ) offload? ( dev-libs/libffi:=[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-devel/llvm-16.0.0_rc3[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_targets_AMDGPU? ( dev-libs/rocr-runtime:= ) ) !!sys-devel/llvm:0 -DESCRIPTION=OpenMP runtime library for LLVM/clang compiler -EAPI=8 -HOMEPAGE=https://openmp.llvm.org -INHERIT=flag-o-matic cmake-multilib linux-info llvm llvm.org python-single-r1 toolchain-funcs -IUSE=debug gdb-plugin hwloc offload ompt test llvm_targets_AMDGPU llvm_targets_NVPTX 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 python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RDEPEND=gdb-plugin? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) hwloc? ( >=sys-apps/hwloc-2.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(-)?] ) offload? ( dev-libs/libffi:=[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-devel/llvm-16.0.0_rc3[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_targets_AMDGPU? ( dev-libs/rocr-runtime:= ) ) -REQUIRED_USE=gdb-plugin? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) -RESTRICT=!test? ( test ) -SLOT=0/16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=1af9c1498b02a693f52181308a3edab2 diff --git a/metadata/md5-cache/sys-libs/libomp-16.0.0_rc4 b/metadata/md5-cache/sys-libs/libomp-16.0.0_rc4 deleted file mode 100644 index 07568e5cf362..000000000000 --- a/metadata/md5-cache/sys-libs/libomp-16.0.0_rc4 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=dev-lang/perl offload? ( llvm_targets_AMDGPU? ( sys-devel/clang ) llvm_targets_NVPTX? ( sys-devel/clang ) virtual/pkgconfig ) test? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/lit[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/lit[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/lit[python_targets_python3_11(-)] ) sys-devel/clang ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare pretend setup test unpack -DEPEND=gdb-plugin? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) hwloc? ( >=sys-apps/hwloc-2.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(-)?] ) offload? ( dev-libs/libffi:=[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-devel/llvm-16.0.0_rc4[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_targets_AMDGPU? ( dev-libs/rocr-runtime:= ) ) !!sys-devel/llvm:0 -DESCRIPTION=OpenMP runtime library for LLVM/clang compiler -EAPI=8 -HOMEPAGE=https://openmp.llvm.org -INHERIT=flag-o-matic cmake-multilib linux-info llvm llvm.org python-single-r1 toolchain-funcs -IUSE=debug gdb-plugin hwloc offload ompt test llvm_targets_AMDGPU llvm_targets_NVPTX 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 python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RDEPEND=gdb-plugin? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) hwloc? ( >=sys-apps/hwloc-2.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(-)?] ) offload? ( dev-libs/libffi:=[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-devel/llvm-16.0.0_rc4[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_targets_AMDGPU? ( dev-libs/rocr-runtime:= ) ) -REQUIRED_USE=gdb-plugin? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) -RESTRICT=!test? ( test ) -SLOT=0/16 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=1af9c1498b02a693f52181308a3edab2 diff --git a/metadata/md5-cache/sys-libs/libomp-17.0.0.9999 b/metadata/md5-cache/sys-libs/libomp-17.0.0.9999 index 3fb4ecb60cd8..deddbf37444c 100644 --- a/metadata/md5-cache/sys-libs/libomp-17.0.0.9999 +++ b/metadata/md5-cache/sys-libs/libomp-17.0.0.9999 @@ -12,5 +12,5 @@ RDEPEND=gdb-plugin? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16 REQUIRED_USE=gdb-plugin? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) RESTRICT=!test? ( test ) SLOT=0/17.0.0.9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5a2eb364e3f4cef2c1de7ae521228edf diff --git a/metadata/md5-cache/sys-libs/libomp-17.0.0_pre20230304 b/metadata/md5-cache/sys-libs/libomp-17.0.0_pre20230304 deleted file mode 100644 index c304550a109e..000000000000 --- a/metadata/md5-cache/sys-libs/libomp-17.0.0_pre20230304 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-lang/perl offload? ( llvm_targets_AMDGPU? ( sys-devel/clang ) llvm_targets_NVPTX? ( sys-devel/clang ) virtual/pkgconfig ) test? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/lit[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/lit[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/lit[python_targets_python3_11(-)] ) sys-devel/clang ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare pretend setup test unpack -DEPEND=gdb-plugin? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) hwloc? ( >=sys-apps/hwloc-2.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(-)?] ) offload? ( dev-libs/libffi:=[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-devel/llvm-17.0.0_pre20230304[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_targets_AMDGPU? ( dev-libs/rocr-runtime:= ) ) !!sys-devel/llvm:0 -DESCRIPTION=OpenMP runtime library for LLVM/clang compiler -EAPI=8 -HOMEPAGE=https://openmp.llvm.org -INHERIT=flag-o-matic cmake-multilib linux-info llvm llvm.org python-single-r1 toolchain-funcs -IUSE=debug gdb-plugin hwloc offload ompt test llvm_targets_AMDGPU llvm_targets_NVPTX 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_9 python_single_target_python3_10 python_single_target_python3_11 -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RDEPEND=gdb-plugin? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) hwloc? ( >=sys-apps/hwloc-2.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(-)?] ) offload? ( dev-libs/libffi:=[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-devel/llvm-17.0.0_pre20230304[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_targets_AMDGPU? ( dev-libs/rocr-runtime:= ) ) -REQUIRED_USE=gdb-plugin? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) -RESTRICT=!test? ( test ) -SLOT=0/17.0.0_pre20230304 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=5a2eb364e3f4cef2c1de7ae521228edf diff --git a/metadata/md5-cache/sys-libs/libomp-17.0.0_pre20230314 b/metadata/md5-cache/sys-libs/libomp-17.0.0_pre20230314 index 5ecb37f72e91..31fa502ff86f 100644 --- a/metadata/md5-cache/sys-libs/libomp-17.0.0_pre20230314 +++ b/metadata/md5-cache/sys-libs/libomp-17.0.0_pre20230314 @@ -12,5 +12,5 @@ REQUIRED_USE=gdb-plugin? ( ^^ ( python_single_target_python3_9 python_single_tar RESTRICT=!test? ( test ) SLOT=0/17.0.0_pre20230314 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5a2eb364e3f4cef2c1de7ae521228edf diff --git a/metadata/md5-cache/sys-libs/libxcrypt-4.4.33 b/metadata/md5-cache/sys-libs/libxcrypt-4.4.33 index 589ade53910e..1b1d769cc679 100644 --- a/metadata/md5-cache/sys-libs/libxcrypt-4.4.33 +++ b/metadata/md5-cache/sys-libs/libxcrypt-4.4.33 @@ -6,7 +6,7 @@ EAPI=7 HOMEPAGE=https://github.com/besser82/libxcrypt INHERIT=eapi8-dosym multibuild multilib python-any-r1 flag-o-matic toolchain-funcs multilib-minimal IUSE=+compat split-usr static-libs +system test headers-only abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=LGPL-2.1+ public-domain BSD BSD-2 RDEPEND=system? ( elibc_glibc? ( sys-libs/glibc[-crypt(+)] !sys-libs/glibc[crypt(+)] ) elibc_musl? ( sys-libs/musl[-crypt(+)] !sys-libs/musl[crypt(+)] ) ) REQUIRED_USE=split-usr? ( system ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://dev.gentoo.org/~sam/distfiles/sys-libs/libxcrypt/libxcrypt-4.4.33-autotools.tar.xz _eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=e1a29bee80295a6b6d4563c2005f0938 +_md5_=2d5f2edd1e784b345615004a8a4689e9 diff --git a/metadata/md5-cache/sys-libs/llvm-libunwind-14.0.6-r1 b/metadata/md5-cache/sys-libs/llvm-libunwind-14.0.6-r1 index 834e04050804..22c22e5a787a 100644 --- a/metadata/md5-cache/sys-libs/llvm-libunwind-14.0.6-r1 +++ b/metadata/md5-cache/sys-libs/llvm-libunwind-14.0.6-r1 @@ -12,5 +12,5 @@ RDEPEND=!sys-libs/libunwind RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/llvm-project-14.0.6.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=25063be8361a17395740423df3d4e2ff diff --git a/metadata/md5-cache/sys-libs/llvm-libunwind-15.0.7 b/metadata/md5-cache/sys-libs/llvm-libunwind-15.0.7 index 20828db006fc..bd7a1e356bd4 100644 --- a/metadata/md5-cache/sys-libs/llvm-libunwind-15.0.7 +++ b/metadata/md5-cache/sys-libs/llvm-libunwind-15.0.7 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0304c4cd124df43254ba42ff0fa5e262 diff --git a/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0 b/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0 index 54f83ddccac9..0784b8d116cc 100644 --- a/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0 +++ b/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0 @@ -13,5 +13,5 @@ REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/llvm-project-16.0.0.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f7ba76b42c0124510879b1ca8649d2dd diff --git a/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0.9999 b/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0.9999 index 96f358926063..1d9f98578522 100644 --- a/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0.9999 +++ b/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0.9999 @@ -12,5 +12,5 @@ RDEPEND=!sys-libs/libunwind REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3a7fb57c21821d5d3fb7dd531521954b diff --git a/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0_rc3 b/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0_rc3 deleted file mode 100644 index c255938efba8..000000000000 --- a/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0_rc3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=clang? ( sys-devel/clang:16 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/lit[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/lit[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/lit[python_targets_python3_9(-)] ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=sys-devel/llvm:16 !!sys-devel/llvm:0 -DESCRIPTION=C++ runtime stack unwinder from LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/docs/ExceptionHandling.html -INHERIT=cmake-multilib flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=+clang debug static-libs test test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RDEPEND=!sys-libs/libunwind -REQUIRED_USE=test? ( clang ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc3/llvm-project-16.0.0rc3.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=18c4e40ac44a141aa1d0f2633a34cd9a diff --git a/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0_rc4 b/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0_rc4 deleted file mode 100644 index ea9e17a03747..000000000000 --- a/metadata/md5-cache/sys-libs/llvm-libunwind-16.0.0_rc4 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=clang? ( sys-devel/clang:16 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/lit[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/lit[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/lit[python_targets_python3_9(-)] ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-15 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=sys-devel/llvm:16 !!sys-devel/llvm:0 -DESCRIPTION=C++ runtime stack unwinder from LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/docs/ExceptionHandling.html -INHERIT=cmake-multilib flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=+clang debug static-libs test test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig -KEYWORDS=~loong -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RDEPEND=!sys-libs/libunwind -REQUIRED_USE=test? ( clang ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0-rc4/llvm-project-16.0.0rc4.src.tar.xz.sig ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b verify-sig fef00f802a62a8d9e66affc69e141df0 xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=18c4e40ac44a141aa1d0f2633a34cd9a diff --git a/metadata/md5-cache/sys-libs/llvm-libunwind-17.0.0.9999 b/metadata/md5-cache/sys-libs/llvm-libunwind-17.0.0.9999 index bec160d59b6d..5d97b49d38ea 100644 --- a/metadata/md5-cache/sys-libs/llvm-libunwind-17.0.0.9999 +++ b/metadata/md5-cache/sys-libs/llvm-libunwind-17.0.0.9999 @@ -12,5 +12,5 @@ RDEPEND=!sys-libs/libunwind REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3a7fb57c21821d5d3fb7dd531521954b diff --git a/metadata/md5-cache/sys-libs/llvm-libunwind-17.0.0_pre20230304 b/metadata/md5-cache/sys-libs/llvm-libunwind-17.0.0_pre20230304 deleted file mode 100644 index c1c161e987f1..000000000000 --- a/metadata/md5-cache/sys-libs/llvm-libunwind-17.0.0_pre20230304 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=clang? ( sys-devel/clang:17 ) !test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) test? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/lit[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/lit[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/lit[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=sys-devel/llvm:17 !!sys-devel/llvm:0 -DESCRIPTION=C++ runtime stack unwinder from LLVM -EAPI=8 -HOMEPAGE=https://llvm.org/docs/ExceptionHandling.html -INHERIT=cmake-multilib flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs -IUSE=+clang debug static-libs test test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -LICENSE=Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) -RDEPEND=!sys-libs/libunwind -REQUIRED_USE=test? ( clang ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/llvm/llvm-project/archive/2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -> llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=3a7fb57c21821d5d3fb7dd531521954b diff --git a/metadata/md5-cache/sys-libs/llvm-libunwind-17.0.0_pre20230314 b/metadata/md5-cache/sys-libs/llvm-libunwind-17.0.0_pre20230314 index 5090a9c9f5b3..db71bdaf9e73 100644 --- a/metadata/md5-cache/sys-libs/llvm-libunwind-17.0.0_pre20230314 +++ b/metadata/md5-cache/sys-libs/llvm-libunwind-17.0.0_pre20230314 @@ -12,5 +12,5 @@ REQUIRED_USE=test? ( clang ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/llvm/llvm-project/archive/4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -> llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org 3337b24d0baa3db792ca6d7b9f10112f multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3a7fb57c21821d5d3fb7dd531521954b diff --git a/metadata/md5-cache/sys-libs/minizip-ng-3.0.8 b/metadata/md5-cache/sys-libs/minizip-ng-3.0.8 index b9114e16d012..b83df6da3b0a 100644 --- a/metadata/md5-cache/sys-libs/minizip-ng-3.0.8 +++ b/metadata/md5-cache/sys-libs/minizip-ng-3.0.8 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2 app-arch/xz-utils sys-libs/zlib-ng virtual/libiconv compa RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/zlib-ng/minizip-ng/archive/refs/tags/3.0.8.tar.gz -> minizip-ng-3.0.8.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7281834126c3286e162ecae912cee1b8 diff --git a/metadata/md5-cache/sys-libs/minizip-ng-3.0.9 b/metadata/md5-cache/sys-libs/minizip-ng-3.0.9 index 00ee6b83cb82..05495cd3b9d3 100644 --- a/metadata/md5-cache/sys-libs/minizip-ng-3.0.9 +++ b/metadata/md5-cache/sys-libs/minizip-ng-3.0.9 @@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2 app-arch/xz-utils sys-libs/zlib-ng virtual/libiconv compa RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/zlib-ng/minizip-ng/archive/refs/tags/3.0.9.tar.gz -> minizip-ng-3.0.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ff9389a5bea8a3f92235d0974ecae33 diff --git a/metadata/md5-cache/sys-libs/nss_wrapper-1.1.12 b/metadata/md5-cache/sys-libs/nss_wrapper-1.1.12 index a7e574d188d7..d631768bd868 100644 --- a/metadata/md5-cache/sys-libs/nss_wrapper-1.1.12 +++ b/metadata/md5-cache/sys-libs/nss_wrapper-1.1.12 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://ftp.samba.org/pub/cwrap/nss_wrapper-1.1.12.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a6c0aa55e22bc68fd45415ac11d4af64 diff --git a/metadata/md5-cache/sys-libs/nss_wrapper-1.1.15 b/metadata/md5-cache/sys-libs/nss_wrapper-1.1.15 index 0578cffa4914..7fd6855cee5f 100644 --- a/metadata/md5-cache/sys-libs/nss_wrapper-1.1.15 +++ b/metadata/md5-cache/sys-libs/nss_wrapper-1.1.15 @@ -10,5 +10,5 @@ LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://ftp.samba.org/pub/cwrap/nss_wrapper-1.1.15.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=104887858589e5f3972690b439462ab3 diff --git a/metadata/md5-cache/sys-libs/pam_wrapper-1.1.4-r2 b/metadata/md5-cache/sys-libs/pam_wrapper-1.1.4-r2 index 2490da4e8f09..a2d754d995c8 100644 --- a/metadata/md5-cache/sys-libs/pam_wrapper-1.1.4-r2 +++ b/metadata/md5-cache/sys-libs/pam_wrapper-1.1.4-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.samba.org/ftp/pub/cwrap/pam_wrapper-1.1.4.tar.gz https://ftp.samba.org/pub/cwrap/pam_wrapper-1.1.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5ed598057700365a1ce5bee699e601f9 diff --git a/metadata/md5-cache/sys-libs/uid_wrapper-1.2.9 b/metadata/md5-cache/sys-libs/uid_wrapper-1.2.9 index 3e805a08a185..7cab6c1e4a3b 100644 --- a/metadata/md5-cache/sys-libs/uid_wrapper-1.2.9 +++ b/metadata/md5-cache/sys-libs/uid_wrapper-1.2.9 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.samba.org/ftp/pub/cwrap/uid_wrapper-1.2.9.tar.gz https://ftp.samba.org/pub/cwrap/uid_wrapper-1.2.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5072e4c9ff7507bd5e73319438fe8f54 diff --git a/metadata/md5-cache/sys-libs/uid_wrapper-1.3.0 b/metadata/md5-cache/sys-libs/uid_wrapper-1.3.0 index 4419369d8463..97770d8aa1d0 100644 --- a/metadata/md5-cache/sys-libs/uid_wrapper-1.3.0 +++ b/metadata/md5-cache/sys-libs/uid_wrapper-1.3.0 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.samba.org/ftp/pub/cwrap/uid_wrapper-1.3.0.tar.gz https://ftp.samba.org/pub/cwrap/uid_wrapper-1.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=0cbdf87d5fc2d8dfa5ad6ff769ea1b6f diff --git a/metadata/md5-cache/sys-libs/zlib-ng-2.0.7 b/metadata/md5-cache/sys-libs/zlib-ng-2.0.7 index 2d6551a0b983..de907f9d543a 100644 --- a/metadata/md5-cache/sys-libs/zlib-ng-2.0.7 +++ b/metadata/md5-cache/sys-libs/zlib-ng-2.0.7 @@ -11,5 +11,5 @@ RDEPEND=compat? ( !sys-libs/zlib ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/zlib-ng/zlib-ng/archive/2.0.7.tar.gz -> zlib-ng-2.0.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=766d392a65aae81ed62672db00295ba0 diff --git a/metadata/md5-cache/sys-power/Manifest.gz b/metadata/md5-cache/sys-power/Manifest.gz index 217a746ce387..4e732e9e4346 100644 Binary files a/metadata/md5-cache/sys-power/Manifest.gz and b/metadata/md5-cache/sys-power/Manifest.gz differ diff --git a/metadata/md5-cache/sys-power/RyzenAdj-0.11.1 b/metadata/md5-cache/sys-power/RyzenAdj-0.11.1 index 3d910d0a1545..c9692e9d5244 100644 --- a/metadata/md5-cache/sys-power/RyzenAdj-0.11.1 +++ b/metadata/md5-cache/sys-power/RyzenAdj-0.11.1 @@ -10,5 +10,5 @@ LICENSE=LGPL-3 RDEPEND=sys-apps/pciutils SLOT=0 SRC_URI=https://github.com/FlyGoat/RyzenAdj/archive/refs/tags/v0.11.1.tar.gz -> RyzenAdj-0.11.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=be5b024d91a4927ff2189f252cf0c157 diff --git a/metadata/md5-cache/sys-power/RyzenAdj-0.12.0 b/metadata/md5-cache/sys-power/RyzenAdj-0.12.0 index 2dca64702960..1707ef15d1c4 100644 --- a/metadata/md5-cache/sys-power/RyzenAdj-0.12.0 +++ b/metadata/md5-cache/sys-power/RyzenAdj-0.12.0 @@ -10,5 +10,5 @@ LICENSE=LGPL-3 RDEPEND=sys-apps/pciutils SLOT=0 SRC_URI=https://github.com/FlyGoat/RyzenAdj/archive/refs/tags/v0.12.0.tar.gz -> RyzenAdj-0.12.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d86f552423d988506958f1fb50054326 diff --git a/metadata/md5-cache/sys-power/power-profiles-daemon-0.12-r1 b/metadata/md5-cache/sys-power/power-profiles-daemon-0.12-r1 new file mode 100644 index 000000000000..24ed4f4c900d --- /dev/null +++ b/metadata/md5-cache/sys-power/power-profiles-daemon-0.12-r1 @@ -0,0 +1,17 @@ +BDEPEND=gtk-doc? ( dev-util/gi-docgen ) test? ( dev-util/umockdev python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] dev-python/python-dbusmock[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] dev-python/python-dbusmock[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] dev-python/python-dbusmock[python_targets_python3_11(-)] ) ) >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst setup test +DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] ) dev-libs/glib:2 >=dev-libs/libgudev-234 >=sys-auth/polkit-0.114 sys-power/upower +DESCRIPTION=Makes power profiles handling available over D-Bus +EAPI=8 +HOMEPAGE=https://gitlab.freedesktop.org/hadess/power-profiles-daemon/ +INHERIT=meson python-single-r1 systemd +IUSE=gtk-doc test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~amd64 +LICENSE=GPL-3+ +RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] ) dev-libs/glib:2 >=dev-libs/libgudev-234 >=sys-auth/polkit-0.114 sys-power/upower +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://gitlab.freedesktop.org/hadess/power-profiles-daemon/-/archive/0.12/power-profiles-daemon-0.12.tar.bz2 +_eclasses_=meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=7dc0ede1b9039bd36fd0a42d73795836 diff --git a/metadata/md5-cache/sys-power/thermald-2.5.1 b/metadata/md5-cache/sys-power/thermald-2.5.1 index 706c0c75702a..2b26e37bfc39 100644 --- a/metadata/md5-cache/sys-power/thermald-2.5.1 +++ b/metadata/md5-cache/sys-power/thermald-2.5.1 @@ -1,14 +1,14 @@ BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare test +DEFINED_PHASES=compile configure install prepare setup test DEPEND=dev-libs/dbus-glib:= dev-libs/glib:= dev-libs/libxml2:= dev-libs/libevdev sys-power/upower sys-apps/dbus:= dev-util/gtk-doc dev-util/glib-utils DESCRIPTION=Thermal daemon for Intel architectures EAPI=8 HOMEPAGE=https://github.com/intel/thermal_daemon -INHERIT=autotools out-of-source systemd +INHERIT=autotools linux-info out-of-source systemd KEYWORDS=amd64 x86 LICENSE=GPL-2+ RDEPEND=dev-libs/dbus-glib:= dev-libs/glib:= dev-libs/libxml2:= dev-libs/libevdev sys-power/upower sys-apps/dbus:= SLOT=0 SRC_URI=https://github.com/intel/thermal_daemon/archive/v2.5.1.tar.gz -> thermald-2.5.1.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 out-of-source 15ce2b6ae214f3abe70892ce1e517abd systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=dee138a457dfa36436cf5244dc81e470 +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 out-of-source 15ce2b6ae214f3abe70892ce1e517abd systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=281c4feef70da2115277cdb6bd59cf0f diff --git a/metadata/md5-cache/sys-power/thermald-2.5.2 b/metadata/md5-cache/sys-power/thermald-2.5.2 index 904404d3f13e..278b9081421b 100644 --- a/metadata/md5-cache/sys-power/thermald-2.5.2 +++ b/metadata/md5-cache/sys-power/thermald-2.5.2 @@ -1,14 +1,14 @@ BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare test +DEFINED_PHASES=compile configure install prepare setup test DEPEND=dev-libs/dbus-glib:= dev-libs/glib:= dev-libs/libxml2:= dev-libs/libevdev sys-power/upower sys-apps/dbus:= dev-util/gtk-doc dev-util/glib-utils DESCRIPTION=Thermal daemon for Intel architectures EAPI=8 HOMEPAGE=https://github.com/intel/thermal_daemon -INHERIT=autotools out-of-source systemd +INHERIT=autotools linux-info out-of-source systemd KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+ RDEPEND=dev-libs/dbus-glib:= dev-libs/glib:= dev-libs/libxml2:= dev-libs/libevdev sys-power/upower sys-apps/dbus:= SLOT=0 SRC_URI=https://github.com/intel/thermal_daemon/archive/v2.5.2.tar.gz -> thermald-2.5.2.tar.gz -_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 out-of-source 15ce2b6ae214f3abe70892ce1e517abd systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=56cb3e9cf18af96f1da541d5cd062177 +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 out-of-source 15ce2b6ae214f3abe70892ce1e517abd systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=0faf72adc02d888e2fd7f86a3b2bf068 diff --git a/metadata/md5-cache/sys-process/Manifest.gz b/metadata/md5-cache/sys-process/Manifest.gz index ee4915064395..8dc9b436fd3e 100644 Binary files a/metadata/md5-cache/sys-process/Manifest.gz and b/metadata/md5-cache/sys-process/Manifest.gz differ diff --git a/metadata/md5-cache/sys-process/memwatch-0.3.3-r1 b/metadata/md5-cache/sys-process/memwatch-0.3.3-r1 index 2a2e1c7816e5..9d95324a2810 100644 --- a/metadata/md5-cache/sys-process/memwatch-0.3.3-r1 +++ b/metadata/md5-cache/sys-process/memwatch-0.3.3-r1 @@ -10,5 +10,5 @@ LICENSE=WTFPL-2 RDEPEND=sys-libs/ncurses:0= SLOT=0 SRC_URI=http://unixdev.ru/src/memwatch-0.3.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=78bdb3a039ba74d2949a507c0026fdc6 diff --git a/metadata/md5-cache/sys-process/tini-0.19.0-r1 b/metadata/md5-cache/sys-process/tini-0.19.0-r1 index 52d42cdaec1a..fc151c1b4ad4 100644 --- a/metadata/md5-cache/sys-process/tini-0.19.0-r1 +++ b/metadata/md5-cache/sys-process/tini-0.19.0-r1 @@ -9,5 +9,5 @@ KEYWORDS=amd64 arm arm64 hppa ppc64 ~riscv ~x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/krallin/tini/archive/v0.19.0.tar.gz -> tini-0.19.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4767da9758e2bab51af6ae9ad2d159ef diff --git a/metadata/md5-cache/sys-process/usbtop-1.0 b/metadata/md5-cache/sys-process/usbtop-1.0 index 156e9685d4b8..151b08df732c 100644 --- a/metadata/md5-cache/sys-process/usbtop-1.0 +++ b/metadata/md5-cache/sys-process/usbtop-1.0 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=net-libs/libpcap:=[usb] dev-libs/boost:= SLOT=0 SRC_URI=https://github.com/aguinet/usbtop/archive/release-1.0.tar.gz -> usbtop-1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bd482f64010b3edc51ab49c73fdae3a1 diff --git a/metadata/md5-cache/virtual/Manifest.gz b/metadata/md5-cache/virtual/Manifest.gz index bfd9f0964789..7f68f9a183d0 100644 Binary files a/metadata/md5-cache/virtual/Manifest.gz and b/metadata/md5-cache/virtual/Manifest.gz differ diff --git a/metadata/md5-cache/virtual/libcrypt-2-r1 b/metadata/md5-cache/virtual/libcrypt-2-r1 index 241b502beb5c..c32954efeca6 100644 --- a/metadata/md5-cache/virtual/libcrypt-2-r1 +++ b/metadata/md5-cache/virtual/libcrypt-2-r1 @@ -3,8 +3,8 @@ DESCRIPTION=Virtual for libcrypt.so EAPI=7 INHERIT=multilib-build IUSE=static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris RDEPEND=!prefix-guest? ( elibc_glibc? ( sys-libs/libxcrypt[system(-),static-libs(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) elibc_musl? ( sys-libs/libxcrypt[system(-),static-libs(-)?] ) ) elibc_Cygwin? ( sys-libs/cygwin-crypt ) SLOT=0/2 _eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=17df1b1e2b2110c200a069225260fcd8 +_md5_=f26905216e11f72a44744785c4542d49 diff --git a/metadata/md5-cache/virtual/rust-1.68.0 b/metadata/md5-cache/virtual/rust-1.68.0 new file mode 100644 index 000000000000..42f5425e3905 --- /dev/null +++ b/metadata/md5-cache/virtual/rust-1.68.0 @@ -0,0 +1,10 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual for Rust language compiler +EAPI=8 +INHERIT=multilib-build +IUSE=rustfmt abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +RDEPEND=|| ( ~dev-lang/rust-1.68.0[rustfmt?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ~dev-lang/rust-bin-1.68.0[rustfmt?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +SLOT=0/llvm-15 +_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=0f5e5b089e41e70a30478eafb8f395ab diff --git a/metadata/md5-cache/www-apps/Manifest.gz b/metadata/md5-cache/www-apps/Manifest.gz index 11ce73446997..2e816cee18bd 100644 Binary files a/metadata/md5-cache/www-apps/Manifest.gz and b/metadata/md5-cache/www-apps/Manifest.gz differ diff --git a/metadata/md5-cache/www-apps/grafana-bin-9.2.10 b/metadata/md5-cache/www-apps/grafana-bin-9.2.10 deleted file mode 100644 index e87ce60eba5c..000000000000 --- a/metadata/md5-cache/www-apps/grafana-bin-9.2.10 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=install postinst -DEPEND=acct-group/grafana acct-user/grafana -DESCRIPTION=Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB -EAPI=8 -HOMEPAGE=https://grafana.org -INHERIT=systemd -KEYWORDS=-* ~amd64 -LICENSE=AGPL-3 -RDEPEND=acct-group/grafana acct-user/grafana media-libs/fontconfig sys-libs/glibc -RESTRICT=mirror -SLOT=0 -SRC_URI=https://dl.grafana.com/oss/release/grafana-9.2.10.linux-amd64.tar.gz -> grafana-bin-9.2.10.tar.gz -_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f87fee7043dd867ab962098487f25058 diff --git a/metadata/md5-cache/www-apps/grafana-bin-9.2.4 b/metadata/md5-cache/www-apps/grafana-bin-9.2.4 deleted file mode 100644 index bc61256aa438..000000000000 --- a/metadata/md5-cache/www-apps/grafana-bin-9.2.4 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=install postinst -DEPEND=acct-group/grafana acct-user/grafana -DESCRIPTION=Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB -EAPI=8 -HOMEPAGE=https://grafana.org -INHERIT=systemd -KEYWORDS=-* ~amd64 -LICENSE=AGPL-3 -RDEPEND=acct-group/grafana acct-user/grafana media-libs/fontconfig sys-libs/glibc -RESTRICT=mirror -SLOT=0 -SRC_URI=https://dl.grafana.com/oss/release/grafana-9.2.4.linux-amd64.tar.gz -> grafana-bin-9.2.4.tar.gz -_eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=1d7a1a05e835e727398b7c13614a8930 diff --git a/metadata/md5-cache/www-apps/grafana-bin-9.2.7 b/metadata/md5-cache/www-apps/grafana-bin-9.3.8-r1 similarity index 78% rename from metadata/md5-cache/www-apps/grafana-bin-9.2.7 rename to metadata/md5-cache/www-apps/grafana-bin-9.3.8-r1 index f7310b9a7a18..ec2bdcd49403 100644 --- a/metadata/md5-cache/www-apps/grafana-bin-9.2.7 +++ b/metadata/md5-cache/www-apps/grafana-bin-9.3.8-r1 @@ -10,6 +10,6 @@ LICENSE=AGPL-3 RDEPEND=acct-group/grafana acct-user/grafana media-libs/fontconfig sys-libs/glibc RESTRICT=mirror SLOT=0 -SRC_URI=https://dl.grafana.com/oss/release/grafana-9.2.7.linux-amd64.tar.gz -> grafana-bin-9.2.7.tar.gz +SRC_URI=https://dl.grafana.com/oss/release/grafana-9.3.8.linux-amd64.tar.gz -> grafana-bin-9.3.8.tar.gz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=1d7a1a05e835e727398b7c13614a8930 +_md5_=ac759d28d5fad4b5df4a9e1c3e38cece diff --git a/metadata/md5-cache/www-apps/grafana-bin-9.2.8 b/metadata/md5-cache/www-apps/grafana-bin-9.4.3-r1 similarity index 78% rename from metadata/md5-cache/www-apps/grafana-bin-9.2.8 rename to metadata/md5-cache/www-apps/grafana-bin-9.4.3-r1 index 7fd3701d40be..5e76197eb05c 100644 --- a/metadata/md5-cache/www-apps/grafana-bin-9.2.8 +++ b/metadata/md5-cache/www-apps/grafana-bin-9.4.3-r1 @@ -10,6 +10,6 @@ LICENSE=AGPL-3 RDEPEND=acct-group/grafana acct-user/grafana media-libs/fontconfig sys-libs/glibc RESTRICT=mirror SLOT=0 -SRC_URI=https://dl.grafana.com/oss/release/grafana-9.2.8.linux-amd64.tar.gz -> grafana-bin-9.2.8.tar.gz +SRC_URI=https://dl.grafana.com/oss/release/grafana-9.4.3.linux-amd64.tar.gz -> grafana-bin-9.4.3.tar.gz _eclasses_=multilib 5ca4e49abed8e3a2f7b56920eadee157 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=f87fee7043dd867ab962098487f25058 +_md5_=ac759d28d5fad4b5df4a9e1c3e38cece diff --git a/metadata/md5-cache/www-apps/hugo-0.110.0-r1 b/metadata/md5-cache/www-apps/hugo-0.110.0-r2 similarity index 96% rename from metadata/md5-cache/www-apps/hugo-0.110.0-r1 rename to metadata/md5-cache/www-apps/hugo-0.110.0-r2 index 3e88b5058bd4..6b47f4b9ea2b 100644 --- a/metadata/md5-cache/www-apps/hugo-0.110.0-r1 +++ b/metadata/md5-cache/www-apps/hugo-0.110.0-r2 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/gohugoio/hugo/archive/v0.110.0.tar.gz -> hugo-0.110.0.tar.gz https://tastytea.de/files/gentoo/hugo-0.110.0-vendor.tar.xz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=b758f7904feb02d163b295a7d881e385 +_md5_=6330286e6a76d535da724b54b383f931 diff --git a/metadata/md5-cache/www-apps/hugo-0.111.3 b/metadata/md5-cache/www-apps/hugo-0.111.3 new file mode 100644 index 000000000000..a40419f42e64 --- /dev/null +++ b/metadata/md5-cache/www-apps/hugo-0.111.3 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-lang/go-1.18 test? ( dev-python/docutils dev-ruby/asciidoctor virtual/pandoc ) >=dev-lang/go-1.18 app-arch/unzip +DEFINED_PHASES=compile configure install test unpack +DEPEND=>=media-libs/libwebp-1.2.3-r1:= sass? ( dev-libs/libsass:= ) +DESCRIPTION=Fast static HTML and CSS website generator +EAPI=8 +HOMEPAGE=https://gohugo.io https://github.com/gohugoio/hugo +INHERIT=go-module bash-completion-r1 +IUSE=doc +sass test +KEYWORDS=~amd64 ~arm64 ~loong ~riscv ~x86 +LICENSE=Apache-2.0 BSD BSD-2 MIT MPL-2.0 +RDEPEND=>=media-libs/libwebp-1.2.3-r1:= sass? ( dev-libs/libsass:= ) +RESTRICT=!test? ( test ) strip +SLOT=0 +SRC_URI=https://github.com/gohugoio/hugo/archive/v0.111.3.tar.gz -> hugo-0.111.3.tar.gz https://tastytea.de/files/gentoo/hugo-0.111.3-vendor.tar.xz +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=f75687e998b817fc3097acd3efe6e4be diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz index ac40a2f589ab..a47aa933a466 100644 Binary files a/metadata/md5-cache/www-client/Manifest.gz and b/metadata/md5-cache/www-client/Manifest.gz differ diff --git a/metadata/md5-cache/www-client/falkon-22.08.3 b/metadata/md5-cache/www-client/falkon-22.08.3 index 77b730951f8f..14a24a5536ba 100644 --- a/metadata/md5-cache/www-client/falkon-22.08.3 +++ b/metadata/md5-cache/www-client/falkon-22.08.3 @@ -14,5 +14,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=test !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://kde/stable/release-service/22.08.3/src/falkon-22.08.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b121d978c58fd1b2fd2a249aa98da2d5 diff --git a/metadata/md5-cache/www-client/falkon-22.12.3 b/metadata/md5-cache/www-client/falkon-22.12.3 index e22bd179d1ec..a8b03533dd49 100644 --- a/metadata/md5-cache/www-client/falkon-22.12.3 +++ b/metadata/md5-cache/www-client/falkon-22.12.3 @@ -14,5 +14,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_ RESTRICT=test !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://kde/stable/release-service/22.12.3/src/falkon-22.12.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ac5d646fcb4d5b4363e3ddaaf2641bef diff --git a/metadata/md5-cache/www-client/otter-1.0.03 b/metadata/md5-cache/www-client/otter-1.0.03 index f043190118a7..056bc42a915a 100644 --- a/metadata/md5-cache/www-client/otter-1.0.03 +++ b/metadata/md5-cache/www-client/otter-1.0.03 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtprintsupport:5 dev-qt/qtscript:5 dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxmlpatterns:5 dev-qt/qtwebengine:5[widgets] dbus? ( dev-qt/qtdbus:5 ) spell? ( app-text/hunspell:= ) SLOT=0 SRC_URI=https://github.com/OtterBrowser/otter-browser/archive/v1.0.03.tar.gz -> otter-1.0.03.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1ad23c62448897e3ea143816074a64d8 diff --git a/metadata/md5-cache/www-client/otter-9999 b/metadata/md5-cache/www-client/otter-9999 index 6f8ec496cbfb..9cd5bcbb957e 100644 --- a/metadata/md5-cache/www-client/otter-9999 +++ b/metadata/md5-cache/www-client/otter-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-3 PROPERTIES=live RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtprintsupport:5 dev-qt/qtscript:5 dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxmlpatterns:5 dev-qt/qtwebengine:5[widgets] dbus? ( dev-qt/qtdbus:5 ) spell? ( app-text/hunspell:= ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e3929365beeec7444db080b4b5453d29 diff --git a/metadata/md5-cache/www-client/qutebrowser-2.5.2-r1 b/metadata/md5-cache/www-client/qutebrowser-2.5.2-r1 deleted file mode 100644 index 08f71354b385..000000000000 --- a/metadata/md5-cache/www-client/qutebrowser-2.5.2-r1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( test? ( dev-python/beautifulsoup4[python_targets_python3_9(-)] dev-python/cheroot[python_targets_python3_9(-)] dev-python/flask[python_targets_python3_9(-)] dev-python/hypothesis[python_targets_python3_9(-)] dev-python/pytest-bdd[python_targets_python3_9(-)] dev-python/pytest-mock[python_targets_python3_9(-)] dev-python/pytest-qt[python_targets_python3_9(-)] dev-python/pytest-rerunfailures[python_targets_python3_9(-)] dev-python/pytest-xvfb[python_targets_python3_9(-)] dev-python/tldextract[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( test? ( dev-python/beautifulsoup4[python_targets_python3_10(-)] dev-python/cheroot[python_targets_python3_10(-)] dev-python/flask[python_targets_python3_10(-)] dev-python/hypothesis[python_targets_python3_10(-)] dev-python/pytest-bdd[python_targets_python3_10(-)] dev-python/pytest-mock[python_targets_python3_10(-)] dev-python/pytest-qt[python_targets_python3_10(-)] dev-python/pytest-rerunfailures[python_targets_python3_10(-)] dev-python/pytest-xvfb[python_targets_python3_10(-)] dev-python/tldextract[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( test? ( dev-python/beautifulsoup4[python_targets_python3_11(-)] dev-python/cheroot[python_targets_python3_11(-)] dev-python/flask[python_targets_python3_11(-)] dev-python/hypothesis[python_targets_python3_11(-)] dev-python/pytest-bdd[python_targets_python3_11(-)] dev-python/pytest-mock[python_targets_python3_11(-)] dev-python/pytest-qt[python_targets_python3_11(-)] dev-python/pytest-rerunfailures[python_targets_python3_11(-)] dev-python/pytest-xvfb[python_targets_python3_11(-)] dev-python/tldextract[python_targets_python3_11(-)] ) ) test? ( dev-qt/qtcore:5[icu] dev-qt/qtgui:5[png] python_single_target_python3_9? ( dev-python/colorama[python_targets_python3_9(-)] >=dev-python/jinja-3.0.2[python_targets_python3_9(-)] >=dev-python/markupsafe-2.0.1[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-python/PyQt5[python_targets_python3_9(-),dbus,declarative,multimedia,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-),libyaml(+)] dev-python/zipp[python_targets_python3_9(-)] adblock? ( dev-python/adblock[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/colorama[python_targets_python3_10(-)] >=dev-python/jinja-3.0.2[python_targets_python3_10(-)] >=dev-python/markupsafe-2.0.1[python_targets_python3_10(-)] dev-python/pygments[python_targets_python3_10(-)] dev-python/PyQt5[python_targets_python3_10(-),dbus,declarative,multimedia,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-),libyaml(+)] dev-python/zipp[python_targets_python3_10(-)] adblock? ( dev-python/adblock[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( dev-python/colorama[python_targets_python3_11(-)] >=dev-python/jinja-3.0.2[python_targets_python3_11(-)] >=dev-python/markupsafe-2.0.1[python_targets_python3_11(-)] dev-python/pygments[python_targets_python3_11(-)] dev-python/PyQt5[python_targets_python3_11(-),dbus,declarative,multimedia,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-),libyaml(+)] dev-python/zipp[python_targets_python3_11(-)] adblock? ( dev-python/adblock[python_targets_python3_11(-)] ) ) pdf? ( =dev-python/pytest-7.2.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pytest-7.2.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pytest-7.2.1[python_targets_python3_11(-)] ) ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( >=dev-python/gpep517-13[python_targets_python3_9(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)] =dev-python/wheel-0.38.4[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/gpep517-13[python_targets_python3_10(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)] =dev-python/wheel-0.38.4[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/gpep517-13[python_targets_python3_11(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_11(-)] =dev-python/wheel-0.38.4[python_targets_python3_11(-)] ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DESCRIPTION=Keyboard-driven, vim-like browser based on PyQt5 and QtWebEngine -EAPI=8 -HOMEPAGE=https://www.qutebrowser.org/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=distutils-r1 xdg -IUSE=+adblock pdf widevine test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=amd64 ~arm64 ~x86 -LICENSE=GPL-3+ -RDEPEND=dev-qt/qtcore:5[icu] dev-qt/qtgui:5[png] python_single_target_python3_9? ( dev-python/colorama[python_targets_python3_9(-)] >=dev-python/jinja-3.0.2[python_targets_python3_9(-)] >=dev-python/markupsafe-2.0.1[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-python/PyQt5[python_targets_python3_9(-),dbus,declarative,multimedia,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-),libyaml(+)] dev-python/zipp[python_targets_python3_9(-)] adblock? ( dev-python/adblock[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/colorama[python_targets_python3_10(-)] >=dev-python/jinja-3.0.2[python_targets_python3_10(-)] >=dev-python/markupsafe-2.0.1[python_targets_python3_10(-)] dev-python/pygments[python_targets_python3_10(-)] dev-python/PyQt5[python_targets_python3_10(-),dbus,declarative,multimedia,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-),libyaml(+)] dev-python/zipp[python_targets_python3_10(-)] adblock? ( dev-python/adblock[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( dev-python/colorama[python_targets_python3_11(-)] >=dev-python/jinja-3.0.2[python_targets_python3_11(-)] >=dev-python/markupsafe-2.0.1[python_targets_python3_11(-)] dev-python/pygments[python_targets_python3_11(-)] dev-python/PyQt5[python_targets_python3_11(-),dbus,declarative,multimedia,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-),libyaml(+)] dev-python/zipp[python_targets_python3_11(-)] adblock? ( dev-python/adblock[python_targets_python3_11(-)] ) ) pdf? ( =dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/qutebrowser/qutebrowser/releases/download/v2.5.2/qutebrowser-2.5.2.tar.gz -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=bfa941c2f1b6408f0cf2ab546aafa7fd diff --git a/metadata/md5-cache/www-client/qutebrowser-2.5.4 b/metadata/md5-cache/www-client/qutebrowser-2.5.4 index 8906a51e9bf7..2d53de98654b 100644 --- a/metadata/md5-cache/www-client/qutebrowser-2.5.4 +++ b/metadata/md5-cache/www-client/qutebrowser-2.5.4 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/qutebrowser/qutebrowser/releases/download/v2.5.4/qutebrowser-2.5.4.tar.gz _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=19b8cf0042c64d688faf6fdcd59932e6 +_md5_=fc4acd38154502d78a0998d8ba84d1f1 diff --git a/metadata/md5-cache/www-client/qutebrowser-3.0.0_pre9999 b/metadata/md5-cache/www-client/qutebrowser-3.0.0_pre9999 deleted file mode 100644 index 9a2011739591..000000000000 --- a/metadata/md5-cache/www-client/qutebrowser-3.0.0_pre9999 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( test? ( dev-python/beautifulsoup4[python_targets_python3_9(-)] dev-python/cheroot[python_targets_python3_9(-)] dev-python/flask[python_targets_python3_9(-)] dev-python/hypothesis[python_targets_python3_9(-)] dev-python/pytest-bdd[python_targets_python3_9(-)] dev-python/pytest-mock[python_targets_python3_9(-)] dev-python/pytest-qt[python_targets_python3_9(-)] dev-python/pytest-rerunfailures[python_targets_python3_9(-)] dev-python/pytest-xvfb[python_targets_python3_9(-)] dev-python/tldextract[python_targets_python3_9(-)] qt6? ( dev-python/PyQt6[testlib] ) !qt6? ( dev-python/PyQt5[testlib] ) ) ) python_single_target_python3_10? ( test? ( dev-python/beautifulsoup4[python_targets_python3_10(-)] dev-python/cheroot[python_targets_python3_10(-)] dev-python/flask[python_targets_python3_10(-)] dev-python/hypothesis[python_targets_python3_10(-)] dev-python/pytest-bdd[python_targets_python3_10(-)] dev-python/pytest-mock[python_targets_python3_10(-)] dev-python/pytest-qt[python_targets_python3_10(-)] dev-python/pytest-rerunfailures[python_targets_python3_10(-)] dev-python/pytest-xvfb[python_targets_python3_10(-)] dev-python/tldextract[python_targets_python3_10(-)] qt6? ( dev-python/PyQt6[testlib] ) !qt6? ( dev-python/PyQt5[testlib] ) ) ) python_single_target_python3_11? ( test? ( dev-python/beautifulsoup4[python_targets_python3_11(-)] dev-python/cheroot[python_targets_python3_11(-)] dev-python/flask[python_targets_python3_11(-)] dev-python/hypothesis[python_targets_python3_11(-)] dev-python/pytest-bdd[python_targets_python3_11(-)] dev-python/pytest-mock[python_targets_python3_11(-)] dev-python/pytest-qt[python_targets_python3_11(-)] dev-python/pytest-rerunfailures[python_targets_python3_11(-)] dev-python/pytest-xvfb[python_targets_python3_11(-)] dev-python/tldextract[python_targets_python3_11(-)] qt6? ( dev-python/PyQt6[testlib] ) !qt6? ( dev-python/PyQt5[testlib] ) ) ) app-text/asciidoc test? ( python_single_target_python3_9? ( dev-python/colorama[python_targets_python3_9(-)] >=dev-python/jinja-3.1.2[python_targets_python3_9(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-)] dev-python/zipp[python_targets_python3_9(-)] adblock? ( dev-python/adblock[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/colorama[python_targets_python3_10(-)] >=dev-python/jinja-3.1.2[python_targets_python3_10(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_10(-)] dev-python/pygments[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-)] dev-python/zipp[python_targets_python3_10(-)] adblock? ( dev-python/adblock[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( dev-python/colorama[python_targets_python3_11(-)] >=dev-python/jinja-3.1.2[python_targets_python3_11(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_11(-)] dev-python/pygments[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/zipp[python_targets_python3_11(-)] adblock? ( dev-python/adblock[python_targets_python3_11(-)] ) ) qt6? ( dev-qt/qtbase:6[icu] python_single_target_python3_9? ( dev-python/PyQt6[python_targets_python3_9(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_9(-),widgets] ) python_single_target_python3_10? ( dev-python/PyQt6[python_targets_python3_10(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_10(-),widgets] ) python_single_target_python3_11? ( dev-python/PyQt6[python_targets_python3_11(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_11(-),widgets] ) pdf? ( www-plugins/pdfjs ) ) !qt6? ( dev-qt/qtcore:5[icu] dev-qt/qtgui:5[png] python_single_target_python3_9? ( dev-python/PyQt5[python_targets_python3_9(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/PyQt5[python_targets_python3_10(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/PyQt5[python_targets_python3_11(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_11(-)] ) pdf? ( =dev-python/pytest-7.2.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pytest-7.2.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pytest-7.2.1[python_targets_python3_11(-)] ) ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( >=dev-python/gpep517-13[python_targets_python3_9(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)] =dev-python/wheel-0.38.4[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/gpep517-13[python_targets_python3_10(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)] =dev-python/wheel-0.38.4[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/gpep517-13[python_targets_python3_11(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_11(-)] =dev-python/wheel-0.38.4[python_targets_python3_11(-)] ) >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DESCRIPTION=Keyboard-driven, vim-like browser based on Python and Qt -EAPI=8 -HOMEPAGE=https://www.qutebrowser.org/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=distutils-r1 xdg git-r3 -IUSE=+adblock pdf +qt6 widevine test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -LICENSE=GPL-3+ -PROPERTIES=live -RDEPEND=python_single_target_python3_9? ( dev-python/colorama[python_targets_python3_9(-)] >=dev-python/jinja-3.1.2[python_targets_python3_9(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-)] dev-python/zipp[python_targets_python3_9(-)] adblock? ( dev-python/adblock[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/colorama[python_targets_python3_10(-)] >=dev-python/jinja-3.1.2[python_targets_python3_10(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_10(-)] dev-python/pygments[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-)] dev-python/zipp[python_targets_python3_10(-)] adblock? ( dev-python/adblock[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( dev-python/colorama[python_targets_python3_11(-)] >=dev-python/jinja-3.1.2[python_targets_python3_11(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_11(-)] dev-python/pygments[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/zipp[python_targets_python3_11(-)] adblock? ( dev-python/adblock[python_targets_python3_11(-)] ) ) qt6? ( dev-qt/qtbase:6[icu] python_single_target_python3_9? ( dev-python/PyQt6[python_targets_python3_9(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_9(-),widgets] ) python_single_target_python3_10? ( dev-python/PyQt6[python_targets_python3_10(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_10(-),widgets] ) python_single_target_python3_11? ( dev-python/PyQt6[python_targets_python3_11(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_11(-),widgets] ) pdf? ( www-plugins/pdfjs ) ) !qt6? ( dev-qt/qtcore:5[icu] dev-qt/qtgui:5[png] python_single_target_python3_9? ( dev-python/PyQt5[python_targets_python3_9(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/PyQt5[python_targets_python3_10(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/PyQt5[python_targets_python3_11(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_11(-)] ) pdf? ( =dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -_eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=337fbe9a9ad20a08bcf99c919ca1f53f diff --git a/metadata/md5-cache/www-client/qutebrowser-9999 b/metadata/md5-cache/www-client/qutebrowser-9999 index 823d98d83dae..6f2d76ad55e4 100644 --- a/metadata/md5-cache/www-client/qutebrowser-9999 +++ b/metadata/md5-cache/www-client/qutebrowser-9999 @@ -1,16 +1,16 @@ -BDEPEND=python_single_target_python3_9? ( test? ( dev-python/PyQt5[testlib] dev-python/beautifulsoup4[python_targets_python3_9(-)] dev-python/cheroot[python_targets_python3_9(-)] dev-python/flask[python_targets_python3_9(-)] dev-python/hypothesis[python_targets_python3_9(-)] dev-python/pytest-bdd[python_targets_python3_9(-)] dev-python/pytest-mock[python_targets_python3_9(-)] dev-python/pytest-qt[python_targets_python3_9(-)] dev-python/pytest-rerunfailures[python_targets_python3_9(-)] dev-python/pytest-xvfb[python_targets_python3_9(-)] dev-python/tldextract[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( test? ( dev-python/PyQt5[testlib] dev-python/beautifulsoup4[python_targets_python3_10(-)] dev-python/cheroot[python_targets_python3_10(-)] dev-python/flask[python_targets_python3_10(-)] dev-python/hypothesis[python_targets_python3_10(-)] dev-python/pytest-bdd[python_targets_python3_10(-)] dev-python/pytest-mock[python_targets_python3_10(-)] dev-python/pytest-qt[python_targets_python3_10(-)] dev-python/pytest-rerunfailures[python_targets_python3_10(-)] dev-python/pytest-xvfb[python_targets_python3_10(-)] dev-python/tldextract[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( test? ( dev-python/PyQt5[testlib] dev-python/beautifulsoup4[python_targets_python3_11(-)] dev-python/cheroot[python_targets_python3_11(-)] dev-python/flask[python_targets_python3_11(-)] dev-python/hypothesis[python_targets_python3_11(-)] dev-python/pytest-bdd[python_targets_python3_11(-)] dev-python/pytest-mock[python_targets_python3_11(-)] dev-python/pytest-qt[python_targets_python3_11(-)] dev-python/pytest-rerunfailures[python_targets_python3_11(-)] dev-python/pytest-xvfb[python_targets_python3_11(-)] dev-python/tldextract[python_targets_python3_11(-)] ) ) app-text/asciidoc test? ( python_single_target_python3_9? ( dev-python/PyQt5[python_targets_python3_9(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_9(-)] dev-python/colorama[python_targets_python3_9(-)] >=dev-python/jinja-3.1.2[python_targets_python3_9(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-)] dev-python/zipp[python_targets_python3_9(-)] adblock? ( dev-python/adblock[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/PyQt5[python_targets_python3_10(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_10(-)] dev-python/colorama[python_targets_python3_10(-)] >=dev-python/jinja-3.1.2[python_targets_python3_10(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_10(-)] dev-python/pygments[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-)] dev-python/zipp[python_targets_python3_10(-)] adblock? ( dev-python/adblock[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( dev-python/PyQt5[python_targets_python3_11(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_11(-)] dev-python/colorama[python_targets_python3_11(-)] >=dev-python/jinja-3.1.2[python_targets_python3_11(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_11(-)] dev-python/pygments[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/zipp[python_targets_python3_11(-)] adblock? ( dev-python/adblock[python_targets_python3_11(-)] ) ) dev-qt/qtcore:5[icu] dev-qt/qtgui:5[png] pdf? ( =dev-python/pytest-7.2.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pytest-7.2.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pytest-7.2.1[python_targets_python3_11(-)] ) ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( >=dev-python/gpep517-13[python_targets_python3_9(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)] =dev-python/wheel-0.38.4[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/gpep517-13[python_targets_python3_10(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)] =dev-python/wheel-0.38.4[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/gpep517-13[python_targets_python3_11(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_11(-)] =dev-python/wheel-0.38.4[python_targets_python3_11(-)] ) >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=python_single_target_python3_9? ( test? ( dev-python/beautifulsoup4[python_targets_python3_9(-)] dev-python/cheroot[python_targets_python3_9(-)] dev-python/flask[python_targets_python3_9(-)] dev-python/hypothesis[python_targets_python3_9(-)] dev-python/pytest-bdd[python_targets_python3_9(-)] dev-python/pytest-mock[python_targets_python3_9(-)] dev-python/pytest-qt[python_targets_python3_9(-)] dev-python/pytest-rerunfailures[python_targets_python3_9(-)] dev-python/pytest-xvfb[python_targets_python3_9(-)] dev-python/tldextract[python_targets_python3_9(-)] qt6? ( dev-python/PyQt6[testlib] ) !qt6? ( dev-python/PyQt5[testlib] ) ) ) python_single_target_python3_10? ( test? ( dev-python/beautifulsoup4[python_targets_python3_10(-)] dev-python/cheroot[python_targets_python3_10(-)] dev-python/flask[python_targets_python3_10(-)] dev-python/hypothesis[python_targets_python3_10(-)] dev-python/pytest-bdd[python_targets_python3_10(-)] dev-python/pytest-mock[python_targets_python3_10(-)] dev-python/pytest-qt[python_targets_python3_10(-)] dev-python/pytest-rerunfailures[python_targets_python3_10(-)] dev-python/pytest-xvfb[python_targets_python3_10(-)] dev-python/tldextract[python_targets_python3_10(-)] qt6? ( dev-python/PyQt6[testlib] ) !qt6? ( dev-python/PyQt5[testlib] ) ) ) python_single_target_python3_11? ( test? ( dev-python/beautifulsoup4[python_targets_python3_11(-)] dev-python/cheroot[python_targets_python3_11(-)] dev-python/flask[python_targets_python3_11(-)] dev-python/hypothesis[python_targets_python3_11(-)] dev-python/pytest-bdd[python_targets_python3_11(-)] dev-python/pytest-mock[python_targets_python3_11(-)] dev-python/pytest-qt[python_targets_python3_11(-)] dev-python/pytest-rerunfailures[python_targets_python3_11(-)] dev-python/pytest-xvfb[python_targets_python3_11(-)] dev-python/tldextract[python_targets_python3_11(-)] qt6? ( dev-python/PyQt6[testlib] ) !qt6? ( dev-python/PyQt5[testlib] ) ) ) app-text/asciidoc test? ( python_single_target_python3_9? ( dev-python/colorama[python_targets_python3_9(-)] >=dev-python/jinja-3.1.2[python_targets_python3_9(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-)] dev-python/zipp[python_targets_python3_9(-)] adblock? ( dev-python/adblock[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/colorama[python_targets_python3_10(-)] >=dev-python/jinja-3.1.2[python_targets_python3_10(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_10(-)] dev-python/pygments[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-)] dev-python/zipp[python_targets_python3_10(-)] adblock? ( dev-python/adblock[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( dev-python/colorama[python_targets_python3_11(-)] >=dev-python/jinja-3.1.2[python_targets_python3_11(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_11(-)] dev-python/pygments[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/zipp[python_targets_python3_11(-)] adblock? ( dev-python/adblock[python_targets_python3_11(-)] ) ) qt6? ( dev-qt/qtbase:6[icu] python_single_target_python3_9? ( dev-python/PyQt6[python_targets_python3_9(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_9(-),widgets] ) python_single_target_python3_10? ( dev-python/PyQt6[python_targets_python3_10(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_10(-),widgets] ) python_single_target_python3_11? ( dev-python/PyQt6[python_targets_python3_11(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_11(-),widgets] ) pdf? ( www-plugins/pdfjs ) ) !qt6? ( dev-qt/qtcore:5[icu] dev-qt/qtgui:5[png] python_single_target_python3_9? ( dev-python/PyQt5[python_targets_python3_9(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/PyQt5[python_targets_python3_10(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/PyQt5[python_targets_python3_11(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_11(-)] ) pdf? ( =dev-python/pytest-7.2.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pytest-7.2.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pytest-7.2.1[python_targets_python3_11(-)] ) ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( >=dev-python/gpep517-13[python_targets_python3_9(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)] =dev-python/wheel-0.38.4[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/gpep517-13[python_targets_python3_10(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)] =dev-python/wheel-0.38.4[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/gpep517-13[python_targets_python3_11(-)] || ( >=dev-python/setuptools-67.2.0[python_targets_python3_11(-)] =dev-python/wheel-0.38.4[python_targets_python3_11(-)] ) >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack DESCRIPTION=Keyboard-driven, vim-like browser based on Python and Qt EAPI=8 HOMEPAGE=https://www.qutebrowser.org/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=distutils-r1 xdg git-r3 -IUSE=+adblock pdf widevine test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +IUSE=+adblock pdf +qt6 widevine test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 LICENSE=GPL-3+ PROPERTIES=live -RDEPEND=python_single_target_python3_9? ( dev-python/PyQt5[python_targets_python3_9(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_9(-)] dev-python/colorama[python_targets_python3_9(-)] >=dev-python/jinja-3.1.2[python_targets_python3_9(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-)] dev-python/zipp[python_targets_python3_9(-)] adblock? ( dev-python/adblock[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/PyQt5[python_targets_python3_10(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_10(-)] dev-python/colorama[python_targets_python3_10(-)] >=dev-python/jinja-3.1.2[python_targets_python3_10(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_10(-)] dev-python/pygments[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-)] dev-python/zipp[python_targets_python3_10(-)] adblock? ( dev-python/adblock[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( dev-python/PyQt5[python_targets_python3_11(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_11(-)] dev-python/colorama[python_targets_python3_11(-)] >=dev-python/jinja-3.1.2[python_targets_python3_11(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_11(-)] dev-python/pygments[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/zipp[python_targets_python3_11(-)] adblock? ( dev-python/adblock[python_targets_python3_11(-)] ) ) dev-qt/qtcore:5[icu] dev-qt/qtgui:5[png] pdf? ( =dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +RDEPEND=python_single_target_python3_9? ( dev-python/colorama[python_targets_python3_9(-)] >=dev-python/jinja-3.1.2[python_targets_python3_9(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-)] dev-python/zipp[python_targets_python3_9(-)] adblock? ( dev-python/adblock[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-python/colorama[python_targets_python3_10(-)] >=dev-python/jinja-3.1.2[python_targets_python3_10(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_10(-)] dev-python/pygments[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-)] dev-python/zipp[python_targets_python3_10(-)] adblock? ( dev-python/adblock[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( dev-python/colorama[python_targets_python3_11(-)] >=dev-python/jinja-3.1.2[python_targets_python3_11(-)] >=dev-python/markupsafe-2.1.1[python_targets_python3_11(-)] dev-python/pygments[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/zipp[python_targets_python3_11(-)] adblock? ( dev-python/adblock[python_targets_python3_11(-)] ) ) qt6? ( dev-qt/qtbase:6[icu] python_single_target_python3_9? ( dev-python/PyQt6[python_targets_python3_9(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_9(-),widgets] ) python_single_target_python3_10? ( dev-python/PyQt6[python_targets_python3_10(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_10(-),widgets] ) python_single_target_python3_11? ( dev-python/PyQt6[python_targets_python3_11(-),dbus,gui,network,opengl,printsupport,qml,sql,widgets] dev-python/PyQt6-WebEngine[python_targets_python3_11(-),widgets] ) pdf? ( www-plugins/pdfjs ) ) !qt6? ( dev-qt/qtcore:5[icu] dev-qt/qtgui:5[png] python_single_target_python3_9? ( dev-python/PyQt5[python_targets_python3_9(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/PyQt5[python_targets_python3_10(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/PyQt5[python_targets_python3_11(-),dbus,declarative,gui,network,opengl,printsupport,sql,widgets] dev-python/PyQtWebEngine[python_targets_python3_11(-)] ) pdf? ( =dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a -_md5_=9a7dc1d7fb7915c5dd138137bd720119 +_md5_=6aa9102e2229cc860c88275d2a31dea9 diff --git a/metadata/md5-cache/www-plugins/Manifest.gz b/metadata/md5-cache/www-plugins/Manifest.gz index 11e7eca15bc8..c77993a081a1 100644 Binary files a/metadata/md5-cache/www-plugins/Manifest.gz and b/metadata/md5-cache/www-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/www-plugins/lightspark-0.8.6.1 b/metadata/md5-cache/www-plugins/lightspark-0.8.6.1 index 3335ace73a98..02aa53c23765 100644 --- a/metadata/md5-cache/www-plugins/lightspark-0.8.6.1 +++ b/metadata/md5-cache/www-plugins/lightspark-0.8.6.1 @@ -11,5 +11,5 @@ LICENSE=LGPL-3 RDEPEND=app-arch/xz-utils:= dev-libs/glib dev-libs/libpcre:=[cxx] media-fonts/liberation-fonts media-libs/freetype:= media-libs/libjpeg-turbo:= media-libs/libpng:= media-libs/libsdl2 media-libs/sdl2-mixer sys-libs/zlib:= x11-libs/cairo x11-libs/libX11 x11-libs/pango curl? ( net-misc/curl:= ) ffmpeg? ( media-video/ffmpeg:= ) gles2-only? ( media-libs/mesa:=[gles2] ) !gles2-only? ( >=media-libs/glew-1.5.3:= virtual/opengl:0= ) rtmp? ( media-video/rtmpdump:= ) SLOT=0 SRC_URI=https://github.com/lightspark/lightspark/archive/0.8.6.1.tar.gz -> lightspark-0.8.6.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d9ebdfd5ac18f002f3e0344cecb13813 diff --git a/metadata/md5-cache/www-servers/Manifest.gz b/metadata/md5-cache/www-servers/Manifest.gz index 7b449b5d6115..b9ac78494c16 100644 Binary files a/metadata/md5-cache/www-servers/Manifest.gz and b/metadata/md5-cache/www-servers/Manifest.gz differ diff --git a/metadata/md5-cache/www-servers/civetweb-1.12 b/metadata/md5-cache/www-servers/civetweb-1.12 index c07e0db74fc2..e57bc489ba79 100644 --- a/metadata/md5-cache/www-servers/civetweb-1.12 +++ b/metadata/md5-cache/www-servers/civetweb-1.12 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=ssl? ( dev-libs/openssl:0= ) SLOT=0 SRC_URI=https://github.com/civetweb/civetweb/archive/v1.12.tar.gz -> civetweb-1.12.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7d884e0ddc544dfeb35119c6c1a947a0 diff --git a/metadata/md5-cache/www-servers/h2o-2.2.6-r1 b/metadata/md5-cache/www-servers/h2o-2.2.6-r1 index a1395563de8d..e35369e89db1 100644 --- a/metadata/md5-cache/www-servers/h2o-2.2.6-r1 +++ b/metadata/md5-cache/www-servers/h2o-2.2.6-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=acct-group/h2o acct-user/h2o dev-lang/perl !sci-libs/libh2o sys-libs/zlib libh2o? ( dev-libs/libuv ) dev-libs/openssl:0= SLOT=0 SRC_URI=https://github.com/h2o/h2o/archive/v2.2.6.tar.gz -> h2o-2.2.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 ssl-cert 0fd8c7e0d851d0d0e54cdccce5210724 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 ssl-cert 0fd8c7e0d851d0d0e54cdccce5210724 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6c32a8a933c2684d7d27e7d9ba289cf2 diff --git a/metadata/md5-cache/www-servers/h2o-9999 b/metadata/md5-cache/www-servers/h2o-9999 index 15c6daa32cf7..edb31dfce2f0 100644 --- a/metadata/md5-cache/www-servers/h2o-9999 +++ b/metadata/md5-cache/www-servers/h2o-9999 @@ -10,5 +10,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=acct-group/h2o acct-user/h2o dev-lang/perl dev-libs/openssl:0= !sci-libs/libh2o sys-libs/libcap sys-libs/zlib libh2o? ( app-arch/brotli dev-libs/libuv ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 ssl-cert 0fd8c7e0d851d0d0e54cdccce5210724 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b ruby-single b9b5d136d97bf37058132e4231da02fa ruby-utils 2412b1152083f1e866ae6df229d51d30 ssl-cert 0fd8c7e0d851d0d0e54cdccce5210724 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=89459786a074db47ad63f6f8645f5021 diff --git a/metadata/md5-cache/www-servers/pound-3.0.2 b/metadata/md5-cache/www-servers/pound-3.0.2 index d6fdf641384d..261199f444c5 100644 --- a/metadata/md5-cache/www-servers/pound-3.0.2 +++ b/metadata/md5-cache/www-servers/pound-3.0.2 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-3 RDEPEND=dev-libs/libpcre:= dev-libs/libyaml:= dev-libs/nanomsg:= dev-libs/openssl:= net-libs/mbedtls:= elibc_musl? ( sys-libs/queue-standalone ) SLOT=0 SRC_URI=https://www.apsis.ch/pound/Pound-3.0.2.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e9a33380652f8a3b125f601dc03baaf7 diff --git a/metadata/md5-cache/x11-libs/Manifest.gz b/metadata/md5-cache/x11-libs/Manifest.gz index 4df802c6a7d8..242e50cdfe98 100644 Binary files a/metadata/md5-cache/x11-libs/Manifest.gz and b/metadata/md5-cache/x11-libs/Manifest.gz differ diff --git a/metadata/md5-cache/x11-libs/cairo-9999 b/metadata/md5-cache/x11-libs/cairo-9999 index f688ef737de4..e966a175d268 100644 --- a/metadata/md5-cache/x11-libs/cairo-9999 +++ b/metadata/md5-cache/x11-libs/cairo-9999 @@ -12,4 +12,4 @@ RDEPEND=>=dev-libs/lzo-2.06-r1:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,a RESTRICT=!test? ( test ) test SLOT=0 _eclasses_=git-r3 c57c50c922e121043788de0b40ada60a meson cd2865332c8d99e1da0655523ff4a28f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b -_md5_=b6ffb679680b2fca85bbf3385e934c5e +_md5_=af11912d1b80e83adfbd483195da8d55 diff --git a/metadata/md5-cache/x11-libs/fox-wrapper-3 b/metadata/md5-cache/x11-libs/fox-wrapper-3 index 7387eb1bdf09..18cb62201f84 100644 --- a/metadata/md5-cache/x11-libs/fox-wrapper-3 +++ b/metadata/md5-cache/x11-libs/fox-wrapper-3 @@ -2,7 +2,7 @@ DEFINED_PHASES=install DESCRIPTION=wrapper for fox-config to manage multiple versions EAPI=6 HOMEPAGE=https://wiki.gentoo.org/wiki/No_homepage -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 LICENSE=GPL-2 SLOT=0 -_md5_=8affb9125e63c040917cb263f3c0da07 +_md5_=20010efe54bc2315fdbb4b670fbc4ea5 diff --git a/metadata/md5-cache/x11-libs/gl2ps-1.4.2 b/metadata/md5-cache/x11-libs/gl2ps-1.4.2 index edb866da1fd4..736d162bf114 100644 --- a/metadata/md5-cache/x11-libs/gl2ps-1.4.2 +++ b/metadata/md5-cache/x11-libs/gl2ps-1.4.2 @@ -11,5 +11,5 @@ LICENSE=LGPL-2 RDEPEND=media-libs/freeglut x11-libs/libXmu png? ( media-libs/libpng:0= ) zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=http://geuz.org/gl2ps/src/gl2ps-1.4.2.tgz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3fb5196a6f930f40ad644da5f164f640 diff --git a/metadata/md5-cache/x11-libs/libfm-qt-1.1.0 b/metadata/md5-cache/x11-libs/libfm-qt-1.1.0 index 658589b2e811..bc2690815c5a 100644 --- a/metadata/md5-cache/x11-libs/libfm-qt-1.1.0 +++ b/metadata/md5-cache/x11-libs/libfm-qt-1.1.0 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2+ LGPL-2.1+ RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5= >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=lxde-base/menu-cache-1.1.0:= media-libs/libexif x11-libs/libxcb:= SLOT=0/7 SRC_URI=https://github.com/lxqt/libfm-qt/releases/download/1.1.0/libfm-qt-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ebd9110bd4e8f7214bed62836b155dd9 diff --git a/metadata/md5-cache/x11-libs/libfm-qt-1.2.0 b/metadata/md5-cache/x11-libs/libfm-qt-1.2.0 index d140f8afc307..8e7537e4f88c 100644 --- a/metadata/md5-cache/x11-libs/libfm-qt-1.2.0 +++ b/metadata/md5-cache/x11-libs/libfm-qt-1.2.0 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2+ LGPL-2.1+ RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5= >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=lxde-base/menu-cache-1.1.0:= media-libs/libexif x11-libs/libxcb:= SLOT=0/7 SRC_URI=https://github.com/lxqt/libfm-qt/releases/download/1.2.0/libfm-qt-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=42eede94d1307e0df8d3f3e3c731e196 diff --git a/metadata/md5-cache/x11-libs/qtermwidget-1.1.0 b/metadata/md5-cache/x11-libs/qtermwidget-1.1.0 index aa2804926df7..7cd528316957 100644 --- a/metadata/md5-cache/x11-libs/qtermwidget-1.1.0 +++ b/metadata/md5-cache/x11-libs/qtermwidget-1.1.0 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2 LGPL-2+ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 SLOT=0/1.1.0 SRC_URI=https://github.com/lxqt/qtermwidget/releases/download/1.1.0/qtermwidget-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a6c956efca1ddbb6201729bffee6fad2 diff --git a/metadata/md5-cache/x11-libs/qtermwidget-1.2.0 b/metadata/md5-cache/x11-libs/qtermwidget-1.2.0 index c3d053f90d34..c9b562f29d74 100644 --- a/metadata/md5-cache/x11-libs/qtermwidget-1.2.0 +++ b/metadata/md5-cache/x11-libs/qtermwidget-1.2.0 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2 LGPL-2+ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 SLOT=0/1.2.0 SRC_URI=https://github.com/lxqt/qtermwidget/releases/download/1.2.0/qtermwidget-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=38d19c3866e3260c5eb39217eca0840e diff --git a/metadata/md5-cache/x11-libs/qtermwidget-9999 b/metadata/md5-cache/x11-libs/qtermwidget-9999 index a52d3f63a1ed..2723f8698453 100644 --- a/metadata/md5-cache/x11-libs/qtermwidget-9999 +++ b/metadata/md5-cache/x11-libs/qtermwidget-9999 @@ -9,5 +9,5 @@ LICENSE=BSD GPL-2 LGPL-2+ PROPERTIES=live RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 SLOT=0/9999 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cfb42c3036691a70b7ece18a9f5814d5 diff --git a/metadata/md5-cache/x11-libs/qwt-5.2.3_p20210828 b/metadata/md5-cache/x11-libs/qwt-5.2.3_p20210828 index 9a24f04eaddd..82efd22e45a0 100644 --- a/metadata/md5-cache/x11-libs/qwt-5.2.3_p20210828 +++ b/metadata/md5-cache/x11-libs/qwt-5.2.3_p20210828 @@ -11,5 +11,5 @@ LICENSE=qwt RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 dev-qt/qtsvg:5 designer? ( dev-qt/designer:5 ) SLOT=5 SRC_URI=https://github.com/SciDAVis/qwt5-qt5/archive/f7519200f102676fb04fb7bd0be555e0a419d378.tar.gz -> qwt-5.2.3_p20210828.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dd07636222b4711795068aa21324ad25 diff --git a/metadata/md5-cache/x11-libs/qwtplot3d-0.2_p20210828 b/metadata/md5-cache/x11-libs/qwtplot3d-0.2_p20210828 index 9693192ac54a..c16bdc41ddce 100644 --- a/metadata/md5-cache/x11-libs/qwtplot3d-0.2_p20210828 +++ b/metadata/md5-cache/x11-libs/qwtplot3d-0.2_p20210828 @@ -11,5 +11,5 @@ LICENSE=ZLIB RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 x11-libs/gl2ps SLOT=0 SRC_URI=https://github.com/SciDAVis/qwtplot3d/archive/b2655743d30ed3185f3c0e2626b33a1d29655216.tar.gz -> qwtplot3d-0.2_p20210828.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 docs d8252aed4deb205674b4feefc1775bf3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=55da58adf3f9679de7cebe264b6c33f0 diff --git a/metadata/md5-cache/x11-libs/snorenotify-0.7.0-r1 b/metadata/md5-cache/x11-libs/snorenotify-0.7.0-r1 index a22a9205fff7..068746b0f315 100644 --- a/metadata/md5-cache/x11-libs/snorenotify-0.7.0-r1 +++ b/metadata/md5-cache/x11-libs/snorenotify-0.7.0-r1 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtdbus:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://kde/stable/snorenotify/0.7.0/src/snorenotify-0.7.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6c3f7ee435424183f50c12f491133e7b diff --git a/metadata/md5-cache/x11-libs/tslib-1.22 b/metadata/md5-cache/x11-libs/tslib-1.22 index 4535a6d00fb4..1dc0e36b5b72 100644 --- a/metadata/md5-cache/x11-libs/tslib-1.22 +++ b/metadata/md5-cache/x11-libs/tslib-1.22 @@ -11,5 +11,5 @@ LICENSE=LGPL-2 uinput? ( GPL-2+ ) RDEPEND=evdev? ( dev-libs/libevdev[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 SRC_URI=https://github.com/libts/tslib/releases/download/1.22/tslib-1.22.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=554a5751d3060959d72aa11819b4c918 diff --git a/metadata/md5-cache/x11-libs/vte-0.72.0 b/metadata/md5-cache/x11-libs/vte-0.72.0 new file mode 100644 index 000000000000..fac0c2a1417f --- /dev/null +++ b/metadata/md5-cache/x11-libs/vte-0.72.0 @@ -0,0 +1,17 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-libs/libxml2:2 dev-util/glib-utils gtk-doc? ( dev-util/gi-docgen ) >=sys-devel/gettext-0.19.8 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.56 ) ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=x11-libs/gtk+-3.24.22:3[introspection?] >=dev-libs/fribidi-1.0.0 >=dev-libs/glib-2.60:2 crypt? ( >=net-libs/gnutls-3.2.7:0= ) icu? ( dev-libs/icu:= ) >=x11-libs/pango-1.22.0 >=dev-libs/libpcre2-10.21:= systemd? ( >=sys-apps/systemd-220:= ) sys-libs/zlib introspection? ( >=dev-libs/gobject-introspection-1.56:= ) x11-libs/pango[introspection?] +DESCRIPTION=Library providing a virtual terminal emulator widget +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Terminal/VTE +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org meson python-any-r1 vala xdg +IUSE=+crypt debug gtk-doc +icu +introspection systemd +vala vanilla +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-3+ GPL-3+ +RDEPEND=>=x11-libs/gtk+-3.24.22:3[introspection?] >=dev-libs/fribidi-1.0.0 >=dev-libs/glib-2.60:2 crypt? ( >=net-libs/gnutls-3.2.7:0= ) icu? ( dev-libs/icu:= ) >=x11-libs/pango-1.22.0 >=dev-libs/libpcre2-10.21:= systemd? ( >=sys-apps/systemd-220:= ) sys-libs/zlib introspection? ( >=dev-libs/gobject-introspection-1.56:= ) x11-libs/pango[introspection?] ~gui-libs/vte-common-0.72.0[systemd?] +REQUIRED_USE=gtk-doc? ( introspection ) vala? ( introspection ) +SLOT=2.91 +SRC_URI=https://gitlab.gnome.org/GNOME/vte/-/archive/0.72.0/vte-0.72.0.tar.bz2 !vanilla? ( https://dev.gentoo.org/~mattst88/distfiles/vte-0.70.0-command-notify.patch.xz ) +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vala 2633382950a3a9ce912c9258150d5db8 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=f68fbd63d4f19ae31e0fe15f3891c441 diff --git a/metadata/md5-cache/x11-misc/Manifest.gz b/metadata/md5-cache/x11-misc/Manifest.gz index b72593c4ab12..183072cd0b2e 100644 Binary files a/metadata/md5-cache/x11-misc/Manifest.gz and b/metadata/md5-cache/x11-misc/Manifest.gz differ diff --git a/metadata/md5-cache/x11-misc/albert-0.17.2-r1 b/metadata/md5-cache/x11-misc/albert-0.17.2-r1 index dc8fad5d0d1d..3cdce0c916e8 100644 --- a/metadata/md5-cache/x11-misc/albert-0.17.2-r1 +++ b/metadata/md5-cache/x11-misc/albert-0.17.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=python-extensions? ( python ) RESTRICT=mirror bindist SLOT=0 SRC_URI=https://github.com/albertlauncher/albert/archive/v0.17.2.tar.gz -> albert-0.17.2.tar.gz https://github.com/albertlauncher/plugins/archive/b4cac28be7b265027b00279baba14086d97c4d07.tar.gz -> albert-0.17.2-plugins.tar.gz python? ( https://github.com/pybind/pybind11/archive/v2.6.1.tar.gz -> albert-0.17.2-pybind11-2.6.1.tar.gz ) python-extensions? ( https://github.com/albertlauncher/python/archive/7f571aceaf8e60eee8bb21e1ec4efa0e95523d13.tar.gz -> albert-0.17.2-python-extensions.tar.gz https://github.com/mqus/jetbrains-albert-plugin/archive/b7157473cc923fe4f15023c85a032eeab3627652.tar.gz -> albert-0.17.2-jetbrains-python-extension.tar.gz https://github.com/bergercookie/xkcd-albert-plugin/archive/bf88a964473d65b39c9e09eb48dabb847206f06f.tar.gz -> albert-0.17.2-xkcd-python-extension.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b417cbe36c8c9f6107254de5902bf1f1 diff --git a/metadata/md5-cache/x11-misc/albert-0.17.3 b/metadata/md5-cache/x11-misc/albert-0.17.3 index 9da955c6c271..04372efd699c 100644 --- a/metadata/md5-cache/x11-misc/albert-0.17.3 +++ b/metadata/md5-cache/x11-misc/albert-0.17.3 @@ -13,5 +13,5 @@ REQUIRED_USE=python-extensions? ( python ) python? ( ^^ ( python_single_target_p RESTRICT=mirror bindist SLOT=0 SRC_URI=https://github.com/albertlauncher/albert/archive/v0.17.3.tar.gz -> albert-0.17.3.tar.gz https://github.com/albertlauncher/plugins/archive/ee55048e138028b4889d71e0574e85b2c4d69541.tar.gz -> albert-plugins-ee55048e138028b4889d71e0574e85b2c4d69541.tar.gz python-extensions? ( https://github.com/albertlauncher/python/archive/7f571aceaf8e60eee8bb21e1ec4efa0e95523d13.tar.gz -> albert-python-extensions-7f571aceaf8e60eee8bb21e1ec4efa0e95523d13.tar.gz https://github.com/mqus/jetbrains-albert-plugin/archive/b7157473cc923fe4f15023c85a032eeab3627652.tar.gz -> albert-jetbrains-python-extension-b7157473cc923fe4f15023c85a032eeab3627652.tar.gz https://github.com/bergercookie/xkcd-albert-plugin/archive/bf88a964473d65b39c9e09eb48dabb847206f06f.tar.gz -> albert-xkcd-python-extension-bf88a964473d65b39c9e09eb48dabb847206f06f.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3d120cfb88bab9d6796cdab5fa2232af diff --git a/metadata/md5-cache/x11-misc/albert-0.17.5 b/metadata/md5-cache/x11-misc/albert-0.17.5 index d4f9c0749e94..aed90b853400 100644 --- a/metadata/md5-cache/x11-misc/albert-0.17.5 +++ b/metadata/md5-cache/x11-misc/albert-0.17.5 @@ -13,5 +13,5 @@ REQUIRED_USE=python-extensions? ( python ) python? ( ^^ ( python_single_target_p RESTRICT=mirror bindist SLOT=0 SRC_URI=https://github.com/albertlauncher/albert/archive/v0.17.5.tar.gz -> albert-0.17.5.tar.gz https://github.com/albertlauncher/plugins/archive/22881af568d70a3d4c16a901cd49c0e233c14a7a.tar.gz -> albert-plugins-22881af568d70a3d4c16a901cd49c0e233c14a7a.tar.gz python-extensions? ( https://github.com/albertlauncher/python/archive/7f571aceaf8e60eee8bb21e1ec4efa0e95523d13.tar.gz -> albert-python-extensions-7f571aceaf8e60eee8bb21e1ec4efa0e95523d13.tar.gz https://github.com/mqus/jetbrains-albert-plugin/archive/b7157473cc923fe4f15023c85a032eeab3627652.tar.gz -> albert-jetbrains-python-extension-b7157473cc923fe4f15023c85a032eeab3627652.tar.gz https://github.com/bergercookie/xkcd-albert-plugin/archive/bf88a964473d65b39c9e09eb48dabb847206f06f.tar.gz -> albert-xkcd-python-extension-bf88a964473d65b39c9e09eb48dabb847206f06f.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=52587736c3333b151df20e7b6f49cfca diff --git a/metadata/md5-cache/x11-misc/albert-0.17.6 b/metadata/md5-cache/x11-misc/albert-0.17.6 index 400681c4ab95..c9ebf1b140bc 100644 --- a/metadata/md5-cache/x11-misc/albert-0.17.6 +++ b/metadata/md5-cache/x11-misc/albert-0.17.6 @@ -13,5 +13,5 @@ REQUIRED_USE=python-extensions? ( python ) python? ( ^^ ( python_single_target_p RESTRICT=mirror bindist SLOT=0 SRC_URI=https://github.com/albertlauncher/albert/archive/v0.17.6.tar.gz -> albert-0.17.6.tar.gz https://github.com/albertlauncher/plugins/archive/1bc69826f8eabc215cdeb1765bb4750f84133d1b.tar.gz -> albert-plugins-1bc69826f8eabc215cdeb1765bb4750f84133d1b.tar.gz python-extensions? ( https://github.com/albertlauncher/python/archive/7f571aceaf8e60eee8bb21e1ec4efa0e95523d13.tar.gz -> albert-python-extensions-7f571aceaf8e60eee8bb21e1ec4efa0e95523d13.tar.gz https://github.com/mqus/jetbrains-albert-plugin/archive/b7157473cc923fe4f15023c85a032eeab3627652.tar.gz -> albert-jetbrains-python-extension-b7157473cc923fe4f15023c85a032eeab3627652.tar.gz https://github.com/bergercookie/xkcd-albert-plugin/archive/bf88a964473d65b39c9e09eb48dabb847206f06f.tar.gz -> albert-xkcd-python-extension-bf88a964473d65b39c9e09eb48dabb847206f06f.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=19762720107d839d19bef3ac01ed3b90 diff --git a/metadata/md5-cache/x11-misc/barrier-2.4.0 b/metadata/md5-cache/x11-misc/barrier-2.4.0 index b57024e823d0..a3271b2988e5 100644 --- a/metadata/md5-cache/x11-misc/barrier-2.4.0 +++ b/metadata/md5-cache/x11-misc/barrier-2.4.0 @@ -13,5 +13,5 @@ RDEPEND=net-misc/curl x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/li RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/debauchee/barrier/archive/v2.4.0.tar.gz -> barrier-2.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cf6828eaa6ca135843955c4100e385cf diff --git a/metadata/md5-cache/x11-misc/birdtray-1.9.0 b/metadata/md5-cache/x11-misc/birdtray-1.9.0 index 3778c2baebba..317229331a3e 100644 --- a/metadata/md5-cache/x11-misc/birdtray-1.9.0 +++ b/metadata/md5-cache/x11-misc/birdtray-1.9.0 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=dev-db/sqlite:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 x11-libs/libX11 SLOT=0 SRC_URI=https://github.com/gyunaev/birdtray/archive/v1.9.0.tar.gz -> birdtray-1.9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=e7ec0037fc40f2cadb542cfcb8912c72 diff --git a/metadata/md5-cache/x11-misc/birdtray-9999 b/metadata/md5-cache/x11-misc/birdtray-9999 index cbcef0140c0b..09045e4c7b4b 100644 --- a/metadata/md5-cache/x11-misc/birdtray-9999 +++ b/metadata/md5-cache/x11-misc/birdtray-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-3 PROPERTIES=live RDEPEND=dev-db/sqlite:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 x11-libs/libX11 SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=cb7a88acc13fa6ede09a97cd2cbc3a04 diff --git a/metadata/md5-cache/x11-misc/copyq-4.1.0 b/metadata/md5-cache/x11-misc/copyq-4.1.0 index 4f8ad205fec1..fe194c9df549 100644 --- a/metadata/md5-cache/x11-misc/copyq-4.1.0 +++ b/metadata/md5-cache/x11-misc/copyq-4.1.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/wayland dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 d RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hluk/CopyQ/archive/v4.1.0.tar.gz -> copyq-4.1.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=419535f988473404a1cb203edd21d95a diff --git a/metadata/md5-cache/x11-misc/copyq-5.0.0 b/metadata/md5-cache/x11-misc/copyq-5.0.0 index 7293f0576350..22e52b5e2d16 100644 --- a/metadata/md5-cache/x11-misc/copyq-5.0.0 +++ b/metadata/md5-cache/x11-misc/copyq-5.0.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/wayland dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 d RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hluk/CopyQ/archive/v5.0.0.tar.gz -> copyq-5.0.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=08ad633dbd4b0ff8d59451da4d9a0a04 diff --git a/metadata/md5-cache/x11-misc/copyq-6.4.0 b/metadata/md5-cache/x11-misc/copyq-6.4.0 index bbc5c6c803c6..a48b3cfd403d 100644 --- a/metadata/md5-cache/x11-misc/copyq-6.4.0 +++ b/metadata/md5-cache/x11-misc/copyq-6.4.0 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/wayland x11-libs/libX11 x11-libs/libXfixes x11-libs/libXtst !qt RESTRICT=qt6? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/hluk/copyq/archive/v6.4.0.tar.gz -> copyq-6.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a08cc34d72a60f996315b475a70581c0 diff --git a/metadata/md5-cache/x11-misc/flow-pomodoro-1.2.0-r1 b/metadata/md5-cache/x11-misc/flow-pomodoro-1.2.0-r1 index 393d3cb1c6bb..3af4da48ffd7 100644 --- a/metadata/md5-cache/x11-misc/flow-pomodoro-1.2.0-r1 +++ b/metadata/md5-cache/x11-misc/flow-pomodoro-1.2.0-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtquickcontrols:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://github.com/iamsergio/flow-pomodoro/archive/v1.2.0.tar.gz -> flow-pomodoro-1.2.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=57492a0f1e6109d6e74bd60d61fad4e7 diff --git a/metadata/md5-cache/x11-misc/j4-dmenu-desktop-2.18-r1 b/metadata/md5-cache/x11-misc/j4-dmenu-desktop-2.18-r1 index b5cbebd8ac97..4af45c870869 100644 --- a/metadata/md5-cache/x11-misc/j4-dmenu-desktop-2.18-r1 +++ b/metadata/md5-cache/x11-misc/j4-dmenu-desktop-2.18-r1 @@ -12,5 +12,5 @@ RDEPEND=dmenu? ( x11-misc/dmenu ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/enkore/j4-dmenu-desktop/archive/r2.18.tar.gz -> j4-dmenu-desktop-2.18.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a738522db4e11270298ce3e9295abc2f diff --git a/metadata/md5-cache/x11-misc/kronometer-2.3.0 b/metadata/md5-cache/x11-misc/kronometer-2.3.0 index 7e7d9ea4db13..d5b9cd0ab404 100644 --- a/metadata/md5-cache/x11-misc/kronometer-2.3.0 +++ b/metadata/md5-cache/x11-misc/kronometer-2.3.0 @@ -13,5 +13,5 @@ RDEPEND=>=dev-qt/qtdbus-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtwidgets-5.15 RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/kronometer/2.3.0/src/kronometer-2.3.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 ecm 18f0e802ccc5d9ffa16b79cdc0c19d4e flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2c030e10a2130b98e76614a4db70ea3d diff --git a/metadata/md5-cache/x11-misc/obconf-qt-0.16.2 b/metadata/md5-cache/x11-misc/obconf-qt-0.16.2 index 3b3c3c56d680..dc0299bf17c1 100644 --- a/metadata/md5-cache/x11-misc/obconf-qt-0.16.2 +++ b/metadata/md5-cache/x11-misc/obconf-qt-0.16.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=dev-libs/glib:2 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 x11-libs/libX11 x11-wm/openbox:3 SLOT=0 SRC_URI=https://github.com/lxqt/obconf-qt/releases/download/0.16.2/obconf-qt-0.16.2.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4520ce3e5266d73d65e5506b899005cb diff --git a/metadata/md5-cache/x11-misc/pcmanfm-qt-1.1.0 b/metadata/md5-cache/x11-misc/pcmanfm-qt-1.1.0 index 1447789e8725..93162e0e7ab8 100644 --- a/metadata/md5-cache/x11-misc/pcmanfm-qt-1.1.0 +++ b/metadata/md5-cache/x11-misc/pcmanfm-qt-1.1.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ LGPL-2.1+ RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 sys-apps/util-linux virtual/freedesktop-icon-theme =x11-libs/libfm-qt-1.1*:= x11-libs/libxcb:= x11-misc/xdg-utils >=lxde-base/lxmenu-data-0.1.5 SLOT=0 SRC_URI=https://github.com/lxqt/pcmanfm-qt/releases/download/1.1.0/pcmanfm-qt-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3eec2063e3d7ceb6dadc0021815540fe diff --git a/metadata/md5-cache/x11-misc/pcmanfm-qt-1.2.0 b/metadata/md5-cache/x11-misc/pcmanfm-qt-1.2.0 index b589a3f7c8d4..9e89c6018bc9 100644 --- a/metadata/md5-cache/x11-misc/pcmanfm-qt-1.2.0 +++ b/metadata/md5-cache/x11-misc/pcmanfm-qt-1.2.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ LGPL-2.1+ RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 sys-apps/util-linux virtual/freedesktop-icon-theme =x11-libs/libfm-qt-1.2*:= x11-libs/libxcb:= x11-misc/xdg-utils >=lxde-base/lxmenu-data-0.1.5 SLOT=0 SRC_URI=https://github.com/lxqt/pcmanfm-qt/releases/download/1.2.0/pcmanfm-qt-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=54950d959ca7d4f5f043b6217828ce63 diff --git a/metadata/md5-cache/x11-misc/polybar-3.6.3-r2 b/metadata/md5-cache/x11-misc/polybar-3.6.3-r2 index 3d9795ddd469..0fa9294e3d1c 100644 --- a/metadata/md5-cache/x11-misc/polybar-3.6.3-r2 +++ b/metadata/md5-cache/x11-misc/polybar-3.6.3-r2 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://github.com/polybar/polybar/releases/download/3.6.3/polybar-3.6.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b5f6824c012013b14f14cdd79ae8a3d3 diff --git a/metadata/md5-cache/x11-misc/projecteur-0.9.2 b/metadata/md5-cache/x11-misc/projecteur-0.9.2 index 5b9e0a3063a1..fd73488b9108 100644 --- a/metadata/md5-cache/x11-misc/projecteur-0.9.2 +++ b/metadata/md5-cache/x11-misc/projecteur-0.9.2 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-qt/qtcore:5 dev-qt/qtdeclarative:5 || ( dev-qt/qtgui:5[X(-)] dev-qt/qtgui:5[xcb(-)] ) dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 virtual/udev x11-libs/libX11 SLOT=0 SRC_URI=https://github.com/jahnf/Projecteur/archive/v0.9.2.tar.gz -> projecteur-0.9.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=28f55d4a08fce5624ce925a6c9749e0f diff --git a/metadata/md5-cache/x11-misc/qcomicbook-0.9.1 b/metadata/md5-cache/x11-misc/qcomicbook-0.9.1 index d95126f1c7c1..2ee0e7df1d61 100644 --- a/metadata/md5-cache/x11-misc/qcomicbook-0.9.1 +++ b/metadata/md5-cache/x11-misc/qcomicbook-0.9.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=app-text/poppler[qt5] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 SLOT=0 SRC_URI=https://github.com/stolowski/QComicBook/archive/0.9.1.tar.gz -> qcomicbook-0.9.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b plocale 950fbaec7deeba41b5bcc0572cca99b9 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9b85c1c3fe939f17d4cc2b5c09ce9952 diff --git a/metadata/md5-cache/x11-misc/qlipper-5.1.2 b/metadata/md5-cache/x11-misc/qlipper-5.1.2 index 950b561a792b..f46fd41c61dd 100644 --- a/metadata/md5-cache/x11-misc/qlipper-5.1.2 +++ b/metadata/md5-cache/x11-misc/qlipper-5.1.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 x11-libs/libX11 SLOT=0 SRC_URI=https://github.com/pvanek/qlipper/archive/5.1.2.tar.gz -> qlipper-5.1.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8ce237b741c727cd81633fedc0d9d43f diff --git a/metadata/md5-cache/x11-misc/qps-2.5.0 b/metadata/md5-cache/x11-misc/qps-2.5.0 index 8cc20d629631..dd4ec50c6b3a 100644 --- a/metadata/md5-cache/x11-misc/qps-2.5.0 +++ b/metadata/md5-cache/x11-misc/qps-2.5.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ LGPL-2.1+ QPL-1.0 RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=lxqt-base/liblxqt-1.1:= SLOT=0 SRC_URI=https://github.com/lxqt/qps/releases/download/2.5.0/qps-2.5.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fc706b68d0ef2694b0159395f24127cd diff --git a/metadata/md5-cache/x11-misc/qps-2.6.0 b/metadata/md5-cache/x11-misc/qps-2.6.0 index 7e19cd4d7ae8..5459035b59a9 100644 --- a/metadata/md5-cache/x11-misc/qps-2.6.0 +++ b/metadata/md5-cache/x11-misc/qps-2.6.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ LGPL-2.1+ QPL-1.0 RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=lxqt-base/liblxqt-1.2:= SLOT=0 SRC_URI=https://github.com/lxqt/qps/releases/download/2.6.0/qps-2.6.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=3fd652bf0d5fde0a7f3a578b1800505c diff --git a/metadata/md5-cache/x11-misc/qt5ct-1.5 b/metadata/md5-cache/x11-misc/qt5ct-1.5 index 5efddec24865..3b7a716c3e79 100644 --- a/metadata/md5-cache/x11-misc/qt5ct-1.5 +++ b/metadata/md5-cache/x11-misc/qt5ct-1.5 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5=[dbus] dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://download.sourceforge.net/qt5ct/qt5ct-1.5.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=bdd93c3f0ad8378c99312f60f0fc9a59 diff --git a/metadata/md5-cache/x11-misc/qt5ct-1.6 b/metadata/md5-cache/x11-misc/qt5ct-1.6 index e2782718fc16..112b1aa08501 100644 --- a/metadata/md5-cache/x11-misc/qt5ct-1.6 +++ b/metadata/md5-cache/x11-misc/qt5ct-1.6 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5=[dbus] dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://download.sourceforge.net/qt5ct/qt5ct-1.6.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43f2686ac231078f8f4e3d445a1467ea diff --git a/metadata/md5-cache/x11-misc/qt5ct-1.7 b/metadata/md5-cache/x11-misc/qt5ct-1.7 index 0f20f3e5ea93..8c6b035a5045 100644 --- a/metadata/md5-cache/x11-misc/qt5ct-1.7 +++ b/metadata/md5-cache/x11-misc/qt5ct-1.7 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5=[dbus] dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://download.sourceforge.net/qt5ct/qt5ct-1.7.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=43f2686ac231078f8f4e3d445a1467ea diff --git a/metadata/md5-cache/x11-misc/qterm-0.7.3-r1 b/metadata/md5-cache/x11-misc/qterm-0.7.3-r1 index 7103ec39580f..f4337486200f 100644 --- a/metadata/md5-cache/x11-misc/qterm-0.7.3-r1 +++ b/metadata/md5-cache/x11-misc/qterm-0.7.3-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtscript:5[scripttools] dev-qt/qtwidgets:5 dev-qt/qtxml:5 x11-libs/libX11 dev-libs/openssl:= SLOT=0 SRC_URI=https://github.com/qterm/qterm/archive/0.7.3.tar.gz -> qterm-0.7.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d9b67401972aca3c25e5907b6aff37cd diff --git a/metadata/md5-cache/x11-misc/qtfm-99999 b/metadata/md5-cache/x11-misc/qtfm-99999 index 80a01c329b71..e69c489b0ab3 100644 --- a/metadata/md5-cache/x11-misc/qtfm-99999 +++ b/metadata/md5-cache/x11-misc/qtfm-99999 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 sys-apps/file dbus? ( dev-qt/qtdbus:5 ) ffmpeg? ( media-video/ffmpeg ) imagemagick? ( >=media-gfx/imagemagick-7:= ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=472c5376a93c2bb42119d69e29bfffa3 diff --git a/metadata/md5-cache/x11-misc/qxkb-0.5.1_pre20190821 b/metadata/md5-cache/x11-misc/qxkb-0.5.1_pre20190821 index dbf8c7e8833f..91a3604f5a73 100644 --- a/metadata/md5-cache/x11-misc/qxkb-0.5.1_pre20190821 +++ b/metadata/md5-cache/x11-misc/qxkb-0.5.1_pre20190821 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 x11-libs/libX11 x11-libs/libxkbfile x11-apps/setxkbmap SLOT=0 SRC_URI=https://github.com/disels/qxkb/archive/ee9a1eee9dc810b33b931601203051d841bc3e7a.tar.gz -> qxkb-0.5.1_pre20190821.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f3d19af1e83e402fc1d037538be8b214 diff --git a/metadata/md5-cache/x11-misc/read-edid-3.0.2-r1 b/metadata/md5-cache/x11-misc/read-edid-3.0.2-r1 index 76954fc3ef12..896972fcd91b 100644 --- a/metadata/md5-cache/x11-misc/read-edid-3.0.2-r1 +++ b/metadata/md5-cache/x11-misc/read-edid-3.0.2-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=vbe-mode? ( >=dev-libs/libx86-1.1 ) SLOT=0 SRC_URI=http://www.polypux.org/projects/read-edid/read-edid-3.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9535a84c763d6d284c17954616c54db1 diff --git a/metadata/md5-cache/x11-misc/rofi-file-browser-extended-1.3.1-r1 b/metadata/md5-cache/x11-misc/rofi-file-browser-extended-1.3.1-r1 index c023c6a3dc90..940458eb7592 100644 --- a/metadata/md5-cache/x11-misc/rofi-file-browser-extended-1.3.1-r1 +++ b/metadata/md5-cache/x11-misc/rofi-file-browser-extended-1.3.1-r1 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=dev-libs/glib:2 x11-misc/rofi SLOT=0 SRC_URI=https://github.com/marvinkreis/rofi-file-browser-extended/archive/refs/tags/1.3.1.tar.gz -> rofi-file-browser-extended-1.3.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=862a0a8c99516d3a1e902fd08afeaffd diff --git a/metadata/md5-cache/x11-misc/screengrab-2.4.0 b/metadata/md5-cache/x11-misc/screengrab-2.4.0 index 9ba68ea8204f..8e8de0ddf663 100644 --- a/metadata/md5-cache/x11-misc/screengrab-2.4.0 +++ b/metadata/md5-cache/x11-misc/screengrab-2.4.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ LGPL-2.1+ RDEPEND=>=dev-libs/libqtxdg-3.9.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtnetwork-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 kde-frameworks/kwindowsystem:5[X] x11-libs/libX11 x11-libs/libxcb:= SLOT=0 SRC_URI=https://github.com/lxqt/screengrab/releases/download/2.4.0/screengrab-2.4.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9373fea3efb003b7ea059a0cca897a13 diff --git a/metadata/md5-cache/x11-misc/screengrab-2.5.0 b/metadata/md5-cache/x11-misc/screengrab-2.5.0 index bcc219c9f8f1..60ede5753c4e 100644 --- a/metadata/md5-cache/x11-misc/screengrab-2.5.0 +++ b/metadata/md5-cache/x11-misc/screengrab-2.5.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ LGPL-2.1+ RDEPEND=>=dev-libs/libqtxdg-3.10.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtnetwork-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 kde-frameworks/kwindowsystem:5[X] x11-libs/libX11 x11-libs/libxcb:= SLOT=0 SRC_URI=https://github.com/lxqt/screengrab/releases/download/2.5.0/screengrab-2.5.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8acc626b034558b3f3ce9810f1deb57c diff --git a/metadata/md5-cache/x11-misc/sddm-0.18.1-r8 b/metadata/md5-cache/x11-misc/sddm-0.18.1-r8 index 752a5ecab7cc..a4ad4bb090a3 100644 --- a/metadata/md5-cache/x11-misc/sddm-0.18.1-r8 +++ b/metadata/md5-cache/x11-misc/sddm-0.18.1-r8 @@ -13,5 +13,5 @@ REQUIRED_USE=?? ( elogind systemd ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/sddm/sddm/releases/download/v0.18.1/sddm-0.18.1.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 linux-info ecb03306c95c6ccc55852c98abcfcc64 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9998f993101d2554186a3eba42d493e1 diff --git a/metadata/md5-cache/x11-misc/slim-1.3.6-r5 b/metadata/md5-cache/x11-misc/slim-1.3.6-r5 index 6ecbc77157ad..4954ae15bf96 100644 --- a/metadata/md5-cache/x11-misc/slim-1.3.6-r5 +++ b/metadata/md5-cache/x11-misc/slim-1.3.6-r5 @@ -12,5 +12,5 @@ PDEPEND=branding? ( >=x11-themes/slim-themes-1.2.3a-r3 ) RDEPEND=x11-libs/libXmu x11-libs/libX11 x11-libs/libXpm x11-libs/libXft x11-libs/libXrandr media-libs/libpng:0= virtual/jpeg:= x11-apps/sessreg pam? ( sys-libs/pam ) SLOT=0 SRC_URI=mirror://sourceforge/project/slim.berlios/slim-1.3.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f375aa26eccce9348019d5d45b0f65f1 diff --git a/metadata/md5-cache/x11-misc/slim-1.3.9 b/metadata/md5-cache/x11-misc/slim-1.3.9 index 2387f9454363..be7e16e7dbab 100644 --- a/metadata/md5-cache/x11-misc/slim-1.3.9 +++ b/metadata/md5-cache/x11-misc/slim-1.3.9 @@ -12,5 +12,5 @@ PDEPEND=branding? ( >=x11-themes/slim-themes-1.2.3a-r3 ) RDEPEND=media-libs/libjpeg-turbo:= media-libs/libpng:0= x11-apps/sessreg x11-libs/libX11 x11-libs/libXft x11-libs/libXmu x11-libs/libXpm x11-libs/libXrandr pam? ( sys-libs/pam x11-libs/libXext ) SLOT=0 SRC_URI=mirror://sourceforge/project/slim-fork/slim-1.3.9.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=4af49983f1d45705b0f6721e12dfbf65 diff --git a/metadata/md5-cache/x11-misc/slim-1.4.0 b/metadata/md5-cache/x11-misc/slim-1.4.0 index 8e75122cc6e7..51995e4bf6fd 100644 --- a/metadata/md5-cache/x11-misc/slim-1.4.0 +++ b/metadata/md5-cache/x11-misc/slim-1.4.0 @@ -12,5 +12,5 @@ PDEPEND=branding? ( >=x11-themes/slim-themes-1.2.3a-r3 ) RDEPEND=media-libs/libjpeg-turbo:= media-libs/libpng:0= x11-apps/sessreg x11-libs/libX11 x11-libs/libXft x11-libs/libXmu x11-libs/libXpm x11-libs/libXrandr pam? ( sys-libs/pam x11-libs/libXext ) SLOT=0 SRC_URI=mirror://sourceforge/project/slim-fork/slim-1.4.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6012f2b78c5858243aaa9b2c146a76a2 diff --git a/metadata/md5-cache/x11-misc/slim-9999 b/metadata/md5-cache/x11-misc/slim-9999 index 87b661f36f10..4c5a821ffa82 100644 --- a/metadata/md5-cache/x11-misc/slim-9999 +++ b/metadata/md5-cache/x11-misc/slim-9999 @@ -11,5 +11,5 @@ PDEPEND=branding? ( >=x11-themes/slim-themes-1.2.3a-r3 ) PROPERTIES=live RDEPEND=media-libs/libjpeg-turbo:= media-libs/libpng:0= x11-apps/sessreg x11-libs/libX11 x11-libs/libXft x11-libs/libXmu x11-libs/libXpm x11-libs/libXrandr pam? ( sys-libs/pam x11-libs/libXext ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 subversion a98eebf2efc83b38f8d1982b8a522e75 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pam 01b77091d5b6560b0aeafa7fbb1bd818 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 subversion a98eebf2efc83b38f8d1982b8a522e75 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6012f2b78c5858243aaa9b2c146a76a2 diff --git a/metadata/md5-cache/x11-misc/slop-7.6 b/metadata/md5-cache/x11-misc/slop-7.6 index f09ddfcb2927..eed2cedf8793 100644 --- a/metadata/md5-cache/x11-misc/slop-7.6 +++ b/metadata/md5-cache/x11-misc/slop-7.6 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/icu:= x11-libs/libX11 x11-libs/libXext opengl? ( media-libs/glew:0= media-libs/libglvnd virtual/opengl x11-libs/libXrender:= ) SLOT=0/7.6 SRC_URI=https://github.com/naelstrof/slop/archive/v7.6.tar.gz -> slop-7.6.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7b6230fd54718036de03339681d4d1c0 diff --git a/metadata/md5-cache/x11-misc/synergy-1.14.1.32 b/metadata/md5-cache/x11-misc/synergy-1.14.1.32 index 3798ceef0497..3c8fc7a462cb 100644 --- a/metadata/md5-cache/x11-misc/synergy-1.14.1.32 +++ b/metadata/md5-cache/x11-misc/synergy-1.14.1.32 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib dev-libs/openssl:= dev-qt/qtdbus:5 x11-libs/gdk-pixbuf x11 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/symless/synergy-core/archive/1.14.1.32-stable.tar.gz -> synergy-core-1.14.1.32-stable.tar.gz https://dev.gentoo.org/~mgorny/dist/synergy-1.12.0.png test? ( https://github.com/google/googletest/archive/18f8200e3079b0e54fa00cb7ac55d4c39dcf6da6.tar.gz -> googletest-18f8200e3079b0e54fa00cb7ac55d4c39dcf6da6.tar.gz ) -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=a44640ea53aca19a228a3a69a722f4cb diff --git a/metadata/md5-cache/x11-misc/tint2-17.0.2 b/metadata/md5-cache/x11-misc/tint2-17.0.2 index acbd05d23bfd..a75d79e36123 100644 --- a/metadata/md5-cache/x11-misc/tint2-17.0.2 +++ b/metadata/md5-cache/x11-misc/tint2-17.0.2 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 svg? ( gnome-base/librsvg:2 ) >=media-libs/imlib2-1.4.2[X,png] x11-libs/cairo[X] x11-libs/pango tint2conf? ( x11-libs/gtk+:3 ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXinerama >=x11-libs/libXrandr-1.3 x11-libs/libXrender startup-notification? ( x11-libs/startup-notification ) SLOT=0 SRC_URI=https://gitlab.com/o9000/tint2/-/archive/v17.0.2/tint2-v17.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=46b9669b8363d0f9df6957975a4c4b53 diff --git a/metadata/md5-cache/x11-misc/tint2-17.1.3 b/metadata/md5-cache/x11-misc/tint2-17.1.3 index 69e3c4deb15b..2c6af660667c 100644 --- a/metadata/md5-cache/x11-misc/tint2-17.1.3 +++ b/metadata/md5-cache/x11-misc/tint2-17.1.3 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 svg? ( gnome-base/librsvg:2 ) >=media-libs/imlib2-1.4.2[X,png] x11-libs/cairo[X] x11-libs/pango tint2conf? ( x11-libs/gtk+:3 ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXinerama >=x11-libs/libXrandr-1.3 x11-libs/libXrender startup-notification? ( x11-libs/startup-notification ) debug? ( sys-libs/libunwind ) SLOT=0 SRC_URI=https://gitlab.com/nick87720z/tint2/-/archive/v17.1.3/tint2-v17.1.3.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=7dc2d38cffd66e4397e9bede5096f723 diff --git a/metadata/md5-cache/x11-misc/virtualgl-3.0.1 b/metadata/md5-cache/x11-misc/virtualgl-3.0.1 index 1221e3c2056a..3d979b05efa2 100644 --- a/metadata/md5-cache/x11-misc/virtualgl-3.0.1 +++ b/metadata/md5-cache/x11-misc/virtualgl-3.0.1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 wxWinLL-3.1 FLTK RDEPEND=ssl? ( dev-libs/openssl: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/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(-)?] x11-libs/libX11[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[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/libXtst[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/libXv[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(-)?] virtual/glu[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/opencl[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/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] amd64? ( abi_x86_32? ( >=media-libs/libjpeg-turbo-1.3.0-r3[abi_x86_32] >=x11-libs/libX11-1.6.2[abi_x86_32] >=x11-libs/libXext-1.3.2[abi_x86_32] >=x11-libs/libXtst-1.2.3[abi_x86_32] >=x11-libs/libXv-1.0.10[abi_x86_32] x11-libs/xcb-util-keysyms[abi_x86_32] >=virtual/glu-9.0-r1[abi_x86_32] virtual/opencl[abi_x86_32] >=virtual/opengl-7.0-r1[abi_x86_32] ) ) SLOT=0 SRC_URI=mirror://sourceforge/project/virtualgl/3.0.1/VirtualGL-3.0.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b65faed1693b4aa4ba1eadd2ce8135b2 diff --git a/metadata/md5-cache/x11-misc/virtualgl-3.0.2 b/metadata/md5-cache/x11-misc/virtualgl-3.0.2 index 868301299bbc..3ad652178987 100644 --- a/metadata/md5-cache/x11-misc/virtualgl-3.0.2 +++ b/metadata/md5-cache/x11-misc/virtualgl-3.0.2 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 wxWinLL-3.1 FLTK RDEPEND=ssl? ( dev-libs/openssl: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/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(-)?] x11-libs/libX11[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[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/libXtst[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/libXv[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(-)?] virtual/glu[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/opencl[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/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] amd64? ( abi_x86_32? ( >=media-libs/libjpeg-turbo-1.3.0-r3[abi_x86_32] >=x11-libs/libX11-1.6.2[abi_x86_32] >=x11-libs/libXext-1.3.2[abi_x86_32] >=x11-libs/libXtst-1.2.3[abi_x86_32] >=x11-libs/libXv-1.0.10[abi_x86_32] x11-libs/xcb-util-keysyms[abi_x86_32] >=virtual/glu-9.0-r1[abi_x86_32] virtual/opencl[abi_x86_32] >=virtual/opengl-7.0-r1[abi_x86_32] ) ) SLOT=0 SRC_URI=mirror://sourceforge/project/virtualgl/3.0.2/VirtualGL-3.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=76739362cbc3c54ddc136ca138f1b532 diff --git a/metadata/md5-cache/x11-misc/xcalib-0.10 b/metadata/md5-cache/x11-misc/xcalib-0.10 index 2a36514c6ec4..1d5ef24d229b 100644 --- a/metadata/md5-cache/x11-misc/xcalib-0.10 +++ b/metadata/md5-cache/x11-misc/xcalib-0.10 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXrandr x11-libs/libXxf86vm SLOT=0 SRC_URI=https://github.com/OpenICC/xcalib/archive/0.10.tar.gz -> xcalib-0.10.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=597b0c07d2e0414b0f5de3cc90c02e7e diff --git a/metadata/md5-cache/x11-misc/xsettingsd-1.0.2 b/metadata/md5-cache/x11-misc/xsettingsd-1.0.2 index ee6274a40263..ef6b5341a6fa 100644 --- a/metadata/md5-cache/x11-misc/xsettingsd-1.0.2 +++ b/metadata/md5-cache/x11-misc/xsettingsd-1.0.2 @@ -12,5 +12,5 @@ RDEPEND=x11-libs/libX11 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/derat/xsettingsd/archive/v1.0.2.tar.gz -> xsettingsd-1.0.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=c1c633a74f641d4dfe8a78ed2c346838 diff --git a/metadata/md5-cache/x11-misc/xss-lock-0.3.0_p20140302-r2 b/metadata/md5-cache/x11-misc/xss-lock-0.3.0_p20140302-r2 index 0488f1d53f66..f27e7f17256f 100644 --- a/metadata/md5-cache/x11-misc/xss-lock-0.3.0_p20140302-r2 +++ b/metadata/md5-cache/x11-misc/xss-lock-0.3.0_p20140302-r2 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/glib:2 x11-libs/libxcb x11-libs/xcb-util SLOT=0 SRC_URI=https://bitbucket.org/raymonad/xss-lock/get/1e158fb20108058dbd62bd51d8e8c003c0a48717.tar.bz2 -> xss-lock-0.3.0_p20140302.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b vcs-snapshot eab6d8533446763c2e9777d8bbd1594e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f2883ce6a021afda5645163c409e0904 diff --git a/metadata/md5-cache/x11-plugins/Manifest.gz b/metadata/md5-cache/x11-plugins/Manifest.gz index 4884c7f17d53..f84eabe26f50 100644 Binary files a/metadata/md5-cache/x11-plugins/Manifest.gz and b/metadata/md5-cache/x11-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/x11-plugins/wmcpuwatch-0.2-r1 b/metadata/md5-cache/x11-plugins/wmcpuwatch-0.2-r1 index 49c93fd06579..25ab13a7b47d 100644 --- a/metadata/md5-cache/x11-plugins/wmcpuwatch-0.2-r1 +++ b/metadata/md5-cache/x11-plugins/wmcpuwatch-0.2-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=>=x11-libs/libdockapp-0.7:= SLOT=0 SRC_URI=https://bitbucket-archive.softwareheritage.org/static/83/8395d160-de4b-42d6-a7d9-939eade4f58a/attachments/wmcpuwatch-0.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fd6308970a3e2253d4d4d02994ee0997 diff --git a/metadata/md5-cache/x11-terms/Manifest.gz b/metadata/md5-cache/x11-terms/Manifest.gz index 3076142d6d8f..044e4f82f8d9 100644 Binary files a/metadata/md5-cache/x11-terms/Manifest.gz and b/metadata/md5-cache/x11-terms/Manifest.gz differ diff --git a/metadata/md5-cache/x11-terms/gnome-terminal-3.48.0 b/metadata/md5-cache/x11-terms/gnome-terminal-3.48.0 new file mode 100644 index 000000000000..8258c91a526f --- /dev/null +++ b/metadata/md5-cache/x11-terms/gnome-terminal-3.48.0 @@ -0,0 +1,16 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-libs/libxml2:2 dev-libs/libxslt dev-util/gdbus-codegen dev-util/glib-utils dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=dev-libs/glib-2.52:2 >=x11-libs/gtk+-3.22.27:3 >=x11-libs/vte-0.71.92:2.91[!vanilla?] >=dev-libs/libpcre2-10 >=gnome-base/gsettings-desktop-schemas-0.1.0 sys-apps/util-linux gnome-shell? ( gnome-base/gnome-shell ) nautilus? ( >=gnome-base/nautilus-43.0 ) +DESCRIPTION=A terminal emulator for GNOME +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Terminal +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson python-any-r1 readme.gentoo-r1 xdg +IUSE=debug +gnome-shell +nautilus vanilla +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-3+ +RDEPEND=>=dev-libs/glib-2.52:2 >=x11-libs/gtk+-3.22.27:3 >=x11-libs/vte-0.71.92:2.91[!vanilla?] >=dev-libs/libpcre2-10 >=gnome-base/gsettings-desktop-schemas-0.1.0 sys-apps/util-linux gnome-shell? ( gnome-base/gnome-shell ) nautilus? ( >=gnome-base/nautilus-43.0 ) +SLOT=0 +SRC_URI=https://gitlab.gnome.org/GNOME/gnome-terminal/-/archive/3.48.0/gnome-terminal-3.48.0.tar.bz2 !vanilla? ( https://dev.gentoo.org/~mattst88/distfiles/gnome-terminal-3.46.2-cntr-ntfy-autottl-ts.patch.xz ) +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a gnome2-utils 3eaa1386ddbbbbb3951256d4b170fba3 meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_md5_=8ebd71871c6f19a7c3511d7361de95e3 diff --git a/metadata/md5-cache/x11-terms/qterminal-1.1.0 b/metadata/md5-cache/x11-terms/qterminal-1.1.0 index cf2b02d55b03..a81d57256762 100644 --- a/metadata/md5-cache/x11-terms/qterminal-1.1.0 +++ b/metadata/md5-cache/x11-terms/qterminal-1.1.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 x11-libs/libX11 ~x11-libs/qtermwidget-1.1.0:= SLOT=0 SRC_URI=https://github.com/lxqt/qterminal/releases/download/1.1.0/qterminal-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=9d08ac5da4ea6fea041cf3d8079b206b diff --git a/metadata/md5-cache/x11-terms/qterminal-1.2.0 b/metadata/md5-cache/x11-terms/qterminal-1.2.0 index 1cc97b7c1d42..15e94a2bc7ae 100644 --- a/metadata/md5-cache/x11-terms/qterminal-1.2.0 +++ b/metadata/md5-cache/x11-terms/qterminal-1.2.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=de RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/lxqt/qterminal/releases/download/1.2.0/qterminal-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f4e8b483a8711980899c43bdc98b8631 diff --git a/metadata/md5-cache/x11-terms/qterminal-9999 b/metadata/md5-cache/x11-terms/qterminal-9999 index 31c455dddf9b..317dbbe8c6d6 100644 --- a/metadata/md5-cache/x11-terms/qterminal-9999 +++ b/metadata/md5-cache/x11-terms/qterminal-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 x11-libs/libX11 ~x11-libs/qtermwidget-9999:= test? ( dev-qt/qttest:5 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=6a0d111c9792dc8a2110bf84e67afa1d diff --git a/metadata/md5-cache/x11-terms/roxterm-3.9.4 b/metadata/md5-cache/x11-terms/roxterm-3.9.4 index e605417fc2bb..ab3cd9aee2ba 100644 --- a/metadata/md5-cache/x11-terms/roxterm-3.9.4 +++ b/metadata/md5-cache/x11-terms/roxterm-3.9.4 @@ -10,5 +10,5 @@ LICENSE=GPL-2 LGPL-3 RDEPEND=dev-libs/dbus-glib dev-libs/glib:2 dev-libs/libpcre2 sys-apps/dbus x11-libs/cairo x11-libs/gtk+:3 x11-libs/pango x11-libs/vte:2.91[vanilla] SLOT=1 SRC_URI=https://github.com/realh/roxterm/archive/3.9.4.tar.gz -> roxterm-3.9.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=35eae81f0418a8c0b8dcd9973b7aa5c3 diff --git a/metadata/md5-cache/x11-terms/sakura-3.8.4 b/metadata/md5-cache/x11-terms/sakura-3.8.4 index 41a74d14f86c..50f2d2714610 100644 --- a/metadata/md5-cache/x11-terms/sakura-3.8.4 +++ b/metadata/md5-cache/x11-terms/sakura-3.8.4 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 x11-libs/gtk+:3[X] x11-libs/pango x11-libs/vte:2.91 SLOT=0 SRC_URI=https://launchpad.net/sakura/trunk/3.8.4/+download/sakura-3.8.4.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=fb9fbfe10b4feddf716a2ec3bcfde779 diff --git a/metadata/md5-cache/x11-themes/Manifest.gz b/metadata/md5-cache/x11-themes/Manifest.gz index 138bea72b5e1..1c926b8d9974 100644 Binary files a/metadata/md5-cache/x11-themes/Manifest.gz and b/metadata/md5-cache/x11-themes/Manifest.gz differ diff --git a/metadata/md5-cache/x11-themes/QGnomePlatform-0.8.4-r1 b/metadata/md5-cache/x11-themes/QGnomePlatform-0.8.4-r1 index 9a86b353756d..ab2ae805ba2a 100644 --- a/metadata/md5-cache/x11-themes/QGnomePlatform-0.8.4-r1 +++ b/metadata/md5-cache/x11-themes/QGnomePlatform-0.8.4-r1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-qt/qtdbus:5= >=dev-qt/qtwidgets-5.15.2:5= dev-qt/qtwayland:5= dev-qt/qtx11extras:5= gnome-base/gsettings-desktop-schemas sys-apps/xdg-desktop-portal x11-libs/gtk+:3[X] >=x11-themes/adwaita-qt-1.4.1 SLOT=0 SRC_URI=https://github.com/FedoraQt/QGnomePlatform/archive/0.8.4.tar.gz -> QGnomePlatform-0.8.4.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=53fc69534062c5c64c954d9bbb40899f diff --git a/metadata/md5-cache/x11-themes/QGnomePlatform-0.9.0 b/metadata/md5-cache/x11-themes/QGnomePlatform-0.9.0 index d85240eb9af2..93b0d94f62aa 100644 --- a/metadata/md5-cache/x11-themes/QGnomePlatform-0.9.0 +++ b/metadata/md5-cache/x11-themes/QGnomePlatform-0.9.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-qt/qtdbus:5= >=dev-qt/qtwidgets-5.15.2:5= wayland? ( dev-qt/qtwayland:5= ) dev-qt/qtx11extras:5= gnome-base/gsettings-desktop-schemas sys-apps/xdg-desktop-portal x11-libs/gtk+:3[X] >=x11-themes/adwaita-qt-1.4.2 SLOT=0 SRC_URI=https://github.com/FedoraQt/QGnomePlatform/archive/0.9.0.tar.gz -> QGnomePlatform-0.9.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=dda6f7f0ae1828c7ebe4c32dafd392a9 diff --git a/metadata/md5-cache/x11-themes/adwaita-qt-1.4.1 b/metadata/md5-cache/x11-themes/adwaita-qt-1.4.1 index 8c5114f10404..f5559482e585 100644 --- a/metadata/md5-cache/x11-themes/adwaita-qt-1.4.1 +++ b/metadata/md5-cache/x11-themes/adwaita-qt-1.4.1 @@ -12,5 +12,5 @@ PDEPEND=gnome? ( x11-themes/QGnomePlatform ) RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 SLOT=0 SRC_URI=https://github.com/FedoraQt/adwaita-qt/archive/1.4.1/adwaita-qt-1.4.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=645abcbade77d6d123e41b255022d52d diff --git a/metadata/md5-cache/x11-themes/adwaita-qt-1.4.2 b/metadata/md5-cache/x11-themes/adwaita-qt-1.4.2 index e9d9add4f1ff..134f9bd2e64c 100644 --- a/metadata/md5-cache/x11-themes/adwaita-qt-1.4.2 +++ b/metadata/md5-cache/x11-themes/adwaita-qt-1.4.2 @@ -12,5 +12,5 @@ PDEPEND=gnome? ( x11-themes/QGnomePlatform ) RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 SLOT=0 SRC_URI=https://github.com/FedoraQt/adwaita-qt/archive/1.4.2/adwaita-qt-1.4.2.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=645abcbade77d6d123e41b255022d52d diff --git a/metadata/md5-cache/x11-themes/gnome-backgrounds-44.0 b/metadata/md5-cache/x11-themes/gnome-backgrounds-44.0 new file mode 100644 index 000000000000..e36625e1e4a9 --- /dev/null +++ b/metadata/md5-cache/x11-themes/gnome-backgrounds-44.0 @@ -0,0 +1,13 @@ +BDEPEND=>=sys-devel/gettext-0.19.8 app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install test +DESCRIPTION=A set of backgrounds packaged with the GNOME desktop +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/gnome-backgrounds +INHERIT=gnome.org meson +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=CC-BY-SA-2.0 CC-BY-SA-3.0 CC-BY-2.0 CC-BY-4.0 +RDEPEND=gui-libs/gdk-pixbuf-loader-webp +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-backgrounds/44/gnome-backgrounds-44.0.tar.xz +_eclasses_=gnome.org 429073e99d7067d3462e875bf5c6e14a meson cd2865332c8d99e1da0655523ff4a28f multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=7703de3b4dfbc1061d979ba1728067e7 diff --git a/metadata/md5-cache/x11-themes/kvantum-1.0.7 b/metadata/md5-cache/x11-themes/kvantum-1.0.7 index 846827945147..8a1362b08b95 100644 --- a/metadata/md5-cache/x11-themes/kvantum-1.0.7 +++ b/metadata/md5-cache/x11-themes/kvantum-1.0.7 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5= dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 kde-frameworks/kwindowsystem:5 x11-libs/libX11 x11-libs/libXext SLOT=0 SRC_URI=https://github.com/tsujan/Kvantum/archive/V1.0.7.tar.gz -> kvantum-1.0.7.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d5b1bedbf960a4bdbe678b49319d86e4 diff --git a/metadata/md5-cache/x11-themes/lxqt-themes-1.1.0 b/metadata/md5-cache/x11-themes/lxqt-themes-1.1.0 index 5c1807fa0c91..5dc343ae1551 100644 --- a/metadata/md5-cache/x11-themes/lxqt-themes-1.1.0 +++ b/metadata/md5-cache/x11-themes/lxqt-themes-1.1.0 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86 LICENSE=LGPL-2.1+ SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-themes/releases/download/1.1.0/lxqt-themes-1.1.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=af4c168406261f064176310623c3e221 diff --git a/metadata/md5-cache/x11-themes/lxqt-themes-1.2.0 b/metadata/md5-cache/x11-themes/lxqt-themes-1.2.0 index 15674c467f1e..84272229764b 100644 --- a/metadata/md5-cache/x11-themes/lxqt-themes-1.2.0 +++ b/metadata/md5-cache/x11-themes/lxqt-themes-1.2.0 @@ -8,5 +8,5 @@ KEYWORDS=amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86 LICENSE=LGPL-2.1+ SLOT=0 SRC_URI=https://github.com/lxqt/lxqt-themes/releases/download/1.2.0/lxqt-themes-1.2.0.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5f4da2628fc3e5e2f7192ef3731f9626 diff --git a/metadata/md5-cache/x11-themes/oxygen-gtk-1.4.1-r1 b/metadata/md5-cache/x11-themes/oxygen-gtk-1.4.1-r1 index cf23c9051ebf..9ff4588cf91e 100644 --- a/metadata/md5-cache/x11-themes/oxygen-gtk-1.4.1-r1 +++ b/metadata/md5-cache/x11-themes/oxygen-gtk-1.4.1-r1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/dbus-glib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/cairo[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/gdk-pixbuf[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/gtk+: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/libX11[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/pango[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-themes/oxygen-gtk:0 SLOT=3 SRC_URI=mirror://kde/stable/oxygen-gtk3/1.4.1/src/oxygen-gtk3-1.4.1.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=252112712052fa5964bb9102a2878b4f diff --git a/metadata/md5-cache/x11-themes/oxygen-gtk-1.4.6-r1 b/metadata/md5-cache/x11-themes/oxygen-gtk-1.4.6-r1 index eb1354f41883..d8c9ccb368bf 100644 --- a/metadata/md5-cache/x11-themes/oxygen-gtk-1.4.6-r1 +++ b/metadata/md5-cache/x11-themes/oxygen-gtk-1.4.6-r1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/dbus-glib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/cairo[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/gdk-pixbuf[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/gtk+: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/libX11[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/pango[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-themes/oxygen-gtk:0 SLOT=2 SRC_URI=mirror://kde/stable/oxygen-gtk2/1.4.6/src/oxygen-gtk2-1.4.6.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 cmake-multilib 6ff22813d3a25c55e1b97457ec02a318 flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=2d770ec470a7732de9af17ba59be90d1 diff --git a/metadata/md5-cache/x11-themes/qtcurve-1.9.0_p20210412 b/metadata/md5-cache/x11-themes/qtcurve-1.9.0_p20210412 index c3521b74694f..7216677d4ab7 100644 --- a/metadata/md5-cache/x11-themes/qtcurve-1.9.0_p20210412 +++ b/metadata/md5-cache/x11-themes/qtcurve-1.9.0_p20210412 @@ -13,5 +13,5 @@ REQUIRED_USE=gtk? ( X ) || ( gtk qt5 ) plasma? ( qt5 ) RESTRICT=test SLOT=0 SRC_URI=mirror://gentoo/qtcurve-1.9.0_p20210412-be78a85b.tar.gz https://invent.kde.org/kde/qtcurve/-/archive/be78a85b627e90d854da0de1049e8f191e67f228/qtcurve-be78a85b627e90d854da0de1049e8f191e67f228.tar.gz -> qtcurve-1.9.0_p20210412-be78a85b.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=1e088274e930d28b22b5ed5e96b4cf61 diff --git a/metadata/md5-cache/x11-themes/qtcurve-9999 b/metadata/md5-cache/x11-themes/qtcurve-9999 index 41917764831a..7f8d64310490 100644 --- a/metadata/md5-cache/x11-themes/qtcurve-9999 +++ b/metadata/md5-cache/x11-themes/qtcurve-9999 @@ -12,5 +12,5 @@ RDEPEND=gtk? ( x11-libs/gtk+:2 ) plasma? ( dev-qt/qtprintsupport:5 kde-framework REQUIRED_USE=gtk? ( X ) || ( gtk qt5 ) plasma? ( qt5 ) RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a kde.org dc88b76f82ae1a1d2892cc7e0f3020db multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=ce7eeceb9a336c1c43544aebf97c3249 diff --git a/metadata/md5-cache/x11-wm/Manifest.gz b/metadata/md5-cache/x11-wm/Manifest.gz index 2457dbf37fcf..722873c6d800 100644 Binary files a/metadata/md5-cache/x11-wm/Manifest.gz and b/metadata/md5-cache/x11-wm/Manifest.gz differ diff --git a/metadata/md5-cache/x11-wm/awesome-4.3-r102 b/metadata/md5-cache/x11-wm/awesome-4.3-r102 index 1ca6d5e1ab2d..469febc3ab48 100644 --- a/metadata/md5-cache/x11-wm/awesome-4.3-r102 +++ b/metadata/md5-cache/x11-wm/awesome-4.3-r102 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_t RESTRICT=test SLOT=0 SRC_URI=https://github.com/awesomeWM/awesome-releases/raw/master/awesome-4.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=b0a0137163327e1b269299c4d1fb92bd diff --git a/metadata/md5-cache/x11-wm/awesome-9999 b/metadata/md5-cache/x11-wm/awesome-9999 index d1e5fdc231af..e02886693c7c 100644 --- a/metadata/md5-cache/x11-wm/awesome-9999 +++ b/metadata/md5-cache/x11-wm/awesome-9999 @@ -12,5 +12,5 @@ RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1 REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) RESTRICT=test SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8240bd72ca5293d86ab8f120fdf45b1f diff --git a/metadata/md5-cache/x11-wm/ctwm-4.0.3 b/metadata/md5-cache/x11-wm/ctwm-4.0.3 index 99a42163f294..070158216d6f 100644 --- a/metadata/md5-cache/x11-wm/ctwm-4.0.3 +++ b/metadata/md5-cache/x11-wm/ctwm-4.0.3 @@ -12,5 +12,5 @@ RDEPEND=x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://ctwm.org/dist/ctwm-4.0.3.tar.xz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b virtualx ab0d5fcb35ad650a57b516e6f4c467e7 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=f28b9a8c239ec757005c407b1f0108cb diff --git a/metadata/md5-cache/x11-wm/herbstluftwm-0.9.5-r1 b/metadata/md5-cache/x11-wm/herbstluftwm-0.9.5-r1 index aff2a1df4960..415191a9dd64 100644 --- a/metadata/md5-cache/x11-wm/herbstluftwm-0.9.5-r1 +++ b/metadata/md5-cache/x11-wm/herbstluftwm-0.9.5-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 p RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://herbstluftwm.org/tarballs/herbstluftwm-0.9.5.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=5007a3543543e7f30e1308ab0a525dd5 diff --git a/metadata/md5-cache/x11-wm/herbstluftwm-9999 b/metadata/md5-cache/x11-wm/herbstluftwm-9999 index 45e0f253ea3b..c3764c9263ed 100644 --- a/metadata/md5-cache/x11-wm/herbstluftwm-9999 +++ b/metadata/md5-cache/x11-wm/herbstluftwm-9999 @@ -12,5 +12,5 @@ RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes x11-libs/libXft x11- REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) test? ( doc ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 distutils-r1 ad4c1e4ec8737eb363aacd638f6a513b flag-o-matic 69394e25812406faa1f90edaf4969395 git-r3 c57c50c922e121043788de0b40ada60a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=94f451f4fed93802d142ac2302d48776 diff --git a/metadata/md5-cache/x11-wm/mutter-44.0 b/metadata/md5-cache/x11-wm/mutter-44.0 new file mode 100644 index 000000000000..e7bada81502f --- /dev/null +++ b/metadata/md5-cache/x11-wm/mutter-44.0 @@ -0,0 +1,18 @@ +BDEPEND=dev-util/wayland-scanner dev-util/gdbus-codegen dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig gtk-doc? ( >=dev-util/gi-docgen-2021.1 ) test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/python-dbusmock-0.28[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/python-dbusmock-0.28[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/python-dbusmock-0.28[python_targets_python3_9(-)] ) ) app-text/docbook-xml-dtd:4.5 x11-misc/xvfb-run ) wayland? ( >=sys-kernel/linux-headers-4.4 x11-libs/libxcvt ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=media-libs/graphene-1.10.2[introspection?] x11-libs/gdk-pixbuf:2 >=x11-libs/pango-1.46[introspection?] >=x11-libs/cairo-1.14[X] >=dev-libs/fribidi-1.0.0 >=gnome-base/gsettings-desktop-schemas-42.0[introspection?] >=dev-libs/glib-2.75.1:2 gnome-base/gnome-settings-daemon >=dev-libs/json-glib-0.12.0[introspection?] >=x11-libs/libxkbcommon-0.4.3 x11-libs/libICE >=app-accessibility/at-spi2-core-2.46:2[introspection?] sys-apps/dbus >=x11-misc/colord-1.4.5:= >=media-libs/lcms-2.6:2 >=media-libs/harfbuzz-2.6.0 gnome? ( gnome-base/gnome-desktop:4= ) >=media-libs/libcanberra-0.26 media-libs/libglvnd[X] wayland? ( >=dev-libs/wayland-protocols-1.31 >=dev-libs/wayland-1.21.0 x11-libs/libdrm media-libs/mesa[gbm(+)] >=dev-libs/libinput-1.18.0:= elogind? ( sys-auth/elogind ) x11-base/xwayland video_cards_nvidia? ( gui-libs/egl-wayland ) ) udev? ( >=virtual/libudev-232-r1:= >=dev-libs/libgudev-232 ) systemd? ( sys-apps/systemd ) x11-libs/libSM input_devices_wacom? ( >=dev-libs/libwacom-0.13:= ) >=x11-libs/startup-notification-0.7 screencast? ( >=media-video/pipewire-0.3.21:= ) introspection? ( >=dev-libs/gobject-introspection-1.54:= ) test? ( >=x11-libs/gtk+-3.19.8:3[X,introspection?] ) sysprof? ( >=dev-util/sysprof-capture-3.40.1:4 >=dev-util/sysprof-3.46.0 ) >=gui-libs/gtk-4.0.0:4[X,introspection?] >=x11-libs/libX11-1.7.0 >=x11-libs/libXcomposite-0.4 x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 >=x11-libs/libXi-1.7.4 x11-libs/libXtst x11-libs/libxkbfile x11-misc/xkeyboard-config >=x11-libs/libxkbcommon-0.4.3[X] x11-libs/libXrender >=x11-libs/libXrandr-1.5.0 x11-libs/libxcb:= x11-libs/libXinerama x11-libs/libXau x11-base/xorg-proto sysprof? ( >=dev-util/sysprof-common-3.38.0 ) +DESCRIPTION=GNOME compositing window manager based on Clutter +EAPI=8 +HOMEPAGE=https://gitlab.gnome.org/GNOME/mutter/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson python-any-r1 udev xdg +IUSE=debug elogind gnome gtk-doc input_devices_wacom +introspection screencast sysprof systemd test udev wayland video_cards_nvidia +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=GPL-2+ +RDEPEND=>=media-libs/graphene-1.10.2[introspection?] x11-libs/gdk-pixbuf:2 >=x11-libs/pango-1.46[introspection?] >=x11-libs/cairo-1.14[X] >=dev-libs/fribidi-1.0.0 >=gnome-base/gsettings-desktop-schemas-42.0[introspection?] >=dev-libs/glib-2.75.1:2 gnome-base/gnome-settings-daemon >=dev-libs/json-glib-0.12.0[introspection?] >=x11-libs/libxkbcommon-0.4.3 x11-libs/libICE >=app-accessibility/at-spi2-core-2.46:2[introspection?] sys-apps/dbus >=x11-misc/colord-1.4.5:= >=media-libs/lcms-2.6:2 >=media-libs/harfbuzz-2.6.0 gnome? ( gnome-base/gnome-desktop:4= ) >=media-libs/libcanberra-0.26 media-libs/libglvnd[X] wayland? ( >=dev-libs/wayland-protocols-1.31 >=dev-libs/wayland-1.21.0 x11-libs/libdrm media-libs/mesa[gbm(+)] >=dev-libs/libinput-1.18.0:= elogind? ( sys-auth/elogind ) x11-base/xwayland video_cards_nvidia? ( gui-libs/egl-wayland ) ) udev? ( >=virtual/libudev-232-r1:= >=dev-libs/libgudev-232 ) systemd? ( sys-apps/systemd ) x11-libs/libSM input_devices_wacom? ( >=dev-libs/libwacom-0.13:= ) >=x11-libs/startup-notification-0.7 screencast? ( >=media-video/pipewire-0.3.21:= ) introspection? ( >=dev-libs/gobject-introspection-1.54:= ) test? ( >=x11-libs/gtk+-3.19.8:3[X,introspection?] ) sysprof? ( >=dev-util/sysprof-capture-3.40.1:4 >=dev-util/sysprof-3.46.0 ) >=gui-libs/gtk-4.0.0:4[X,introspection?] >=x11-libs/libX11-1.7.0 >=x11-libs/libXcomposite-0.4 x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 >=x11-libs/libXi-1.7.4 x11-libs/libXtst x11-libs/libxkbfile x11-misc/xkeyboard-config >=x11-libs/libxkbcommon-0.4.3[X] x11-libs/libXrender >=x11-libs/libXrandr-1.5.0 x11-libs/libxcb:= x11-libs/libXinerama x11-libs/libXau gnome-extra/zenity !=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=configure install prepare setup unpack +DEPEND=dev-libs/glib:2 >=dev-libs/libxml2-2.0 >=media-libs/fontconfig-2 x11-libs/cairo x11-libs/libXau x11-libs/libXcursor x11-libs/libXext x11-libs/libXft x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXt >=x11-libs/pango-1.8[X] imlib? ( media-libs/imlib2 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) svg? ( gnome-base/librsvg:2 ) xdg? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pyxdg[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pyxdg[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyxdg[python_targets_python3_11(-)] ) ) x11-base/xorg-proto +DESCRIPTION=Standards compliant, fast, light-weight, extensible window manager +EAPI=8 +HOMEPAGE=http://openbox.org/wiki/Main_Page +INHERIT=autotools python-single-r1 +IUSE=branding debug imlib nls session startup-notification svg xdg python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x86-linux +LICENSE=GPL-2 +RDEPEND=dev-libs/glib:2 >=dev-libs/libxml2-2.0 >=media-libs/fontconfig-2 x11-libs/cairo x11-libs/libXau x11-libs/libXcursor x11-libs/libXext x11-libs/libXft x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXt >=x11-libs/pango-1.8[X] imlib? ( media-libs/imlib2 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) svg? ( gnome-base/librsvg:2 ) xdg? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pyxdg[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pyxdg[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyxdg[python_targets_python3_11(-)] ) ) +REQUIRED_USE=xdg? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) +SLOT=3 +SRC_URI=http://openbox.org/dist/openbox/openbox-3.6.1.tar.gz branding? ( https://dev.gentoo.org/~hwoarang/distfiles/surreal-gentoo.tar.gz ) +_eclasses_=autotools b5529dc611971a61a30153916014f616 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b +_md5_=d67395e2c0d4feaec96186c2d4bf3c2b diff --git a/metadata/md5-cache/x11-wm/pekwm-0.2.1 b/metadata/md5-cache/x11-wm/pekwm-0.2.1 index 77722df38852..a04b553cc07c 100644 --- a/metadata/md5-cache/x11-wm/pekwm-0.2.1 +++ b/metadata/md5-cache/x11-wm/pekwm-0.2.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXext jpeg? ( virtual/jpeg:0 ) png? ( media-libs/libpng:0 ) truetype? ( x11-libs/libXft ) xinerama? ( x11-libs/libXinerama ) xpm? ( x11-libs/libXpm ) SLOT=0 SRC_URI=https://github.com/pekdon/pekwm/releases/download/release-0.2.1/pekwm-0.2.1.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=d24ecac655a6f74da59fac346fdeceae diff --git a/metadata/md5-cache/x11-wm/pekwm-0.3.0 b/metadata/md5-cache/x11-wm/pekwm-0.3.0 index c464cbfa3646..52c98ba40a81 100644 --- a/metadata/md5-cache/x11-wm/pekwm-0.3.0 +++ b/metadata/md5-cache/x11-wm/pekwm-0.3.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXext jpeg? ( media-libs/libjpeg-turbo:= ) pango? ( x11-libs/pango x11-libs/cairo[X] ) png? ( media-libs/libpng:0= ) truetype? ( x11-libs/libXft ) xinerama? ( x11-libs/libXinerama ) xpm? ( x11-libs/libXpm ) SLOT=0 SRC_URI=https://github.com/pekwm/pekwm/releases/download/release-0.3.0/pekwm-0.3.0.tar.gz -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=13430e8a6b4128559c9324776914d356 diff --git a/metadata/md5-cache/xfce-extra/Manifest.gz b/metadata/md5-cache/xfce-extra/Manifest.gz index 18e8573bd7ef..f0dfb9f56465 100644 Binary files a/metadata/md5-cache/xfce-extra/Manifest.gz and b/metadata/md5-cache/xfce-extra/Manifest.gz differ diff --git a/metadata/md5-cache/xfce-extra/xfce4-whiskermenu-plugin-2.7.2 b/metadata/md5-cache/xfce-extra/xfce4-whiskermenu-plugin-2.7.2 index a14950cc8e9b..c33ae4f5f576 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-whiskermenu-plugin-2.7.2 +++ b/metadata/md5-cache/xfce-extra/xfce4-whiskermenu-plugin-2.7.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=virtual/libintl x11-libs/gtk+:3 xfce-base/exo:= xfce-base/garcon:= xfce-base/libxfce4ui:= xfce-base/libxfce4util:= xfce-base/xfce4-panel:= SLOT=0 SRC_URI=https://archive.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/2.7/xfce4-whiskermenu-plugin-2.7.2.tar.bz2 -_eclasses_=cmake a5763be3a7ea9d44c19c5a73586aeeeb flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a +_eclasses_=cmake 2e47edc2986d4e1c0363867058cd4489 flag-o-matic 69394e25812406faa1f90edaf4969395 multilib 5ca4e49abed8e3a2f7b56920eadee157 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 38c85b725d0467e51954ea921b6c104b toolchain-funcs 6001248ef162a5fa2a21ce132a212f6b xdg-utils ac0e315a3688929e34ac75b139e7349a _md5_=8550ae2a8810838fe4dde86666ac3113 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 4a40769233c6..7d47733976ab 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Sat, 18 Mar 2023 19:09:53 +0000 +Tue, 21 Mar 2023 04:40:00 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index e1d08aec4f11..92f60d0c0c25 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Sat Mar 18 07:09:53 PM UTC 2023 +Tue Mar 21 04:39:59 AM UTC 2023 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 5c5c596fdf2b..0b4df82076d7 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Sat, 18 Mar 2023 19:30:01 +0000 +Tue, 21 Mar 2023 05:00:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index 3c33a99da773..4b1919b1faa8 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -2a1b4be065236cd7bc6760eec40dc5f6c021c11d 1679165565 2023-03-18T18:52:45+00:00 +78f6905a8bec4121d6f000a3c797487e3f02982f 1679372332 2023-03-21T04:18:52+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 269363a7d4b4..4816251c81f4 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1679166602 Sat 18 Mar 2023 07:10:02 PM UTC +1679373601 Tue 21 Mar 2023 04:40:01 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index 4a40769233c6..7bc50c27832a 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Sat, 18 Mar 2023 19:09:53 +0000 +Tue, 21 Mar 2023 04:39:59 +0000 diff --git a/net-analyzer/Manifest.gz b/net-analyzer/Manifest.gz index 9889763a496b..ce00a0396a17 100644 Binary files a/net-analyzer/Manifest.gz and b/net-analyzer/Manifest.gz differ diff --git a/net-analyzer/shodan/shodan-1.28.0.ebuild b/net-analyzer/shodan/shodan-1.28.0.ebuild index cae4d648ff15..8c7d7860bc86 100644 --- a/net-analyzer/shodan/shodan-1.28.0.ebuild +++ b/net-analyzer/shodan/shodan-1.28.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_{9..11} ) inherit distutils-r1 DESCRIPTION="The official Python library for Shodan" diff --git a/net-analyzer/shodan/shodan-9999.ebuild b/net-analyzer/shodan/shodan-9999.ebuild index a33a8491beea..984c33c3f1f6 100644 --- a/net-analyzer/shodan/shodan-9999.ebuild +++ b/net-analyzer/shodan/shodan-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_{9..11} ) inherit distutils-r1 DESCRIPTION="The official Python library for Shodan" diff --git a/net-analyzer/wireshark/Manifest b/net-analyzer/wireshark/Manifest index 7d46a92aaae6..52ba8994abe8 100644 --- a/net-analyzer/wireshark/Manifest +++ b/net-analyzer/wireshark/Manifest @@ -1,6 +1,4 @@ -DIST wireshark-3.6.10.tar.xz 39956960 BLAKE2B 5f283caeed4fc9b231331b90b68b25615f8c1df7639accd225590c88cebc86cca7ea95d979db6a60268a5b918f448a9b0878b9f4f8d5dccc847c6dd1fe4fddb7 SHA512 dbdba7a29e2b6e6c3bbc0f0d599a2b9b49efcb1540b36f2f8c55ac3850565b68dc1282b1ed1d3cd63709f12e2fe659f93de5f9473c2f23751373f3738b8e766a DIST wireshark-3.6.11.tar.xz 39967744 BLAKE2B b313be6b2d22f62365f7a840409c49a78ce99d135e6b5f17c73c12dc12a543f5daa298a3df1693dafc79a6f3f1b184de231cc527bca0627e3c37b8ac4ce8e5a3 SHA512 f526e6e8f9435b69b5c3ce3a7d271f7b66365bdd84cd155ac434be0ef899cc140f58dfe55e90295bba91a8a99f28a55280366fb028d13f6ff45051a9ed3625e8 DIST wireshark-3.6.12.tar.xz 39975988 BLAKE2B ca356c0d03d7c82463cc4503d0c1085b80fe621763c1bc369a5944dc6566f25b19fce9615239265b3620f76c92bff7d7c6e958241143c444a1b659b82d319c65 SHA512 a6e05e5a6b1027e3f4650a32f186d9a2cff4fb7adb2317bdeb96a7193ab45fa434572f94253a4d6e5589b0790420a445c4bbd788d8ac53e01019bb88130164f8 -DIST wireshark-3.6.9.tar.xz 39949356 BLAKE2B 8660e57fc1c9667ecd17bbd35918da7d61f3acb84047d6fda9be0fea456c09e45f0a59c725b405364745cb2b570d8fddb2ffe393ee7b96110a53c404f9c02267 SHA512 abf7adfda1a7aef4944e846bd3edde08b64d841edbba2d86d1bfd121760e90560231f778eeaefa43175c7c6be9b1fe0e0ec58c8704b4c9bdff6bb3598970cddd DIST wireshark-4.0.3.tar.xz 41383164 BLAKE2B 85271a1f52b383db07fdf51f500ae0d6dd9b6f6624176889a88ff51e85e1eb578a7ba43a80018e60cb84ff486aedce850b2b82e127fcabb7f049d479e1d0c3cb SHA512 ef6d20b9b69e1a2b6b6b5bebe5f13545acb73b2faece32198dbe01c4181524d5f8320712b4440c93fc65ef075ab7b6398394581b3dc09a20b1b5b9b90ec2a13c DIST wireshark-4.0.4.tar.xz 41399396 BLAKE2B 4db1b691c0d1775760c85851edd45dba3eabc695aae37fe4145e6207272f37ccb69ec63be509b244d209a4626f3b7e376589458b6583ffd0eddd0e77aafea4db SHA512 e6aa49ba12245ec3ae779fc9b30a783121b6a8298ab512968f408d96d4e73b2962ccb289f2ead68b7b1d6788bfa7e11b28f4a5b4c4b043ecdbc09668bdd4feff diff --git a/net-analyzer/wireshark/wireshark-3.6.10.ebuild b/net-analyzer/wireshark/wireshark-3.6.10.ebuild deleted file mode 100644 index 06355e3161e7..000000000000 --- a/net-analyzer/wireshark/wireshark-3.6.10.ebuild +++ /dev/null @@ -1,272 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LUA_COMPAT=( lua5-{1..2} ) -PYTHON_COMPAT=( python3_{9..10} ) - -inherit fcaps flag-o-matic lua-single python-any-r1 qmake-utils xdg cmake - -DESCRIPTION="Network protocol analyzer (sniffer)" -HOMEPAGE="https://www.wireshark.org/" - -if [[ ${PV} == *9999* ]] ; then - EGIT_REPO_URI="https://gitlab.com/wireshark/wireshark" - inherit git-r3 -else - SRC_URI="https://www.wireshark.org/download/src/all-versions/${P/_/}.tar.xz" - S="${WORKDIR}/${P/_/}" - - KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc64 ~riscv ~x86" -fi - -LICENSE="GPL-2" -SLOT="0/${PV}" -IUSE="androiddump bcg729 brotli +capinfos +captype ciscodump +dftest doc dpauxmon" -IUSE+=" +dumpcap +editcap http2 ilbc kerberos libxml2 lto lua lz4 maxminddb" -IUSE+=" +mergecap +minizip +netlink opus +plugins plugin-ifdemo +pcap +qt5 +randpkt" -IUSE+=" +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp sshdump ssl" -IUSE+=" sdjournal test +text2pcap tfshark +tshark +udpdump zlib +zstd" - -REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} ) - plugin-ifdemo? ( plugins qt5 )" - -RESTRICT="!test? ( test )" - -# bug #753062 for speexdsp -RDEPEND="acct-group/pcap - >=dev-libs/glib-2.38:2 - >=net-dns/c-ares-1.5:= - dev-libs/libgcrypt:= - media-libs/speexdsp - bcg729? ( media-libs/bcg729 ) - brotli? ( app-arch/brotli:= ) - ciscodump? ( >=net-libs/libssh-0.6 ) - filecaps? ( sys-libs/libcap ) - http2? ( net-libs/nghttp2:= ) - ilbc? ( media-libs/libilbc ) - kerberos? ( virtual/krb5 ) - libxml2? ( dev-libs/libxml2 ) - lua? ( ${LUA_DEPS} ) - lz4? ( app-arch/lz4:= ) - maxminddb? ( dev-libs/libmaxminddb:= ) - minizip? ( sys-libs/zlib[minizip] ) - netlink? ( dev-libs/libnl:3 ) - opus? ( media-libs/opus ) - pcap? ( net-libs/libpcap ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtmultimedia:5 - dev-qt/qtprintsupport:5 - dev-qt/qtwidgets:5 - x11-misc/xdg-utils - ) - sbc? ( media-libs/sbc ) - sdjournal? ( sys-apps/systemd ) - smi? ( net-libs/libsmi ) - snappy? ( app-arch/snappy ) - spandsp? ( media-libs/spandsp ) - sshdump? ( >=net-libs/libssh-0.6 ) - ssl? ( net-libs/gnutls:= ) - zlib? ( sys-libs/zlib ) - zstd? ( app-arch/zstd:= )" -DEPEND="${RDEPEND}" -BDEPEND="${PYTHON_DEPS} - dev-lang/perl - sys-devel/flex - sys-devel/gettext - virtual/pkgconfig - doc? ( - app-doc/doxygen - dev-ruby/asciidoctor - ) - qt5? ( - dev-qt/linguist-tools:5 - ) - test? ( - $(python_gen_any_dep ' - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] - ') - )" -RDEPEND="${RDEPEND} - qt5? ( virtual/freedesktop-icon-theme ) - selinux? ( sec-policy/selinux-wireshark )" - -PATCHES=( - "${FILESDIR}"/${PN}-2.6.0-redhat.patch - "${FILESDIR}"/${PN}-3.4.2-cmake-lua-version.patch -) - -python_check_deps() { - use test || return 0 - - python_has_version -b "dev-python/pytest[${PYTHON_USEDEP}]" && - python_has_version -b "dev-python/pytest-xdist[${PYTHON_USEDEP}]" -} - -pkg_setup() { - use lua && lua-single_pkg_setup - - python-any-r1_pkg_setup -} - -src_configure() { - local mycmakeargs - - # Workaround bug #213705. If krb5-config --libs has -lcrypto then pass - # --with-ssl to ./configure. (Mimics code from acinclude.m4). - if use kerberos ; then - case $(krb5-config --libs) in - *-lcrypto*) - ewarn "Kerberos was built with ssl support: linkage with openssl is enabled." - ewarn "Note there are annoying license incompatibilities between the OpenSSL" - ewarn "license and the GPL, so do your check before distributing such package." - mycmakeargs+=( -DENABLE_GNUTLS=$(usex ssl) ) - ;; - esac - fi - - if use qt5 ; then - export QT_MIN_VERSION=5.3.0 - append-cxxflags -fPIC -DPIC - fi - - python_setup - - mycmakeargs+=( - -DPython3_EXECUTABLE="${PYTHON}" - -DCMAKE_DISABLE_FIND_PACKAGE_{Asciidoctor,DOXYGEN}=$(usex !doc) - - $(use androiddump && use pcap && echo -DEXTCAP_ANDROIDDUMP_LIBPCAP=yes) - $(usex qt5 LRELEASE=$(qt5_get_bindir)/lrelease '') - $(usex qt5 MOC=$(qt5_get_bindir)/moc '') - $(usex qt5 RCC=$(qt5_get_bindir)/rcc '') - $(usex qt5 UIC=$(qt5_get_bindir)/uic '') - - -DBUILD_androiddump=$(usex androiddump) - -DBUILD_capinfos=$(usex capinfos) - -DBUILD_captype=$(usex captype) - -DBUILD_ciscodump=$(usex ciscodump) - -DBUILD_dftest=$(usex dftest) - -DBUILD_dpauxmon=$(usex dpauxmon) - -DBUILD_dumpcap=$(usex dumpcap) - -DBUILD_editcap=$(usex editcap) - -DBUILD_mergecap=$(usex mergecap) - -DBUILD_mmdbresolve=$(usex maxminddb) - -DBUILD_randpkt=$(usex randpkt) - -DBUILD_randpktdump=$(usex randpktdump) - -DBUILD_reordercap=$(usex reordercap) - -DBUILD_sdjournal=$(usex sdjournal) - -DBUILD_sharkd=$(usex sharkd) - -DBUILD_sshdump=$(usex sshdump) - -DBUILD_text2pcap=$(usex text2pcap) - -DBUILD_tfshark=$(usex tfshark) - -DBUILD_tshark=$(usex tshark) - -DBUILD_udpdump=$(usex udpdump) - -DBUILD_wireshark=$(usex qt5) - -DDISABLE_WERROR=ON - -DENABLE_BCG729=$(usex bcg729) - -DENABLE_BROTLI=$(usex brotli) - -DENABLE_CAP=$(usex filecaps caps) - -DENABLE_GNUTLS=$(usex ssl) - -DENABLE_ILBC=$(usex ilbc) - -DENABLE_KERBEROS=$(usex kerberos) - -DENABLE_LIBXML2=$(usex libxml2) - -DENABLE_LTO=$(usex lto) - -DENABLE_LUA=$(usex lua) - -DENABLE_LZ4=$(usex lz4) - -DENABLE_MINIZIP=$(usex minizip) - -DENABLE_NETLINK=$(usex netlink) - -DENABLE_NGHTTP2=$(usex http2) - -DENABLE_OPUS=$(usex opus) - -DENABLE_PCAP=$(usex pcap) - -DENABLE_PLUGINS=$(usex plugins) - -DENABLE_PLUGIN_IFDEMO=$(usex plugin-ifdemo) - -DENABLE_SBC=$(usex sbc) - -DENABLE_SMI=$(usex smi) - -DENABLE_SNAPPY=$(usex snappy) - -DENABLE_SPANDSP=$(usex spandsp) - -DENABLE_ZLIB=$(usex zlib) - -DENABLE_ZSTD=$(usex zstd) - ) - - cmake_src_configure -} - -src_test() { - cmake_build test-programs - - # https://www.wireshark.org/docs/wsdg_html_chunked/ChTestsRunPytest.html - epytest \ - --disable-capture \ - --skip-missing-programs=all \ - --program-path "${BUILD_DIR}"/run -} - -src_install() { - cmake_src_install - - # FAQ is not required as is installed from help/faq.txt - dodoc AUTHORS ChangeLog NEWS README* doc/randpkt.txt doc/README* - - # install headers - insinto /usr/include/wireshark - doins ws_diag_control.h ws_symbol_export.h \ - "${BUILD_DIR}"/config.h - - # If trying to remove this, try build e.g. libvirt first! - # At last check, Fedora is still doing this too. - local dir dirs=( - epan - epan/crypt - epan/dfilter - epan/dissectors - epan/ftypes - wiretap - wsutil - wsutil/wmem - ) - - for dir in "${dirs[@]}" ; do - insinto /usr/include/wireshark/${dir} - doins ${dir}/*.h - done - - if use qt5 ; then - local s - - for s in 16 32 48 64 128 256 512 1024 ; do - insinto /usr/share/icons/hicolor/${s}x${s}/apps - newins image/wsicon${s}.png wireshark.png - done - - for s in 16 24 32 48 64 128 256 ; do - insinto /usr/share/icons/hicolor/${s}x${s}/mimetypes - newins image/WiresharkDoc-${s}.png application-vnd.tcpdump.pcap.png - done - fi - - if [[ -d "${ED}"/usr/share/appdata ]] ; then - rm -r "${ED}"/usr/share/appdata || die - fi -} - -pkg_postinst() { - xdg_pkg_postinst - - # Add group for users allowed to sniff. - chgrp pcap "${EROOT}"/usr/bin/dumpcap - - if use dumpcap && use pcap ; then - fcaps -o 0 -g pcap -m 4710 -M 0710 \ - cap_dac_read_search,cap_net_raw,cap_net_admin \ - "${EROOT}"/usr/bin/dumpcap - fi - - ewarn "NOTE: To capture traffic with wireshark as normal user you have to" - ewarn "add yourself to the pcap group. This security measure ensures" - ewarn "that only trusted users are allowed to sniff your traffic." -} diff --git a/net-analyzer/wireshark/wireshark-3.6.11.ebuild b/net-analyzer/wireshark/wireshark-3.6.11-r1.ebuild similarity index 99% rename from net-analyzer/wireshark/wireshark-3.6.11.ebuild rename to net-analyzer/wireshark/wireshark-3.6.11-r1.ebuild index 307f57e83ff0..e037030ee391 100644 --- a/net-analyzer/wireshark/wireshark-3.6.11.ebuild +++ b/net-analyzer/wireshark/wireshark-3.6.11-r1.ebuild @@ -66,9 +66,9 @@ RDEPEND="acct-group/pcap sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) - snappy? ( app-arch/snappy ) + snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp ) - sshdump? ( >=net-libs/libssh-0.6 ) + sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= )" diff --git a/net-analyzer/wireshark/wireshark-3.6.12.ebuild b/net-analyzer/wireshark/wireshark-3.6.12-r1.ebuild similarity index 99% rename from net-analyzer/wireshark/wireshark-3.6.12.ebuild rename to net-analyzer/wireshark/wireshark-3.6.12-r1.ebuild index ba3706691296..0e8916b20943 100644 --- a/net-analyzer/wireshark/wireshark-3.6.12.ebuild +++ b/net-analyzer/wireshark/wireshark-3.6.12-r1.ebuild @@ -66,9 +66,9 @@ RDEPEND="acct-group/pcap sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) - snappy? ( app-arch/snappy ) + snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp ) - sshdump? ( >=net-libs/libssh-0.6 ) + sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) zstd? ( app-arch/zstd:= )" diff --git a/net-analyzer/wireshark/wireshark-3.6.9.ebuild b/net-analyzer/wireshark/wireshark-3.6.9.ebuild deleted file mode 100644 index 307f57e83ff0..000000000000 --- a/net-analyzer/wireshark/wireshark-3.6.9.ebuild +++ /dev/null @@ -1,272 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LUA_COMPAT=( lua5-{1..2} ) -PYTHON_COMPAT=( python3_{9..10} ) - -inherit fcaps flag-o-matic lua-single python-any-r1 qmake-utils xdg cmake - -DESCRIPTION="Network protocol analyzer (sniffer)" -HOMEPAGE="https://www.wireshark.org/" - -if [[ ${PV} == *9999* ]] ; then - EGIT_REPO_URI="https://gitlab.com/wireshark/wireshark" - inherit git-r3 -else - SRC_URI="https://www.wireshark.org/download/src/all-versions/${P/_/}.tar.xz" - S="${WORKDIR}/${P/_/}" - - KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc64 ~riscv x86" -fi - -LICENSE="GPL-2" -SLOT="0/${PV}" -IUSE="androiddump bcg729 brotli +capinfos +captype ciscodump +dftest doc dpauxmon" -IUSE+=" +dumpcap +editcap http2 ilbc kerberos libxml2 lto lua lz4 maxminddb" -IUSE+=" +mergecap +minizip +netlink opus +plugins plugin-ifdemo +pcap +qt5 +randpkt" -IUSE+=" +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp sshdump ssl" -IUSE+=" sdjournal test +text2pcap tfshark +tshark +udpdump zlib +zstd" - -REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} ) - plugin-ifdemo? ( plugins qt5 )" - -RESTRICT="!test? ( test )" - -# bug #753062 for speexdsp -RDEPEND="acct-group/pcap - >=dev-libs/glib-2.38:2 - >=net-dns/c-ares-1.5:= - dev-libs/libgcrypt:= - media-libs/speexdsp - bcg729? ( media-libs/bcg729 ) - brotli? ( app-arch/brotli:= ) - ciscodump? ( >=net-libs/libssh-0.6 ) - filecaps? ( sys-libs/libcap ) - http2? ( net-libs/nghttp2:= ) - ilbc? ( media-libs/libilbc ) - kerberos? ( virtual/krb5 ) - libxml2? ( dev-libs/libxml2 ) - lua? ( ${LUA_DEPS} ) - lz4? ( app-arch/lz4:= ) - maxminddb? ( dev-libs/libmaxminddb:= ) - minizip? ( sys-libs/zlib[minizip] ) - netlink? ( dev-libs/libnl:3 ) - opus? ( media-libs/opus ) - pcap? ( net-libs/libpcap ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtmultimedia:5 - dev-qt/qtprintsupport:5 - dev-qt/qtwidgets:5 - x11-misc/xdg-utils - ) - sbc? ( media-libs/sbc ) - sdjournal? ( sys-apps/systemd ) - smi? ( net-libs/libsmi ) - snappy? ( app-arch/snappy ) - spandsp? ( media-libs/spandsp ) - sshdump? ( >=net-libs/libssh-0.6 ) - ssl? ( net-libs/gnutls:= ) - zlib? ( sys-libs/zlib ) - zstd? ( app-arch/zstd:= )" -DEPEND="${RDEPEND}" -BDEPEND="${PYTHON_DEPS} - dev-lang/perl - sys-devel/flex - sys-devel/gettext - virtual/pkgconfig - doc? ( - app-doc/doxygen - dev-ruby/asciidoctor - ) - qt5? ( - dev-qt/linguist-tools:5 - ) - test? ( - $(python_gen_any_dep ' - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] - ') - )" -RDEPEND="${RDEPEND} - qt5? ( virtual/freedesktop-icon-theme ) - selinux? ( sec-policy/selinux-wireshark )" - -PATCHES=( - "${FILESDIR}"/${PN}-2.6.0-redhat.patch - "${FILESDIR}"/${PN}-3.4.2-cmake-lua-version.patch -) - -python_check_deps() { - use test || return 0 - - python_has_version -b "dev-python/pytest[${PYTHON_USEDEP}]" && - python_has_version -b "dev-python/pytest-xdist[${PYTHON_USEDEP}]" -} - -pkg_setup() { - use lua && lua-single_pkg_setup - - python-any-r1_pkg_setup -} - -src_configure() { - local mycmakeargs - - # Workaround bug #213705. If krb5-config --libs has -lcrypto then pass - # --with-ssl to ./configure. (Mimics code from acinclude.m4). - if use kerberos ; then - case $(krb5-config --libs) in - *-lcrypto*) - ewarn "Kerberos was built with ssl support: linkage with openssl is enabled." - ewarn "Note there are annoying license incompatibilities between the OpenSSL" - ewarn "license and the GPL, so do your check before distributing such package." - mycmakeargs+=( -DENABLE_GNUTLS=$(usex ssl) ) - ;; - esac - fi - - if use qt5 ; then - export QT_MIN_VERSION=5.3.0 - append-cxxflags -fPIC -DPIC - fi - - python_setup - - mycmakeargs+=( - -DPython3_EXECUTABLE="${PYTHON}" - -DCMAKE_DISABLE_FIND_PACKAGE_{Asciidoctor,DOXYGEN}=$(usex !doc) - - $(use androiddump && use pcap && echo -DEXTCAP_ANDROIDDUMP_LIBPCAP=yes) - $(usex qt5 LRELEASE=$(qt5_get_bindir)/lrelease '') - $(usex qt5 MOC=$(qt5_get_bindir)/moc '') - $(usex qt5 RCC=$(qt5_get_bindir)/rcc '') - $(usex qt5 UIC=$(qt5_get_bindir)/uic '') - - -DBUILD_androiddump=$(usex androiddump) - -DBUILD_capinfos=$(usex capinfos) - -DBUILD_captype=$(usex captype) - -DBUILD_ciscodump=$(usex ciscodump) - -DBUILD_dftest=$(usex dftest) - -DBUILD_dpauxmon=$(usex dpauxmon) - -DBUILD_dumpcap=$(usex dumpcap) - -DBUILD_editcap=$(usex editcap) - -DBUILD_mergecap=$(usex mergecap) - -DBUILD_mmdbresolve=$(usex maxminddb) - -DBUILD_randpkt=$(usex randpkt) - -DBUILD_randpktdump=$(usex randpktdump) - -DBUILD_reordercap=$(usex reordercap) - -DBUILD_sdjournal=$(usex sdjournal) - -DBUILD_sharkd=$(usex sharkd) - -DBUILD_sshdump=$(usex sshdump) - -DBUILD_text2pcap=$(usex text2pcap) - -DBUILD_tfshark=$(usex tfshark) - -DBUILD_tshark=$(usex tshark) - -DBUILD_udpdump=$(usex udpdump) - -DBUILD_wireshark=$(usex qt5) - -DDISABLE_WERROR=ON - -DENABLE_BCG729=$(usex bcg729) - -DENABLE_BROTLI=$(usex brotli) - -DENABLE_CAP=$(usex filecaps caps) - -DENABLE_GNUTLS=$(usex ssl) - -DENABLE_ILBC=$(usex ilbc) - -DENABLE_KERBEROS=$(usex kerberos) - -DENABLE_LIBXML2=$(usex libxml2) - -DENABLE_LTO=$(usex lto) - -DENABLE_LUA=$(usex lua) - -DENABLE_LZ4=$(usex lz4) - -DENABLE_MINIZIP=$(usex minizip) - -DENABLE_NETLINK=$(usex netlink) - -DENABLE_NGHTTP2=$(usex http2) - -DENABLE_OPUS=$(usex opus) - -DENABLE_PCAP=$(usex pcap) - -DENABLE_PLUGINS=$(usex plugins) - -DENABLE_PLUGIN_IFDEMO=$(usex plugin-ifdemo) - -DENABLE_SBC=$(usex sbc) - -DENABLE_SMI=$(usex smi) - -DENABLE_SNAPPY=$(usex snappy) - -DENABLE_SPANDSP=$(usex spandsp) - -DENABLE_ZLIB=$(usex zlib) - -DENABLE_ZSTD=$(usex zstd) - ) - - cmake_src_configure -} - -src_test() { - cmake_build test-programs - - # https://www.wireshark.org/docs/wsdg_html_chunked/ChTestsRunPytest.html - epytest \ - --disable-capture \ - --skip-missing-programs=all \ - --program-path "${BUILD_DIR}"/run -} - -src_install() { - cmake_src_install - - # FAQ is not required as is installed from help/faq.txt - dodoc AUTHORS ChangeLog NEWS README* doc/randpkt.txt doc/README* - - # install headers - insinto /usr/include/wireshark - doins ws_diag_control.h ws_symbol_export.h \ - "${BUILD_DIR}"/config.h - - # If trying to remove this, try build e.g. libvirt first! - # At last check, Fedora is still doing this too. - local dir dirs=( - epan - epan/crypt - epan/dfilter - epan/dissectors - epan/ftypes - wiretap - wsutil - wsutil/wmem - ) - - for dir in "${dirs[@]}" ; do - insinto /usr/include/wireshark/${dir} - doins ${dir}/*.h - done - - if use qt5 ; then - local s - - for s in 16 32 48 64 128 256 512 1024 ; do - insinto /usr/share/icons/hicolor/${s}x${s}/apps - newins image/wsicon${s}.png wireshark.png - done - - for s in 16 24 32 48 64 128 256 ; do - insinto /usr/share/icons/hicolor/${s}x${s}/mimetypes - newins image/WiresharkDoc-${s}.png application-vnd.tcpdump.pcap.png - done - fi - - if [[ -d "${ED}"/usr/share/appdata ]] ; then - rm -r "${ED}"/usr/share/appdata || die - fi -} - -pkg_postinst() { - xdg_pkg_postinst - - # Add group for users allowed to sniff. - chgrp pcap "${EROOT}"/usr/bin/dumpcap - - if use dumpcap && use pcap ; then - fcaps -o 0 -g pcap -m 4710 -M 0710 \ - cap_dac_read_search,cap_net_raw,cap_net_admin \ - "${EROOT}"/usr/bin/dumpcap - fi - - ewarn "NOTE: To capture traffic with wireshark as normal user you have to" - ewarn "add yourself to the pcap group. This security measure ensures" - ewarn "that only trusted users are allowed to sniff your traffic." -} diff --git a/net-analyzer/wireshark/wireshark-4.0.3.ebuild b/net-analyzer/wireshark/wireshark-4.0.3-r1.ebuild similarity index 99% rename from net-analyzer/wireshark/wireshark-4.0.3.ebuild rename to net-analyzer/wireshark/wireshark-4.0.3-r1.ebuild index 0d380cae24c9..b80599dfacbf 100644 --- a/net-analyzer/wireshark/wireshark-4.0.3.ebuild +++ b/net-analyzer/wireshark/wireshark-4.0.3-r1.ebuild @@ -79,7 +79,7 @@ RDEPEND=" sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) - snappy? ( app-arch/snappy ) + snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) diff --git a/net-analyzer/wireshark/wireshark-4.0.4.ebuild b/net-analyzer/wireshark/wireshark-4.0.4-r1.ebuild similarity index 99% rename from net-analyzer/wireshark/wireshark-4.0.4.ebuild rename to net-analyzer/wireshark/wireshark-4.0.4-r1.ebuild index 442aa877d528..f22f7cd62c6b 100644 --- a/net-analyzer/wireshark/wireshark-4.0.4.ebuild +++ b/net-analyzer/wireshark/wireshark-4.0.4-r1.ebuild @@ -79,7 +79,7 @@ RDEPEND=" sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) - snappy? ( app-arch/snappy ) + snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) diff --git a/net-analyzer/wireshark/wireshark-9999.ebuild b/net-analyzer/wireshark/wireshark-9999.ebuild index 042562603805..62593372fe05 100644 --- a/net-analyzer/wireshark/wireshark-9999.ebuild +++ b/net-analyzer/wireshark/wireshark-9999.ebuild @@ -79,7 +79,7 @@ RDEPEND=" sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd:= ) smi? ( net-libs/libsmi ) - snappy? ( app-arch/snappy ) + snappy? ( app-arch/snappy:= ) spandsp? ( media-libs/spandsp:= ) sshdump? ( >=net-libs/libssh-0.6:= ) ssl? ( >=net-libs/gnutls-3.5.8:= ) diff --git a/net-analyzer/wtfis/wtfis-0.5.1.ebuild b/net-analyzer/wtfis/wtfis-0.5.1.ebuild index 98a16230fa10..dc39ae77fcb0 100644 --- a/net-analyzer/wtfis/wtfis-0.5.1.ebuild +++ b/net-analyzer/wtfis/wtfis-0.5.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=hatchling -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_{9..11} ) inherit distutils-r1 DESCRIPTION="Passive hostname, domain and IP lookup tool for non-robots" diff --git a/net-analyzer/wtfis/wtfis-0.6.1.ebuild b/net-analyzer/wtfis/wtfis-0.6.1.ebuild index bc0d8ff31d44..4ab2cc180a22 100644 --- a/net-analyzer/wtfis/wtfis-0.6.1.ebuild +++ b/net-analyzer/wtfis/wtfis-0.6.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=hatchling -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_{9..11} ) inherit distutils-r1 DESCRIPTION="Passive hostname, domain and IP lookup tool for non-robots" diff --git a/net-analyzer/wtfis/wtfis-9999.ebuild b/net-analyzer/wtfis/wtfis-9999.ebuild index bc0d8ff31d44..4ab2cc180a22 100644 --- a/net-analyzer/wtfis/wtfis-9999.ebuild +++ b/net-analyzer/wtfis/wtfis-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=hatchling -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_{9..11} ) inherit distutils-r1 DESCRIPTION="Passive hostname, domain and IP lookup tool for non-robots" diff --git a/net-analyzer/zmap/files/zmap-2.1.1-always-install-config.patch b/net-analyzer/zmap/files/zmap-2.1.1-always-install-config.patch new file mode 100644 index 000000000000..b3a8f9003dc5 --- /dev/null +++ b/net-analyzer/zmap/files/zmap-2.1.1-always-install-config.patch @@ -0,0 +1,20 @@ +We always want to install configs as the host machine may be different from +the one where zmap is installed to. Plus we have CONFIG_PROTECT in Gentoo +for protecting the user's existing configuration. + +Bug: https://bugs.gentoo.org/885707 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -135,11 +135,7 @@ message(STATUS "Default ZMap configuration file location is /etc/zmap") + foreach(EACH_CONF ${CONF_FILES}) + get_filename_component(CONF_BASENAME ${EACH_CONF} NAME) + message(STATUS "Checking if ${CONF_BASENAME} exists there...") +- if(NOT EXISTS "/etc/zmap/${CONF_BASENAME}") +- install(FILES ${EACH_CONF} DESTINATION ${CONFIG_DESTINATION}) +- else() +- message(WARNING "Existing configuration file detected at /etc/zmap/${CONF_BASENAME}, ${CONF_BASENAME} from sources will NOT be installed. Please check and install manually!") +- endif() ++ install(FILES ${EACH_CONF} DESTINATION ${CONFIG_DESTINATION}) + endforeach() + + # Allow Debian Packaging diff --git a/net-analyzer/zmap/zmap-2.1.1-r4.ebuild b/net-analyzer/zmap/zmap-2.1.1-r5.ebuild similarity index 79% rename from net-analyzer/zmap/zmap-2.1.1-r4.ebuild rename to net-analyzer/zmap/zmap-2.1.1-r5.ebuild index 6b1d7f0b8261..97210a199bd6 100644 --- a/net-analyzer/zmap/zmap-2.1.1-r4.ebuild +++ b/net-analyzer/zmap/zmap-2.1.1-r5.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit cmake fcaps @@ -14,18 +14,28 @@ SLOT="0" KEYWORDS="amd64 arm ~arm64 x86" IUSE="mongo redis" -RDEPEND="dev-libs/gmp:= +RDEPEND=" + dev-libs/gmp:= net-libs/libpcap dev-libs/json-c:= mongo? ( dev-db/mongodb dev-libs/mongo-c-driver ) - redis? ( dev-libs/hiredis:= )" -DEPEND="${RDEPEND} + redis? ( dev-libs/hiredis:= ) +" +DEPEND="${RDEPEND}" +BDEPEND=" dev-util/gengetopt sys-devel/flex - dev-util/byacc" + dev-util/byacc +" + +PATCHES=( + "${FILESDIR}"/${PN}-2.1.1-always-install-config.patch +) + +FILECAPS=( cap_net_raw=ep usr/sbin/zmap ) src_prepare() { sed \ @@ -40,8 +50,7 @@ src_configure() { -DWITH_WERROR=OFF -DWITH_MONGO="$(usex mongo)" -DWITH_REDIS="$(usex redis)" - ) + ) + cmake_src_configure } - -FILECAPS=( cap_net_raw=ep usr/sbin/zmap ) diff --git a/net-analyzer/zmap/zmap-9999.ebuild b/net-analyzer/zmap/zmap-9999.ebuild index 6a7cb8480b94..b8a99df048df 100644 --- a/net-analyzer/zmap/zmap-9999.ebuild +++ b/net-analyzer/zmap/zmap-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit cmake fcaps git-r3 @@ -17,20 +17,27 @@ RDEPEND=" dev-libs/gmp:= net-libs/libpcap dev-libs/json-c:= - redis? ( dev-libs/hiredis:= )" -DEPEND="${RDEPEND} + redis? ( dev-libs/hiredis:= ) +" +DEPEND="${RDEPEND}" +BDEPEND=" dev-util/gengetopt sys-devel/flex dev-util/byacc " +PATCHES=( + "${FILESDIR}"/${PN}-2.1.1-always-install-config.patch +) + +FILECAPS=( cap_net_raw=ep usr/sbin/zmap ) + src_configure() { local mycmakeargs=( -DENABLE_DEVELOPMENT=OFF -DWITH_WERROR=OFF -DWITH_REDIS="$(usex redis)" - ) + ) + cmake_src_configure } - -FILECAPS=( cap_net_raw=ep usr/sbin/zmap ) diff --git a/net-dialup/Manifest.gz b/net-dialup/Manifest.gz index e89bca4e4654..195595792b6c 100644 Binary files a/net-dialup/Manifest.gz and b/net-dialup/Manifest.gz differ diff --git a/net-dialup/minicom/Manifest b/net-dialup/minicom/Manifest index 920a2cf93f01..56424c22667d 100644 --- a/net-dialup/minicom/Manifest +++ b/net-dialup/minicom/Manifest @@ -1,2 +1 @@ -DIST minicom-2.7.1.tar.gz 863544 BLAKE2B 473dbf9695e16fdf23581b831d1b76f32a5b9f47cf82c6430386646a4ad04a58d61bea08ba032d0c4f779fd19d90d12270df317b719bad6cba63d921c197c87c SHA512 eb9679ac3a3d3585ea06c54407567898e50b981378656e7f8a241071c91054ff0928cc9023d2c79d1936588cdffa9426f4962b556e8daa1783add0c5ac59b5af DIST minicom-2.8.tar.gz 948015 BLAKE2B 007a2975a996e2dd2390b1cf20e1a70c4bb1b57d224211d30e8d83a9d02a45c147df34bf409961a20ad3746cb6b5551c1e0702a05bb0a0a3f7f042d251b553be SHA512 5ced0ff79cec11464154561130ddc6a38865170d4e4d80185ada540ba173fe89e35703b6d7fd0cf86caef6e020fcad1d7b1fdb4d4f55e3ddb906aea6a4b81b36 diff --git a/net-dialup/minicom/files/minicom-2.3-gentoo-runscript.patch b/net-dialup/minicom/files/minicom-2.3-gentoo-runscript.patch deleted file mode 100644 index ff72db966b85..000000000000 --- a/net-dialup/minicom/files/minicom-2.3-gentoo-runscript.patch +++ /dev/null @@ -1,55 +0,0 @@ -diff -ru minicom-2.3.orig/extras/scriptdemo minicom-2.3/extras/scriptdemo ---- minicom-2.3.orig/extras/scriptdemo 2003-03-30 21:55:39.000000000 +0300 -+++ minicom-2.3/extras/scriptdemo 2008-04-20 05:27:19.000000000 +0300 -@@ -1,5 +1,5 @@ - # A little demonstration of the possibilities of "runscript". --# This script can be executed by typing: "runscript scriptdemo". -+# This script can be executed by typing: "/usr/bin/runscript scriptdemo". - # - # Adjust the stty's below to your system: BSD-like or SysV-like. - # Linux ofcourse accepts both :-) -diff -ru minicom-2.3.orig/man/minicom.1 minicom-2.3/man/minicom.1 ---- minicom-2.3.orig/man/minicom.1 2008-02-24 12:22:43.000000000 +0200 -+++ minicom-2.3/man/minicom.1 2008-04-20 05:27:19.000000000 +0300 -@@ -418,7 +418,7 @@ - .TP 0.5i - .B D - Script program - Which program to use as the script interpreter. Defaults to the --program "runscript", but if you want to use something else (eg, -+program "/usr/bin/runscript", but if you want to use something else (eg, - /bin/sh or "expect") it is possible. Stdin and stdout are connected - to the modem, stderr to the screen. - .RS 0.5i -diff -ru minicom-2.3.orig/man/runscript.1 minicom-2.3/man/runscript.1 ---- minicom-2.3.orig/man/runscript.1 2007-11-13 23:35:06.000000000 +0200 -+++ minicom-2.3/man/runscript.1 2008-04-20 05:27:19.000000000 +0300 -@@ -5,7 +5,7 @@ - .\" for conditions under which this file may be redistributed. - .TH RUNSCRIPT 1 "$Date: 2008/04/20 02:39:28 $" "User's Manual" - .SH NAME --runscript \- script interpreter for minicom -+/usr/bin/runscript \- script interpreter for minicom - .SH SYNOPSIS - .B runscript - .RI "scriptname [logfile [homedir]]" -diff -ru minicom-2.3.orig/src/rwconf.c minicom-2.3/src/rwconf.c ---- minicom-2.3.orig/src/rwconf.c 2007-10-10 23:18:20.000000000 +0300 -+++ minicom-2.3/src/rwconf.c 2008-04-20 05:27:19.000000000 +0300 -@@ -118,7 +118,7 @@ - { N_("No"), 0, "kermreal" }, - { "3", 0, "colusage" }, - /* The script program */ -- { "runscript", 0, "scriptprog" }, -+ { "/usr/bin/runscript", 0, "scriptprog" }, - /* Modem parameters */ - { "~^M~AT S7=45 S0=0 L1 V1 X4 &c1 E1 Q0^M", 0, "minit" }, - { "^M~ATZ^M~", 0, "mreset" }, -@@ -246,7 +246,7 @@ - int matched; - - if (conftype == CONFIG_GLOBAL) -- strcpy(P_SCRIPTPROG, "runscript"); -+ strcpy(P_SCRIPTPROG, "/usr/bin/runscript"); - - line = malloc(line_size); - if (!line) { diff --git a/net-dialup/minicom/files/minicom-2.7.1-gcc-10.patch b/net-dialup/minicom/files/minicom-2.7.1-gcc-10.patch deleted file mode 100644 index 43e057ce1fe8..000000000000 --- a/net-dialup/minicom/files/minicom-2.7.1-gcc-10.patch +++ /dev/null @@ -1,31 +0,0 @@ -https://bugs.gentoo.org/705836 ---- a/src/minicom.h -+++ b/src/minicom.h -@@ -109,13 +109,13 @@ EXTERN char *dial_tty; /* tty to use. */ - - EXTERN char *dial_name; /* System we're conneced to */ - EXTERN char *dial_number; /* Number we've dialed. */ --EXTERN char *dial_user; /* Our username there */ --EXTERN char *dial_pass; /* Our password */ -+extern char *dial_user; /* Our username there */ -+extern char *dial_pass; /* Our password */ - - #ifdef USE_SOCKET --EXTERN int portfd_is_socket; /* File descriptor is a unix socket */ --EXTERN int portfd_is_connected; /* 1 if the socket is connected */ --EXTERN struct sockaddr_un portfd_sock_addr; /* the unix socket address */ -+extern int portfd_is_socket; /* File descriptor is a unix socket */ -+extern int portfd_is_connected; /* 1 if the socket is connected */ -+extern struct sockaddr_un portfd_sock_addr; /* the unix socket address */ - #define portfd_connected ((portfd_is_socket && !portfd_is_connected) \ - ? -1 : portfd) - #else -@@ -141,7 +141,7 @@ EXTERN int sbcolor; /* Status Bar Background Color */ - EXTERN int st_attr; /* Status Bar attributes. */ - - /* jl 04.09.97 conversion tables */ --EXTERN unsigned char vt_outmap[256], vt_inmap[256]; -+extern unsigned char vt_outmap[256], vt_inmap[256]; - - /* MARK updated 02/17/95 - history buffer */ - EXTERN int num_hist_lines; /* History buffer size */ diff --git a/net-dialup/minicom/files/minicom-2.7.1-musl.patch b/net-dialup/minicom/files/minicom-2.7.1-musl.patch deleted file mode 100644 index da4ce13d0b8f..000000000000 --- a/net-dialup/minicom/files/minicom-2.7.1-musl.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- a/src/dial.c -+++ b/src/dial.c -@@ -39,11 +39,9 @@ - #include "intl.h" - - #ifdef VC_MUSIC --# if defined(__GLIBC__) - # include - # include - # include --# endif - #endif - - enum { CURRENT_VERSION = 6 }; ---- a/src/getsdir.h -+++ b/src/getsdir.h -@@ -22,6 +22,7 @@ - * and licensing conditions. See the source, Luke. - */ - -+#include - #include - - typedef struct dirEntry { /* structure of data item */ diff --git a/net-dialup/minicom/minicom-2.7.1.ebuild b/net-dialup/minicom/minicom-2.7.1.ebuild deleted file mode 100644 index 4ae4c38c5c6f..000000000000 --- a/net-dialup/minicom/minicom-2.7.1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools - -DESCRIPTION="Serial Communication Program" -HOMEPAGE="https://salsa.debian.org/minicom-team/minicom" -SRC_URI="https://alioth-archive.debian.org/releases/minicom/Source/${PV}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="nls" - -COMMON_DEPEND="sys-libs/ncurses:=" -DEPEND="${COMMON_DEPEND} - nls? ( sys-devel/gettext )" -RDEPEND="${COMMON_DEPEND} - net-dialup/lrzsz" - -DOCS="AUTHORS ChangeLog NEWS README doc/minicom.FAQ" -S="${WORKDIR}/${PN}-2.7" # 2.7.1 specific - -PATCHES=( - "${FILESDIR}"/${PN}-2.3-gentoo-runscript.patch - "${FILESDIR}"/${PN}-2.7-lockdir.patch - "${FILESDIR}"/${PN}-2.7.1-gcc-10.patch - "${FILESDIR}"/${PN}-2.7.1-musl.patch -) - -src_prepare() { - default - mv "${S}"/configure.{in,ac} - eautoreconf -} - -src_configure() { - # Lockdir must exist if not manually specified. - # /var/lock is created by openrc. - LOCKDIR=/var/lock - econf \ - --sysconfdir="${EPREFIX}"/etc/${PN} \ - --enable-lock-dir="${LOCKDIR}" \ - $(use_enable nls) -} - -src_install() { - default - insinto /etc/minicom - doins "${FILESDIR}"/minirc.dfl -} - -pkg_preinst() { - [[ -s ${EROOT}/etc/minicom/minirc.dfl ]] && rm -f "${ED}"/etc/minicom/minirc.dfl -} diff --git a/net-dialup/minicom/minicom-2.8.ebuild b/net-dialup/minicom/minicom-2.8-r2.ebuild similarity index 77% rename from net-dialup/minicom/minicom-2.8.ebuild rename to net-dialup/minicom/minicom-2.8-r2.ebuild index d68e0a208e56..6a31287bdcb2 100644 --- a/net-dialup/minicom/minicom-2.8.ebuild +++ b/net-dialup/minicom/minicom-2.8-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools @@ -11,7 +11,7 @@ SRC_URI="https://salsa.debian.org/${PN}-team/${PN}/-/archive/${PV}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="nls" DEPEND="sys-libs/ncurses:=" @@ -40,6 +40,9 @@ src_configure() { # Lockdir must exist if not manually specified. # '/var/lock' is created by OpenRC. local myeconfargs=( + # See bug #788142 + --sysconfdir="${EPREFIX}"/etc/${PN} + --disable-rpath --enable-lock-dir="/var/lock" $(use_enable nls) @@ -51,10 +54,7 @@ src_configure() { src_install() { default + # Needs to match --sysconfdir above insinto /etc/minicom doins "${FILESDIR}"/minirc.dfl } - -pkg_preinst() { - [[ -s "${EROOT}"/etc/minicom/minirc.dfl ]] && rm -f "${ED}"/etc/minicom/minirc.dfl -} diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz index 0138c0ea1142..66d67e09db9c 100644 Binary files a/net-dns/Manifest.gz and b/net-dns/Manifest.gz differ diff --git a/net-dns/smartdns/Manifest b/net-dns/smartdns/Manifest index 45538514e0c2..1ce0d8ebdb4c 100644 --- a/net-dns/smartdns/Manifest +++ b/net-dns/smartdns/Manifest @@ -1,2 +1,2 @@ -DIST smartdns-38.1.tar.gz 522130 BLAKE2B d6e28ece8545d6dc948670ff2bf3e4e842ccec7cf82f2f7ff2a197d5dfd6c244dfdef98c9ee38ffc4016b36f1b54ddc2fc8239e5838269055ed58473712e7462 SHA512 345010a9d4e43403e2ad068a8c6a0b871de8d4c524856c062909db61ac36b20988ae17b15be2f330589f93a7b7d521e885384c93987b81715e42a49798dec598 DIST smartdns-40.tar.gz 542046 BLAKE2B 33612f46168c4a562880a6ee4099a11f5259bbca1fa4055d3479577e6115934282ccc4d05a90af709da46171934a1ac999b8e3f3d92a1de8a1ce0b9b5b564742 SHA512 d792879b48d05edd016df5ee46eb105dcb21520b08a7d26e28ec1ad890c6a82e21468c717c3bc2fc13b38af12e8883e0007d93488a1549355941f190b175248b +DIST smartdns-41.tar.gz 562057 BLAKE2B 7e30fa02f4e743a9de42d69c7ce12d8d2ce39363507d56279d6843305b88decddc561bfa3cc16d83d937a881dc87e2cd0000ef2945eb3ca3e0b42832e363d810 SHA512 85d8523f62f80533bdbdcaf3fd50e4b36cfb4898f8af6221cd06cae69fe9509d0a6a6f8ef4effee86c36caa5090f97d11b4fed4dabed66ad5d9b665f71247315 diff --git a/net-dns/smartdns/smartdns-38.1.ebuild b/net-dns/smartdns/smartdns-41.ebuild similarity index 95% rename from net-dns/smartdns/smartdns-38.1.ebuild rename to net-dns/smartdns/smartdns-41.ebuild index b3addca60631..96243a40fbf5 100644 --- a/net-dns/smartdns/smartdns-38.1.ebuild +++ b/net-dns/smartdns/smartdns-41.ebuild @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 diff --git a/net-firewall/Manifest.gz b/net-firewall/Manifest.gz index a1008d23d954..c5b2d4f2010c 100644 Binary files a/net-firewall/Manifest.gz and b/net-firewall/Manifest.gz differ diff --git a/net-firewall/nftables/nftables-1.0.5.ebuild b/net-firewall/nftables/nftables-1.0.5.ebuild index 3b4f9fbbf1d2..5226ca74577d 100644 --- a/net-firewall/nftables/nftables-1.0.5.ebuild +++ b/net-firewall/nftables/nftables-1.0.5.ebuild @@ -167,15 +167,30 @@ src_install() { } pkg_preinst() { - if [[ -d /sys/module/nf_tables ]] && [[ -x /sbin/nft ]] && [[ -z ${ROOT} ]]; then - if ! /sbin/nft -t list ruleset | "${ED}"/sbin/nft -c -f -; then - eerror "Your currently loaded ruleset cannot be parsed by the newly built instance of" - eerror "nft. This probably means that there is a regression introduced by v${PV}." - eerror "(To make the ebuild fail instead of warning, set NFTABLES_ABORT_ON_RELOAD_FAILURE=1.)" - - if [[ -n ${NFTABLES_ABORT_ON_RELOAD_FAILURE} ]] ; then - die "Aborting because of failed nft reload!" - fi + local stderr + + # There's a history of regressions with nftables upgrades. Perform a + # safety check to help us spot them earlier. For the check to pass, the + # currently loaded ruleset, if any, must be successfully evaluated by + # the newly built instance of nft(8). + if [[ -n ${ROOT} ]] || [[ ! -d /sys/module/nftables ]] || [[ ! -x /sbin/nft ]]; then + # Either nftables isn't yet in use or nft(8) cannot be executed. + return + elif ! stderr=$(umask 177; /sbin/nft -t list ruleset 2>&1 >"${T}"/ruleset.nft); then + # Report errors induced by trying to list the ruleset but don't + # treat them as being fatal. + printf '%s\n' "${stderr}" >&2 + elif [[ ${stderr} == *"is managed by iptables-nft"* ]]; then + # Rulesets generated by iptables-nft are special in nature and + # will not always be printed in a way that constitutes a valid + # syntax for ntf(8). Ignore them. + return + elif set -- "${ED}"/usr/lib*/libnftables.so; ! LD_LIBRARY_PATH=${1%/*} "${ED}"/sbin/nft -c -f -- "${T}"/ruleset.nft; then + eerror "Your currently loaded ruleset cannot be parsed by the newly built instance of" + eerror "nft. This probably means that there is a regression introduced by v${PV}." + eerror "(To make the ebuild fail instead of warning, set NFTABLES_ABORT_ON_RELOAD_FAILURE=1.)" + if [[ -n ${NFTABLES_ABORT_ON_RELOAD_FAILURE} ]] ; then + die "Aborting because of failed nft reload!" fi fi } diff --git a/net-firewall/nftables/nftables-1.0.6.ebuild b/net-firewall/nftables/nftables-1.0.6.ebuild index bd4f23708a7e..e5de7f69c0a1 100644 --- a/net-firewall/nftables/nftables-1.0.6.ebuild +++ b/net-firewall/nftables/nftables-1.0.6.ebuild @@ -169,28 +169,28 @@ src_install() { pkg_preinst() { local stderr - # There's a history of regressions with nftables upgrades. Add a safety - # check to help us spot them earlier. - if [[ -d /sys/module/nf_tables ]] && [[ -x /sbin/nft ]] && [[ -z ${ROOT} ]]; then - # Check the current loaded ruleset, if any, using the newly - # built instance of nft(8). - if ! stderr=$(umask 177; /sbin/nft -t list ruleset 2>&1 >"${T}"/ruleset.nft); then - # Report errors induced by trying to list the ruleset - # but don't treat them as being fatal. - printf '%s\n' "${stderr}" >&2 - elif [[ ${stderr} == *"is managed by iptables-nft"* ]]; then - # Rulesets generated by iptables-nft are special in - # nature and will not always be printed in a way that - # constitutes a valid syntax for ntf(8). Ignore them. - return - elif ! "${ED}"/sbin/nft -c -f "${T}"/ruleset.nft; then - eerror "Your currently loaded ruleset cannot be parsed by the newly built instance of" - eerror "nft. This probably means that there is a regression introduced by v${PV}." - eerror "(To make the ebuild fail instead of warning, set NFTABLES_ABORT_ON_RELOAD_FAILURE=1.)" - - if [[ -n ${NFTABLES_ABORT_ON_RELOAD_FAILURE} ]] ; then - die "Aborting because of failed nft reload!" - fi + # There's a history of regressions with nftables upgrades. Perform a + # safety check to help us spot them earlier. For the check to pass, the + # currently loaded ruleset, if any, must be successfully evaluated by + # the newly built instance of nft(8). + if [[ -n ${ROOT} ]] || [[ ! -d /sys/module/nftables ]] || [[ ! -x /sbin/nft ]]; then + # Either nftables isn't yet in use or nft(8) cannot be executed. + return + elif ! stderr=$(umask 177; /sbin/nft -t list ruleset 2>&1 >"${T}"/ruleset.nft); then + # Report errors induced by trying to list the ruleset but don't + # treat them as being fatal. + printf '%s\n' "${stderr}" >&2 + elif [[ ${stderr} == *"is managed by iptables-nft"* ]]; then + # Rulesets generated by iptables-nft are special in nature and + # will not always be printed in a way that constitutes a valid + # syntax for ntf(8). Ignore them. + return + elif set -- "${ED}"/usr/lib*/libnftables.so; ! LD_LIBRARY_PATH=${1%/*} "${ED}"/sbin/nft -c -f -- "${T}"/ruleset.nft; then + eerror "Your currently loaded ruleset cannot be parsed by the newly built instance of" + eerror "nft. This probably means that there is a regression introduced by v${PV}." + eerror "(To make the ebuild fail instead of warning, set NFTABLES_ABORT_ON_RELOAD_FAILURE=1.)" + if [[ -n ${NFTABLES_ABORT_ON_RELOAD_FAILURE} ]] ; then + die "Aborting because of failed nft reload!" fi fi } diff --git a/net-firewall/nftables/nftables-1.0.7.ebuild b/net-firewall/nftables/nftables-1.0.7.ebuild index f9713c4a95f6..13ecec61248b 100644 --- a/net-firewall/nftables/nftables-1.0.7.ebuild +++ b/net-firewall/nftables/nftables-1.0.7.ebuild @@ -34,7 +34,7 @@ RESTRICT="!test? ( test )" RDEPEND=" >=net-libs/libmnl-1.0.4:= - >=net-libs/libnftnl-1.2.4:= + >=net-libs/libnftnl-1.2.5:= gmp? ( dev-libs/gmp:= ) json? ( dev-libs/jansson:= ) python? ( ${PYTHON_DEPS} ) @@ -170,28 +170,28 @@ src_install() { pkg_preinst() { local stderr - # There's a history of regressions with nftables upgrades. Add a safety - # check to help us spot them earlier. - if [[ -d /sys/module/nf_tables ]] && [[ -x /sbin/nft ]] && [[ -z ${ROOT} ]]; then - # Check the current loaded ruleset, if any, using the newly - # built instance of nft(8). - if ! stderr=$(umask 177; /sbin/nft -t list ruleset 2>&1 >"${T}"/ruleset.nft); then - # Report errors induced by trying to list the ruleset - # but don't treat them as being fatal. - printf '%s\n' "${stderr}" >&2 - elif [[ ${stderr} == *"is managed by iptables-nft"* ]]; then - # Rulesets generated by iptables-nft are special in - # nature and will not always be printed in a way that - # constitutes a valid syntax for ntf(8). Ignore them. - return - elif ! "${ED}"/sbin/nft -c -f "${T}"/ruleset.nft; then - eerror "Your currently loaded ruleset cannot be parsed by the newly built instance of" - eerror "nft. This probably means that there is a regression introduced by v${PV}." - eerror "(To make the ebuild fail instead of warning, set NFTABLES_ABORT_ON_RELOAD_FAILURE=1.)" - - if [[ -n ${NFTABLES_ABORT_ON_RELOAD_FAILURE} ]] ; then - die "Aborting because of failed nft reload!" - fi + # There's a history of regressions with nftables upgrades. Perform a + # safety check to help us spot them earlier. For the check to pass, the + # currently loaded ruleset, if any, must be successfully evaluated by + # the newly built instance of nft(8). + if [[ -n ${ROOT} ]] || [[ ! -d /sys/module/nftables ]] || [[ ! -x /sbin/nft ]]; then + # Either nftables isn't yet in use or nft(8) cannot be executed. + return + elif ! stderr=$(umask 177; /sbin/nft -t list ruleset 2>&1 >"${T}"/ruleset.nft); then + # Report errors induced by trying to list the ruleset but don't + # treat them as being fatal. + printf '%s\n' "${stderr}" >&2 + elif [[ ${stderr} == *"is managed by iptables-nft"* ]]; then + # Rulesets generated by iptables-nft are special in nature and + # will not always be printed in a way that constitutes a valid + # syntax for ntf(8). Ignore them. + return + elif set -- "${ED}"/usr/lib*/libnftables.so; ! LD_LIBRARY_PATH=${1%/*} "${ED}"/sbin/nft -c -f -- "${T}"/ruleset.nft; then + eerror "Your currently loaded ruleset cannot be parsed by the newly built instance of" + eerror "nft. This probably means that there is a regression introduced by v${PV}." + eerror "(To make the ebuild fail instead of warning, set NFTABLES_ABORT_ON_RELOAD_FAILURE=1.)" + if [[ -n ${NFTABLES_ABORT_ON_RELOAD_FAILURE} ]] ; then + die "Aborting because of failed nft reload!" fi fi } diff --git a/net-firewall/nftables/nftables-9999.ebuild b/net-firewall/nftables/nftables-9999.ebuild index f9713c4a95f6..13ecec61248b 100644 --- a/net-firewall/nftables/nftables-9999.ebuild +++ b/net-firewall/nftables/nftables-9999.ebuild @@ -34,7 +34,7 @@ RESTRICT="!test? ( test )" RDEPEND=" >=net-libs/libmnl-1.0.4:= - >=net-libs/libnftnl-1.2.4:= + >=net-libs/libnftnl-1.2.5:= gmp? ( dev-libs/gmp:= ) json? ( dev-libs/jansson:= ) python? ( ${PYTHON_DEPS} ) @@ -170,28 +170,28 @@ src_install() { pkg_preinst() { local stderr - # There's a history of regressions with nftables upgrades. Add a safety - # check to help us spot them earlier. - if [[ -d /sys/module/nf_tables ]] && [[ -x /sbin/nft ]] && [[ -z ${ROOT} ]]; then - # Check the current loaded ruleset, if any, using the newly - # built instance of nft(8). - if ! stderr=$(umask 177; /sbin/nft -t list ruleset 2>&1 >"${T}"/ruleset.nft); then - # Report errors induced by trying to list the ruleset - # but don't treat them as being fatal. - printf '%s\n' "${stderr}" >&2 - elif [[ ${stderr} == *"is managed by iptables-nft"* ]]; then - # Rulesets generated by iptables-nft are special in - # nature and will not always be printed in a way that - # constitutes a valid syntax for ntf(8). Ignore them. - return - elif ! "${ED}"/sbin/nft -c -f "${T}"/ruleset.nft; then - eerror "Your currently loaded ruleset cannot be parsed by the newly built instance of" - eerror "nft. This probably means that there is a regression introduced by v${PV}." - eerror "(To make the ebuild fail instead of warning, set NFTABLES_ABORT_ON_RELOAD_FAILURE=1.)" - - if [[ -n ${NFTABLES_ABORT_ON_RELOAD_FAILURE} ]] ; then - die "Aborting because of failed nft reload!" - fi + # There's a history of regressions with nftables upgrades. Perform a + # safety check to help us spot them earlier. For the check to pass, the + # currently loaded ruleset, if any, must be successfully evaluated by + # the newly built instance of nft(8). + if [[ -n ${ROOT} ]] || [[ ! -d /sys/module/nftables ]] || [[ ! -x /sbin/nft ]]; then + # Either nftables isn't yet in use or nft(8) cannot be executed. + return + elif ! stderr=$(umask 177; /sbin/nft -t list ruleset 2>&1 >"${T}"/ruleset.nft); then + # Report errors induced by trying to list the ruleset but don't + # treat them as being fatal. + printf '%s\n' "${stderr}" >&2 + elif [[ ${stderr} == *"is managed by iptables-nft"* ]]; then + # Rulesets generated by iptables-nft are special in nature and + # will not always be printed in a way that constitutes a valid + # syntax for ntf(8). Ignore them. + return + elif set -- "${ED}"/usr/lib*/libnftables.so; ! LD_LIBRARY_PATH=${1%/*} "${ED}"/sbin/nft -c -f -- "${T}"/ruleset.nft; then + eerror "Your currently loaded ruleset cannot be parsed by the newly built instance of" + eerror "nft. This probably means that there is a regression introduced by v${PV}." + eerror "(To make the ebuild fail instead of warning, set NFTABLES_ABORT_ON_RELOAD_FAILURE=1.)" + if [[ -n ${NFTABLES_ABORT_ON_RELOAD_FAILURE} ]] ; then + die "Aborting because of failed nft reload!" fi fi } diff --git a/net-im/Manifest.gz b/net-im/Manifest.gz index d40e42518eca..9be60d4218d0 100644 Binary files a/net-im/Manifest.gz and b/net-im/Manifest.gz differ diff --git a/net-im/cpop/cpop-0.0.4-r1.ebuild b/net-im/cpop/cpop-0.0.4-r2.ebuild similarity index 67% rename from net-im/cpop/cpop-0.0.4-r1.ebuild rename to net-im/cpop/cpop-0.0.4-r2.ebuild index 9315a2381ea0..77c21027edcc 100644 --- a/net-im/cpop/cpop-0.0.4-r1.ebuild +++ b/net-im/cpop/cpop-0.0.4-r2.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +inherit autotools DESCRIPTION="GTK+ network popup message client. Compatible with the jpop protocol" HOMEPAGE="http://www.draxil.uklinux.net/hip/index.pl?page=cpop" @@ -11,14 +13,24 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -RDEPEND="dev-libs/glib:2 - x11-libs/gtk+:2" +RDEPEND=" + dev-libs/glib:2 + x11-libs/gtk+:2 +" DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${P}-implicit-exit_memset_strlen.patch + "${FILESDIR}"/${P}-implicit-func-decls.patch ) +src_prepare() { + default + + # Clang 16, bug #900072 + eautoreconf +} + src_install() { emake DESTDIR="${D}" install dodoc README diff --git a/net-im/cpop/files/cpop-0.0.4-implicit-func-decls.patch b/net-im/cpop/files/cpop-0.0.4-implicit-func-decls.patch new file mode 100644 index 000000000000..ff3977e18055 --- /dev/null +++ b/net-im/cpop/files/cpop-0.0.4-implicit-func-decls.patch @@ -0,0 +1,19 @@ +https://bugs.gentoo.org/885705 +--- a/pop_client.c ++++ b/pop_client.c +@@ -2,6 +2,7 @@ + #include + #include + #include ++#include + #include + #include + #include +--- a/pop_common.h ++++ b/pop_common.h +@@ -3,4 +3,5 @@ + #define CP_MSGSIZE 2048 + #define CP_PORT 3233 + void errquit(char *message); ++void printquit(char *message); + #endif diff --git a/net-im/pidgin/pidgin-2.14.12.ebuild b/net-im/pidgin/pidgin-2.14.12.ebuild index bbccab8ab0fa..569079d30af2 100644 --- a/net-im/pidgin/pidgin-2.14.12.ebuild +++ b/net-im/pidgin/pidgin-2.14.12.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0/2" # libpurple version -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux" IUSE="aqua dbus debug doc eds gadu gnutls groupwise +gstreamer +gtk idn meanwhile ncurses networkmanager nls perl pie prediction python sasl spell tcl test tk v4l +xscreensaver zephyr zeroconf" diff --git a/net-im/signal-desktop-bin/Manifest b/net-im/signal-desktop-bin/Manifest index 3c5670db1ef4..44d0338b8380 100644 --- a/net-im/signal-desktop-bin/Manifest +++ b/net-im/signal-desktop-bin/Manifest @@ -1 +1 @@ -DIST signal-desktop_6.9.0_amd64.deb 122900528 BLAKE2B 811d523473ca6cc3bcabc468aed23487b13571c3afaf814f98c8fab01ec019a9cd80149fbc62c12f39b429e4072e949e970b2b2fd4ca044f9487aa45472feb48 SHA512 cb7d8a51e0eac40ba9730c9389f2e30d0e309a4a9b0c327c163201f116d51550394c84b8ac23e72f2ceb70bdac0af2b00607e5cc6e1c9be4da4c3f6ca99c6bea +DIST signal-desktop_6.10.1_amd64.deb 122881688 BLAKE2B a328ba411346392ae379bf4adc76c4709a65bded89dfe1ecc482db18d4cb88b5081ea06690af1756ac6dde907611892ddd1ce09926e6aee3f2c2a3e5f19e1a4b SHA512 8eeb76bc3debd29b7e6ab70b6af665063e15de893433bd62fcb3b47296b4017573cf904ec44ca3d4a01525472316ade2308942bf07722b922adb019ee3293d1a diff --git a/net-im/signal-desktop-bin/signal-desktop-bin-6.9.0.ebuild b/net-im/signal-desktop-bin/signal-desktop-bin-6.10.1.ebuild similarity index 100% rename from net-im/signal-desktop-bin/signal-desktop-bin-6.9.0.ebuild rename to net-im/signal-desktop-bin/signal-desktop-bin-6.10.1.ebuild diff --git a/net-irc/Manifest.gz b/net-irc/Manifest.gz index 9dfa7a60a5b6..aab01547e559 100644 Binary files a/net-irc/Manifest.gz and b/net-irc/Manifest.gz differ diff --git a/net-irc/emech/emech-3.0.99_p20221123.ebuild b/net-irc/emech/emech-3.0.99_p20221123.ebuild index f7107601febc..2a8aa0fe51bb 100644 --- a/net-irc/emech/emech-3.0.99_p20221123.ebuild +++ b/net-irc/emech/emech-3.0.99_p20221123.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,7 +15,7 @@ S="${WORKDIR}/energymech-${GIT_COMMIT}" LICENSE="GPL-2" SLOT="0" IUSE="debug session tcl" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" RDEPEND="virtual/libcrypt:=" DEPEND="${RDEPEND}" diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz index 007666de2ee0..58b9b5e38380 100644 Binary files a/net-libs/Manifest.gz and b/net-libs/Manifest.gz differ diff --git a/net-libs/libpcap/libpcap-1.10.3.ebuild b/net-libs/libpcap/libpcap-1.10.3.ebuild index 0191ce8d4da6..21a46673c4bd 100644 --- a/net-libs/libpcap/libpcap-1.10.3.ebuild +++ b/net-libs/libpcap/libpcap-1.10.3.ebuild @@ -18,7 +18,7 @@ else SRC_URI="https://www.tcpdump.org/release/${P}.tar.gz" SRC_URI+=" verify-sig? ( https://www.tcpdump.org/release/${P}.tar.gz.sig )" - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" fi LICENSE="BSD" diff --git a/net-libs/libsoup/files/strict-prototypes.patch b/net-libs/libsoup/files/strict-prototypes.patch new file mode 100644 index 000000000000..e9a84257ccb5 --- /dev/null +++ b/net-libs/libsoup/files/strict-prototypes.patch @@ -0,0 +1,20 @@ +https://gitlab.gnome.org/GNOME/libsoup/-/commit/146f1c96f741fb9ab62d74d99585b2e859f6cb5f + +From 146f1c96f741fb9ab62d74d99585b2e859f6cb5f Mon Sep 17 00:00:00 2001 +From: Patrick Griffis +Date: Fri, 17 Mar 2023 19:10:40 -0500 +Subject: [PATCH] Fix strict-prototype warning + +--- a/libsoup/http2/soup-body-input-stream-http2.c ++++ b/libsoup/http2/soup-body-input-stream-http2.c +@@ -72,7 +72,7 @@ static guint signals [LAST_SIGNAL] = { 0 }; + * Returns: a new #GInputStream + */ + GInputStream * +-soup_body_input_stream_http2_new () ++soup_body_input_stream_http2_new (void) + { + return G_INPUT_STREAM (g_object_new (SOUP_TYPE_BODY_INPUT_STREAM_HTTP2, NULL)); + } +-- +GitLab diff --git a/net-libs/libsoup/files/unsigned-char-http2.patch b/net-libs/libsoup/files/unsigned-char-http2.patch new file mode 100644 index 000000000000..ceee9d360e4b --- /dev/null +++ b/net-libs/libsoup/files/unsigned-char-http2.patch @@ -0,0 +1,21 @@ +https://gitlab.gnome.org/GNOME/libsoup/-/commit/d1509188ebd2219db1a147e9d77ffd5b4d161a2e + +From d1509188ebd2219db1a147e9d77ffd5b4d161a2e Mon Sep 17 00:00:00 2001 +From: Patrick Griffis +Date: Fri, 17 Mar 2023 19:05:35 -0500 +Subject: [PATCH] Fix regression breaking HTTP/2 on platforms with unsigned + char + +--- a/libsoup/soup-connection-manager.c ++++ b/libsoup/soup-connection-manager.c +@@ -378,7 +378,7 @@ static SoupConnection * + soup_connection_manager_get_connection_locked (SoupConnectionManager *manager, + SoupMessageQueueItem *item) + { +- static gchar env_force_http1 = -1; ++ static int env_force_http1 = -1; + SoupMessage *msg = item->msg; + gboolean need_new_connection; + SoupConnection *conn; +-- +GitLab diff --git a/net-libs/libsoup/libsoup-3.4.0.ebuild b/net-libs/libsoup/libsoup-3.4.0-r1.ebuild similarity index 94% rename from net-libs/libsoup/libsoup-3.4.0.ebuild rename to net-libs/libsoup/libsoup-3.4.0-r1.ebuild index 73364f0a5c02..af164f1c1964 100644 --- a/net-libs/libsoup/libsoup-3.4.0.ebuild +++ b/net-libs/libsoup/libsoup-3.4.0-r1.ebuild @@ -54,6 +54,10 @@ BDEPEND=" PATCHES=( # Disable apache tests until they are usable on Gentoo, bug #326957 "${FILESDIR}"/disable-apache-tests.patch + # Upstream patch to fix HTTP/2 on platforms w/ unsigned char + "${FILESDIR}"/unsigned-char-http2.patch + # Upstream patch to fix -Wstrict-prototypes + "${FILESDIR}"/strict-prototypes.patch ) src_prepare() { diff --git a/net-libs/netwib/files/netwib-5.39.0-C99-decls.patch b/net-libs/netwib/files/netwib-5.39.0-C99-decls.patch new file mode 100644 index 000000000000..4509b3703160 --- /dev/null +++ b/net-libs/netwib/files/netwib-5.39.0-C99-decls.patch @@ -0,0 +1,19 @@ +--- a/genemake ++++ b/genemake +@@ -1279,6 +1279,7 @@ + + #--- + cat > `checkcompilfile` < + int ether_hostton(char *para1, char *para2); + int main(void) + { char p1[10], p2[10]; +@@ -1668,7 +1669,7 @@ + #include + #include + int main(void) +- { getgrgid_r(NULL, NULL, NULL, 0, NULL); ++ { getgrgid_r(0, NULL, NULL, 0, NULL); + return(0); + } + EOF diff --git a/net-libs/netwib/files/netwib-5.39.0-config.patch b/net-libs/netwib/files/netwib-5.39.0-config.patch new file mode 100644 index 000000000000..922c9d0dd887 --- /dev/null +++ b/net-libs/netwib/files/netwib-5.39.0-config.patch @@ -0,0 +1,35 @@ +--- a/config.dat ++++ b/config.dat +@@ -7,11 +7,11 @@ + + ########################################################################## + ### directories where netwib will be installed +-NETWIBDEF_INSTPREFIX=/usr/local ++NETWIBDEF_INSTPREFIX="${EPREFIX}/usr" + NETWIBDEF_INSTINCLUDE=${NETWIBDEF_INSTPREFIX}/include + NETWIBDEF_INSTLIB=${NETWIBDEF_INSTPREFIX}/lib + NETWIBDEF_INSTBIN=${NETWIBDEF_INSTPREFIX}/bin +-NETWIBDEF_INSTMAN=${NETWIBDEF_INSTPREFIX}/man ++NETWIBDEF_INSTMAN=${NETWIBDEF_INSTPREFIX}/share/man + NETWIBDEF_INSTMAN3=${NETWIBDEF_INSTMAN}/man3 + + ### installation destination directory +@@ -19,14 +19,14 @@ + + ########################################################################## + ### programs +-NETWIBDEF_PROGCC=gcc +-NETWIBDEF_PROGAR=ar +-NETWIBDEF_PROGRANLIB=ranlib ++NETWIBDEF_PROGCC="${CC}" ++NETWIBDEF_PROGAR="${AR}" ++NETWIBDEF_PROGRANLIB="${RANLIB}" + NETWIBDEF_PROGGREP=grep + + ########################################################################## + ### compiler options +-NETWIBDEF_PROGCC_OPT="-Wall -O2" ++NETWIBDEF_PROGCC_OPT="${CFLAGS:-} ${CPPFLAGS:-}" + NETWIBDEF_PROGCC_INC="" + NETWIBDEF_PROGCC_LIB="" + NETWIBDEF_PROGCC_OPTPIC="" diff --git a/net-libs/netwib/files/netwib-5.39.0-sched_yield.patch b/net-libs/netwib/files/netwib-5.39.0-sched_yield.patch new file mode 100644 index 000000000000..06bb248bc949 --- /dev/null +++ b/net-libs/netwib/files/netwib-5.39.0-sched_yield.patch @@ -0,0 +1,85 @@ +--- a/genemake ++++ b/genemake +@@ -1598,21 +1598,6 @@ + fi + + #--- +-NETWIBDEF_HAVEFUNC_PTHREAD_YIELD=0 +-if [ $NETWIBDEF_HAVEINCL_PTHREAD = 1 ] ; then +- cat > `checkcompilfile` < +- int main(void) +- { pthread_yield(); +- return(0); +- } +-EOF +- checkcompilstd "pthread_yield" "" "" "" +- NETWIBDEF_HAVEFUNC_PTHREAD_YIELD=`checkcompilyes` +- checkceclean +-fi +- +-#--- + NETWIBDEF_HAVEFUNC_SCHED_YIELD=0 + if [ $NETWIBDEF_HAVEINCL_SCHED = 1 ] ; then + cat > `checkcompilfile` <> $deffile + echo "#define NETWIBDEF_HAVEFUNC_PTHREAD_RWLOCK_TIMEDRDLOCK $NETWIBDEF_HAVEFUNC_PTHREAD_RWLOCK_TIMEDRDLOCK" >> $deffile + echo "#define NETWIBDEF_HAVEFUNC_PTHREAD_RWLOCK_TIMEDWRLOCK $NETWIBDEF_HAVEFUNC_PTHREAD_RWLOCK_TIMEDWRLOCK" >> $deffile +-echo "#define NETWIBDEF_HAVEFUNC_PTHREAD_YIELD $NETWIBDEF_HAVEFUNC_PTHREAD_YIELD" >> $deffile + echo "#define NETWIBDEF_HAVEFUNC_SCHED_YIELD $NETWIBDEF_HAVEFUNC_SCHED_YIELD" >> $deffile + echo "#define NETWIBDEF_HAVEFUNC_GETPWNAM_R $NETWIBDEF_HAVEFUNC_GETPWNAM_R" >> $deffile + echo "#define NETWIBDEF_HAVEFUNC_GETGRNAM_R $NETWIBDEF_HAVEFUNC_GETGRNAM_R" >> $deffile +@@ -2205,7 +2189,6 @@ + HAVEFUNC_PTHREAD_MUTEX_TIMEDLOCK) echo $NETWIBDEF_HAVEFUNC_PTHREAD_MUTEX_TIMEDLOCK ;; + HAVEFUNC_PTHREAD_RWLOCK_TIMEDRDLOCK) echo $NETWIBDEF_HAVEFUNC_PTHREAD_RWLOCK_TIMEDRDLOCK ;; + HAVEFUNC_PTHREAD_RWLOCK_TIMEDWRLOCK) echo $NETWIBDEF_HAVEFUNC_PTHREAD_RWLOCK_TIMEDWRLOCK ;; +- HAVEFUNC_PTHREAD_YIELD) echo $NETWIBDEF_HAVEFUNC_PTHREAD_YIELD ;; + HAVEFUNC_SCHED_YIELD) echo $NETWIBDEF_HAVEFUNC_SCHED_YIELD ;; + HAVEFUNC_GETPWNAM_R) echo $NETWIBDEF_HAVEFUNC_GETPWNAM_R ;; + HAVEFUNC_GETGRNAM_R) echo $NETWIBDEF_HAVEFUNC_GETGRNAM_R ;; +--- a/netwib/def_windows.h ++++ b/netwib/def_windows.h +@@ -100,7 +100,6 @@ + #define NETWIBDEF_HAVEFUNC_PTHREAD_MUTEX_TIMEDLOCK 0 + #define NETWIBDEF_HAVEFUNC_PTHREAD_RWLOCK_TIMEDRDLOCK 0 + #define NETWIBDEF_HAVEFUNC_PTHREAD_RWLOCK_TIMEDWRLOCK 0 +-#define NETWIBDEF_HAVEFUNC_PTHREAD_YIELD 0 + #define NETWIBDEF_HAVEFUNC_SCHED_YIELD 0 + #define NETWIBDEF_HAVEFUNC_GETPWNAM_R 0 + #define NETWIBDEF_HAVEFUNC_GETGRNAM_R 0 +--- a/netwib/inc/missing.h ++++ b/netwib/inc/missing.h +@@ -3,7 +3,6 @@ + #if 0 + /* Some systems have the function in their library, but + prototypes are missing. Those one can be used instead. */ +- int pthread_yield(void); + int getpagesize(void); + int usleep(unsigned int useconds); + int getpwnam_r(const char *name, +--- a/netwib/sys/internal.c ++++ b/netwib/sys/internal.c +@@ -221,8 +221,6 @@ + NETWIBDEF_HAVEFUNC_PTHREAD_RWLOCK_TIMEDRDLOCK); + netwib_co_i("NETWIBDEF_HAVEFUNC_PTHREAD_RWLOCK_TIMEDWRLOCK", + NETWIBDEF_HAVEFUNC_PTHREAD_RWLOCK_TIMEDWRLOCK); +- netwib_co_i("NETWIBDEF_HAVEFUNC_PTHREAD_YIELD", +- NETWIBDEF_HAVEFUNC_PTHREAD_YIELD); + netwib_co_i("NETWIBDEF_HAVEFUNC_SCHED_YIELD", + NETWIBDEF_HAVEFUNC_SCHED_YIELD); + netwib_co_i("NETWIBDEF_HAVEFUNC_GETPWNAM_R", +--- a/netwib/sys/priv/pause.c ++++ b/netwib/sys/priv/pause.c +@@ -6,10 +6,7 @@ + { + + #if defined NETWIBDEF_SYSNAME_Unix +- #if NETWIBDEF_HAVEFUNC_PTHREAD_YIELD == 1 +- pthread_yield(); +- return(NETWIB_ERR_OK); +- #elif NETWIBDEF_HAVEFUNC_SCHED_YIELD == 1 ++ #if NETWIBDEF_HAVEFUNC_SCHED_YIELD == 1 + sched_yield(); + return(NETWIB_ERR_OK); + #endif diff --git a/net-libs/netwib/netwib-5.39.0-r1.ebuild b/net-libs/netwib/netwib-5.39.0-r1.ebuild new file mode 100644 index 000000000000..21a268557647 --- /dev/null +++ b/net-libs/netwib/netwib-5.39.0-r1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# NOTE: netwib, netwox and netwag go together, bump all or bump none + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Library of Ethernet, IP, UDP, TCP, ICMP, ARP and RARP protocols" +HOMEPAGE=" + http://www.laurentconstantin.com/en/netw/netwib/ + http://ntwib.sourceforge.net/ +" +SRC_URI=" + mirror://sourceforge/ntwib/${P}-src.tgz + doc? ( mirror://sourceforge/ntwib/${P}-doc_html.tgz )" +S="${WORKDIR}/${P}-src/src" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc x86" +IUSE="doc" + +DEPEND=" + net-libs/libnet:1.1 + net-libs/libpcap" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${P}-C99-decls.patch + "${FILESDIR}"/${P}-config.patch + "${FILESDIR}"/${P}-sched_yield.patch +) + +src_configure() { + tc-export AR CC RANLIB + sed -e "s:/lib:/$(get_libdir):" \ + -i config.dat || die + + sh genemake || die +} + +src_install() { + default + + dodoc \ + ../README.TXT \ + ../doc/{changelog.txt,credits.txt,integration.txt} \ + ../doc/{problemreport.txt,problemusageunix.txt,todo.txt} + + if use doc; then + docinto html + dodoc -r "${WORKDIR}"/${P}-doc_html/{index.html,${PN}} + fi +} diff --git a/net-libs/netwib/netwib-5.39.0.ebuild b/net-libs/netwib/netwib-5.39.0.ebuild deleted file mode 100644 index c73eb6097f01..000000000000 --- a/net-libs/netwib/netwib-5.39.0.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# NOTE: netwib, netwox and netwag go together, bump all or bump none - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="Library of Ethernet, IP, UDP, TCP, ICMP, ARP and RARP protocols" -HOMEPAGE=" - http://www.laurentconstantin.com/en/netw/netwib/ - http://ntwib.sourceforge.net/ -" -SRC_URI="mirror://sourceforge/ntwib/${P}-src.tgz - doc? ( mirror://sourceforge/ntwib/${P}-doc_html.tgz )" -S="${WORKDIR}/${P}-src/src" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc x86" -IUSE="doc" - -DEPEND=" - net-libs/libnet:1.1 - net-libs/libpcap -" -RDEPEND="${DEPEND}" - -src_prepare() { - default - - sed -i \ - -e 's:/man$:/share/man:g' \ - -e "s:/lib:/$(get_libdir):" \ - -e "s:/usr/local:/usr:" \ - -e "s:=ar:=$(tc-getAR):" \ - -e "s:=ranlib:=$(tc-getRANLIB):" \ - -e "s:=gcc:=$(tc-getCC):" \ - -e "s:-O2:${CFLAGS}:" \ - config.dat || die -} - -src_configure() { - sh genemake || die -} - -src_install() { - default - dodoc ../README.TXT - if use doc; then - mkdir "${ED}"/usr/share/doc/${PF}/html || die - mv "${WORKDIR}"/${P}-doc_html/{index.html,${PN}} \ - "${ED}"/usr/share/doc/${PF}/html || die - fi - - cd "${S}"/.. || die - dodoc \ - doc/{changelog.txt,credits.txt,integration.txt} \ - doc/{problemreport.txt,problemusageunix.txt,todo.txt} -} diff --git a/net-libs/webkit-gtk/Manifest b/net-libs/webkit-gtk/Manifest index 7ecd2dd83aa1..e31e3149fc77 100644 --- a/net-libs/webkit-gtk/Manifest +++ b/net-libs/webkit-gtk/Manifest @@ -1,2 +1,3 @@ DIST webkitgtk-2.38.3.tar.xz 33003928 BLAKE2B ae2ab019a765e91110e12277954bea9ae16fd898f854f58e665d273bcbd9ca43ee3219eea7ba0fb5716b17b8efdfeeb395c5976b38848562be95ea372b9b70bc SHA512 1e5f0d73d6b1d64faf20ab909f1765439fab230dd360dd1906962f03a24725cf9f50a375b1987b615c64fb161ab32d29d6b1d49ea75c7b2b32f495e4ad0f38ce DIST webkitgtk-2.38.5.tar.xz 33011600 BLAKE2B 0dba732c18b7f21602b9f834866d137b6be582adc36f91775e838f99a6ee89216773ab641be62a0fd0834bac8adb45d315a2be9caf19551484a8b95c22797d46 SHA512 9038892910e95d3b7819396c9071b59ee51eadd6cad62130fdd4e02d3f5187b7a2986c5939a378190e14059149f2db0a0b57feb23ac44f5ea764c160e6181eef +DIST webkitgtk-2.40.0.tar.xz 40042140 BLAKE2B 4f26d893da99c7aed18594a844b1f91e32178a1bdd236e0cdd21683ed095ab2196f37c13f749e69b22b72146b98fca2a27778948aabde336d17c4d40dcf0cdc1 SHA512 550dafb31d71edf984d6b7636366f839d31f6b244b87f83c6efe7af17efe3f2f63268d2c39a6a3c474afadf2b30df868efaefcf38197b30cc6b11c63de7d2ddc diff --git a/net-libs/webkit-gtk/webkit-gtk-2.40.0-r410.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.40.0-r410.ebuild new file mode 100644 index 000000000000..aadc66693cf3 --- /dev/null +++ b/net-libs/webkit-gtk/webkit-gtk-2.40.0-r410.ebuild @@ -0,0 +1,250 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_REQ_USE="xml(+)" +PYTHON_COMPAT=( python3_{9..11} ) +USE_RUBY="ruby30 ruby31" + +inherit check-reqs flag-o-matic gnome2 optfeature python-any-r1 ruby-single toolchain-funcs cmake + +MY_P="webkitgtk-${PV}" +DESCRIPTION="Open source web browser engine" +HOMEPAGE="https://www.webkitgtk.org" +SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.tar.xz" + +LICENSE="LGPL-2+ BSD" +SLOT="4.1/0" # soname version of libwebkit2gtk-4.1 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +IUSE="aqua avif examples gamepad gles2-only gnome-keyring +gstreamer +introspection pdf +jpeg2k +jumbo-build lcms seccomp spell systemd wayland X" +REQUIRED_USE="|| ( aqua wayland X )" + +# Tests do not run when built from tarballs +# https://bugs.webkit.org/show_bug.cgi?id=215986 +RESTRICT="test" + +# Dependencies found at Source/cmake/OptionsGTK.cmake +# Missing WebRTC support, but ENABLE_MEDIA_STREAM/ENABLE_WEB_RTC is experimental upstream (PRIVATE OFF) and shouldn't be used yet in 2.30 +# >=gst-plugins-opus-1.14.4-r1 for opusparse (required by MSE) +# TODO: gst-plugins-base[X] is only needed when build configuration ends up with GLX set, but that's a bit automagic too to fix +# Softblocking webkit-gtk-2.38:4 as we going to use webkit-2.38:4.1's WebKitDriver binary +RDEPEND=" + >=x11-libs/cairo-1.16.0[X?] + >=media-libs/fontconfig-2.13.0:1.0 + >=media-libs/freetype-2.9.0:2 + >=dev-libs/libgcrypt-1.7.0:0= + >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] + >=media-libs/harfbuzz-1.4.2:=[icu(+)] + >=dev-libs/icu-61.2:= + media-libs/libjpeg-turbo:0= + >=media-libs/libepoxy-1.4.0 + >=net-libs/libsoup-3.0.8:3.0[introspection?] + >=dev-libs/libxml2-2.8.0:2 + >=media-libs/libpng-1.4:0= + dev-db/sqlite:3 + sys-libs/zlib:0 + >=app-accessibility/at-spi2-core-2.46.0:2 + media-libs/libwebp:= + + >=dev-libs/glib-2.70.0:2 + >=dev-libs/libxslt-1.1.7 + media-libs/woff2 + gnome-keyring? ( app-crypt/libsecret ) + introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) + dev-libs/libtasn1:= + spell? ( >=app-text/enchant-0.22:2 ) + gstreamer? ( + >=media-libs/gstreamer-1.20:1.0 + >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] + gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) + !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) + >=media-plugins/gst-plugins-opus-1.20:1.0 + >=media-libs/gst-plugins-bad-1.20:1.0 + ) + + X? ( + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXrender + x11-libs/libXt + ) + + dev-libs/hyphen + jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) + avif? ( >=media-libs/libavif-0.9.0:= ) + lcms? ( media-libs/lcms:2 ) + + media-libs/mesa + media-libs/libglvnd + wayland? ( + dev-libs/wayland + >=dev-libs/wayland-protocols-1.12 + >=gui-libs/libwpe-1.5.0:1.0 + >=gui-libs/wpebackend-fdo-1.7.0:1.0 + ) + + seccomp? ( + >=sys-apps/bubblewrap-0.3.1 + sys-libs/libseccomp + sys-apps/xdg-dbus-proxy + ) + + systemd? ( sys-apps/systemd:= ) + gamepad? ( >=dev-libs/libmanette-0.2.4 ) + != 5 for C++17-specific compiler flags" + fi + fi +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != "binary" ]] && is-flagq "-g*" && ! is-flagq "-g*0" ; then + check-reqs_pkg_setup + fi + + python-any-r1_pkg_setup +} + +src_prepare() { + cmake_src_prepare + gnome2_src_prepare +} + +src_configure() { + # Respect CC, otherwise fails on prefix #395875 + tc-export CC + + # It does not compile on alpha without this in LDFLAGS + # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648761 + use alpha && append-ldflags "-Wl,--no-relax" + + # ld segfaults on ia64 with LDFLAGS --as-needed, bug #555504 + use ia64 && append-ldflags "-Wl,--no-as-needed" + + # Sigbuses on SPARC with mcpu and co., bug #??? + use sparc && filter-flags "-mvis" + + # https://bugs.webkit.org/show_bug.cgi?id=42070 , #301634 + use ppc64 && append-flags "-mminimal-toc" + + # Try to use less memory, bug #469942 (see Fedora .spec for reference) + # --no-keep-memory doesn't work on ia64, bug #502492 + if ! use ia64; then + append-ldflags $(test-flags-CCLD "-Wl,--no-keep-memory") + fi + + # Ruby situation is a bit complicated. See bug 513888 + local rubyimpl + local ruby_interpreter="" + for rubyimpl in ${USE_RUBY}; do + if has_version -b "virtual/rubygems[ruby_targets_${rubyimpl}]"; then + ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ${rubyimpl})" + fi + done + # This will rarely occur. Only a couple of corner cases could lead us to + # that failure. See bug 513888 + [[ -z $ruby_interpreter ]] && die "No suitable ruby interpreter found" + + # TODO: Check Web Audio support + # should somehow let user select between them? + + local mycmakeargs=( + -DPython_EXECUTABLE="${PYTHON}" + ${ruby_interpreter} + $(cmake_use_find_package gles2-only OpenGLES2) + $(cmake_use_find_package !gles2-only OpenGL) + -DBWRAP_EXECUTABLE:FILEPATH="${EPREFIX}"/usr/bin/bwrap # If bubblewrap[suid] then portage makes it go-r and cmake find_program fails with that + -DDBUS_PROXY_EXECUTABLE:FILEPATH="${EPREFIX}"/usr/bin/xdg-dbus-proxy + -DPORT=GTK + # Source/cmake/WebKitFeatures.cmake + -DENABLE_API_TESTS=OFF + -DENABLE_BUBBLEWRAP_SANDBOX=$(usex seccomp) + -DENABLE_GAMEPAD=$(usex gamepad) + -DENABLE_MINIBROWSER=$(usex examples) + -DENABLE_PDFJS=$(usex pdf) + -DENABLE_GEOLOCATION=ON # Runtime optional (talks over dbus service) + -DENABLE_SPELLCHECK=$(usex spell) + -DENABLE_UNIFIED_BUILDS=$(usex jumbo-build) + -DENABLE_VIDEO=$(usex gstreamer) + -DUSE_GSTREAMER_WEBRTC=$(usex gstreamer) + -DUSE_GSTREAMER_TRANSCODER=$(usex gstreamer) + -DENABLE_WEBDRIVER=ON + -DENABLE_WEBGL=ON + -DENABLE_WEB_AUDIO=$(usex gstreamer) + -DUSE_AVIF=$(usex avif) + # Source/cmake/OptionsGTK.cmake + -DENABLE_GLES2=$(usex gles2-only) + -DENABLE_DOCUMENTATION=OFF + -DENABLE_INTROSPECTION=$(usex introspection) + -DENABLE_JOURNALD_LOG=$(usex systemd) + -DENABLE_QUARTZ_TARGET=$(usex aqua) + -DENABLE_WAYLAND_TARGET=$(usex wayland) + -DENABLE_X11_TARGET=$(usex X) + -DUSE_GBM=ON + -DUSE_GTK4=OFF + -DUSE_JPEGXL=OFF + -DUSE_LCMS=$(usex lcms) + -DUSE_LIBHYPHEN=ON + -DUSE_LIBSECRET=$(usex gnome-keyring) + -DUSE_OPENGL_OR_ES=ON + -DUSE_OPENJPEG=$(usex jpeg2k) + -DUSE_SOUP2=OFF + -DUSE_WOFF2=ON + ) + + # https://bugs.gentoo.org/761238 + append-cppflags -DNDEBUG + + WK_USE_CCACHE=NO cmake_src_configure +} + +src_install() { + cmake_src_install + + insinto /usr/share/gtk-doc/html + # This will install API docs specific to webkit2gtk-4.1 + doins -r "${S}"/Documentation/{jsc-glib,webkit2gtk,webkit2gtk-web-extension}-${SLOT%/*} +} + +pkg_postinst() { + optfeature "geolocation service (used at runtime if available)" "app-misc/geoclue" + optfeature "Common Multimedia codecs" "media-plugins/gst-plugins-meta" + optfeature "(MPEG-)DASH support" "media-plugins/gst-plugins-dash" + optfeature "HTTP-Live-Streaming support" "media-plugins/gst-plugins-hls" +} diff --git a/net-libs/webkit-gtk/webkit-gtk-2.40.0-r600.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.40.0-r600.ebuild new file mode 100644 index 000000000000..d1f9aaeb242f --- /dev/null +++ b/net-libs/webkit-gtk/webkit-gtk-2.40.0-r600.ebuild @@ -0,0 +1,243 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_REQ_USE="xml(+)" +PYTHON_COMPAT=( python3_{9..11} ) +USE_RUBY="ruby30 ruby31" + +inherit check-reqs flag-o-matic gnome2 optfeature python-any-r1 ruby-single toolchain-funcs cmake + +MY_P="webkitgtk-${PV}" +DESCRIPTION="Open source web browser engine" +HOMEPAGE="https://www.webkitgtk.org" +SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.tar.xz" + +LICENSE="LGPL-2+ BSD" +SLOT="6/0" # soname version of libwebkit2gtk-6.0 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +IUSE="aqua avif examples gamepad gles2-only gnome-keyring +gstreamer +introspection pdf +jpeg2k +jumbo-build lcms seccomp spell systemd wayland X" +REQUIRED_USE="|| ( aqua wayland X )" + +# Tests do not run when built from tarballs +# https://bugs.webkit.org/show_bug.cgi?id=215986 +RESTRICT="test" + +# Dependencies found at Source/cmake/OptionsGTK.cmake +# Missing WebRTC support, but ENABLE_MEDIA_STREAM/ENABLE_WEB_RTC is experimental upstream (PRIVATE OFF) and shouldn't be used yet in 2.30 +# >=gst-plugins-opus-1.14.4-r1 for opusparse (required by MSE) +# TODO: gst-plugins-base[X] is only needed when build configuration ends up with GLX set, but that's a bit automagic too to fix +# Softblocking webkit-gtk-2.38:4 as we going to use webkit-2.38:4.1's WebKitDriver binary +RDEPEND=" + >=x11-libs/cairo-1.16.0[X?] + >=media-libs/fontconfig-2.13.0:1.0 + >=media-libs/freetype-2.9.0:2 + >=dev-libs/libgcrypt-1.7.0:0= + >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] + gui-libs/gtk:4 + >=media-libs/harfbuzz-1.4.2:=[icu(+)] + >=dev-libs/icu-61.2:= + media-libs/libjpeg-turbo:0= + >=media-libs/libepoxy-1.4.0 + >=net-libs/libsoup-3.0.8:3.0[introspection?] + >=dev-libs/libxml2-2.8.0:2 + >=media-libs/libpng-1.4:0= + dev-db/sqlite:3 + sys-libs/zlib:0 + >=app-accessibility/at-spi2-core-2.46.0:2 + media-libs/libwebp:= + + >=dev-libs/glib-2.70.0:2 + >=dev-libs/libxslt-1.1.7 + media-libs/woff2 + gnome-keyring? ( app-crypt/libsecret ) + introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) + dev-libs/libtasn1:= + spell? ( >=app-text/enchant-0.22:2 ) + gstreamer? ( + >=media-libs/gstreamer-1.20:1.0 + >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] + gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) + !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) + >=media-plugins/gst-plugins-opus-1.20:1.0 + >=media-libs/gst-plugins-bad-1.20:1.0 + ) + + X? ( + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXrender + x11-libs/libXt + ) + + dev-libs/hyphen + jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) + avif? ( >=media-libs/libavif-0.9.0:= ) + lcms? ( media-libs/lcms:2 ) + + media-libs/mesa + media-libs/libglvnd + wayland? ( + dev-libs/wayland + >=dev-libs/wayland-protocols-1.12 + >=gui-libs/libwpe-1.5.0:1.0 + >=gui-libs/wpebackend-fdo-1.7.0:1.0 + ) + + seccomp? ( + >=sys-apps/bubblewrap-0.3.1 + sys-libs/libseccomp + sys-apps/xdg-dbus-proxy + ) + + systemd? ( sys-apps/systemd:= ) + gamepad? ( >=dev-libs/libmanette-0.2.4 ) + != 5 for C++17-specific compiler flags" + fi + fi +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != "binary" ]] && is-flagq "-g*" && ! is-flagq "-g*0" ; then + check-reqs_pkg_setup + fi + + python-any-r1_pkg_setup +} + +src_prepare() { + cmake_src_prepare + gnome2_src_prepare +} + +src_configure() { + # Respect CC, otherwise fails on prefix #395875 + tc-export CC + + # It does not compile on alpha without this in LDFLAGS + # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648761 + use alpha && append-ldflags "-Wl,--no-relax" + + # ld segfaults on ia64 with LDFLAGS --as-needed, bug #555504 + use ia64 && append-ldflags "-Wl,--no-as-needed" + + # Sigbuses on SPARC with mcpu and co., bug #??? + use sparc && filter-flags "-mvis" + + # https://bugs.webkit.org/show_bug.cgi?id=42070 , #301634 + use ppc64 && append-flags "-mminimal-toc" + + # Try to use less memory, bug #469942 (see Fedora .spec for reference) + # --no-keep-memory doesn't work on ia64, bug #502492 + if ! use ia64; then + append-ldflags $(test-flags-CCLD "-Wl,--no-keep-memory") + fi + + # Ruby situation is a bit complicated. See bug 513888 + local rubyimpl + local ruby_interpreter="" + for rubyimpl in ${USE_RUBY}; do + if has_version -b "virtual/rubygems[ruby_targets_${rubyimpl}]"; then + ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ${rubyimpl})" + fi + done + # This will rarely occur. Only a couple of corner cases could lead us to + # that failure. See bug 513888 + [[ -z $ruby_interpreter ]] && die "No suitable ruby interpreter found" + + # TODO: Check Web Audio support + # should somehow let user select between them? + + local mycmakeargs=( + -DPython_EXECUTABLE="${PYTHON}" + ${ruby_interpreter} + $(cmake_use_find_package gles2-only OpenGLES2) + $(cmake_use_find_package !gles2-only OpenGL) + -DBWRAP_EXECUTABLE:FILEPATH="${EPREFIX}"/usr/bin/bwrap # If bubblewrap[suid] then portage makes it go-r and cmake find_program fails with that + -DDBUS_PROXY_EXECUTABLE:FILEPATH="${EPREFIX}"/usr/bin/xdg-dbus-proxy + -DPORT=GTK + # Source/cmake/WebKitFeatures.cmake + -DENABLE_API_TESTS=OFF + -DENABLE_BUBBLEWRAP_SANDBOX=$(usex seccomp) + -DENABLE_GAMEPAD=$(usex gamepad) + -DENABLE_MINIBROWSER=$(usex examples) + -DENABLE_PDFJS=$(usex pdf) + -DENABLE_GEOLOCATION=ON # Runtime optional (talks over dbus service) + -DENABLE_SPELLCHECK=$(usex spell) + -DENABLE_UNIFIED_BUILDS=$(usex jumbo-build) + -DENABLE_VIDEO=$(usex gstreamer) + -DUSE_GSTREAMER_WEBRTC=$(usex gstreamer) + -DUSE_GSTREAMER_TRANSCODER=$(usex gstreamer) + -DENABLE_WEBDRIVER=OFF # Disable WebDriver for webkit2gtk-5.0 and use the webkit2gtk-4.1 + -DENABLE_WEBGL=ON + -DENABLE_WEB_AUDIO=$(usex gstreamer) + -DUSE_AVIF=$(usex avif) + # Source/cmake/OptionsGTK.cmake + -DENABLE_GLES2=$(usex gles2-only) + -DENABLE_DOCUMENTATION=OFF + -DENABLE_INTROSPECTION=$(usex introspection) + -DENABLE_JOURNALD_LOG=$(usex systemd) + -DENABLE_QUARTZ_TARGET=$(usex aqua) + -DENABLE_WAYLAND_TARGET=$(usex wayland) + -DENABLE_X11_TARGET=$(usex X) + -DUSE_GBM=ON + -DUSE_GTK4=ON # webkit2gtk-6.0 + -DUSE_JPEGXL=OFF + -DUSE_LCMS=$(usex lcms) + -DUSE_LIBHYPHEN=ON + -DUSE_LIBSECRET=$(usex gnome-keyring) + -DUSE_OPENGL_OR_ES=ON + -DUSE_OPENJPEG=$(usex jpeg2k) + -DUSE_SOUP2=OFF + -DUSE_WOFF2=ON + ) + + # https://bugs.gentoo.org/761238 + append-cppflags -DNDEBUG + + WK_USE_CCACHE=NO cmake_src_configure +} + +pkg_postinst() { + optfeature "geolocation service (used at runtime if available)" "app-misc/geoclue" + optfeature "Common Multimedia codecs" "media-plugins/gst-plugins-meta" + optfeature "(MPEG-)DASH support" "media-plugins/gst-plugins-dash" + optfeature "HTTP-Live-Streaming support" "media-plugins/gst-plugins-hls" +} diff --git a/net-libs/webkit-gtk/webkit-gtk-2.40.0.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.40.0.ebuild new file mode 100644 index 000000000000..7e0ca1b9e2d9 --- /dev/null +++ b/net-libs/webkit-gtk/webkit-gtk-2.40.0.ebuild @@ -0,0 +1,240 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_REQ_USE="xml(+)" +PYTHON_COMPAT=( python3_{9..11} ) +USE_RUBY="ruby30 ruby31" + +inherit check-reqs flag-o-matic gnome2 optfeature python-any-r1 ruby-single toolchain-funcs cmake + +MY_P="webkitgtk-${PV}" +DESCRIPTION="Open source web browser engine" +HOMEPAGE="https://www.webkitgtk.org" +SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.tar.xz" + +LICENSE="LGPL-2+ BSD" +SLOT="4/37" # soname version of libwebkit2gtk-4.0 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +IUSE="aqua avif examples gamepad gles2-only gnome-keyring +gstreamer +introspection pdf +jpeg2k +jumbo-build lcms seccomp spell systemd wayland X" +REQUIRED_USE="|| ( aqua wayland X )" + +# Tests do not run when built from tarballs +# https://bugs.webkit.org/show_bug.cgi?id=215986 +RESTRICT="test" + +# Dependencies found at Source/cmake/OptionsGTK.cmake +# Missing WebRTC support, but ENABLE_MEDIA_STREAM/ENABLE_WEB_RTC is experimental upstream (PRIVATE OFF) and shouldn't be used yet in 2.30 +# >=gst-plugins-opus-1.14.4-r1 for opusparse (required by MSE) +# TODO: gst-plugins-base[X] is only needed when build configuration ends up with GLX set, but that's a bit automagic too to fix +RDEPEND=" + >=x11-libs/cairo-1.16.0[X?] + >=media-libs/fontconfig-2.13.0:1.0 + >=media-libs/freetype-2.9.0:2 + >=dev-libs/libgcrypt-1.7.0:0= + >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] + >=media-libs/harfbuzz-1.4.2:=[icu(+)] + >=dev-libs/icu-61.2:= + media-libs/libjpeg-turbo:0= + >=media-libs/libepoxy-1.4.0 + >=net-libs/libsoup-2.54:2.4[introspection?] + >=dev-libs/libxml2-2.8.0:2 + >=media-libs/libpng-1.4:0= + dev-db/sqlite:3 + sys-libs/zlib:0 + >=app-accessibility/at-spi2-core-2.46.0:2 + media-libs/libwebp:= + + >=dev-libs/glib-2.70.0:2 + >=dev-libs/libxslt-1.1.7 + media-libs/woff2 + gnome-keyring? ( app-crypt/libsecret ) + introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) + dev-libs/libtasn1:= + spell? ( >=app-text/enchant-0.22:2 ) + gstreamer? ( + >=media-libs/gstreamer-1.20:1.0 + >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] + gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) + !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) + >=media-plugins/gst-plugins-opus-1.20:1.0 + >=media-libs/gst-plugins-bad-1.20:1.0 + ) + + X? ( + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXrender + x11-libs/libXt + ) + + dev-libs/hyphen + jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) + avif? ( >=media-libs/libavif-0.9.0:= ) + lcms? ( media-libs/lcms:2 ) + + media-libs/mesa + media-libs/libglvnd + wayland? ( + dev-libs/wayland + >=dev-libs/wayland-protocols-1.12 + >=gui-libs/libwpe-1.5.0:1.0 + >=gui-libs/wpebackend-fdo-1.7.0:1.0 + ) + + seccomp? ( + >=sys-apps/bubblewrap-0.3.1 + sys-libs/libseccomp + sys-apps/xdg-dbus-proxy + ) + + systemd? ( sys-apps/systemd:= ) + gamepad? ( >=dev-libs/libmanette-0.2.4 ) +" +DEPEND="${RDEPEND}" +# Need real bison, not yacc +BDEPEND=" + ${PYTHON_DEPS} + ${RUBY_DEPS} + >=app-accessibility/at-spi2-core-2.5.3 + dev-util/gdbus-codegen + dev-util/glib-utils + >=dev-util/gperf-3.0.1 + dev-util/unifdef + >=sys-devel/bison-2.4.3 + || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) + sys-devel/gettext + virtual/pkgconfig + + >=dev-lang/perl-5.10 + virtual/perl-Data-Dumper + virtual/perl-Carp + virtual/perl-JSON-PP +" + +S="${WORKDIR}/${MY_P}" + +CHECKREQS_DISK_BUILD="18G" # and even this might not be enough, bug #417307 + +pkg_pretend() { + if [[ ${MERGE_TYPE} != "binary" ]] ; then + if is-flagq "-g*" && ! is-flagq "-g*0" ; then + einfo "Checking for sufficient disk space to build ${PN} with debugging CFLAGS" + check-reqs_pkg_pretend + fi + + if ! test-flag-CXX -std=c++17 ; then + die "You need at least GCC 7.3.x or Clang >= 5 for C++17-specific compiler flags" + fi + fi +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != "binary" ]] && is-flagq "-g*" && ! is-flagq "-g*0" ; then + check-reqs_pkg_setup + fi + + python-any-r1_pkg_setup +} + +src_prepare() { + cmake_src_prepare + gnome2_src_prepare +} + +src_configure() { + # Respect CC, otherwise fails on prefix #395875 + tc-export CC + + # It does not compile on alpha without this in LDFLAGS + # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648761 + use alpha && append-ldflags "-Wl,--no-relax" + + # ld segfaults on ia64 with LDFLAGS --as-needed, bug #555504 + use ia64 && append-ldflags "-Wl,--no-as-needed" + + # Sigbuses on SPARC with mcpu and co., bug #??? + use sparc && filter-flags "-mvis" + + # https://bugs.webkit.org/show_bug.cgi?id=42070 , #301634 + use ppc64 && append-flags "-mminimal-toc" + + # Try to use less memory, bug #469942 (see Fedora .spec for reference) + # --no-keep-memory doesn't work on ia64, bug #502492 + if ! use ia64; then + append-ldflags $(test-flags-CCLD "-Wl,--no-keep-memory") + fi + + # Ruby situation is a bit complicated. See bug 513888 + local rubyimpl + local ruby_interpreter="" + for rubyimpl in ${USE_RUBY}; do + if has_version -b "virtual/rubygems[ruby_targets_${rubyimpl}]"; then + ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ${rubyimpl})" + fi + done + # This will rarely occur. Only a couple of corner cases could lead us to + # that failure. See bug 513888 + [[ -z $ruby_interpreter ]] && die "No suitable ruby interpreter found" + + # TODO: Check Web Audio support + # should somehow let user select between them? + + local mycmakeargs=( + -DPython_EXECUTABLE="${PYTHON}" + ${ruby_interpreter} + $(cmake_use_find_package gles2-only OpenGLES2) + $(cmake_use_find_package !gles2-only OpenGL) + -DBWRAP_EXECUTABLE:FILEPATH="${EPREFIX}"/usr/bin/bwrap # If bubblewrap[suid] then portage makes it go-r and cmake find_program fails with that + -DDBUS_PROXY_EXECUTABLE:FILEPATH="${EPREFIX}"/usr/bin/xdg-dbus-proxy + -DPORT=GTK + # Source/cmake/WebKitFeatures.cmake + -DENABLE_API_TESTS=OFF + -DENABLE_BUBBLEWRAP_SANDBOX=$(usex seccomp) + -DENABLE_GAMEPAD=$(usex gamepad) + -DENABLE_MINIBROWSER=$(usex examples) + -DENABLE_PDFJS=$(usex pdf) + -DENABLE_GEOLOCATION=ON # Runtime optional (talks over dbus service) + -DENABLE_SPELLCHECK=$(usex spell) + -DENABLE_UNIFIED_BUILDS=$(usex jumbo-build) + -DENABLE_VIDEO=$(usex gstreamer) + -DUSE_GSTREAMER_WEBRTC=$(usex gstreamer) + -DUSE_GSTREAMER_TRANSCODER=$(usex gstreamer) + -DENABLE_WEBDRIVER=OFF # Disable WebDriver for webkit2gtk-4.0 and use the webkit2gtk-4.1 + -DENABLE_WEBGL=ON + -DENABLE_WEB_AUDIO=$(usex gstreamer) + -DUSE_AVIF=$(usex avif) + # Source/cmake/OptionsGTK.cmake + -DENABLE_GLES2=$(usex gles2-only) + -DENABLE_DOCUMENTATION=OFF + -DENABLE_INTROSPECTION=$(usex introspection) + -DENABLE_JOURNALD_LOG=$(usex systemd) + -DENABLE_QUARTZ_TARGET=$(usex aqua) + -DENABLE_WAYLAND_TARGET=$(usex wayland) + -DENABLE_X11_TARGET=$(usex X) + -DUSE_GBM=ON + -DUSE_GTK4=OFF + -DUSE_JPEGXL=OFF + -DUSE_LCMS=$(usex lcms) + -DUSE_LIBHYPHEN=ON + -DUSE_LIBSECRET=$(usex gnome-keyring) + -DUSE_OPENGL_OR_ES=ON + -DUSE_OPENJPEG=$(usex jpeg2k) + -DUSE_SOUP2=ON + -DUSE_WOFF2=ON + ) + + # https://bugs.gentoo.org/761238 + append-cppflags -DNDEBUG + + WK_USE_CCACHE=NO cmake_src_configure +} + +pkg_postinst() { + optfeature "geolocation service (used at runtime if available)" "app-misc/geoclue" + optfeature "Common Multimedia codecs" "media-plugins/gst-plugins-meta" + optfeature "(MPEG-)DASH support" "media-plugins/gst-plugins-dash" + optfeature "HTTP-Live-Streaming support" "media-plugins/gst-plugins-hls" +} diff --git a/net-mail/Manifest.gz b/net-mail/Manifest.gz index 9e22bf674da2..dad6b39d01f0 100644 Binary files a/net-mail/Manifest.gz and b/net-mail/Manifest.gz differ diff --git a/net-mail/automx2/automx2-2022.1.ebuild b/net-mail/automx2/automx2-2022.1.ebuild index 0251dd9052a9..6260c9eda034 100644 --- a/net-mail/automx2/automx2-2022.1.ebuild +++ b/net-mail/automx2/automx2-2022.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/rseichter/automx2/archive/${PV}.tar.gz -> ${P}.tar.g LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" RDEPEND="acct-user/automx2 dev-python/flask[${PYTHON_USEDEP}] diff --git a/net-mail/fdm/Manifest b/net-mail/fdm/Manifest index ca39643a6375..248e133dffcd 100644 --- a/net-mail/fdm/Manifest +++ b/net-mail/fdm/Manifest @@ -1,3 +1 @@ -DIST fdm-2.0.tar.gz 313596 BLAKE2B 8b323f4a8953a46773a4e5a1214444dc97db4346f50990fcfb4c9d79ae40bbb73b61e3bf41bc95b76e44f6bed7b398cb210d58901823752e92ca7b83189cbc7e SHA512 14e923202d17083ceb3b91b3a442d7e512c37f3d29535f22d8c0c4e1d57c97acc5d5465d643ed0cf437b3945ef777a6e38da3117219c2d54dcec88ecab1e10d9 -DIST fdm-2.1.tar.gz 318803 BLAKE2B 2bb693177c69665d2354c382ab663a3283c5edae2cdf6f3bf2fe4133309de9d43e0e8ad3830eeee4eb002fe202eb20f982cdc892fb0b0d1698b13aa79f22be0a SHA512 6a864048e1f25eedbb6af86451b258678b91e3c225b3b065a1aeb043f125405dfa109a0fbd77363394e14050053c7d81093d5b9d6a2dd155fb00dc98455028b4 DIST fdm-2.2.tar.gz 319140 BLAKE2B dde9126aaf3183444123bb3b546f8997a5a25f5dc58bb7fc08818e491e2193543f4f06e758b479e61da7feaf752e3d3ddfd8103c616a49f0d65c41972bae7e12 SHA512 13efa0f272c5f6146b90e094602e8a9b52016af79ae0b6cd80dc9f36b2ba37f64cadae7313bd8db90bcb007dd07206a3614987f11bb82c3535e04f0511c9fc6d diff --git a/net-mail/fdm/fdm-2.0-r1.ebuild b/net-mail/fdm/fdm-2.0-r1.ebuild deleted file mode 100644 index a98298a350e4..000000000000 --- a/net-mail/fdm/fdm-2.0-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Fetch, filter and deliver mail" -HOMEPAGE="https://github.com/nicm/fdm" -SRC_URI="https://github.com/nicm/fdm/releases/download/${PV}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="examples pcre" - -DEPEND=" - dev-libs/openssl:0= - sys-libs/tdb - pcre? ( dev-libs/libpcre ) -" -RDEPEND=" - ${DEPEND} - acct-group/fdm - acct-user/fdm -" - -DOCS=( CHANGES README TODO MANUAL ) - -src_prepare() { - default - - # Change user '_fdm' to 'fdm' - sed -e 's/_fdm/fdm/g' -i fdm.h || die -} - -src_configure() { - econf $(use_enable pcre) -} - -src_install() { - default - - if use examples ; then - docinto examples - dodoc examples/* - fi -} diff --git a/net-mail/fdm/fdm-2.1.ebuild b/net-mail/fdm/fdm-2.1.ebuild deleted file mode 100644 index bf1b62354bb5..000000000000 --- a/net-mail/fdm/fdm-2.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Fetch, filter and deliver mail" -HOMEPAGE="https://github.com/nicm/fdm" -SRC_URI="https://github.com/nicm/fdm/releases/download/${PV}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="examples pcre" - -DEPEND=" - dev-libs/openssl:0= - sys-libs/tdb - pcre? ( dev-libs/libpcre ) -" -RDEPEND=" - ${DEPEND} - acct-group/fdm - acct-user/fdm -" - -DOCS=( CHANGES README TODO MANUAL ) - -src_prepare() { - default - - # Change user '_fdm' to 'fdm' - sed -e 's/_fdm/fdm/g' -i fdm.h || die -} - -src_configure() { - econf $(use_enable pcre) -} - -src_install() { - default - - if use examples ; then - docinto examples - dodoc examples/* - fi -} diff --git a/net-mail/fdm/fdm-2.2.ebuild b/net-mail/fdm/fdm-2.2-r1.ebuild similarity index 88% rename from net-mail/fdm/fdm-2.2.ebuild rename to net-mail/fdm/fdm-2.2-r1.ebuild index 895dd72d1b2c..cac36667dc18 100644 --- a/net-mail/fdm/fdm-2.2.ebuild +++ b/net-mail/fdm/fdm-2.2-r1.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit autotools + DESCRIPTION="Fetch, filter and deliver mail" HOMEPAGE="https://github.com/nicm/fdm" SRC_URI="https://github.com/nicm/fdm/releases/download/${PV}/${P}.tar.gz" @@ -25,11 +27,17 @@ RDEPEND=" DOCS=( CHANGES README TODO MANUAL ) +PATCHES=( + "${FILESDIR}"/${PN}-2.2-configure-strlcpy.patch +) + src_prepare() { default # Change user '_fdm' to 'fdm' sed -e 's/_fdm/fdm/g' -i fdm.h || die + + eautoreconf } src_configure() { diff --git a/net-mail/fdm/files/fdm-2.2-configure-strlcpy.patch b/net-mail/fdm/files/fdm-2.2-configure-strlcpy.patch new file mode 100644 index 000000000000..443a7240c40a --- /dev/null +++ b/net-mail/fdm/files/fdm-2.2-configure-strlcpy.patch @@ -0,0 +1,20 @@ +diff --git a/configure.ac b/configure.ac +index e356e9c..d91ae66 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -124,13 +124,13 @@ if test "x$found_libssl" = xno; then + AC_MSG_ERROR("libssl not found") + fi + +-AC_CHECK_DECL(strlcpy, found_strlcpy=yes, found_strlcpy=no) ++AC_CHECK_FUNC(strlcpy, found_strlcpy=yes, found_strlcpy=no) + if test "x$found_strlcpy" = xyes; then + AC_DEFINE(HAVE_STRLCPY) + fi + AM_CONDITIONAL(NO_STRLCPY, [test "x$found_strlcpy" = xno]) + +-AC_CHECK_DECL(strlcat, found_strlcat=yes, found_strlcat=no) ++AC_CHECK_FUNC(strlcat, found_strlcat=yes, found_strlcat=no) + if test "x$found_strlcat" = xyes; then + AC_DEFINE(HAVE_STRLCAT) + fi diff --git a/net-mail/vpopmail/files/vpopmail-5.4.33-add-missing-headers-in-configure-tests.patch b/net-mail/vpopmail/files/vpopmail-5.4.33-add-missing-headers-in-configure-tests.patch new file mode 100644 index 000000000000..1fa1fbaf3af4 --- /dev/null +++ b/net-mail/vpopmail/files/vpopmail-5.4.33-add-missing-headers-in-configure-tests.patch @@ -0,0 +1,40 @@ +From 6a2bc617c8ca8368697e971b6456b5b07a1c8b18 Mon Sep 17 00:00:00 2001 +From: Rolf Eike Beer +Date: Thu, 15 Dec 2022 21:34:18 +0100 +Subject: [PATCH 1/5] add missing headers in configure tests + +See: https://bugs.gentoo.org/885873 +--- + configure | 2 ++ + configure.in | 2 ++ + 2 files changed, 4 insertions(+) + +diff --git a/configure b/configure +index 43030d8..a4b0d54 100755 +--- a/configure ++++ b/configure +@@ -5686,6 +5686,8 @@ else + #include + #include + #include ++ #include ++ #include + + int main() { + struct passwd *pw; +diff --git a/configure.in b/configure.in +index c4e32d4..f557f26 100644 +--- a/configure.in ++++ b/configure.in +@@ -423,6 +423,8 @@ AC_TRY_RUN( [ + #include + #include + #include ++ #include ++ #include + + int main() { + struct passwd *pw; +-- +2.35.3 + diff --git a/net-mail/vpopmail/vpopmail-5.4.33-r9.ebuild b/net-mail/vpopmail/vpopmail-5.4.33-r9.ebuild index d186cf1de43e..ee9f8d6f2750 100644 --- a/net-mail/vpopmail/vpopmail-5.4.33-r9.ebuild +++ b/net-mail/vpopmail/vpopmail-5.4.33-r9.ebuild @@ -42,6 +42,7 @@ PATCHES=( "${FILESDIR}"/${PN}-5.4.33-use-proper-printf-format-strings.patch "${FILESDIR}"/${PN}-5.4.33-vpgsql-onchange.patch "${FILESDIR}"/${PN}-5.4.33-avoid-duplicate-definitions-of-MYSQL_READ_-and-MYSQL.patch + "${FILESDIR}"/${PN}-5.4.33-add-missing-headers-in-configure-tests.patch ) DOCS=( ChangeLog diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index c5895b805cae..8766dc196216 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/bopm/bopm-3.1.3-r6.ebuild b/net-misc/bopm/bopm-3.1.3-r7.ebuild similarity index 80% rename from net-misc/bopm/bopm-3.1.3-r6.ebuild rename to net-misc/bopm/bopm-3.1.3-r7.ebuild index ae8dd5a2d897..d959f6b1af9d 100644 --- a/net-misc/bopm/bopm-3.1.3-r6.ebuild +++ b/net-misc/bopm/bopm-3.1.3-r7.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools @@ -14,6 +14,10 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~ppc ~x86" RDEPEND="acct-user/opm" +BDEPEND=" + acct-user/opm + sys-devel/autoconf-archive +" PATCHES=( "${FILESDIR}"/${P}-remove-njabl.patch @@ -29,6 +33,8 @@ src_prepare() { mv configure.{in,ac} || die mv src/libopm/configure.{in,ac} || die + mkdir src/libopm/m4 || die + cp "${BROOT}"/usr/share/aclocal/ax_func_snprintf.m4 src/libopm/m4/ax_func_snprintf.m4 || die default cp bopm.conf{.sample,} || die @@ -37,7 +43,8 @@ src_prepare() { } src_configure() { - econf --localstatedir="${EPREFIX}"/var/log/${PN} + # We need --enable-static to build libopm.a. We don't install it so it's fine. + econf --localstatedir="${EPREFIX}"/var/log/${PN} --enable-static } src_install() { diff --git a/net-misc/bopm/files/bopm-3.1.3-autotools.patch b/net-misc/bopm/files/bopm-3.1.3-autotools.patch index e2927b0b74b6..e336150f430c 100644 --- a/net-misc/bopm/files/bopm-3.1.3-autotools.patch +++ b/net-misc/bopm/files/bopm-3.1.3-autotools.patch @@ -44,94 +44,6 @@ AC_CONFIG_SRCDIR(src/libopm.h) AM_CONFIG_HEADER(src/setup.h) AM_INIT_AUTOMAKE() ---- bopm-3.1.3/src/libopm/m4/ax_func_snprintf.m4 -+++ bopm-3.1.3/src/libopm/m4/ax_func_snprintf.m4 -@@ -0,0 +1,85 @@ -+# =========================================================================== -+# http://www.gnu.org/software/autoconf-archive/ax_func_snprintf.html -+# =========================================================================== -+# -+# SYNOPSIS -+# -+# AX_FUNC_SNPRINTF -+# -+# DESCRIPTION -+# -+# Checks for a fully C99 compliant snprintf, in particular checks whether -+# it does bounds checking and returns the correct string length; does the -+# same check for vsnprintf. If no working snprintf or vsnprintf is found, -+# request a replacement and warn the user about it. Note: the mentioned -+# replacement is freely available and may be used in any project -+# regardless of it's license. -+# -+# LICENSE -+# -+# Copyright (c) 2008 Ruediger Kuhlmann -+# -+# Copying and distribution of this file, with or without modification, are -+# permitted in any medium without royalty provided the copyright notice -+# and this notice are preserved. This file is offered as-is, without any -+# warranty. -+ -+#serial 5 -+ -+AU_ALIAS([AC_FUNC_SNPRINTF], [AX_FUNC_SNPRINTF]) -+AC_DEFUN([AX_FUNC_SNPRINTF], -+[AC_CHECK_FUNCS(snprintf vsnprintf) -+AC_MSG_CHECKING(for working snprintf) -+AC_CACHE_VAL(ac_cv_have_working_snprintf, -+[AC_TRY_RUN( -+[#include -+ -+int main(void) -+{ -+ char bufs[5] = { 'x', 'x', 'x', '\0', '\0' }; -+ char bufd[5] = { 'x', 'x', 'x', '\0', '\0' }; -+ int i; -+ i = snprintf (bufs, 2, "%s", "111"); -+ if (strcmp (bufs, "1")) exit (1); -+ if (i != 3) exit (1); -+ i = snprintf (bufd, 2, "%d", 111); -+ if (strcmp (bufd, "1")) exit (1); -+ if (i != 3) exit (1); -+ exit(0); -+}], ac_cv_have_working_snprintf=yes, ac_cv_have_working_snprintf=no, ac_cv_have_working_snprintf=cross)]) -+AC_MSG_RESULT([$ac_cv_have_working_snprintf]) -+AC_MSG_CHECKING(for working vsnprintf) -+AC_CACHE_VAL(ac_cv_have_working_vsnprintf, -+[AC_TRY_RUN( -+[#include -+#include -+ -+int my_vsnprintf (char *buf, const char *tmpl, ...) -+{ -+ int i; -+ va_list args; -+ va_start (args, tmpl); -+ i = vsnprintf (buf, 2, tmpl, args); -+ va_end (args); -+ return i; -+} -+ -+int main(void) -+{ -+ char bufs[5] = { 'x', 'x', 'x', '\0', '\0' }; -+ char bufd[5] = { 'x', 'x', 'x', '\0', '\0' }; -+ int i; -+ i = my_vsnprintf (bufs, "%s", "111"); -+ if (strcmp (bufs, "1")) exit (1); -+ if (i != 3) exit (1); -+ i = my_vsnprintf (bufd, "%d", 111); -+ if (strcmp (bufd, "1")) exit (1); -+ if (i != 3) exit (1); -+ exit(0); -+}], ac_cv_have_working_vsnprintf=yes, ac_cv_have_working_vsnprintf=no, ac_cv_have_working_vsnprintf=cross)]) -+AC_MSG_RESULT([$ac_cv_have_working_vsnprintf]) -+if test x$ac_cv_have_working_snprintf$ac_cv_have_working_vsnprintf != "xyesyes"; then -+ AC_LIBOBJ(snprintf) -+ AC_MSG_WARN([Replacing missing/broken (v)snprintf() with version from http://www.ijs.si/software/snprintf/.]) -+ AC_DEFINE(PREFER_PORTABLE_SNPRINTF, 1, "enable replacement (v)snprintf if system (v)snprintf is broken") -+fi]) --- bopm-3.1.3/src/libopm/m4/etr_socket_nsl.m4 +++ bopm-3.1.3/src/libopm/m4/etr_socket_nsl.m4 @@ -0,0 +1,81 @@ diff --git a/net-misc/gnome-remote-desktop/Manifest b/net-misc/gnome-remote-desktop/Manifest index 93cc4ebb8936..6d14aad81427 100644 --- a/net-misc/gnome-remote-desktop/Manifest +++ b/net-misc/gnome-remote-desktop/Manifest @@ -1,2 +1,3 @@ DIST gnome-remote-desktop-43.3.tar.xz 196540 BLAKE2B a33dcb830cd5ed0e9c44da8717a7c621231a97a0d503daa007d6d4c47feb83e16905f61a9ebe60ce5231b7fbad035ab24603284f9c9212ccb48dab90cb845a5c SHA512 67dc7c4ab7d2db9ef843e30b688e024ed91341c09fbf4c7d33f4c1d8b7d9d3564fb64bc948b12f2aee3ca8a545fb21842ce79970ec1ddaf99fd64c41a44b8f59 +DIST gnome-remote-desktop-44.0.tar.xz 199392 BLAKE2B a1a58a9d100dc1cf40fe03eaf611ac4c895bfb4e135a05ce25d8e00cafb5b7eecddcd7ca98bec65f39ef65fe430e1827214a5775820383f6502f10c437f761b0 SHA512 6ca62126790be4498806aeb61c02edf68f113aa1ec53ab73f8bd822b10f5957b32a67d5a23f7ba023db117a8b2fe8fb3be87ea72bca1c22dedde00e94677549e DIST gnome-remote-desktop-44.rc.tar.xz 199388 BLAKE2B 69ee4ad0cae29eea60a79cce24b5852fdffb524af599e21a4a4963bac6e10fa3cef9c4ed361fc1fb2ebf4954968365288ec6da747e1363b0e0e87e7faeeb138a SHA512 ed33a3add26ada4b8d15d3e0e22cb14ac87c6779c5c7ad89db5ceacae457b4967460a40994c38ebf59b194c23c6d5a94e1b8719ad60d582961091b7ca9ad5ae2 diff --git a/net-misc/gnome-remote-desktop/gnome-remote-desktop-44.0.ebuild b/net-misc/gnome-remote-desktop/gnome-remote-desktop-44.0.ebuild new file mode 100644 index 000000000000..595e4cdbee2a --- /dev/null +++ b/net-misc/gnome-remote-desktop/gnome-remote-desktop-44.0.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson systemd xdg + +DESCRIPTION="Remote desktop daemon for GNOME using pipewire" +HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-remote-desktop" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="aac doc +rdp systemd +vnc" +REQUIRED_USE="|| ( rdp vnc ) aac? ( rdp )" +RESTRICT="test" # Tests run xvfb-run directly + +DEPEND=" + x11-libs/cairo + x11-libs/libdrm + >=media-libs/libepoxy-1.4 + >=dev-libs/glib-2.68:2 + x11-libs/libnotify + app-crypt/libsecret + >=media-video/pipewire-0.3.49:= + app-crypt/tpm2-tss:= + rdp? ( + >=media-libs/nv-codec-headers-11.1.5.0 + >=net-misc/freerdp-2.10.0:=[server] + >=sys-fs/fuse-3.9.1:3 + >=x11-libs/libxkbcommon-1.0.0 + + aac? ( + media-libs/fdk-aac:= + ) + ) + vnc? ( + net-libs/libvncserver + ) +" +RDEPEND="${DEPEND} + x11-wm/mutter[screencast] +" +BDEPEND=" + dev-util/gdbus-codegen + dev-util/glib-utils + virtual/pkgconfig + doc? ( + app-text/asciidoc + ) +" + +src_configure() { + local emesonargs=( + $(meson_use doc man) + $(meson_use aac fdk_aac) + $(meson_use rdp) + $(meson_use vnc) + $(meson_use systemd) + -Dsystemd_user_unit_dir="$(systemd_get_userunitdir)" + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/net-misc/kafka-bin/Manifest b/net-misc/kafka-bin/Manifest index c5353bd2b284..71e41b678851 100644 --- a/net-misc/kafka-bin/Manifest +++ b/net-misc/kafka-bin/Manifest @@ -1,5 +1,3 @@ -DIST kafka_2.13-3.0.2.tgz 86566125 BLAKE2B 91c57a3349431417a5579a72a1557866c46263474b789d6bcd1915a45b0e1633cbed00842345efcdd8ad6f2ae9f01f65f8f24e87e7c23172b8ea482cadd66115 SHA512 032ca5025e9b37ae377e2daba6ae4d2c84fc28b4d030f92d8864f75b29b9193d5652dac2c562c64f6fc84038ddb26b1b6d65c836783ac32427defed5062a9fee -DIST kafka_2.13-3.1.2.tgz 88093743 BLAKE2B bbb03e55eb7506e8cfba4630191998622c2069b438d71bbfa2c0c1bb8c9052cb2a3fdba0067966d9fd49746453eb9c7bd84b4b325cd5fa1b4a56d4ce11e133a0 SHA512 ec5955bd9be0ffe15adf84ef428f48d341b5393a1e4cbb9d7f80ec4062ff57a28a38d575e19bc0b40af4143164bb5126721844f42dce8e70516fc30348c57f95 -DIST kafka_2.13-3.2.3.tgz 104083532 BLAKE2B e6bee799597565bf7824bcf607b514eba0be3c03f1fc29963812d4e7e109196a48369661f80eda3621b0cf11d0bf8187de817c59aca09e3212cf89452b04c966 SHA512 4a57d69f8d3b5158ddca9c64ac366c2975ca55f4c2ef02cd3b122e127016ad1a5aa1de92e7e2f392fdc3b57aabe75d4631373d77a3a5958c28d911f4034a136f DIST kafka_2.13-3.3.1.tgz 105053134 BLAKE2B 73eb6e8eab021a20ba79f5ec50e9efbbbbf666236553d7e658fcf5d5dd8bf61ee79b8057a76eb6d2906c5772fea1f6b8e9e27e6ad9ef3a0b740548b14758491e SHA512 d14d9cc97d1702649b33378f38060c4a6220850a3d7182d1af20e905cb98728e51f2aeec63121f5773a389d6b66891b7508e5d23584dd1a4e424825e3d54e3e0 DIST kafka_2.13-3.3.2.tgz 106619987 BLAKE2B 483587654f8f63b4196d49030cd8a5d82b5dcfa02aad6b8ba5673c8a4293c214159fd54236b810561ef2b7340d8b56deff78d7313a4675286e798bb5d220237c SHA512 f56657105a67f6195c1d4795b5fb4a00fc5e2f5cce061d7f7a504063778187b325c6fbe51d7c59f57cd7ef323a37d4c2c780c27a5609a2008852cbfa944287b3 +DIST kafka_2.13-3.4.0.tgz 106290956 BLAKE2B 27b3331d0d9c5767a52fff3d78ada43e43651174831d822be438c412981b86567e85ff20b8a14bdc632b45753012c2066f6eabc7f1b799afbafeb11fe65b50f0 SHA512 2c405149c065627ce2125088dfcce0a4dc23aebaa72c1157736d5829cb5cbef273c0915ec55d2d8ba38e5e0524f0720f43e07d7d677439cd2ac7bea618caa65b diff --git a/net-misc/kafka-bin/kafka-bin-3.0.2.ebuild b/net-misc/kafka-bin/kafka-bin-3.0.2.ebuild deleted file mode 100644 index f81d56cb3214..000000000000 --- a/net-misc/kafka-bin/kafka-bin-3.0.2.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A high-throughput distributed messaging system" -HOMEPAGE="https://kafka.apache.org/" - -# pick recommended scala version -SCALA_VERSION=2.13 -MY_PN="kafka" -MY_P="${MY_PN}_${SCALA_VERSION}-${PV}" -SRC_URI="mirror://apache/kafka/${PV}/${MY_P}.tgz" - -RESTRICT="mirror" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="internal-zookeeper connect" - -COMMON_DEPEND="acct-group/kafka - acct-user/kafka - || ( virtual/jre:1.8 virtual/jre:11 )" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" - -S="${WORKDIR}/${MY_P}" -INSTALL_DIR="/opt/${MY_PN}" - -src_prepare() { - sed -i -e 's:/tmp/zookeeper:/var/lib/kafka/zookeeper:' "config/zookeeper.properties" || die - sed -i -e 's:/tmp/kafka-logs:/var/lib/kafka/logs:' "config/server.properties" || die - sed -i -e 's:/tmp/connect.offsets:/var/lib/kafka/connect.offsets:' "config/connect-standalone.properties" || die - eapply_user -} - -src_install() { - insinto /etc/kafka - doins config/zookeeper.properties config/server.properties - if use "internal-zookeeper"; then - keepdir /var/lib/kafka/zookeeper - newinitd "${FILESDIR}/${MY_PN}-zookeeper.init.d" "${MY_PN}-zookeeper" - - ewarn "Zookeeper owner has been changed to kafka:kafka" - ewarn "you might want to run chown -R kafka:kafka /var/lib/kafka/zookeeper" - ewarn "or set COMMAND_USER=\"root:root\" in /etc/conf.d/kafka-zookeeper" - ewarn "to keep the previous behavior." - ewarn "All logs files have been move to /var/log/kafka/" - fi - - if use "connect"; then - doins config/connect-distributed.properties config/connect-standalone.properties - newinitd "${FILESDIR}/${MY_PN}-connect-distributed.init.d" "${MY_PN}-connect-distributed" - fi - - keepdir /var/lib/kafka - fowners -R kafka:kafka /var/lib/kafka - - keepdir /var/log/kafka - fowners -R kafka:kafka /var/log/kafka - - newinitd "${FILESDIR}/${MY_PN}.init.d.5" "${MY_PN}" - - dodir "${INSTALL_DIR}" - cp -pRP bin config libs "${ED}/${INSTALL_DIR}" || die - keepdir "${INSTALL_DIR}/logs" - fowners -R kafka:kafka "${INSTALL_DIR}" -} diff --git a/net-misc/kafka-bin/kafka-bin-3.1.2.ebuild b/net-misc/kafka-bin/kafka-bin-3.1.2.ebuild deleted file mode 100644 index 313f507f0bdf..000000000000 --- a/net-misc/kafka-bin/kafka-bin-3.1.2.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A high-throughput distributed messaging system" -HOMEPAGE="https://kafka.apache.org/" - -# pick recommended scala version -SCALA_VERSION=2.13 -MY_PN="kafka" -MY_P="${MY_PN}_${SCALA_VERSION}-${PV}" -SRC_URI="mirror://apache/kafka/${PV}/${MY_P}.tgz" - -RESTRICT="mirror" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="internal-zookeeper connect" - -COMMON_DEPEND="acct-group/kafka - acct-user/kafka - virtual/jre:=" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" - -S="${WORKDIR}/${MY_P}" -INSTALL_DIR="/opt/${MY_PN}" - -src_prepare() { - sed -i -e 's:/tmp/zookeeper:/var/lib/kafka/zookeeper:' "config/zookeeper.properties" || die - sed -i -e 's:/tmp/kafka-logs:/var/lib/kafka/logs:' "config/server.properties" || die - sed -i -e 's:/tmp/connect.offsets:/var/lib/kafka/connect.offsets:' "config/connect-standalone.properties" || die - eapply_user -} - -src_install() { - insinto /etc/kafka - doins config/zookeeper.properties config/server.properties - if use "internal-zookeeper"; then - keepdir /var/lib/kafka/zookeeper - newinitd "${FILESDIR}/${MY_PN}-zookeeper.init.d" "${MY_PN}-zookeeper" - - ewarn "Zookeeper owner has been changed to kafka:kafka" - ewarn "you might want to run chown -R kafka:kafka /var/lib/kafka/zookeeper" - ewarn "or set COMMAND_USER=\"root:root\" in /etc/conf.d/kafka-zookeeper" - ewarn "to keep the previous behavior." - ewarn "All logs files have been move to /var/log/kafka/" - fi - - if use "connect"; then - doins config/connect-distributed.properties config/connect-standalone.properties - newinitd "${FILESDIR}/${MY_PN}-connect-distributed.init.d" "${MY_PN}-connect-distributed" - fi - - keepdir /var/lib/kafka - fowners -R kafka:kafka /var/lib/kafka - - keepdir /var/log/kafka - fowners -R kafka:kafka /var/log/kafka - - newinitd "${FILESDIR}/${MY_PN}.init.d.5" "${MY_PN}" - - dodir "${INSTALL_DIR}" - cp -pRP bin config libs "${ED}/${INSTALL_DIR}" || die - keepdir "${INSTALL_DIR}/logs" - fowners -R kafka:kafka "${INSTALL_DIR}" -} diff --git a/net-misc/kafka-bin/kafka-bin-3.2.3.ebuild b/net-misc/kafka-bin/kafka-bin-3.4.0.ebuild similarity index 97% rename from net-misc/kafka-bin/kafka-bin-3.2.3.ebuild rename to net-misc/kafka-bin/kafka-bin-3.4.0.ebuild index 313f507f0bdf..62f5d3c5f537 100644 --- a/net-misc/kafka-bin/kafka-bin-3.2.3.ebuild +++ b/net-misc/kafka-bin/kafka-bin-3.4.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 DESCRIPTION="A high-throughput distributed messaging system" HOMEPAGE="https://kafka.apache.org/" diff --git a/net-misc/lldpd/files/lldpd-1.0.16-configure-clang16.patch b/net-misc/lldpd/files/lldpd-1.0.16-configure-clang16.patch new file mode 100644 index 000000000000..bd03399e1b36 --- /dev/null +++ b/net-misc/lldpd/files/lldpd-1.0.16-configure-clang16.patch @@ -0,0 +1,23 @@ +https://bugs.gentoo.org/900286 +https://github.com/lldpd/lldpd/commit/01aee0f3601c60e570aeb9040c036c83d053cc5a + +From 01aee0f3601c60e570aeb9040c036c83d053cc5a Mon Sep 17 00:00:00 2001 +From: Florian Weimer +Date: Thu, 8 Dec 2022 13:01:07 +0100 +Subject: [PATCH] m4/progname.m4: Include for printf in + lldp_CHECK___PROGNAME + +Otherwise the checks always fails with a compiler that does not +support implict function declarations. +--- a/m4/progname.m4 ++++ b/m4/progname.m4 +@@ -4,7 +4,7 @@ + AC_DEFUN([lldp_CHECK___PROGNAME],[ + AC_CACHE_CHECK([whether libc defines __progname], lldp_cv_check___progname, [ + AC_LINK_IFELSE([AC_LANG_PROGRAM( +- [[]], ++ [[#include]], + [[ extern char *__progname; printf("%s", __progname); ]])], + [ lldp_cv_check___progname="yes" ], + [ lldp_cv_check___progname="no" ]) + diff --git a/net-misc/lldpd/lldpd-1.0.16-r1.ebuild b/net-misc/lldpd/lldpd-1.0.16-r2.ebuild similarity index 97% rename from net-misc/lldpd/lldpd-1.0.16-r1.ebuild rename to net-misc/lldpd/lldpd-1.0.16-r2.ebuild index 57f61cc2162b..52edf114f8db 100644 --- a/net-misc/lldpd/lldpd-1.0.16-r1.ebuild +++ b/net-misc/lldpd/lldpd-1.0.16-r2.ebuild @@ -44,6 +44,10 @@ REQUIRED_USE=" # tests need root RESTRICT+=" test" +PATCHES=( + "${FILESDIR}"/${PN}-1.0.16-configure-clang16.patch +) + src_prepare() { default diff --git a/net-misc/nx/Manifest b/net-misc/nx/Manifest index 2ed611fcd37c..a26e72b420fc 100644 --- a/net-misc/nx/Manifest +++ b/net-misc/nx/Manifest @@ -1,2 +1 @@ -DIST nx-libs-3.5.99.25.tar.gz 11065489 BLAKE2B 9210441fd2dc38fec14c90018ead4e3ddacd5ac266a26b1d985f874af0abdef3fdc2255614e45ec23816f1194ebe6ffe2beb776901eb1ed206658e8175b1ff57 SHA512 142378ae9a81542ed1bc969e9fcb2d421f1d63f7d46185c80e1e07493298e62379697ca2a367301c0f3df631acb19510113f3852922454fdc964767c36a81004 DIST nx-libs-3.5.99.26.tar.gz 11070624 BLAKE2B f67f522b127858aa2ddf1c9723468a74722a5ef2fa1e7f438844a8e5b05b868cacac22abf2c604c67d5e83a346217b192773f5debe67945d085768ae43205cb7 SHA512 1aead6161e4d7b8d7229ff80937935b23ad1f87135a578ae483a00348d0df7de35e9f9b78c47c473fda3ab2cc896ef23e845cc5656344a43520b091af9663211 diff --git a/net-misc/nx/files/nx-3.5.99.25-musl.patch b/net-misc/nx/files/nx-3.5.99.25-musl.patch new file mode 100644 index 000000000000..d7f76c04802c --- /dev/null +++ b/net-misc/nx/files/nx-3.5.99.25-musl.patch @@ -0,0 +1,54 @@ +diff -uNr a/nx-X11/extras/Mesa_6.4.2/src/mesa/main/glheader.h b/nx-X11/extras/Mesa_6.4.2/src/mesa/main/glheader.h +--- a/nx-X11/extras/Mesa_6.4.2/src/mesa/main/glheader.h 2020-11-04 06:43:58.000000000 -0600 ++++ b/nx-X11/extras/Mesa_6.4.2/src/mesa/main/glheader.h 2023-03-16 12:58:34.515215736 -0600 +@@ -62,9 +62,6 @@ + #include + #include + #include +-#if defined(__linux__) && defined(__i386__) +-#include +-#endif + #endif + #include + #include +diff -uNr a/nx-X11/extras/Mesa_6.4.2/src/mesa/main/imports.c b/nx-X11/extras/Mesa_6.4.2/src/mesa/main/imports.c +--- a/nx-X11/extras/Mesa_6.4.2/src/mesa/main/imports.c 2020-11-04 06:43:58.000000000 -0600 ++++ b/nx-X11/extras/Mesa_6.4.2/src/mesa/main/imports.c 2023-03-16 12:59:23.828001633 -0600 +@@ -1169,20 +1169,6 @@ + static GLboolean initialized = GL_FALSE; + if (!initialized) { + init_sqrt_table(); +- +-#if defined(_FPU_GETCW) && defined(_FPU_SETCW) +- { +- const char *debug = _mesa_getenv("MESA_DEBUG"); +- if (debug && _mesa_strcmp(debug, "FP")==0) { +- /* die on FP exceptions */ +- fpu_control_t mask; +- _FPU_GETCW(mask); +- mask &= ~(_FPU_MASK_IM | _FPU_MASK_DM | _FPU_MASK_ZM +- | _FPU_MASK_OM | _FPU_MASK_UM); +- _FPU_SETCW(mask); +- } +- } +-#endif + initialized = GL_TRUE; + } + +diff -uNr a/nx-X11/programs/Xserver/Xext/xf86bigfont.c b/nx-X11/programs/Xserver/Xext/xf86bigfont.c +--- a/nx-X11/programs/Xserver/Xext/xf86bigfont.c 2020-11-04 06:43:58.000000000 -0600 ++++ b/nx-X11/programs/Xserver/Xext/xf86bigfont.c 2023-03-16 13:01:30.256598143 -0600 +@@ -40,13 +40,6 @@ + + #include + #ifdef HAS_SHM +-#if defined(linux) && (!defined(__GNU_LIBRARY__) || __GNU_LIBRARY__ < 2) +-/* libc4 does not define __GNU_LIBRARY__, libc5 defines __GNU_LIBRARY__ as 1 */ +-/* Linux libc4 and libc5 only (because glibc doesn't include kernel headers): +- Linux 2.0.x and 2.2.x define SHMLBA as PAGE_SIZE, but forget to define +- PAGE_SIZE. It is defined in . */ +-#include +-#endif + #ifdef SVR4 + #include + #endif diff --git a/net-misc/nx/files/nx-3.5.99.26-musl.patch b/net-misc/nx/files/nx-3.5.99.26-musl.patch new file mode 100644 index 000000000000..738b7a2469aa --- /dev/null +++ b/net-misc/nx/files/nx-3.5.99.26-musl.patch @@ -0,0 +1,55 @@ +diff -uNr a/nx-X11/extras/Mesa_6.4.2/src/mesa/main/glheader.h b/nx-X11/extras/Mesa_6.4.2/src/mesa/main/glheader.h +--- a/nx-X11/extras/Mesa_6.4.2/src/mesa/main/glheader.h 2021-02-04 07:34:56.000000000 -0600 ++++ b/nx-X11/extras/Mesa_6.4.2/src/mesa/main/glheader.h 2023-03-16 13:55:33.983114692 -0600 +@@ -62,9 +62,6 @@ + #include + #include + #include +-#if defined(__linux__) && defined(__i386__) +-#include +-#endif + #endif + #include + #include +diff -uNr a/nx-X11/extras/Mesa_6.4.2/src/mesa/main/imports.c b/nx-X11/extras/Mesa_6.4.2/src/mesa/main/imports.c +--- a/nx-X11/extras/Mesa_6.4.2/src/mesa/main/imports.c 2021-02-04 07:34:56.000000000 -0600 ++++ b/nx-X11/extras/Mesa_6.4.2/src/mesa/main/imports.c 2023-03-16 13:56:25.569122176 -0600 +@@ -1169,20 +1169,6 @@ + static GLboolean initialized = GL_FALSE; + if (!initialized) { + init_sqrt_table(); +- +-#if defined(_FPU_GETCW) && defined(_FPU_SETCW) +- { +- const char *debug = _mesa_getenv("MESA_DEBUG"); +- if (debug && _mesa_strcmp(debug, "FP")==0) { +- /* die on FP exceptions */ +- fpu_control_t mask; +- _FPU_GETCW(mask); +- mask &= ~(_FPU_MASK_IM | _FPU_MASK_DM | _FPU_MASK_ZM +- | _FPU_MASK_OM | _FPU_MASK_UM); +- _FPU_SETCW(mask); +- } +- } +-#endif + initialized = GL_TRUE; + } + +diff -uNr a/nx-X11/programs/Xserver/Xext/xf86bigfont.c b/nx-X11/programs/Xserver/Xext/xf86bigfont.c +--- a/nx-X11/programs/Xserver/Xext/xf86bigfont.c 2021-02-04 07:34:56.000000000 -0600 ++++ b/nx-X11/programs/Xserver/Xext/xf86bigfont.c 2023-03-16 13:57:30.694956647 -0600 +@@ -40,14 +40,7 @@ + + #include + #ifdef HAS_SHM +-#if defined(linux) && (!defined(__GNU_LIBRARY__) || __GNU_LIBRARY__ < 2) +-/* libc4 does not define __GNU_LIBRARY__, libc5 defines __GNU_LIBRARY__ as 1 */ +-/* Linux libc4 and libc5 only (because glibc doesn't include kernel headers): +- Linux 2.0.x and 2.2.x define SHMLBA as PAGE_SIZE, but forget to define +- PAGE_SIZE. It is defined in . */ +-#include + #include +-#endif + #ifdef SVR4 + #include + #endif diff --git a/net-misc/nx/nx-3.5.99.25.ebuild b/net-misc/nx/nx-3.5.99.25.ebuild deleted file mode 100644 index 10bdd7240081..000000000000 --- a/net-misc/nx/nx-3.5.99.25.ebuild +++ /dev/null @@ -1,137 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools toolchain-funcs - -DESCRIPTION="NX compression technology core libraries" -HOMEPAGE="https://github.com/ArcticaProject/nx-libs" - -SRC_URI="https://github.com/ArcticaProject/nx-libs/archive/${PV}.tar.gz -> nx-libs-${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" - -RDEPEND="dev-libs/libxml2 - >=media-libs/libpng-1.2.8:0= - >=sys-libs/zlib-1.2.3 - virtual/jpeg:* - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXdmcp - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXfont2 - x11-libs/libXinerama - x11-libs/libXpm - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libXtst - x11-libs/pixman" - -DEPEND="${RDEPEND} - x11-base/xorg-proto - x11-libs/libfontenc" - -BDEPEND="sys-apps/which - virtual/pkgconfig - x11-misc/gccmakedep - x11-misc/imake" - -S="${WORKDIR}/nx-libs-${PV}" - -src_prepare() { - default - - # We want predictable behavior. So let's assume we never - # have quilt installed. - sed 's@which quilt@false@' -i mesa-quilt || die - - # Do not compress man pages by default - sed '/^[[:space:]]*gzip.*man/d' -i Makefile || die - - # run autoreconf in all needed folders - local subdir - for subdir in nxcomp nxdialog nx-X11/lib nxcompshad nxproxy ; do - pushd ${subdir} || die - eautoreconf - popd || die - done -} - -src_configure() { - # From xorg-x11-6.9.0-r3.ebuild - pushd nx-X11 || die - HOSTCONF="config/cf/host.def" - echo "#define CcCmd $(tc-getCC)" >> ${HOSTCONF} - echo "#define OptimizedCDebugFlags ${CFLAGS} GccAliasingArgs" >> ${HOSTCONF} - echo "#define OptimizedCplusplusDebugFlags ${CXXFLAGS} GccAliasingArgs" >> ${HOSTCONF} - # Respect LDFLAGS - echo "#define ExtraLoadFlags ${LDFLAGS}" >> ${HOSTCONF} - echo "#define SharedLibraryLoadFlags -shared ${LDFLAGS}" >> ${HOSTCONF} - # Disable SunRPC, #370767 - echo "#define HasSecureRPC NO" >> ${HOSTCONF} - popd || die - - local subdir - for subdir in nxcomp nxdialog nxcompshad nxproxy ; do - pushd ${subdir} || die - econf - popd || die - done - - pushd "nx-X11/lib" || die - econf --disable-poll - popd || die -} - -src_compile() { - # First set up the build environment - emake build-env - - # We replicate the "build-full" make target here because - # we cannot call "make build-full" as it - # - calls autoreconf several times - # - invokes make directly but we prefer our emake - - emake -C nxcomp - emake -C nx-X11/lib - - mkdir -p nx-X11/exports/lib/ || die - local nxlib - for nxlib in libNX_X11.so{,.6{,.3.0}} ; do - ln -s ../../lib/src/.libs/${nxlib} nx-X11/exports/lib/${nxlib} || die - done - - emake -C nxcompshad - - ./mesa-quilt push -a || die - - emake -C nx-X11 BuildDependsOnly - # Parallel make issue resurfaced, upstream working on autotools switch - emake -j1 -C nx-X11 World \ - USRLIBDIR="${EPREFIX}/usr/$(get_libdir)/${PN}/X11" \ - SHLIBDIR="${EPREFIX}/usr/$(get_libdir)" \ - ETCDIR_NX="${EPREFIX}/etc/nxagent" - - emake -C nxproxy -} - -src_install() { - emake \ - DESTDIR="${D}" \ - PREFIX="${EPREFIX}/usr" \ - NXLIBDIR="${EPREFIX}/usr/$(get_libdir)/${PN}" \ - SHLIBDIR="${EPREFIX}/usr/$(get_libdir)" \ - USRLIBDIR="${EPREFIX}/usr/$(get_libdir)/${PN}/X11" \ - ETCDIR_NX="${EPREFIX}/etc/nxagent" \ - install - - # Already provided by mesa & related packages - rm -r "${ED}"/usr/include/GL || die - - # Get rid of libtool files and static libs. - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die -} diff --git a/net-misc/nx/nx-3.5.99.26.ebuild b/net-misc/nx/nx-3.5.99.26.ebuild index 2e50edab9c33..55392ed99c6b 100644 --- a/net-misc/nx/nx-3.5.99.26.ebuild +++ b/net-misc/nx/nx-3.5.99.26.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -47,6 +47,7 @@ PATCHES=( "${FILESDIR}/${PN}-3.5.99.26-binutils-2.36.patch" # https://github.com/ArcticaProject/nx-libs/pull/1023 "${FILESDIR}/${PN}-3.5.99.26-riscv64-support.patch" + "${FILESDIR}/${PN}-3.5.99.26-musl.patch" ) src_prepare() { diff --git a/net-misc/portfwd/files/portfwd-0.29-build-system.patch b/net-misc/portfwd/files/portfwd-0.29-build-system.patch new file mode 100644 index 000000000000..e69c33cb5ef2 --- /dev/null +++ b/net-misc/portfwd/files/portfwd-0.29-build-system.patch @@ -0,0 +1,77 @@ +--- a/configure.in ++++ b/configure.in +@@ -8,6 +8,7 @@ dnl Checks for programs. + AC_PROG_CC + AC_PROG_CXX + AC_PROG_YACC ++AM_PROG_AR + AM_PROG_LEX + AC_PROG_RANLIB + +@@ -45,6 +46,7 @@ dnl ) + dnl Checks for MSG_PROXY symbol + AC_TRY_RUN( + [ ++#include + #include + int main() + { +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,4 +1,3 @@ + SUBDIRS = getopt src tools doc + +-docdir = $(prefix)/doc/portfwd + doc_DATA = COPYING README CREDITS TODO +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -3,5 +3,4 @@ + man_MANS = portfwd.8 portfwd.cfg.5 + noinst_DATA = INSTALL.configure + +-docdir = $(prefix)/doc/portfwd + doc_DATA = FAQ conf.txt +--- a/getopt/Makefile.am ++++ b/getopt/Makefile.am +@@ -3,9 +3,9 @@ noinst_LIBRARIES = libgetopt.a + libgetopt_a_SOURCES = getopt.c getopt1.c + + getopt.o: getopt.c +- $(CC) -o $@ -c $< ++ $(CC) @CFLAGS@ -o $@ -c $< + cp $@ ../src + getopt1.o: getopt1.c +- $(CC) -o $@ -c $< ++ $(CC) @CFLAGS@ -o $@ -c $< + cp $@ ../src + +--- a/getopt/getopt.c ++++ b/getopt/getopt.c +@@ -91,6 +91,8 @@ + # endif + #endif + ++#include ++ + /* This version of `getopt' appears to the caller like standard Unix `getopt' + but it behaves differently for the user, since it allows the user + to intersperse the options with the other arguments. +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -1,6 +1,4 @@ +-CFLAGS = -Wall -ggdb -O3 -DPORTFWD_CONF=\"$(sysconfdir)/portfwd.cfg\" +-CXXFLAGS = $(CFLAGS) +-INCLUDES = -I$(top_srcdir)/src ++AM_CPPFLAGS = -DPORTFWD_CONF=\"$(sysconfdir)/portfwd.cfg\" -I$(top_srcdir)/src + + sbin_PROGRAMS = portfwd + portfwd_SOURCES = addr.cc from_addr.cc host_map.cc portfwd.cc \ +--- a/tools/Makefile.am ++++ b/tools/Makefile.am +@@ -1,5 +1,4 @@ +-CXXFLAGS = -Wall -g -O3 +-INCLUDES = -I$(top_srcdir)/src ++AM_CPPFLAGS = -DPORTFWD_CONF=\"$(sysconfdir)/portfwd.cfg\" -I$(top_srcdir)/src + + noinst_PROGRAMS = t_vector udp_rcv udp_snd + diff --git a/net-misc/portfwd/portfwd-0.29-r1.ebuild b/net-misc/portfwd/portfwd-0.29-r1.ebuild deleted file mode 100644 index c64a3293d245..000000000000 --- a/net-misc/portfwd/portfwd-0.29-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools systemd - -DESCRIPTION="Port Forwarding Daemon" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -HOMEPAGE="http://portfwd.sourceforge.net" -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="amd64 ~ia64 ~ppc ~sparc x86" - -src_prepare() { - default - - cd src - sed -iorig \ - -e "s:^CFLAGS =.*:CFLAGS = @CFLAGS@ -Wall -DPORTFWD_CONF=\\\\\"\$(sysconfdir)/portfwd.cfg\\\\\":" \ - -e "s:^CXXFLAGS =.*:CPPFLAGS = @CXXFLAGS@ -Wall -DPORTFWD_CONF=\\\\\"\$(sysconfdir)/portfwd.cfg\\\\\":" \ - Makefile.am || die - cd ../tools - sed -iorig \ - -e "s:^CXXFLAGS =.*:CPPFLAGS = @CXXFLAGS@ -Wall -DPORTFWD_CONF=\\\\\"\$(sysconfdir)/portfwd.cfg\\\\\":" \ - Makefile.am || die - cd ../getopt - sed -iorig -e "s:$.CC.:\$(CC) @CFLAGS@:g" Makefile.am || die - cd ../doc - sed -iorig -e "s:/doc/portfwd:/share/doc/$P:" Makefile.am || die - cd .. - sed -iorig -e "s:/doc/portfwd:/share/doc/$P:" Makefile.am || die - - eautoreconf -} - -src_install() { - default - - dodoc cfg/* - - newinitd "${FILESDIR}"/${PN}.init ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service -} diff --git a/net-misc/portfwd/portfwd-0.29-r2.ebuild b/net-misc/portfwd/portfwd-0.29-r2.ebuild new file mode 100644 index 000000000000..98f201afdb05 --- /dev/null +++ b/net-misc/portfwd/portfwd-0.29-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools systemd + +DESCRIPTION="Port Forwarding Daemon" +HOMEPAGE="http://portfwd.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ia64 ~ppc ~sparc x86" + +PATCHES=( + "${FILESDIR}"/${PN}-0.29-build-system.patch +) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + + dodoc cfg/* + + newinitd "${FILESDIR}"/${PN}.init ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + systemd_dounit "${FILESDIR}"/${PN}.service +} diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index b910f9f85957..48b7ac987a83 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,8 +1,4 @@ -DIST rclone-1.59.2-deps.tar.xz 295715984 BLAKE2B c2ff3beb776f8697ef44421c2adb7a7997fcb1343b54c5218a4b7615f05406f5310f248048814a3f6c81a4e83d8f7400603263476ef6fce0f9d14464b358cd07 SHA512 9c3c60d08422d632ac42fc92d2a8d5c075c115600fbace376f18cda5609eea261297d648da6558a93c3afea8131f877682175ae7ff8e0d2549776263bb9ec40b -DIST rclone-1.59.2.tar.gz 15946730 BLAKE2B e05ce4b1c37af29499ae1b6a8d18a198fe43dcf788f3d1e3d027a871533c87783ed3ddc94c7c2772a94e3bc19c2540f4bb82aa79780f119c4c54833ad171671f SHA512 5741e1e1b4d2d0dc0f80baf2f7c318cdda995c2f15b7b9e0dd1c9be7372ab21cedba377c40adcc0edd0482aec7c2a27e0144a6edb957840b9422a8bbff922342 -DIST rclone-1.60.0-deps.tar.xz 260508436 BLAKE2B 5e4170601d76b4e221762ecac21a8c6a00635c6fd7958f993e4132ca703a8d91773d42523513be917feab7ae16a1babe3bd9c8142937604e724d36f7386bd8d8 SHA512 460a3f722324f0dc04408ab76a4e3be96b85d420921e7a8acc52eeebe4f6b11598c6b313946104d7ccb8cfa6c9071886f82ca7b7b863d11d5e520e68e500e7ac -DIST rclone-1.60.0.tar.gz 16018631 BLAKE2B e40f6a7e9954bc55232c126eb3095b2938761be170422d8ce63b76bf2c20d9c887a7c9d0b050ea094e125584c7ae6aad12f8d4a7fb3a85f9fb67e77bd9d0fb7b SHA512 f24958e5e99f1b4812952434921e6a0f21fd2a46c41d5c2e714cd5d686edf0fb2f60cbe6c79674c7e0fcd11de7b5fa2b86ef2eae62ec776dd9bbb567c908919d -DIST rclone-1.60.1-deps.tar.xz 260510372 BLAKE2B 74b5998a8d6ff1d78eaf86bab38d90eee1abdc92d4e560d15ef4449663b2b0b4a243522fb1b74e1329e15372133cbd32be5437ad68cc6aab3e82efd6840ea362 SHA512 08b3970c4694c3c4ca3637e3221c2a54c4305d0f4b091c4e2b258b7d07f548bca1424eaa50c6fe5e2685761c4976e59caa0b5997a65d1b4e30a0644e1d030fe4 -DIST rclone-1.60.1.tar.gz 16026540 BLAKE2B bdc666de0d242847596719a9dd6823683a5c100fc9bcacf611d956d50823fb9e3874fc1216de244b7004f52875cee6f8739ecaf2d2d2f61cd231e824d71cd2ad SHA512 ba4e4a3a57ae639665ca22576a4c8ed6d8818aa903a7d4211bf2cfbb0fb81a95162521806b7174a042bb684262786dfee4c204d6080d33e59bd9705dc9d8db9c DIST rclone-1.61.1-deps.tar.xz 286458984 BLAKE2B 5129b10d67c0b8dbc03d5f3250667fd7836234720e6ef171a46f364cecb9f81c33dbba46077e1d48380b3c04f444495a6482111636efa81134682379e678b4cd SHA512 0502424d66a9c029b95a34a15e60567f06f9cef35a2e9fd6a459b99a4b45a0a55dc7efc6f430dc718888542d532f614e3b3fbc320ea56e4852e75de2434ef21a DIST rclone-1.61.1.tar.gz 16112718 BLAKE2B cb68fedf03812451d9c8ded88bfc073c8177948b1e932acf99d22b23d3d11b1f52027e2afe88472ba6c88637a8e58e2955b67575ed7356b7b0900d6c7a7bb65c SHA512 739b976a4538586670b797c92f9cbd416c3589444a611926b5edd074e8249dfcff9d95e8053459aa42c4cbe90009a9ba1c3abb9be8e8718db6276fdc39386273 +DIST rclone-1.62.2-deps.tar.xz 294265336 BLAKE2B 7f44b9972ab902ea53beb2cb6475dc4bbc1ca3b7254d1177a8d49107d6ce90724b0bb37567aecbd9421151ca0f7e7eaa01e6b4ed0d995264ddfc944cae98220e SHA512 2e1a6b864094b364745402b857036ebdea4dd83dddee6f18e3e40fbb0e740bae4d460b6f592d9ee50632fa73d6447f8dee0748a73a738a6dce263a20a1eae975 +DIST rclone-1.62.2.tar.gz 16172767 BLAKE2B 29dd755a25adb3b332b45a662dd6ae1280c38a940e76cc6e3c5ccd38620b43b0b9f0a4598d752583ddff7e2c860416e4e36b6cdfc00cf81f03437ac13e88aba3 SHA512 c29b666ab5573e80f9e61955e987cf3834306bfebce209775f5838a0844e26b5c5ec41d64b8a8444745a99fd8e9c104b18631aeffb438e89839f996221b1c8ca diff --git a/net-misc/rclone/metadata.xml b/net-misc/rclone/metadata.xml index de4f6ee3f2e3..7707dffb70af 100644 --- a/net-misc/rclone/metadata.xml +++ b/net-misc/rclone/metadata.xml @@ -9,4 +9,7 @@ slashbeast@gentoo.org Piotr Karbowski + + rclone/rclone + diff --git a/net-misc/rclone/rclone-1.59.2.ebuild b/net-misc/rclone/rclone-1.59.2.ebuild deleted file mode 100644 index bf443a98d757..000000000000 --- a/net-misc/rclone/rclone-1.59.2.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit bash-completion-r1 go-module - -KEYWORDS="amd64 ~arm ~arm64 x86" -SRC_URI=" - https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz - https://dev.gentoo.org/~slashbeast/distfiles/${PN}/${P}-deps.tar.xz -" - -DESCRIPTION="A program to sync files to and from various cloud storage providers" -HOMEPAGE="https://rclone.org/" - -LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0" -SLOT="0" -IUSE="" - -src_compile() { - go build -mod=readonly . || die "compile failed" -} - -src_test() { - # Setting CI skips unreliable tests, see fstest/testy/testy.go - # TestAddPlugin and TestRemovePlugin fail - RCLONE_CONFIG="/notfound" CI="true" go test -mod=readonly -v -run "!Test.*Plugin" ./... || die "test failed" -} - -src_install() { - dobin ${PN} - doman ${PN}.1 - dodoc README.md - - ./rclone genautocomplete bash ${PN}.bash || die - newbashcomp ${PN}.bash ${PN} - - ./rclone genautocomplete zsh ${PN}.zsh || die - insinto /usr/share/zsh/site-functions - newins ${PN}.zsh _${PN} -} diff --git a/net-misc/rclone/rclone-1.60.0.ebuild b/net-misc/rclone/rclone-1.60.0.ebuild deleted file mode 100644 index d049a7636781..000000000000 --- a/net-misc/rclone/rclone-1.60.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit bash-completion-r1 go-module - -KEYWORDS="amd64 ~arm ~arm64 ~riscv x86" -SRC_URI=" - https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz - https://dev.gentoo.org/~slashbeast/distfiles/${PN}/${P}-deps.tar.xz -" - -DESCRIPTION="A program to sync files to and from various cloud storage providers" -HOMEPAGE="https://rclone.org/" - -LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0" -SLOT="0" -IUSE="" - -src_compile() { - go build -mod=readonly . || die "compile failed" -} - -src_test() { - # Setting CI skips unreliable tests, see fstest/testy/testy.go - # TestAddPlugin and TestRemovePlugin fail - RCLONE_CONFIG="/notfound" CI="true" go test -mod=readonly -v -run "!Test.*Plugin" ./... || die "test failed" -} - -src_install() { - dobin ${PN} - doman ${PN}.1 - dodoc README.md - - ./rclone genautocomplete bash ${PN}.bash || die - newbashcomp ${PN}.bash ${PN} - - ./rclone genautocomplete zsh ${PN}.zsh || die - insinto /usr/share/zsh/site-functions - newins ${PN}.zsh _${PN} -} diff --git a/net-misc/rclone/rclone-1.60.1.ebuild b/net-misc/rclone/rclone-1.62.2.ebuild similarity index 96% rename from net-misc/rclone/rclone-1.60.1.ebuild rename to net-misc/rclone/rclone-1.62.2.ebuild index 435e4e0b19b7..649ec2384a36 100644 --- a/net-misc/rclone/rclone-1.60.1.ebuild +++ b/net-misc/rclone/rclone-1.62.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="amd64 ~arm ~arm64 ~riscv x86" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" SRC_URI=" https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz https://dev.gentoo.org/~slashbeast/distfiles/${PN}/${P}-deps.tar.xz diff --git a/net-misc/s4cmd/Manifest b/net-misc/s4cmd/Manifest index b9594713d437..2f1d3e2af092 100644 --- a/net-misc/s4cmd/Manifest +++ b/net-misc/s4cmd/Manifest @@ -1 +1,2 @@ +DIST s4cmd-2.1.0-botocore-fix.patch 2449 BLAKE2B 5158ded38f8e3417c090d274063a4eaa4f25cd5005c4bb8793cc639d3d87875f31d87464a8dbb44b5c1690570865cb01a0681f2e92edc46fa549828b91f30a0a SHA512 ea889d069a86a1d1f7f5cf5b1f19a9d0b35527c3db5eecf9202cca742ad4442655169d8688fc4b290a1362a0a794ba8ac44abf697ea7830acf8e48b6c7998ef6 DIST s4cmd-2.1.0.tar.gz 39312 BLAKE2B 9d2d533273543153f2bad69362933315f65c5e70bd45c102e42b1b733989815239ae4d027ac08d658f03263bd9dd75f1f6db802b5f38ed3256da5e7c9f48558c SHA512 05e930e2789ce8ab280dcdb2f08e4162930d946d2ed2e4f1c754c8b875375774779b73729151bd23d9bf3736bc48f7626fe53df66aff71dd11b32e90e9355470 diff --git a/net-misc/s4cmd/s4cmd-2.1.0-r1.ebuild b/net-misc/s4cmd/s4cmd-2.1.0-r1.ebuild new file mode 100644 index 000000000000..6be09aed0ddd --- /dev/null +++ b/net-misc/s4cmd/s4cmd-2.1.0-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_10 ) +PYTHON_REQ_USE="xml(+)" + +inherit distutils-r1 bash-completion-r1 + +DESCRIPTION="Super S3 command line tool" +HOMEPAGE="https://github.com/bloomreach/s4cmd" +SRC_URI="https://github.com/bloomreach/s4cmd/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://github.com/bloomreach/s4cmd/pull/310.patch -> ${P}-botocore-fix.patch " +PATCHES=( + "${DISTDIR}/${P}-botocore-fix.patch" +) + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/boto3[${PYTHON_USEDEP}]" + +S="${WORKDIR}/${P/_/-}" + +src_install() { + distutils-r1_src_install + dobashcomp data/bash-completion/s4cmd + rm -f "${D}"/usr/bin/s4cmd.py +} diff --git a/net-misc/seafile-client/Manifest b/net-misc/seafile-client/Manifest index ae58bb2b362e..ebe8ef2f229a 100644 --- a/net-misc/seafile-client/Manifest +++ b/net-misc/seafile-client/Manifest @@ -1,6 +1,3 @@ DIST seafile-client-8.0.10.tar.gz 11718520 BLAKE2B b8163085c9973df6965b194c964d2b326d4faea3191bf9b62a147bd0a49670f1eb3d0758fbe6f822f99f54c95c32717d9c3533cbc15e71cd8251c1c6ef67f662 SHA512 c4efb1698ed6dfbf3199e4e03293035c8052bd66632a1d04d9020bd226cce748fbcfc8d90c10284c9b1ee6bad20546263a9e09819fc420365625a2fbd4f4a697 -DIST seafile-client-8.0.5.tar.gz 11701650 BLAKE2B c9c436f53cf7effa6c2e1cdbb09f5cffd53f7ef8fa6f6b12bb92c0d3c2e54b38858c95a3ab4c511d16774a973c8c2a7e66842825e9535d1332e8589dc201d22a SHA512 1f3eb643dce980a1aa0ff71e0ecca83b3db0848f9983bf7782adae6d181ddc28454a6cd75ebfcf439c17eb2008a5e0d4a684e5cee60fe7b83297e9fce1fcfec9 -DIST seafile-client-8.0.6.tar.gz 11702726 BLAKE2B bcba073b9ec17c33f653ae89e518f30f96ec8f9bdb780a9e06ae75d565c223c6b0505fd1ec9475b66bcd8d26f84846a99968fc006514d1eccb4a72b8600f0ae4 SHA512 fceb272fa521a7343609285ff5b299f66886b2ea53a1395178c3f05313e9439853422de65d20902669034c4edacdf32eb5674e16e64218b0444221c77cd4256c -DIST seafile-client-8.0.7.tar.gz 11718265 BLAKE2B a48e259d809644cb1949f35e80459aa2267c9772438eb09ba894a795553368935c8b63c78fbabbea2202d3f23eb001836acce0975b086f66ec6d804405c5b534 SHA512 b4a6d5896f828e0e8ac4b202c5cc933e0ade4c373074e48e76e3b4ffe670faec0ef62bfcc72607891fb2c8b066fc448976285985077c48c6e3763619f35f4629 -DIST seafile-client-8.0.8.tar.gz 11716136 BLAKE2B 1e8a25e0ce7ddf3347790cb614e725349c7cdb1b881bba4f229676f9f2e6ba86ed4958fb18c09b63e9c6fbf57c73f3bda68bd39f11ac374c4715bd4f5d036cf2 SHA512 9d569152c3e3db2fc142a082a3ca75fb020117eb5a79e7c0daa31207d1b04571ef38782c3afc1dbb205a65b8dd54e4b1ee4aab0715b0bda4bdd308474ce4e51c DIST seafile-client-8.0.9.tar.gz 11716754 BLAKE2B 2087d2b31ce4696fdaaaa723da7a353c54ebebef86c84b62146d806692066165d0499f5fd6d3be108130d28c297020eafc3497be03131c8a8751f34f33eece90 SHA512 d0b55883f8d00138c092309994047652c6a5aa8b66182f83b6c852f1721794d9d8125da5fba282e9efdb92a0a97a55ecd6e225ab6a7916718a05ea2b7f4bd944 +DIST seafile-client-9.0.0.tar.gz 11714587 BLAKE2B 3432c5b1a971b794379953392689a8451335b1e31a23d09a762b181d66d99a8ee1a2694bcd0cdeb31e2d3c5d98e11d582c9464c11e558c9febb894361dfebfce SHA512 42975fcae3691ffa69671e39c75af1dd863f43cbab65f2022f3c4ee72462c6725107bda77856d16caa4db1e9b5e81c45fe629ffe362a88bbfae8fef558118cae diff --git a/net-misc/seafile-client/seafile-client-8.0.5.ebuild b/net-misc/seafile-client/seafile-client-8.0.5.ebuild deleted file mode 100644 index 4c52710fbbf8..000000000000 --- a/net-misc/seafile-client/seafile-client-8.0.5.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -RELEASE_COMMIT="484d80075f9dbcf49d80036e84ed67d47b8cedd4" - -inherit xdg cmake - -DESCRIPTION="Seafile desktop client" -HOMEPAGE="https://www.seafile.com/ https://github.com/haiwen/seafile-client/" -SRC_URI="https://github.com/haiwen/${PN}/archive/${RELEASE_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="shibboleth test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-db/sqlite:3 - dev-libs/glib:2 - dev-libs/jansson:= - dev-libs/openssl:= - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtwidgets:5 - net-libs/libsearpc - ~net-misc/seafile-${PV} - sys-libs/zlib - virtual/opengl - elibc_musl? ( sys-libs/fts-standalone ) - shibboleth? ( dev-qt/qtwebengine:5[widgets] )" -DEPEND="${RDEPEND} - test? ( dev-qt/qttest:5 )" -BDEPEND="dev-qt/linguist-tools:5" - -PATCHES=( - "${FILESDIR}/${PN}-select-qt5.patch" - "${FILESDIR}/${PN}-7.0.9-qt-5.15.patch" -) - -S="${WORKDIR}/${PN}-${RELEASE_COMMIT}" - -src_configure() { - local mycmakeargs=( - -DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)" - -DBUILD_TESTING="$(usex test)" - ) - # 863554 - use elibc_musl && mycmakeargs+=( -DCMAKE_CXX_STANDARD_LIBRARIES="-lfts" ) - cmake_src_configure -} diff --git a/net-misc/seafile-client/seafile-client-8.0.6.ebuild b/net-misc/seafile-client/seafile-client-8.0.6.ebuild deleted file mode 100644 index cf595b8208c9..000000000000 --- a/net-misc/seafile-client/seafile-client-8.0.6.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -# Upstream is moving tags repeatedly, then we use commit hash. -RELEASE_COMMIT="1fb9ddd71fbf6f0252509aced527be459e240366" - -inherit xdg cmake - -DESCRIPTION="Seafile desktop client" -HOMEPAGE="https://www.seafile.com/ https://github.com/haiwen/seafile-client/" -SRC_URI="https://github.com/haiwen/${PN}/archive/${RELEASE_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="shibboleth test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-db/sqlite:3 - dev-libs/glib:2 - dev-libs/jansson:= - dev-libs/openssl:= - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtwidgets:5 - net-libs/libsearpc - ~net-misc/seafile-${PV} - sys-libs/zlib - virtual/opengl - elibc_musl? ( sys-libs/fts-standalone ) - shibboleth? ( dev-qt/qtwebengine:5[widgets] )" -DEPEND="${RDEPEND} - test? ( dev-qt/qttest:5 )" -BDEPEND="dev-qt/linguist-tools:5" - -PATCHES=( - "${FILESDIR}/${PN}-8.0.6-select-qt5.patch" - "${FILESDIR}/${PN}-7.0.9-qt-5.15.patch" -) - -S="${WORKDIR}/${PN}-${RELEASE_COMMIT}" - -src_configure() { - local mycmakeargs=( - -DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)" - -DBUILD_TESTING="$(usex test)" - ) - # 863554 - use elibc_musl && mycmakeargs+=( -DCMAKE_CXX_STANDARD_LIBRARIES="-lfts" ) - cmake_src_configure -} diff --git a/net-misc/seafile-client/seafile-client-8.0.7.ebuild b/net-misc/seafile-client/seafile-client-8.0.7.ebuild deleted file mode 100644 index 26bf640b97c8..000000000000 --- a/net-misc/seafile-client/seafile-client-8.0.7.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -# Upstream is moving tags repeatedly, then we use commit hash. -RELEASE_COMMIT="8b96abf64e6aa19e3beeff6b322bcd6d28120bdd" - -inherit xdg cmake - -DESCRIPTION="Seafile desktop client" -HOMEPAGE="https://www.seafile.com/ https://github.com/haiwen/seafile-client/" -SRC_URI="https://github.com/haiwen/${PN}/archive/${RELEASE_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="shibboleth test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-db/sqlite:3 - dev-libs/glib:2 - dev-libs/jansson:= - dev-libs/openssl:= - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtwidgets:5 - net-libs/libsearpc - ~net-misc/seafile-${PV} - sys-libs/zlib - virtual/opengl - elibc_musl? ( sys-libs/fts-standalone ) - shibboleth? ( dev-qt/qtwebengine:5[widgets] )" -DEPEND="${RDEPEND} - test? ( dev-qt/qttest:5 )" -BDEPEND="dev-qt/linguist-tools:5" - -PATCHES=( - "${FILESDIR}/${PN}-8.0.6-select-qt5.patch" - "${FILESDIR}/${PN}-7.0.9-qt-5.15.patch" -) - -S="${WORKDIR}/${PN}-${RELEASE_COMMIT}" - -src_configure() { - local mycmakeargs=( - -DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)" - -DBUILD_TESTING="$(usex test)" - ) - # 863554 - use elibc_musl && mycmakeargs+=( -DCMAKE_CXX_STANDARD_LIBRARIES="-lfts" ) - cmake_src_configure -} diff --git a/net-misc/seafile-client/seafile-client-8.0.8.ebuild b/net-misc/seafile-client/seafile-client-9.0.0.ebuild similarity index 93% rename from net-misc/seafile-client/seafile-client-8.0.8.ebuild rename to net-misc/seafile-client/seafile-client-9.0.0.ebuild index 84395edb38d6..bb0e0f264d2f 100644 --- a/net-misc/seafile-client/seafile-client-8.0.8.ebuild +++ b/net-misc/seafile-client/seafile-client-9.0.0.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 # Upstream is moving tags repeatedly, then we use commit hash. -RELEASE_COMMIT="c8a33cc8f39dd67cf9458585ab19d20ef4656fe9" +RELEASE_COMMIT="f8ee58c29d7cb73dd8eaff7aad79540ec7611bdd" inherit xdg cmake diff --git a/net-misc/seafile/Manifest b/net-misc/seafile/Manifest index 0c04b07f0fb6..9c914ccea01b 100644 --- a/net-misc/seafile/Manifest +++ b/net-misc/seafile/Manifest @@ -1,6 +1,3 @@ DIST seafile-8.0.10.gh.tar.gz 749686 BLAKE2B 76c5f6e71dcf12c6950bfde17e529ea8d24efed78069d9bbc93c78f04167be371884aa069b6665afc21be5114352b7a73e5cf09d6f7f9cea6bad323c956ef254 SHA512 9ef1f01d180fe08452c39bd35683610844ff849fa261d98ac7366fde6af27886e823976f6fa2e82407fb844dcb4de8160658abd807eb1d4932e999a4ad75dd50 -DIST seafile-8.0.5.tar.gz 738268 BLAKE2B a142acd9613b4a4aba62640486ee3e79de13274f068e8db69693d93092123f73150e579a38e2aaffc0144cb03a88c56cdac20ca33c0c9a5d09bb8684f184e193 SHA512 712a5d445f586beb9cbd425298734181f2eef302dc2f1f7634c4182bd113a7818c948475e9981ce32af218fcc635254e4d5fea28d514ad6eafe169c4a41eb6f9 -DIST seafile-8.0.6.tar.gz 738248 BLAKE2B c36904c459429985bf5a6b34546be7af2ba913b4dc5df860858cf73c0d0fe4797fc1fd64a70d8feb3ac2888404e30705540672cdbcc7cea4b91e6229939ed1e4 SHA512 261e1c58018f3e427e79a811f67322a2d0ce4cc8bfa913f029bd42bdfa5498f35ec5003cafc8eaf583b0b0ef9cd7159bc4f57136f4fd4270b38327a79e0f95cd -DIST seafile-8.0.7.tar.gz 738238 BLAKE2B edb6ab4f1e61455a24ed43c4b516b58f0cd44fd57f63ebb7aca6daaa206888689c9139fd443acfb2fb35ace100921470e207c338ae5bcdd093e02e79ab57ef80 SHA512 4ce16b2abed36ff33237df1119be7ecb3a01caa9d29c954a6618dfbc94d4ba32c0e30bcf259a6f05bf6bfe0e2aaca7d394c6b6adf69c37447e27a9ed5ac0d3df -DIST seafile-8.0.8.tar.gz 738321 BLAKE2B ec8719890c5945c1dab0433c86e5e2b7ec7dc45ce9edb0b82760a4fffaf719892c1a650d2eb5df463f413df1c09c8062e45f35b13669fbc2c6312e0056590016 SHA512 a531acd582ce1f80918979305a2c822e37e25ad8cd80551359834ddb22434f2de5c63b9a364886bd12fe3aa8307087f85238271dbe9e3258e9e9c65f18ea9307 DIST seafile-8.0.9.gh.tar.gz 740920 BLAKE2B c62c7ccea536934a92166db5d2acea45b65f5508c1e5d4f70749c922c12d29da11bc2265203c91e87fe0096cc3f4b6ec4f6125b538a4de88725583871b05e67e SHA512 c4621ea4c08fcd9c5d4cf683152f7504c37212272b5a9535da869de846b71a7f5e9a72c5544f9b7487ad8025a6cdf2866c15788828cc27937209d8242fc13cb8 +DIST seafile-9.0.0.tar.gz 749947 BLAKE2B df9e68d1ee46c03d5d7cab35f141b6e7a890e78a5864bf55b4ac2913a214e24660f57157123845b62aa72c6ad1e689d6cf53bbe6b43f44c0178a867cb0e6c78e SHA512 3ab5a62faf7210e27df58a33f790b4aaeeb5b897532ec45af283bbaf70bdf40532c8be6481ef43752fc1e646e2d8d1c890f3e039df1d058d7067e2bae99e40fb diff --git a/net-misc/seafile/seafile-8.0.10-r2.ebuild b/net-misc/seafile/seafile-8.0.10-r3.ebuild similarity index 97% rename from net-misc/seafile/seafile-8.0.10-r2.ebuild rename to net-misc/seafile/seafile-8.0.10-r3.ebuild index a6281e0df2ba..b4431663a028 100644 --- a/net-misc/seafile/seafile-8.0.10-r2.ebuild +++ b/net-misc/seafile/seafile-8.0.10-r3.ebuild @@ -31,7 +31,7 @@ RDEPEND="${PYTHON_DEPS} dev-libs/glib:2 dev-libs/jansson:= dev-libs/libevent:= - net-libs/libwebsockets:= + net-libs/libwebsockets:=[client] net-libs/libsearpc[${PYTHON_SINGLE_USEDEP}] net-misc/curl sys-apps/util-linux diff --git a/net-misc/seafile/seafile-8.0.5.ebuild b/net-misc/seafile/seafile-8.0.5.ebuild deleted file mode 100644 index 5a4135dcd291..000000000000 --- a/net-misc/seafile/seafile-8.0.5.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..10} ) - -RELEASE_COMMIT="28ede40ebeca4f046c1d6625ac69fd4949e66042" - -inherit autotools python-single-r1 vala - -DESCRIPTION="File syncing and sharing software with file encryption and group sharing" -HOMEPAGE="https://www.seafile.com/ https://github.com/haiwen/seafile/" -SRC_URI="https://github.com/haiwen/${PN}/archive/${RELEASE_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+-with-openssl-exception" -SLOT="0" -KEYWORDS="amd64 ~x86" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/future[${PYTHON_USEDEP}] - ') - dev-libs/openssl:= - dev-db/sqlite:3 - dev-libs/glib:2 - dev-libs/jansson:= - dev-libs/libevent:= - net-libs/libsearpc[${PYTHON_SINGLE_USEDEP}] - net-misc/curl - sys-apps/util-linux - sys-libs/zlib - elibc_musl? ( sys-libs/fts-standalone )" -DEPEND="${RDEPEND}" -BDEPEND="${PYTHON_DEPS} - $(vala_depend)" - -S="${WORKDIR}/${PN}-${RELEASE_COMMIT}" - -src_prepare() { - default - eautoreconf - vala_src_prepare -} - -src_configure() { - local myeconfargs=( - --disable-static - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - # Remove unnecessary .la files - find "${ED}" -name '*.la' -delete || die - python_fix_shebang "${ED}"/usr/bin/seaf-cli -} diff --git a/net-misc/seafile/seafile-8.0.6.ebuild b/net-misc/seafile/seafile-8.0.6.ebuild deleted file mode 100644 index b83a042a6a8e..000000000000 --- a/net-misc/seafile/seafile-8.0.6.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..10} ) - -# Upstream is moving tags repeatedly, then we use commit hash. -RELEASE_COMMIT="7a61feaba63006d11c09d1020593ba3fcb3fc717" - -inherit autotools python-single-r1 vala - -DESCRIPTION="File syncing and sharing software with file encryption and group sharing" -HOMEPAGE="https://www.seafile.com/ https://github.com/haiwen/seafile/" -SRC_URI="https://github.com/haiwen/${PN}/archive/${RELEASE_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+-with-openssl-exception" -SLOT="0" -KEYWORDS="~amd64 ~x86" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/future[${PYTHON_USEDEP}] - ') - dev-libs/openssl:= - dev-db/sqlite:3 - dev-libs/glib:2 - dev-libs/jansson:= - dev-libs/libevent:= - net-libs/libsearpc[${PYTHON_SINGLE_USEDEP}] - net-misc/curl - sys-apps/util-linux - sys-libs/zlib - elibc_musl? ( sys-libs/fts-standalone )" -DEPEND="${RDEPEND}" -BDEPEND="${PYTHON_DEPS} - $(vala_depend)" - -S="${WORKDIR}/${PN}-${RELEASE_COMMIT}" - -src_prepare() { - default - eautoreconf - vala_src_prepare -} - -src_configure() { - local myeconfargs=( - --disable-static - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - # Remove unnecessary .la files - find "${ED}" -name '*.la' -delete || die - python_fix_shebang "${ED}"/usr/bin/seaf-cli -} diff --git a/net-misc/seafile/seafile-8.0.7.ebuild b/net-misc/seafile/seafile-8.0.7.ebuild deleted file mode 100644 index 06d705a245cb..000000000000 --- a/net-misc/seafile/seafile-8.0.7.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..10} ) - -# Upstream is moving tags repeatedly, then we use commit hash. -RELEASE_COMMIT="57c5ebab0efb596b398d206779fd3160101805eb" - -inherit autotools python-single-r1 vala - -DESCRIPTION="File syncing and sharing software with file encryption and group sharing" -HOMEPAGE="https://www.seafile.com/ https://github.com/haiwen/seafile/" -SRC_URI="https://github.com/haiwen/${PN}/archive/${RELEASE_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+-with-openssl-exception" -SLOT="0" -KEYWORDS="~amd64 ~x86" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/future[${PYTHON_USEDEP}] - ') - dev-libs/openssl:= - dev-db/sqlite:3 - dev-libs/glib:2 - dev-libs/jansson:= - dev-libs/libevent:= - net-libs/libsearpc[${PYTHON_SINGLE_USEDEP}] - net-misc/curl - sys-apps/util-linux - sys-libs/zlib - elibc_musl? ( sys-libs/fts-standalone )" -DEPEND="${RDEPEND}" -BDEPEND="${PYTHON_DEPS} - $(vala_depend)" - -S="${WORKDIR}/${PN}-${RELEASE_COMMIT}" - -src_prepare() { - default - eautoreconf - vala_src_prepare -} - -src_configure() { - local myeconfargs=( - --disable-static - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - # Remove unnecessary .la files - find "${ED}" -name '*.la' -delete || die - python_fix_shebang "${ED}"/usr/bin/seaf-cli -} diff --git a/net-misc/seafile/seafile-8.0.8.ebuild b/net-misc/seafile/seafile-9.0.0.ebuild similarity index 87% rename from net-misc/seafile/seafile-8.0.8.ebuild rename to net-misc/seafile/seafile-9.0.0.ebuild index 2534994e1ceb..45069b35de3e 100644 --- a/net-misc/seafile/seafile-8.0.8.ebuild +++ b/net-misc/seafile/seafile-9.0.0.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_{9..11} ) # Upstream is moving tags repeatedly, then we use commit hash. -RELEASE_COMMIT="f57dae37854acab74b08b0891584cb7ecb98cd18" +RELEASE_COMMIT="c244a274912070a39864369a6a21c55566fe2fda" inherit autotools python-single-r1 vala @@ -29,6 +29,7 @@ RDEPEND="${PYTHON_DEPS} dev-libs/jansson:= dev-libs/libevent:= net-libs/libsearpc[${PYTHON_SINGLE_USEDEP}] + net-libs/libwebsockets[client] net-misc/curl sys-apps/util-linux sys-libs/zlib @@ -39,10 +40,14 @@ BDEPEND="${PYTHON_DEPS} S="${WORKDIR}/${PN}-${RELEASE_COMMIT}" +pkg_setup() { + python-single-r1_pkg_setup + vala_setup +} + src_prepare() { default eautoreconf - vala_src_prepare } src_configure() { diff --git a/net-nds/Manifest.gz b/net-nds/Manifest.gz index 28077c0b3753..79ad34b8ccaa 100644 Binary files a/net-nds/Manifest.gz and b/net-nds/Manifest.gz differ diff --git a/net-nds/openldap/Manifest b/net-nds/openldap/Manifest index 9d6fb9452f28..b68584180cce 100644 --- a/net-nds/openldap/Manifest +++ b/net-nds/openldap/Manifest @@ -1,4 +1,5 @@ DIST openldap-2.4.59.tgz 5886272 BLAKE2B a2a8bed1d2af97fd41d651668152fd4740871bc5a8abf4b50390839228af82ac103346b3500ae0f8dd31b708acabb30435b90cd48dfafe510e648df5150d96b8 SHA512 233459ab446da6e107a7fc4ecd5668d6b08c11a11359ee76449550393e8f586a29b59d7ae09a050a1fca4fcf388ea61438ef60831b3ae802d92c048365ae3968 +DIST openldap-OPENLDAP_REL_ENG_2_5_14.tar.bz2 5024359 BLAKE2B ffdffbd47e76545c2dc2d433d290945ab6eebd910031a60249cd8f6eac24f67841098e61c7e57864428e20a183a46d36dac422bba8cf6f3596f97439875af96b SHA512 abd1e8bda0762500db028f283fe2da9480a419072927295d6f3e1448cae130592511f385a87585843cf88217417c90ef57174ca919cfcf163eb41642a72bb4e3 DIST openldap-OPENLDAP_REL_ENG_2_6_3.tar.gz 6244895 BLAKE2B 97792a1b368de44867b0ce9eef38601c3e64b7d40e4ca206295bee110097697c919040d2220eea6f0581812e09a2cc3e6afb4a243a5072a8a0a95f24f9fb354b SHA512 1c882a0cd0729b5d0f40b58588d0e36ae3b1cae6d569f0576e940c7c63d03c29ed2c9db87695a87594ba99a927ef4cba491bddba3ce049025fd5883463122ba7 DIST openldap-OPENLDAP_REL_ENG_2_6_4.tar.bz2 5043227 BLAKE2B 9bec77dbace0e52d1607d9ac13a77349e7d0b8876aa81fa635893638d00db58ec6bf8412f11fd266bba0440887be1aa21eb4a876122152f7f6de9fd8f75b6b4c SHA512 bff11bf1ae125bcabbd307f6c4e1c102a8df6f1091f84f5e7053fdbaa89ccd6aa0c86cc8dcce4fb9b6ffd853b5f8d3c933733f5713aeb4d6a9d77ab145293b48 DIST rfc2307bis.schema-20140524 12262 BLAKE2B 98031f49e9bde1e4821e637af3382364d8344ed7017649686a088070d96a632dffa6c661552352656b1b159c0fd962965580069a64c7f3d5bb6a3ed75f60fd99 SHA512 83b89a1deeefc8566b97e7e865b9b6d04541099cbdf719e24538a7d27d61b6209e87ab9003a9f140bd9afd018ec569e71721e3a24090e1902c8b6659d2ba103e diff --git a/net-nds/openldap/openldap-2.4.59-r2.ebuild b/net-nds/openldap/openldap-2.4.59-r2.ebuild index f23db2eef5f9..a67487013a0d 100644 --- a/net-nds/openldap/openldap-2.4.59-r2.ebuild +++ b/net-nds/openldap/openldap-2.4.59-r2.ebuild @@ -3,6 +3,9 @@ EAPI=7 +# Re cleanups: +# 2.5.x is an LTS release so we want to keep it for a while. + inherit autotools db-use flag-o-matic multilib multilib-minimal preserve-libs ssl-cert toolchain-funcs systemd tmpfiles BIS_PN=rfc2307bis.schema diff --git a/net-nds/openldap/openldap-2.5.14.ebuild b/net-nds/openldap/openldap-2.5.14.ebuild new file mode 100644 index 000000000000..a135572a4d9c --- /dev/null +++ b/net-nds/openldap/openldap-2.5.14.ebuild @@ -0,0 +1,861 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +# Re cleanups: +# 2.5.x is an LTS release so we want to keep it for a while. + +inherit autotools flag-o-matic multilib multilib-minimal preserve-libs ssl-cert toolchain-funcs systemd tmpfiles + +MY_PV="$(ver_rs 1-2 _)" + +BIS_PN=rfc2307bis.schema +BIS_PV=20140524 +BIS_P="${BIS_PN}-${BIS_PV}" + +DESCRIPTION="LDAP suite of application and development tools" +HOMEPAGE="https://www.openldap.org/" +SRC_URI=" + https://gitlab.com/openldap/${PN}/-/archive/OPENLDAP_REL_ENG_${MY_PV}/${PN}-OPENLDAP_REL_ENG_${MY_PV}.tar.bz2 + mirror://gentoo/${BIS_P} +" +S="${WORKDIR}"/${PN}-OPENLDAP_REL_ENG_${MY_PV} + +LICENSE="OPENLDAP GPL-2" +# Subslot added for bug #835654 +SLOT="0/$(ver_cut 1-2)" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" + +IUSE_DAEMON="argon2 +cleartext crypt experimental minimal samba tcpd" +IUSE_OVERLAY="overlays perl autoca" +IUSE_OPTIONAL="debug gnutls iodbc ipv6 odbc sasl ssl selinux static-libs +syslog test" +IUSE_CONTRIB="kerberos kinit pbkdf2 sha2 smbkrb5passwd" +IUSE_CONTRIB="${IUSE_CONTRIB} cxx" +IUSE="systemd ${IUSE_DAEMON} ${IUSE_BACKEND} ${IUSE_OVERLAY} ${IUSE_OPTIONAL} ${IUSE_CONTRIB}" +RESTRICT="!test? ( test )" + +RESTRICT="!test? ( test )" +REQUIRED_USE="cxx? ( sasl ) + pbkdf2? ( ssl ) + test? ( cleartext debug sasl ) + autoca? ( !gnutls ) + ?? ( test minimal ) + kerberos? ( ?? ( kinit smbkrb5passwd ) )" + +SYSTEM_LMDB_VER=0.9.30 +# openssl is needed to generate lanman-passwords required by samba +COMMON_DEPEND=" + kernel_linux? ( sys-apps/util-linux ) + ssl? ( + !gnutls? ( + >=dev-libs/openssl-1.0.1h-r2:0=[${MULTILIB_USEDEP}] + ) + gnutls? ( + >=net-libs/gnutls-2.12.23-r6:=[${MULTILIB_USEDEP}] + >=dev-libs/libgcrypt-1.5.3:0=[${MULTILIB_USEDEP}] + ) + ) + sasl? ( dev-libs/cyrus-sasl:= ) + !minimal? ( + dev-libs/libltdl + sys-fs/e2fsprogs + >=dev-db/lmdb-${SYSTEM_LMDB_VER}:= + argon2? ( app-crypt/argon2:= ) + crypt? ( virtual/libcrypt:= ) + tcpd? ( sys-apps/tcp-wrappers ) + odbc? ( !iodbc? ( dev-db/unixODBC ) + iodbc? ( dev-db/libiodbc ) ) + perl? ( dev-lang/perl:=[-build(-)] ) + samba? ( + dev-libs/openssl:0= + ) + smbkrb5passwd? ( + dev-libs/openssl:0= + kerberos? ( app-crypt/heimdal ) + ) + kerberos? ( + virtual/krb5 + kinit? ( !app-crypt/heimdal ) + ) + ) +" +DEPEND="${COMMON_DEPEND} + sys-apps/groff +" +RDEPEND="${COMMON_DEPEND} + selinux? ( sec-policy/selinux-ldap ) +" + +# The user/group are only used for running daemons which are +# disabled in minimal builds, so elide the accounts too. +BDEPEND="!minimal? ( + acct-group/ldap + acct-user/ldap +) +" + +# for tracking versions +OPENLDAP_VERSIONTAG=".version-tag" +OPENLDAP_DEFAULTDIR_VERSIONTAG="/var/lib/openldap-data" + +MULTILIB_WRAPPED_HEADERS=( + # USE=cxx + /usr/include/LDAPAsynConnection.h + /usr/include/LDAPAttrType.h + /usr/include/LDAPAttribute.h + /usr/include/LDAPAttributeList.h + /usr/include/LDAPConnection.h + /usr/include/LDAPConstraints.h + /usr/include/LDAPControl.h + /usr/include/LDAPControlSet.h + /usr/include/LDAPEntry.h + /usr/include/LDAPEntryList.h + /usr/include/LDAPException.h + /usr/include/LDAPExtResult.h + /usr/include/LDAPMessage.h + /usr/include/LDAPMessageQueue.h + /usr/include/LDAPModList.h + /usr/include/LDAPModification.h + /usr/include/LDAPObjClass.h + /usr/include/LDAPRebind.h + /usr/include/LDAPRebindAuth.h + /usr/include/LDAPReferenceList.h + /usr/include/LDAPResult.h + /usr/include/LDAPSaslBindResult.h + /usr/include/LDAPSchema.h + /usr/include/LDAPSearchReference.h + /usr/include/LDAPSearchResult.h + /usr/include/LDAPSearchResults.h + /usr/include/LDAPUrl.h + /usr/include/LDAPUrlList.h + /usr/include/LdifReader.h + /usr/include/LdifWriter.h + /usr/include/SaslInteraction.h + /usr/include/SaslInteractionHandler.h + /usr/include/StringList.h + /usr/include/TlsOptions.h +) + +PATCHES=( + "${FILESDIR}"/${PN}-2.4.28-fix-dash.patch + "${FILESDIR}"/${PN}-2.6.1-system-mdb.patch + "${FILESDIR}"/${PN}-2.6.1-cloak.patch + "${FILESDIR}"/${PN}-2.6.1-flags.patch + "${FILESDIR}"/${PN}-2.6.4-clang16.patch +) + +openldap_filecount() { + local dir="$1" + find "${dir}" -type f ! -name '.*' ! -name 'DB_CONFIG*' | wc -l +} + +openldap_find_versiontags() { + # scan for all datadirs + local openldap_datadirs=() + if [[ -f "${EROOT}"/etc/openldap/slapd.conf ]]; then + openldap_datadirs=( $(awk '{if($1 == "directory") print $2 }' "${EROOT}"/etc/openldap/slapd.conf) ) + fi + openldap_datadirs+=( ${OPENLDAP_DEFAULTDIR_VERSIONTAG} ) + + einfo + einfo "Scanning datadir(s) from slapd.conf and" + einfo "the default installdir for Versiontags" + einfo "(${OPENLDAP_DEFAULTDIR_VERSIONTAG} may appear twice)" + einfo + + # scan datadirs if we have a version tag + openldap_found_tag=0 + have_files=0 + for each in ${openldap_datadirs[@]} ; do + CURRENT_TAGDIR="${EROOT}$(sed "s:\/::" <<< ${each})" + CURRENT_TAG="${CURRENT_TAGDIR}/${OPENLDAP_VERSIONTAG}" + if [[ -d "${CURRENT_TAGDIR}" ]] && [[ "${openldap_found_tag}" == 0 ]] ; then + einfo "- Checking ${each}..." + if [[ -r "${CURRENT_TAG}" ]] ; then + # yey, we have one :) + einfo " Found Versiontag in ${each}" + source "${CURRENT_TAG}" + if [[ "${OLDPF}" == "" ]] ; then + eerror "Invalid Versiontag found in ${CURRENT_TAGDIR}" + eerror "Please delete it" + eerror + die "Please kill the invalid versiontag in ${CURRENT_TAGDIR}" + fi + + OLD_MAJOR=$(ver_cut 2-3 ${OLDPF}) + + [[ "$(openldap_filecount ${CURRENT_TAGDIR})" -gt 0 ]] && have_files=1 + + # are we on the same branch? + if [[ "${OLD_MAJOR}" != "${PV:0:3}" ]] ; then + ewarn " Versiontag doesn't match current major release!" + if [[ "${have_files}" == "1" ]] ; then + eerror " Versiontag says other major and you (probably) have datafiles!" + echo + openldap_upgrade_howto + else + einfo " No real problem, seems there's no database." + fi + else + einfo " Versiontag is fine here :)" + fi + else + einfo " Non-tagged dir ${each}" + [[ "$(openldap_filecount ${each})" -gt 0 ]] && have_files=1 + if [[ "${have_files}" == "1" ]] ; then + einfo " EEK! Non-empty non-tagged datadir, counting `ls -a ${each} | wc -l` files" + echo + + eerror + eerror "Your OpenLDAP Installation has a non tagged datadir that" + eerror "possibly contains a database at ${CURRENT_TAGDIR}" + eerror + eerror "Please export data if any entered and empty or remove" + eerror "the directory, installation has been stopped so you" + eerror "can take required action" + eerror + eerror "For a HOWTO on exporting the data, see instructions in the ebuild" + eerror + openldap_upgrade_howto + die "Please move the datadir ${CURRENT_TAGDIR} away" + fi + fi + einfo + fi + done + [[ "${have_files}" == "1" ]] && einfo "DB files present" || einfo "No DB files present" + + # Now we must check for the major version of sys-libs/db linked against. + # TODO: remove this as we dropped bdb support (gone upstream) in 2.6.1? + SLAPD_PATH="${EROOT}/usr/$(get_libdir)/openldap/slapd" + if [[ "${have_files}" == "1" ]] && [[ -f "${SLAPD_PATH}" ]]; then + OLDVER="$(/usr/bin/ldd ${SLAPD_PATH} \ + | awk '/libdb-/{gsub("^libdb-","",$1);gsub(".so$","",$1);print $1}')" + local fail=0 + + # This will not cover detection of cn=Config based configuration, but + # it's hopefully good enough. + if grep -sq '^backend.*shell' "${EROOT}"/etc/openldap/slapd.conf; then + eerror " OpenLDAP >= 2.6.x has dropped support for Shell backend." + eerror " You will need to migrate per upstream's migration notes" + eerror " at https://www.openldap.org/doc/admin25/appendix-upgrading.html." + eerror " Your existing database will not be accessible until it is" + eerror " converted away from backend shell!" + echo + fail=1 + fi + if has_version "${CATEGORY}/${PN}[berkdb]" || grep -sq '^backend.*(bdb|hdb)' /etc/openldap/slapd.conf; then + eerror " OpenLDAP >= 2.6.x has dropped support for Berkeley DB." + eerror " You will need to migrate per upstream's migration notes" + eerror " at https://www.openldap.org/doc/admin25/appendix-upgrading.html." + eerror " Your existing database will not be accessible until it is" + eerror " converted to mdb!" + echo + fail=1 + elif [[ -z "${OLDVER}" ]] && [[ -z "${NEWVER}" ]]; then + : + # Nothing wrong here. + elif [[ -z "${OLDVER}" ]] && [[ -n "${NEWVER}" ]]; then + eerror " Your existing version of OpenLDAP was not built against" + eerror " any version of sys-libs/db, but the new one will build" + eerror " against ${NEWVER} and your database may be inaccessible." + echo + fail=1 + elif [[ -n "${OLDVER}" ]] && [[ -z "${NEWVER}" ]]; then + eerror " Your existing version of OpenLDAP was built against" + eerror " sys-libs/db:${OLDVER}, but the new one will not be" + eerror " built against any version and your database may be" + eerror " inaccessible." + echo + fail=1 + elif [[ "${OLDVER}" != "${NEWVER}" ]]; then + eerror " Your existing version of OpenLDAP was built against" + eerror " sys-libs/db:${OLDVER}, but the new one will build against" + eerror " ${NEWVER} and your database would be inaccessible." + echo + fail=1 + fi + [[ "${fail}" == "1" ]] && openldap_upgrade_howto + fi + + echo + einfo + einfo "All datadirs are fine, proceeding with merge now..." + einfo +} + +openldap_upgrade_howto() { + local d l i + eerror + eerror "A (possible old) installation of OpenLDAP was detected," + eerror "installation will not proceed for now." + eerror + eerror "As major version upgrades can corrupt your database," + eerror "you need to dump your database and re-create it afterwards." + eerror + eerror "Additionally, rebuilding against different major versions of the" + eerror "sys-libs/db libraries will cause your database to be inaccessible." + eerror "" + d="$(date -u +%s)" + l="/root/ldapdump.${d}" + i="${l}.raw" + eerror " 1. /etc/init.d/slapd stop" + eerror " 2. slapcat -l ${i}" + eerror " 3. grep -E -v '^(entry|context)CSN:' <${i} >${l}" + eerror " 4. mv /var/lib/openldap-data/ /var/lib/openldap-data-backup/" + eerror " 5. emerge --update \=net-nds/${PF}" + eerror " 6. etc-update, and ensure that you apply the changes" + eerror " 7. slapadd -l ${l}" + eerror " 8. chown ldap:ldap /var/lib/openldap-data/*" + eerror " 9. /etc/init.d/slapd start" + eerror "10. Check that your data is intact." + eerror "11. Set up the new replication system." + eerror + if [[ "${FORCE_UPGRADE}" != "1" ]]; then + die "You need to upgrade your database first" + else + eerror "You have the magical FORCE_UPGRADE=1 in place." + eerror "Don't say you weren't warned about data loss." + fi +} + +pkg_setup() { + if ! use sasl && use cxx ; then + die "To build the ldapc++ library you must emerge openldap with sasl support" + fi + # Bug #322787 + if use minimal && ! has_version "net-nds/openldap" ; then + einfo "No datadir scan needed, openldap not installed" + elif use minimal && has_version 'net-nds/openldap[minimal]' ; then + einfo "Skipping scan for previous datadirs as requested by minimal useflag" + else + openldap_find_versiontags + fi +} + +src_prepare() { + # The system copy of dev-db/lmdb must match the version that this copy + # of OpenLDAP shipped with! See bug #588792. + # + # Fish out MDB_VERSION_MAJOR/MDB_VERSION_MINOR/MDB_VERSION_PATCH from + # the bundled lmdb's header to find out the version. + local bundled_lmdb_version=$(sed -En '/^#define MDB_VERSION_(MAJOR|MINOR|PATCH)(\s+)?/{s/[^0-9.]//gp}' libraries/liblmdb/lmdb.h || die) + bundled_lmdb_version=$(printf "%s." ${bundled_lmdb_version}) + + if [[ ${SYSTEM_LMDB_VER}. != ${bundled_lmdb_version} ]] ; then + eerror "Source lmdb version: ${bundled_lmdb_version}" + eerror "Ebuild lmdb version: ${SYSTEM_LMDB_VER}" + die "Ebuild needs to update SYSTEM_LMDB_VER!" + fi + + rm -r libraries/liblmdb || die 'could not removed bundled lmdb directory' + + local filename + for filename in doc/drafts/draft-ietf-ldapext-acl-model-xx.txt; do + iconv -f iso-8859-1 -t utf-8 "${filename}" > "${filename}.utf8" + mv "${filename}.utf8" "${filename}" + done + + default + + sed -i \ + -e "s:\$(localstatedir)/run:${EPREFIX}/run:" \ + -e '/MKDIR.*.(DESTDIR)\/run/d' \ + -e '/MKDIR.*.(DESTDIR).*.(runstatedir)/d' \ + servers/slapd/Makefile.in || die 'adjusting slapd Makefile.in failed' + + pushd build &>/dev/null || die "pushd build" + einfo "Making sure upstream build strip does not do stripping too early" + sed -i.orig \ + -e '/^STRIP/s,-s,,g' \ + top.mk || die "Failed to remove too early stripping" + popd &>/dev/null || die + + # Fails with OpenSSL 3, bug #848894 + # https://bugs.openldap.org/show_bug.cgi?id=10009 + rm tests/scripts/test076-authid-rewrite || die + + eautoreconf + multilib_copy_sources +} + +build_contrib_module() { + # [] + pushd "${S}/contrib/slapd-modules/$1" &>/dev/null || die "pushd contrib/slapd-modules/$1" + einfo "Compiling contrib-module: $1" + local target="${2:-all}" + emake \ + LDAP_BUILD="${BUILD_DIR}" prefix="${EPREFIX}/usr" \ + CC="${CC}" libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap" \ + "${target}" + popd &>/dev/null || die +} + +multilib_src_configure() { + # Optional Features + myconf+=( + --enable-option-checking + $(use_enable debug) + --enable-dynamic + $(use_enable syslog) + $(use_enable ipv6) + --enable-local + ) + + # Optional Packages + myconf+=( + --without-fetch + ) + + if use experimental ; then + # connectionless ldap per bug #342439 + # connectionless is a unsupported feature according to Howard Chu + # see https://bugs.openldap.org/show_bug.cgi?id=9739 + # (see also bug #892009) + append-flags -DLDAP_CONNECTIONLESS + fi + + if ! use minimal && multilib_is_native_abi; then + # SLAPD (Standalone LDAP Daemon) Options + # overlay chaining requires '--enable-ldap' #296567 + # see https://www.openldap.org/doc/admin26/overlays.html#Chaining + myconf+=( + --enable-ldap=yes + --enable-slapd + $(use_enable cleartext) + $(use_enable crypt) + $(multilib_native_use_enable sasl spasswd) + --disable-slp + $(use_enable tcpd wrappers) + ) + if use experimental ; then + myconf+=( + --enable-dynacl + # ACI build as dynamic module not supported (yet) + --enable-aci=yes + ) + fi + + for option in modules rlookups slapi; do + myconf+=( --enable-${option} ) + done + + # static SLAPD backends + for backend in mdb; do + myconf+=( --enable-${backend}=yes ) + done + + # module SLAPD backends + for backend in asyncmeta dnssrv meta null passwd relay sock; do + # missing modules: wiredtiger (not available in portage) + myconf+=( --enable-${backend}=mod ) + done + + use perl && myconf+=( --enable-perl=mod ) + + if use odbc ; then + myconf+=( --enable-sql=mod ) + if use iodbc ; then + myconf+=( --with-odbc="iodbc" ) + append-cflags -I"${EPREFIX}"/usr/include/iodbc + else + myconf+=( --with-odbc="unixodbc" ) + fi + fi + + use overlays && myconf+=( --enable-overlays=mod ) + use autoca && myconf+=( --enable-autoca=mod ) || myconf+=( --enable-autoca=no ) + # compile-in the syncprov + myconf+=( --enable-syncprov=yes ) + + # SLAPD Password Module Options + myconf+=( + $(use_enable argon2) + ) + + # Optional Packages + myconf+=( + $(use_with systemd) + $(multilib_native_use_with sasl cyrus-sasl) + ) + else + myconf+=( + --disable-backends + --disable-slapd + --disable-mdb + --disable-overlays + --disable-autoca + --disable-syslog + --without-systemd + ) + fi + + # Library Generation & Linking Options + myconf+=( + $(use_enable static-libs static) + --enable-shared + --enable-versioning + --with-pic + ) + + # some cross-compiling tests don't pan out well. + tc-is-cross-compiler && myconf+=( + --with-yielding-select=yes + ) + + local ssl_lib="no" + if use ssl || ( ! use minimal && use samba ) ; then + if use gnutls ; then + myconf+=( --with-tls="gnutls" ) + else + # disable MD2 hash function + append-cflags -DOPENSSL_NO_MD2 + myconf+=( --with-tls="openssl" ) + fi + else + myconf+=( --with-tls="no" ) + fi + + tc-export AR CC CXX + + ECONF_SOURCE="${S}" econf \ + --libexecdir="${EPREFIX}"/usr/$(get_libdir)/openldap \ + --localstatedir="${EPREFIX}"/var \ + --runstatedir="${EPREFIX}"/run \ + --sharedstatedir="${EPREFIX}"/var/lib \ + "${myconf[@]}" + + # argument '--runstatedir' seems to have no effect therefore this workaround + sed -i \ + -e 's:^runstatedir=.*:runstatedir=${EPREFIX}/run:' \ + configure contrib/ldapc++/configure contrib/ldaptcl/configure || die 'could not set runstatedir' + + sed -i \ + -e "s:/var/run/sasl2/mux:${EPREFIX}/run/sasl2/mux:" \ + doc/guide/admin/security.sdf || die 'could not fix run path in doc' + + emake depend +} + +src_configure_cxx() { + # This needs the libraries built by the first build run. + # we have to run it AFTER the main build, not just after the main configure + local myconf_ldapcpp=( + --with-libldap="${E}/lib" + --with-ldap-includes="${S}/include" + ) + + mkdir -p "${BUILD_DIR}"/contrib/ldapc++ || die "could not create ${BUILD_DIR}/contrib/ldapc++ directory" + pushd "${BUILD_DIR}/contrib/ldapc++" &>/dev/null || die "pushd contrib/ldapc++" + + local LDFLAGS="${LDFLAGS}" + local CPPFLAGS="${CPPFLAGS}" + + append-ldflags -L"${BUILD_DIR}"/libraries/liblber/.libs -L"${BUILD_DIR}"/libraries/libldap/.libs + append-cppflags -I"${BUILD_DIR}"/include + + ECONF_SOURCE="${S}"/contrib/ldapc++ econf "${myconf_ldapcpp[@]}" + popd &>/dev/null || die "popd contrib/ldapc++" +} + +multilib_src_compile() { + tc-export AR CC CXX + emake CC="$(tc-getCC)" SHELL="${EPREFIX}"/bin/sh + + if ! use minimal && multilib_is_native_abi ; then + if use cxx ; then + einfo "Building contrib library: ldapc++" + src_configure_cxx + pushd "${BUILD_DIR}/contrib/ldapc++" &>/dev/null || die "pushd contrib/ldapc++" + emake + popd &>/dev/null || die + fi + + if use smbkrb5passwd ; then + einfo "Building contrib-module: smbk5pwd" + pushd "${S}/contrib/slapd-modules/smbk5pwd" &>/dev/null || die "pushd contrib/slapd-modules/smbk5pwd" + + MY_DEFS="-DDO_SHADOW" + if use samba ; then + MY_DEFS="${MY_DEFS} -DDO_SAMBA" + MY_KRB5_INC="" + fi + if use kerberos ; then + MY_DEFS="${MY_DEFS} -DDO_KRB5" + MY_KRB5_INC="$(krb5-config --cflags)" + fi + + emake \ + DEFS="${MY_DEFS}" \ + KRB5_INC="${MY_KRB5_INC}" \ + LDAP_BUILD="${BUILD_DIR}" \ + libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap" + popd &>/dev/null || die + fi + + if use overlays ; then + einfo "Building contrib-module: samba4" + pushd "${S}/contrib/slapd-modules/samba4" &>/dev/null || die "pushd contrib/slapd-modules/samba4" + + emake \ + LDAP_BUILD="${BUILD_DIR}" \ + CC="$(tc-getCC)" libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap" + popd &>/dev/null || die + fi + + if use kerberos ; then + if use kinit ; then + build_contrib_module "kinit" "kinit.c" "kinit" + fi + build_contrib_module "passwd" "pw-kerberos.la" + fi + + if use pbkdf2; then + build_contrib_module "passwd/pbkdf2" + fi + + if use sha2 ; then + build_contrib_module "passwd/sha2" + fi + + # We could build pw-radius if GNURadius would install radlib.h + build_contrib_module "passwd" "pw-netscape.la" + + #build_contrib_module "acl" "posixgroup.la" # example code only + #build_contrib_module "acl" "gssacl.la" # example code only, also needs kerberos + build_contrib_module "addpartial" + build_contrib_module "allop" + build_contrib_module "allowed" + build_contrib_module "autogroup" + build_contrib_module "cloak" + # build_contrib_module "comp_match" # really complex, adds new external deps, questionable demand + build_contrib_module "denyop" + build_contrib_module "dsaschema" + build_contrib_module "dupent" + build_contrib_module "lastbind" + # lastmod may not play well with other overlays + build_contrib_module "lastmod" + build_contrib_module "noopsrch" + #build_contrib_module "nops" https://bugs.gentoo.org/641576 + #build_contrib_module "nssov" RESO:LATER + build_contrib_module "trace" + # build slapi-plugins + pushd "${S}/contrib/slapi-plugins/addrdnvalues" &>/dev/null || die "pushd contrib/slapi-plugins/addrdnvalues" + einfo "Building contrib-module: addrdnvalues plugin" + $(tc-getCC) -shared \ + -I"${BUILD_DIR}"/include \ + -I../../../include \ + ${CPPFLAGS} \ + ${CFLAGS} \ + -fPIC \ + ${LDFLAGS} \ + -o libaddrdnvalues-plugin.so \ + addrdnvalues.c || die "Building libaddrdnvalues-plugin.so failed" + popd &>/dev/null || die + fi +} + +multilib_src_test() { + if multilib_is_native_abi; then + cd tests || die + pwd + + # Increase various test timeouts/delays, bug #894012 + # We can't just double everything as there's a cumulative effect. + export SLEEP0=2 # originally 1 + export SLEEP1=10 # originally 7 + export SLEEP2=20 # originally 15 + export TIMEOUT=16 # originally 8 + + # emake test => runs only lloadd & mdb, in serial; skips ldif,sql,wt,regression + # emake partests => runs ALL of the tests in parallel + # wt/WiredTiger is not supported in Gentoo + TESTS=( lloadd mdb ) + #TESTS+=( pldif ) # not done by default, so also exclude here + #use odbc && TESTS+=( psql ) # not done by default, so also exclude here + + emake "${TESTS[@]}" + fi +} + +multilib_src_install() { + emake CC="$(tc-getCC)" \ + DESTDIR="${D}" SHELL="${EPREFIX}"/bin/sh install + + if ! use minimal && multilib_is_native_abi; then + # openldap modules go here + # TODO: write some code to populate slapd.conf with moduleload statements + keepdir /usr/$(get_libdir)/openldap/openldap/ + + # initial data storage dir + keepdir /var/lib/openldap-data + use prefix || fowners ldap:ldap /var/lib/openldap-data + fperms 0700 /var/lib/openldap-data + + echo "OLDPF='${PF}'" > "${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}" + echo "# do NOT delete this. it is used" >> "${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}" + echo "# to track versions for upgrading." >> "${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}" + + # use our config + rm "${ED}"/etc/openldap/slapd.conf + insinto /etc/openldap + newins "${FILESDIR}"/${PN}-2.6.3-slapd-conf slapd.conf + configfile="${ED}"/etc/openldap/slapd.conf + + # populate with built backends + einfo "populate config with built backends" + for x in "${ED}"/usr/$(get_libdir)/openldap/openldap/back_*.so; do + einfo "Adding $(basename ${x})" + sed -e "/###INSERTDYNAMICMODULESHERE###$/a# moduleload\t$(basename ${x})" -i "${configfile}" || die + done + sed -e "s:###INSERTDYNAMICMODULESHERE###$:# modulepath\t${EPREFIX}/usr/$(get_libdir)/openldap/openldap:" -i "${configfile}" + use prefix || fowners root:ldap /etc/openldap/slapd.conf + fperms 0640 /etc/openldap/slapd.conf + cp "${configfile}" "${configfile}".default || die + + # install our own init scripts and systemd unit files + einfo "Install init scripts" + sed -e "s,/usr/lib/,/usr/$(get_libdir)/," "${FILESDIR}"/slapd-initd-2.4.40-r2 > "${T}"/slapd || die + doinitd "${T}"/slapd + newconfd "${FILESDIR}"/slapd-confd-2.6.1 slapd + + if use systemd; then + # The systemd unit uses Type=notify, so it is useless without USE=systemd + einfo "Install systemd service" + rm -rf "${ED}"/{,usr/}lib/systemd + sed -e "s,/usr/lib/,/usr/$(get_libdir)/," "${FILESDIR}"/slapd-2.6.1.service > "${T}"/slapd.service || die + systemd_dounit "${T}"/slapd.service + systemd_install_serviced "${FILESDIR}"/slapd.service.conf + newtmpfiles "${FILESDIR}"/slapd.tmpfilesd slapd.conf + fi + + # if built without SLP, we don't need to be before avahi + sed -i \ + -e '/before/{s/avahi-daemon//g}' \ + "${ED}"/etc/init.d/slapd \ + || die + + if use cxx ; then + einfo "Install the ldapc++ library" + cd "${BUILD_DIR}/contrib/ldapc++" || die + emake DESTDIR="${D}" libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap" install + cd "${S}"/contrib/ldapc++ || die + newdoc README ldapc++-README + fi + + if use smbkrb5passwd ; then + einfo "Install the smbk5pwd module" + cd "${S}/contrib/slapd-modules/smbk5pwd" || die + emake DESTDIR="${D}" \ + LDAP_BUILD="${BUILD_DIR}" \ + libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap" install + newdoc README smbk5pwd-README + fi + + if use overlays ; then + einfo "Install the samba4 module" + cd "${S}/contrib/slapd-modules/samba4" || die + emake DESTDIR="${D}" \ + LDAP_BUILD="${BUILD_DIR}" \ + libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap" install + newdoc README samba4-README + fi + + einfo "Installing contrib modules" + cd "${S}/contrib/slapd-modules" || die + for l in */*.la */*/*.la; do + [[ -e ${l} ]] || continue + libtool --mode=install cp ${l} \ + "${ED}"/usr/$(get_libdir)/openldap/openldap || \ + die "installing ${l} failed" + done + + dodoc "${FILESDIR}"/DB_CONFIG.fast.example + docinto contrib + doman */*.5 + #newdoc acl/README* + newdoc addpartial/README addpartial-README + newdoc allop/README allop-README + newdoc allowed/README allowed-README + newdoc autogroup/README autogroup-README + newdoc dsaschema/README dsaschema-README + newdoc passwd/README passwd-README + cd "${S}/contrib/slapi-plugins" || die + insinto /usr/$(get_libdir)/openldap/openldap + doins */*.so + docinto contrib + newdoc addrdnvalues/README addrdnvalues-README + + insinto /etc/openldap/schema + newins "${DISTDIR}"/${BIS_P} ${BIS_PN} + + docinto back-sock ; dodoc "${S}"/servers/slapd/back-sock/searchexample* + docinto back-perl ; dodoc "${S}"/servers/slapd/back-perl/SampleLDAP.pm + + dosbin "${S}"/contrib/slapd-tools/statslog + newdoc "${S}"/contrib/slapd-tools/README README.statslog + fi + + if ! use static-libs ; then + find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die + fi +} + +multilib_src_install_all() { + dodoc ANNOUNCEMENT CHANGES COPYRIGHT README + docinto rfc ; dodoc doc/rfc/*.txt +} + +pkg_preinst() { + # keep old libs if any + preserve_old_lib /usr/$(get_libdir)/{liblber,libldap,libldap_r}-2.4$(get_libname 0) + # bug 440470, only display the getting started help there was no openldap before, + # or we are going to a non-minimal build + ! has_version net-nds/openldap || has_version 'net-nds/openldap[minimal]' + OPENLDAP_PRINT_MESSAGES=$((! $?)) +} + +pkg_postinst() { + if ! use minimal ; then + if use systemd; then + tmpfiles_process slapd.conf + fi + + # You cannot build SSL certificates during src_install that will make + # binary packages containing your SSL key, which is both a security risk + # and a misconfiguration if multiple machines use the same key and cert. + if use ssl; then + install_cert /etc/openldap/ssl/ldap + use prefix || chown ldap:ldap "${EROOT}"/etc/openldap/ssl/ldap.* + ewarn "Self-signed SSL certificates are treated harshly by OpenLDAP 2.[12]" + ewarn "Self-signed SSL certificates are treated harshly by OpenLDAP 2.[12]" + ewarn "add 'TLS_REQCERT allow' if you want to use them." + fi + + if use prefix; then + # Warn about prefix issues with slapd + eerror "slapd might NOT be usable on Prefix systems as it requires root privileges" + eerror "to start up, and requires that certain files directories be owned by" + eerror "ldap:ldap. As Prefix does not support changing ownership of files and" + eerror "directories, you will have to manually fix this yourself." + fi + + # These lines force the permissions of various content to be correct + if [[ -d "${EROOT}"/var/run/openldap ]]; then + use prefix || { chown ldap:ldap "${EROOT}"/var/run/openldap || die; } + chmod 0755 "${EROOT}"/var/run/openldap || die + fi + use prefix || chown root:ldap "${EROOT}"/etc/openldap/slapd.conf{,.default} + chmod 0640 "${EROOT}"/etc/openldap/slapd.conf{,.default} || die + use prefix || chown ldap:ldap "${EROOT}"/var/lib/openldap-data + fi + + if has_version 'net-nds/openldap[-minimal]' && ((${OPENLDAP_PRINT_MESSAGES})); then + elog "Getting started using OpenLDAP? There is some documentation available:" + elog "Gentoo Guide to OpenLDAP Authentication" + elog "(https://wiki.gentoo.org/wiki/Centralized_authentication_using_OpenLDAP)" + fi + + preserve_old_lib_notify /usr/$(get_libdir)/{liblber,libldap,libldap_r}-2.4$(get_libname 0) +} diff --git a/net-nds/openldap/openldap-2.6.3-r7.ebuild b/net-nds/openldap/openldap-2.6.3-r7.ebuild index dd199fb41605..5849b15e0533 100644 --- a/net-nds/openldap/openldap-2.6.3-r7.ebuild +++ b/net-nds/openldap/openldap-2.6.3-r7.ebuild @@ -3,6 +3,9 @@ EAPI=7 +# Re cleanups: +# 2.5.x is an LTS release so we want to keep it for a while. + inherit autotools flag-o-matic multilib multilib-minimal preserve-libs ssl-cert toolchain-funcs systemd tmpfiles MY_PV="$(ver_rs 1-2 _)" diff --git a/net-nds/openldap/openldap-2.6.4-r1.ebuild b/net-nds/openldap/openldap-2.6.4-r1.ebuild index 836a5b52f960..634d3ca12cac 100644 --- a/net-nds/openldap/openldap-2.6.4-r1.ebuild +++ b/net-nds/openldap/openldap-2.6.4-r1.ebuild @@ -3,6 +3,9 @@ EAPI=7 +# Re cleanups: +# 2.5.x is an LTS release so we want to keep it for a while. + inherit autotools flag-o-matic multilib multilib-minimal preserve-libs ssl-cert toolchain-funcs systemd tmpfiles MY_PV="$(ver_rs 1-2 _)" diff --git a/net-p2p/Manifest.gz b/net-p2p/Manifest.gz index 5fc74835a21d..c36a6bd98c2d 100644 Binary files a/net-p2p/Manifest.gz and b/net-p2p/Manifest.gz differ diff --git a/net-p2p/biglybt/Manifest b/net-p2p/biglybt/Manifest index c61bfad3b978..1ca6ef7e01e8 100644 --- a/net-p2p/biglybt/Manifest +++ b/net-p2p/biglybt/Manifest @@ -1 +1 @@ -DIST biglybt-3.2.0.0.tar.gz 34985099 BLAKE2B 385a6cf4f89b0922f06a2a5c7e89a4c9b717922f491717ade3cb13251c88e497cd2f807fa67ce3384bc3fcf3f37af368d20c2bb8984eff9d4237519d2be0f89d SHA512 0a39243271153758482ac3eaef50e4a83464cf67779b531fb29d7289fa49f2ec7dbe5c1c9de1d6b3bed555a6c581c4e95563e333aad4a9e32cf158db1325fef0 +DIST biglybt-3.3.0.0.tar.gz 39452405 BLAKE2B 40a11d9b9d085457cfcfe2c62d30b77a971169f879e55ec5f75b049a0d9639d750cbc8d6a64912ab9beb6fc3c0a4065303f3f64ad48247a55e05089d8fb1d6b3 SHA512 29533b1c135018a4d487afa3b88e92674033b55ed2369c58c7721d7b0b74dcb141fc4e45a683eb9d4123879db94d3c9bbaca41e74a438562a383923eb4f889de diff --git a/net-p2p/biglybt/biglybt-3.2.0.0-r2.ebuild b/net-p2p/biglybt/biglybt-3.3.0.0.ebuild similarity index 85% rename from net-p2p/biglybt/biglybt-3.2.0.0-r2.ebuild rename to net-p2p/biglybt/biglybt-3.3.0.0.ebuild index 8847795e7c12..f59ea6ea2c00 100644 --- a/net-p2p/biglybt/biglybt-3.2.0.0-r2.ebuild +++ b/net-p2p/biglybt/biglybt-3.3.0.0.ebuild @@ -1,13 +1,10 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# Skeleton command: -# java-ebuilder --generate-ebuild --workdir . --pom core/pom.xml --download-uri https://github.com/BiglySoftware/BiglyBT/archive/v3.2.0.0.tar.gz --slot 0 --keywords "~amd64" --ebuild biglybt-3.2.0.0.ebuild - EAPI=8 JAVA_PKG_IUSE="doc source" -MAVEN_ID="com.biglybt:biglybt-core:3.1.0.1" +MAVEN_PROVIDES="com.biglybt:biglybt-core:3.3.0.0 com.biglybt:biglybt-ui:3.3.0.0" inherit java-pkg-2 java-pkg-simple @@ -25,7 +22,7 @@ KEYWORDS="~amd64 ~ppc64" CP_DEPEND=" dev-java/commons-cli:1 - dev-java/swt:4.10 + dev-java/swt:4.27 " # Compile dependencies @@ -38,8 +35,9 @@ CP_DEPEND=" # Due to removal of AENameServiceDescriptor it would fail to start under jdk:1.8 # StartServer ERROR: unable to bind to 127.0.0.1:6880 listening for passed torrent info: \ # sun.net.spi.nameservice.NameServiceDescriptor: Provider com.biglybt.core.util.spi.AENameServiceDescriptor not found +# Restricting to jdk:11 for https://bugs.gentoo.org/888859 DEPEND=" - >=virtual/jdk-11:* + virtual/jdk:11 ${CP_DEPEND} " @@ -54,6 +52,7 @@ DOCS=( ChangeLog.txt README.md TRANSLATE.md + issue_template.md ) PATCHES=( @@ -66,6 +65,7 @@ S="${WORKDIR}/BiglyBT-${PV}" src_prepare() { default + java-pkg-2_src_prepare # AENameServiceDescriptor fails to compile with jdk >= 11 # https://github.com/BiglySoftware/BiglyBT/pull/2611 # "error: package sun.net.spi.nameservice does not exist" @@ -111,13 +111,7 @@ src_compile() { } src_install() { - java-pkg_dojar "biglybt-core.jar" - java-pkg_dojar "BiglyBT.jar" - java-pkg_dolauncher "biglybt" --main com.biglybt.ui.Main - - if use doc; then - java-pkg_dojavadoc target/api - fi + java-pkg-simple_src_install if use source; then java-pkg_dosrc "core/src/*" diff --git a/net-p2p/biglybt/metadata.xml b/net-p2p/biglybt/metadata.xml index 05d9678fe88c..a660313d0473 100644 --- a/net-p2p/biglybt/metadata.xml +++ b/net-p2p/biglybt/metadata.xml @@ -5,6 +5,8 @@ java@gentoo.org + https://github.com/BiglySoftware/BiglyBT/issues + https://github.com/BiglySoftware/BiglyBT/wiki BiglySoftware/BiglyBT diff --git a/net-p2p/bitcoin-qt/bitcoin-qt-0.21.0.ebuild b/net-p2p/bitcoin-qt/bitcoin-qt-0.21.0-r1.ebuild similarity index 97% rename from net-p2p/bitcoin-qt/bitcoin-qt-0.21.0.ebuild rename to net-p2p/bitcoin-qt/bitcoin-qt-0.21.0-r1.ebuild index 75b9007e2706..784375fb1228 100644 --- a/net-p2p/bitcoin-qt/bitcoin-qt-0.21.0.ebuild +++ b/net-p2p/bitcoin-qt/bitcoin-qt-0.21.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -26,7 +26,8 @@ RESTRICT="!test? ( test )" RDEPEND=" dev-libs/boost:= - >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] + >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] + !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= dev-qt/qtcore:5 dev-qt/qtgui:5 diff --git a/net-p2p/bitcoin-qt/bitcoin-qt-22.0.ebuild b/net-p2p/bitcoin-qt/bitcoin-qt-22.0-r1.ebuild similarity index 98% rename from net-p2p/bitcoin-qt/bitcoin-qt-22.0.ebuild rename to net-p2p/bitcoin-qt/bitcoin-qt-22.0-r1.ebuild index 90571ee1adba..8d0158e88816 100644 --- a/net-p2p/bitcoin-qt/bitcoin-qt-22.0.ebuild +++ b/net-p2p/bitcoin-qt/bitcoin-qt-22.0-r1.ebuild @@ -31,7 +31,8 @@ REQUIRED_USE=" " RDEPEND=" dev-libs/boost:= - >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] + >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] + !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= dev-qt/qtcore:5 dev-qt/qtgui:5 diff --git a/net-p2p/bitcoind/bitcoind-0.21.0.ebuild b/net-p2p/bitcoind/bitcoind-0.21.0-r1.ebuild similarity index 97% rename from net-p2p/bitcoind/bitcoind-0.21.0.ebuild rename to net-p2p/bitcoind/bitcoind-0.21.0-r1.ebuild index 2d24cac58585..ee53cd8ba772 100644 --- a/net-p2p/bitcoind/bitcoind-0.21.0.ebuild +++ b/net-p2p/bitcoind/bitcoind-0.21.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -28,7 +28,8 @@ DEPEND=" acct-user/bitcoin dev-libs/boost:= dev-libs/libevent:= - >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] + >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] + !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= system-leveldb? ( virtual/bitcoin-leveldb ) sqlite? ( >=dev-db/sqlite-3.7.17:= ) diff --git a/net-p2p/bitcoind/bitcoind-22.0.ebuild b/net-p2p/bitcoind/bitcoind-22.0-r1.ebuild similarity index 98% rename from net-p2p/bitcoind/bitcoind-22.0.ebuild rename to net-p2p/bitcoind/bitcoind-22.0-r1.ebuild index 9cfae4858081..1fdd799bd9a7 100644 --- a/net-p2p/bitcoind/bitcoind-22.0.ebuild +++ b/net-p2p/bitcoind/bitcoind-22.0-r1.ebuild @@ -33,7 +33,8 @@ RDEPEND=" acct-user/bitcoin dev-libs/boost:= dev-libs/libevent:= - >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] + >dev-libs/libsecp256k1-0.1_pre20200911:0/0[recovery,schnorr] + !>=dev-libs/libsecp256k1-0.1_pre20210628 >=dev-libs/univalue-1.0.4:= nat-pmp? ( net-libs/libnatpmp ) virtual/bitcoin-leveldb diff --git a/net-proxy/Manifest.gz b/net-proxy/Manifest.gz index a7d10a6f6840..1ddf8fde9d8e 100644 Binary files a/net-proxy/Manifest.gz and b/net-proxy/Manifest.gz differ diff --git a/net-proxy/dnsproxy/metadata.xml b/net-proxy/dnsproxy/metadata.xml index c25e5e780e25..60494b11b52b 100644 --- a/net-proxy/dnsproxy/metadata.xml +++ b/net-proxy/dnsproxy/metadata.xml @@ -1,9 +1,14 @@ - -The dnsproxy daemon is a proxy for DNS queries. It forwards these queries to -two previously configured nameservers: one for authoritative queries and another -for recursive queries. The received answers are sent back to the client unchanged. -No local caching is done. + + + The dnsproxy daemon is a proxy for DNS queries. It forwards these queries to + two previously configured nameservers: one for authoritative queries and another + for recursive queries. The received answers are sent back to the client unchanged. + No local caching is done. + + + awaw/dnsproxy + diff --git a/net-wireless/Manifest.gz b/net-wireless/Manifest.gz index b0a2011ec0e0..f7280e5bee52 100644 Binary files a/net-wireless/Manifest.gz and b/net-wireless/Manifest.gz differ diff --git a/net-wireless/lorcon/files/lorcon-2020.06.06_p20220216-C99-decls.patch b/net-wireless/lorcon/files/lorcon-2020.06.06_p20220216-C99-decls.patch new file mode 100644 index 000000000000..9643c0f973cf --- /dev/null +++ b/net-wireless/lorcon/files/lorcon-2020.06.06_p20220216-C99-decls.patch @@ -0,0 +1,20 @@ +--- a/drv_mac80211.c ++++ b/drv_mac80211.c +@@ -52,6 +52,7 @@ + #include "lorcon_int.h" + #include "lorcon_packasm.h" + #include "lorcon_endian.h" ++#include "iwcontrol.h" + + #ifndef IEEE80211_RADIOTAP_FLAGS + #define IEEE80211_RADIOTAP_FLAGS (1 << 1) +--- a/drv_madwifing.c ++++ b/drv_madwifing.c +@@ -48,6 +48,7 @@ + #include "ifcontrol_linux.h" + #include "madwifing_control.h" + #include "lorcon_int.h" ++#include "lorcon_packasm.h" + + /* Monitor, inject, and injmon are all the same method, make a new + * mwng VAP */ diff --git a/net-wireless/lorcon/lorcon-2020.06.06_p20220216-r1.ebuild b/net-wireless/lorcon/lorcon-2020.06.06_p20220216-r2.ebuild similarity index 73% rename from net-wireless/lorcon/lorcon-2020.06.06_p20220216-r1.ebuild rename to net-wireless/lorcon/lorcon-2020.06.06_p20220216-r2.ebuild index 1508abca7594..19a7dbbdd451 100644 --- a/net-wireless/lorcon/lorcon-2020.06.06_p20220216-r1.ebuild +++ b/net-wireless/lorcon/lorcon-2020.06.06_p20220216-r2.ebuild @@ -4,71 +4,66 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_{9..11} ) DISTUTILS_OPTIONAL=1 -inherit distutils-r1 +inherit distutils-r1 flag-o-matic DESCRIPTION="A generic library for injecting 802.11 frames" HOMEPAGE="https://github.com/kismetwireless/lorcon" -if [[ ${PV} == "9999" ]] ; then +if [[ ${PV} == *9999 ]] ; then #main repo #EGIT_REPO_URI="https://www.kismetwireless.net/lorcon.git" #reliable mirror EGIT_REPO_URI="https://github.com/kismetwireless/lorcon.git" inherit git-r3 - S="${WORKDIR}"/${P} else GIT_HASH="4a81d6aaa2c6ac7253ecd182ffe97c6c89411196" SRC_URI="https://github.com/kismetwireless/lorcon/archive/${GIT_HASH}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}"/"${PN}-${GIT_HASH}" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux" fi LICENSE="GPL-2" SLOT="0" IUSE="python" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND=" dev-libs/libnl:3= net-libs/libpcap python? ( ${PYTHON_DEPS} )" DEPEND="${RDEPEND}" -BDEPEND="python? ( ${DISTUTILS_DEPS} )" +BDEPEND=" + virtual/pkgconfig + python? ( ${DISTUTILS_DEPS} )" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -src_unpack() { - if [[ ${PV} == "9999" ]] ; then - git-r3_src_unpack - cp -R "${S}/" "${WORKDIR}/all" || die - fi - default_src_unpack -} +PATCHES=( "${FILESDIR}"/${P}-C99-decls.patch ) src_prepare() { default use python && distutils-r1_src_prepare } -src_configure() { - econf --disable-static -} - src_compile() { - default_src_compile + default + if use python; then - LDFLAGS+=" -L${S}/.libs/" + append-ldflags "-L${S}/.libs/" cd pylorcon2 || die distutils-r1_src_compile fi } src_install() { - emake DESTDIR="${D}" install + default + if use python; then cd pylorcon2 || die distutils-r1_src_install fi + + find "${ED}" -name '*.la' -delete || die } diff --git a/net-wireless/lorcon/lorcon-9999.ebuild b/net-wireless/lorcon/lorcon-9999.ebuild index 1508abca7594..b7e75c806c22 100644 --- a/net-wireless/lorcon/lorcon-9999.ebuild +++ b/net-wireless/lorcon/lorcon-9999.ebuild @@ -4,71 +4,64 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_{9..11} ) DISTUTILS_OPTIONAL=1 -inherit distutils-r1 +inherit distutils-r1 flag-o-matic DESCRIPTION="A generic library for injecting 802.11 frames" HOMEPAGE="https://github.com/kismetwireless/lorcon" -if [[ ${PV} == "9999" ]] ; then +if [[ ${PV} == *9999 ]] ; then #main repo #EGIT_REPO_URI="https://www.kismetwireless.net/lorcon.git" #reliable mirror EGIT_REPO_URI="https://github.com/kismetwireless/lorcon.git" inherit git-r3 - S="${WORKDIR}"/${P} else GIT_HASH="4a81d6aaa2c6ac7253ecd182ffe97c6c89411196" SRC_URI="https://github.com/kismetwireless/lorcon/archive/${GIT_HASH}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}"/"${PN}-${GIT_HASH}" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux" fi LICENSE="GPL-2" SLOT="0" IUSE="python" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND=" dev-libs/libnl:3= net-libs/libpcap python? ( ${PYTHON_DEPS} )" DEPEND="${RDEPEND}" -BDEPEND="python? ( ${DISTUTILS_DEPS} )" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -src_unpack() { - if [[ ${PV} == "9999" ]] ; then - git-r3_src_unpack - cp -R "${S}/" "${WORKDIR}/all" || die - fi - default_src_unpack -} +BDEPEND=" + virtual/pkgconfig + python? ( ${DISTUTILS_DEPS} )" src_prepare() { default use python && distutils-r1_src_prepare } -src_configure() { - econf --disable-static -} - src_compile() { - default_src_compile + default + if use python; then - LDFLAGS+=" -L${S}/.libs/" + append-ldflags "-L${S}/.libs/" cd pylorcon2 || die distutils-r1_src_compile fi } src_install() { - emake DESTDIR="${D}" install + default + if use python; then cd pylorcon2 || die distutils-r1_src_install fi + + find "${ED}" -name '*.la' -delete || die } diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest index a6e2c23bc0d2..1eddeafb742c 100644 --- a/net-wireless/unifi/Manifest +++ b/net-wireless/unifi/Manifest @@ -1,5 +1,2 @@ DIST unifi-6.5.55.zip 157805689 BLAKE2B 09a7b69143478d0b81dd6f7be1746b1a35cd00ee034471c512d04e4f91aa02688871857edf3c0ef538e601aaf8eccdd0c55193a9bde10924ddeff1fd333da355 SHA512 c2f677de819268366d65622238c1b8d6d8abcd5e06d6f1f635d9755573eff5a6aca0c84298a111b0da5e80bade8132e05339035edde3cc5fc08834f2d6c4b26e -DIST unifi-7.1.68.zip 202099045 BLAKE2B f84a579c01ec0494e0e8b67a126947cd7bb0625c60d5f5026232e563ee84a4c0fdef827e5f8044de4e5d7fd970a50846dc91d7467196fc2f53bb27655bbb5212 SHA512 b4e71dd28bb645d7fb085546fc29019aa6f33780e559ed284216b7f330eaf5f41f5177e839a5a277d4d41a2242ffe16a44b582c51e74e469bacf96502d187a55 -DIST unifi-7.2.95.zip 171756458 BLAKE2B f453beb8c7e7a7f9791c2c471d83d06a29345a7595bfff412a7c059294adbd507d598b22242488af5519b2abf5c52884fc3e93bb1d3f96872a1f651aa3a175e2 SHA512 cda5c0d8fd3a43735de7b1c34cb908411ee4569cfa8313575e47efa1339ef03a6a232d02d5b14552e6380eb69a05fec08b33467202cdd7f399249f5a21260934 -DIST unifi-7.3.76.zip 184297973 BLAKE2B 3cbb257c2f9b763c521a66270483fbabf275187024e954f2889622bdad6e7434932102e70aa4710f5131bacda015a2beb661146c3ec7e3967710b1f2be7b9f7c SHA512 363c6f2706bac8181f1ec9102dd21ed4a1c36c63215e81a80d4a0ef913e9a71a87c1d89ca9eeda5429454bdf770fdff326342435663d2af6288f65af0dd1f7a3 DIST unifi-7.3.83.zip 185572238 BLAKE2B 2e2fa581bc53dcbd75660e5875e8de25df19ee2233c31d5429c5d05468be315e6e68fd92dcd8d19cd7088d4f1574c5cb12f5b0e6b3b49d62dee4dc43b25e7a85 SHA512 ae7bd0e5deff9fceb831be7d652c333d06f1b2a9b40411e1e72607558b01b33814590601c991742a7627eb7a15ec33d5ea0ca1f8d7d2103f348db592f61aaca7 diff --git a/net-wireless/unifi/unifi-7.1.68.ebuild b/net-wireless/unifi/unifi-7.1.68.ebuild deleted file mode 100644 index 0c9825893151..000000000000 --- a/net-wireless/unifi/unifi-7.1.68.ebuild +++ /dev/null @@ -1,107 +0,0 @@ -# Copyright 1999-2022 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="-124045abd4" - -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" - -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" -SLOT="0/$(ver_cut 1-2)" -IUSE="systemd system-mongodb" -RESTRICT="bindist mirror" - -RDEPEND=" - acct-group/unifi - acct-user/unifi - dev-db/mongodb - virtual/jre:1.8 -" - -BDEPEND="app-arch/unzip" - -DOCS=( "readme.txt" ) - -QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so" - -src_prepare() { - # Remove unneeded files Mac and Windows - rm -r lib/native/{Mac,Windows} || die - - if [[ ${CHOST} != aarch64* ]]; then - rm -r lib/native/Linux/aarch64 || die "Failed in removing aarch64 native libraries" - fi - if [[ ${CHOST} != armv7* ]]; then - rm -r lib/native/Linux/armv7 || die "Failed in removing armv7 native libraries" - fi - if [[ ${CHOST} != x86_64* ]]; then - rm -r lib/native/Linux/x86_64 || die "Failed in removing x86_64 native libraries" - fi - - if [[ ${CHOST} == aarch64* ]]; then - if ! use systemd; then - rm lib/native/Linux/aarch64/libubnt_sdnotify_jni.so || die - fi - fi - if [[ ${CHOST} == armv7* ]]; then - if ! use systemd; then - rm lib/native/Linux/armv7/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=' --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/net-wireless/unifi/unifi-7.2.95.ebuild b/net-wireless/unifi/unifi-7.2.95.ebuild deleted file mode 100644 index d23510a07cdb..000000000000 --- a/net-wireless/unifi/unifi-7.2.95.ebuild +++ /dev/null @@ -1,107 +0,0 @@ -# Copyright 1999-2022 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="-e5951ac73c" - -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" - -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" -SLOT="0/$(ver_cut 1-2)" -IUSE="systemd system-mongodb" -RESTRICT="bindist mirror" - -RDEPEND=" - acct-group/unifi - acct-user/unifi - dev-db/mongodb - virtual/jre:1.8 -" - -BDEPEND="app-arch/unzip" - -DOCS=( "readme.txt" ) - -QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so" - -src_prepare() { - # Remove unneeded files Mac and Windows - rm -r lib/native/{Mac,Windows} || die - - if [[ ${CHOST} != aarch64* ]]; then - rm -r lib/native/Linux/aarch64 || die "Failed in removing aarch64 native libraries" - fi - if [[ ${CHOST} != armv7* ]]; then - rm -r lib/native/Linux/armv7 || die "Failed in removing armv7 native libraries" - fi - if [[ ${CHOST} != x86_64* ]]; then - rm -r lib/native/Linux/x86_64 || die "Failed in removing x86_64 native libraries" - fi - - if [[ ${CHOST} == aarch64* ]]; then - if ! use systemd; then - rm lib/native/Linux/aarch64/libubnt_sdnotify_jni.so || die - fi - fi - if [[ ${CHOST} == armv7* ]]; then - if ! use systemd; then - rm lib/native/Linux/armv7/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=' --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/net-wireless/unifi/unifi-7.3.76-r1.ebuild b/net-wireless/unifi/unifi-7.3.76-r1.ebuild deleted file mode 100644 index 27a3e2404b41..000000000000 --- a/net-wireless/unifi/unifi-7.3.76-r1.ebuild +++ /dev/null @@ -1,107 +0,0 @@ -# Copyright 1999-2022 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="-4bee620529" - -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" - -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" -SLOT="0/$(ver_cut 1-2)" -IUSE="systemd system-mongodb" -RESTRICT="bindist mirror" - -RDEPEND=" - acct-group/unifi - acct-user/unifi - dev-db/mongodb - virtual/jre:11 -" - -BDEPEND="app-arch/unzip" - -DOCS=( "readme.txt" ) - -QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so" - -src_prepare() { - # Remove unneeded files Mac and Windows - rm -r lib/native/{Mac,Windows} || die - - if [[ ${CHOST} != aarch64* ]]; then - rm -r lib/native/Linux/aarch64 || die "Failed in removing aarch64 native libraries" - fi - if [[ ${CHOST} != armv7* ]]; then - rm -r lib/native/Linux/armv7 || die "Failed in removing armv7 native libraries" - fi - if [[ ${CHOST} != x86_64* ]]; then - rm -r lib/native/Linux/x86_64 || die "Failed in removing x86_64 native libraries" - fi - - if [[ ${CHOST} == aarch64* ]]; then - if ! use systemd; then - rm lib/native/Linux/aarch64/libubnt_sdnotify_jni.so || die - fi - fi - if [[ ${CHOST} == armv7* ]]; then - if ! use systemd; then - rm lib/native/Linux/armv7/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=' --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/net-wireless/unifi/unifi-7.3.83.ebuild b/net-wireless/unifi/unifi-7.3.83.ebuild index b7dd5b986388..6626a69d1455 100644 --- a/net-wireless/unifi/unifi-7.3.83.ebuild +++ b/net-wireless/unifi/unifi-7.3.83.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://www.ubnt.com" SRC_URI="https://dl.ui.com/unifi/${PV}/UniFi.unix.zip -> ${P}.zip" S="${WORKDIR}/UniFi" -KEYWORDS="-* ~amd64 ~arm64" +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" SLOT="0/$(ver_cut 1-2)" IUSE="systemd system-mongodb" diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index 2891d49abd4a..6159b30e6d0c 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask index 793c4541707c..021f765e12c1 100644 --- a/profiles/base/package.use.mask +++ b/profiles/base/package.use.mask @@ -431,15 +431,21 @@ x11-libs/colord-gtk doc # Mask the experimental targets in release ebuilds. # Note to self: remember to move still-applicable masks to the newer # version when master is bumped. - (2020-11-30) # Vendored therecipe/qt violates network sandbox + uses external binary diff --git a/profiles/default/linux/mips/17.0/musl/eapi b/profiles/default/linux/mips/17.0/mipsel/n64/musl/eapi similarity index 100% rename from profiles/default/linux/mips/17.0/musl/eapi rename to profiles/default/linux/mips/17.0/mipsel/n64/musl/eapi diff --git a/profiles/default/linux/mips/17.0/musl/mipsel/n64/make.defaults b/profiles/default/linux/mips/17.0/mipsel/n64/musl/make.defaults similarity index 54% rename from profiles/default/linux/mips/17.0/musl/mipsel/n64/make.defaults rename to profiles/default/linux/mips/17.0/mipsel/n64/musl/make.defaults index 26dbb0e4c1dc..cb0c7807a72f 100644 --- a/profiles/default/linux/mips/17.0/musl/mipsel/n64/make.defaults +++ b/profiles/default/linux/mips/17.0/mipsel/n64/musl/make.defaults @@ -1,6 +1,9 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 CHOST="mips64el-gentoo-linux-musl" CHOST_n64="${CHOST}" LIBDIR_n64="lib" + +# Disable sandbox because its currently broken on mipsel-musl +FEATURES="-sandbox" diff --git a/profiles/default/linux/mips/17.0/mipsel/n64/musl/parent b/profiles/default/linux/mips/17.0/mipsel/n64/musl/parent new file mode 100644 index 000000000000..a3de2bcf95f7 --- /dev/null +++ b/profiles/default/linux/mips/17.0/mipsel/n64/musl/parent @@ -0,0 +1,3 @@ +.. +../../../../../../../features/musl +../../../../../../../features/wd40 diff --git a/profiles/default/linux/mips/17.0/musl/mipsel/eapi b/profiles/default/linux/mips/17.0/mipsel/o32/musl/eapi similarity index 100% rename from profiles/default/linux/mips/17.0/musl/mipsel/eapi rename to profiles/default/linux/mips/17.0/mipsel/o32/musl/eapi diff --git a/profiles/default/linux/mips/17.0/musl/mipsel/make.defaults b/profiles/default/linux/mips/17.0/mipsel/o32/musl/make.defaults similarity index 57% rename from profiles/default/linux/mips/17.0/musl/mipsel/make.defaults rename to profiles/default/linux/mips/17.0/mipsel/o32/musl/make.defaults index 53daa27ad9fb..d19638d73590 100644 --- a/profiles/default/linux/mips/17.0/musl/mipsel/make.defaults +++ b/profiles/default/linux/mips/17.0/mipsel/o32/musl/make.defaults @@ -1,5 +1,9 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +CHOST="mipsel-gentoo-linux-musl" +CHOST_o32="${CHOST}" +LIBDIR_o32="lib" + # Disable sandbox because its currently broken on mipsel-musl FEATURES="-sandbox" diff --git a/profiles/default/linux/mips/17.0/mipsel/o32/musl/parent b/profiles/default/linux/mips/17.0/mipsel/o32/musl/parent new file mode 100644 index 000000000000..a3de2bcf95f7 --- /dev/null +++ b/profiles/default/linux/mips/17.0/mipsel/o32/musl/parent @@ -0,0 +1,3 @@ +.. +../../../../../../../features/musl +../../../../../../../features/wd40 diff --git a/profiles/default/linux/mips/17.0/musl/mipsel/n64/parent b/profiles/default/linux/mips/17.0/musl/mipsel/n64/parent deleted file mode 100644 index e92fcf7cbf75..000000000000 --- a/profiles/default/linux/mips/17.0/musl/mipsel/n64/parent +++ /dev/null @@ -1,2 +0,0 @@ -.. -../../../../../../../arch/mips/mipsel/mips64el/n64 diff --git a/profiles/default/linux/mips/17.0/musl/mipsel/o32/make.defaults b/profiles/default/linux/mips/17.0/musl/mipsel/o32/make.defaults deleted file mode 100644 index d0dec15ac7be..000000000000 --- a/profiles/default/linux/mips/17.0/musl/mipsel/o32/make.defaults +++ /dev/null @@ -1,6 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -CHOST="mipsel-gentoo-linux-musl" -CHOST_o32="${CHOST}" -LIBDIR_o32="lib" diff --git a/profiles/default/linux/mips/17.0/musl/mipsel/o32/parent b/profiles/default/linux/mips/17.0/musl/mipsel/o32/parent deleted file mode 100644 index 85db6caf16e5..000000000000 --- a/profiles/default/linux/mips/17.0/musl/mipsel/o32/parent +++ /dev/null @@ -1,2 +0,0 @@ -.. -../../../../../../../arch/mips/mipsel/o32 diff --git a/profiles/default/linux/mips/17.0/musl/mipsel/parent b/profiles/default/linux/mips/17.0/musl/mipsel/parent deleted file mode 100644 index f2bcf2737c18..000000000000 --- a/profiles/default/linux/mips/17.0/musl/mipsel/parent +++ /dev/null @@ -1,2 +0,0 @@ -.. -../../../../../../arch/mips/mipsel diff --git a/profiles/default/linux/mips/17.0/musl/n64/parent b/profiles/default/linux/mips/17.0/musl/n64/parent deleted file mode 100644 index 0a2e2f270682..000000000000 --- a/profiles/default/linux/mips/17.0/musl/n64/parent +++ /dev/null @@ -1,2 +0,0 @@ -.. -../../../../../../arch/mips/mips64/n64 diff --git a/profiles/default/linux/mips/17.0/musl/o32/parent b/profiles/default/linux/mips/17.0/musl/o32/parent deleted file mode 100644 index 6d4edaa24a38..000000000000 --- a/profiles/default/linux/mips/17.0/musl/o32/parent +++ /dev/null @@ -1,2 +0,0 @@ -.. -../../../../../../arch/mips/o32 diff --git a/profiles/default/linux/mips/17.0/musl/parent b/profiles/default/linux/mips/17.0/musl/parent deleted file mode 100644 index 9ef7663a23b6..000000000000 --- a/profiles/default/linux/mips/17.0/musl/parent +++ /dev/null @@ -1,3 +0,0 @@ -.. -../../../../../features/musl -../../../../../features/wd40 diff --git a/profiles/default/linux/mips/17.0/musl/mipsel/n64/eapi b/profiles/default/linux/mips/17.0/n64/musl/eapi similarity index 100% rename from profiles/default/linux/mips/17.0/musl/mipsel/n64/eapi rename to profiles/default/linux/mips/17.0/n64/musl/eapi diff --git a/profiles/default/linux/mips/23.0/musl/n64/make.defaults b/profiles/default/linux/mips/17.0/n64/musl/make.defaults similarity index 78% rename from profiles/default/linux/mips/23.0/musl/n64/make.defaults rename to profiles/default/linux/mips/17.0/n64/musl/make.defaults index 90dd88675350..594d429605ee 100644 --- a/profiles/default/linux/mips/23.0/musl/n64/make.defaults +++ b/profiles/default/linux/mips/17.0/n64/musl/make.defaults @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 CHOST="mips64-gentoo-linux-musl" diff --git a/profiles/default/linux/mips/17.0/n64/musl/parent b/profiles/default/linux/mips/17.0/n64/musl/parent new file mode 100644 index 000000000000..bd0ef6ecac62 --- /dev/null +++ b/profiles/default/linux/mips/17.0/n64/musl/parent @@ -0,0 +1,3 @@ +.. +../../../../../../features/musl +../../../../../../features/wd40 diff --git a/profiles/default/linux/mips/17.0/musl/mipsel/o32/eapi b/profiles/default/linux/mips/17.0/o32/musl/eapi similarity index 100% rename from profiles/default/linux/mips/17.0/musl/mipsel/o32/eapi rename to profiles/default/linux/mips/17.0/o32/musl/eapi diff --git a/profiles/default/linux/mips/17.0/musl/o32/make.defaults b/profiles/default/linux/mips/17.0/o32/musl/make.defaults similarity index 78% rename from profiles/default/linux/mips/17.0/musl/o32/make.defaults rename to profiles/default/linux/mips/17.0/o32/musl/make.defaults index 4027a830450d..98209034fdbd 100644 --- a/profiles/default/linux/mips/17.0/musl/o32/make.defaults +++ b/profiles/default/linux/mips/17.0/o32/musl/make.defaults @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 CHOST="mips-gentoo-linux-musl" diff --git a/profiles/default/linux/mips/17.0/o32/musl/parent b/profiles/default/linux/mips/17.0/o32/musl/parent new file mode 100644 index 000000000000..bd0ef6ecac62 --- /dev/null +++ b/profiles/default/linux/mips/17.0/o32/musl/parent @@ -0,0 +1,3 @@ +.. +../../../../../../features/musl +../../../../../../features/wd40 diff --git a/profiles/default/linux/mips/17.0/musl/n64/eapi b/profiles/default/linux/mips/23.0/mipsel/n64/musl/eapi similarity index 100% rename from profiles/default/linux/mips/17.0/musl/n64/eapi rename to profiles/default/linux/mips/23.0/mipsel/n64/musl/eapi diff --git a/profiles/default/linux/mips/23.0/musl/mipsel/n64/make.defaults b/profiles/default/linux/mips/23.0/mipsel/n64/musl/make.defaults similarity index 54% rename from profiles/default/linux/mips/23.0/musl/mipsel/n64/make.defaults rename to profiles/default/linux/mips/23.0/mipsel/n64/musl/make.defaults index 26dbb0e4c1dc..cb0c7807a72f 100644 --- a/profiles/default/linux/mips/23.0/musl/mipsel/n64/make.defaults +++ b/profiles/default/linux/mips/23.0/mipsel/n64/musl/make.defaults @@ -1,6 +1,9 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 CHOST="mips64el-gentoo-linux-musl" CHOST_n64="${CHOST}" LIBDIR_n64="lib" + +# Disable sandbox because its currently broken on mipsel-musl +FEATURES="-sandbox" diff --git a/profiles/default/linux/mips/23.0/mipsel/n64/musl/parent b/profiles/default/linux/mips/23.0/mipsel/n64/musl/parent new file mode 100644 index 000000000000..a3de2bcf95f7 --- /dev/null +++ b/profiles/default/linux/mips/23.0/mipsel/n64/musl/parent @@ -0,0 +1,3 @@ +.. +../../../../../../../features/musl +../../../../../../../features/wd40 diff --git a/profiles/default/linux/mips/17.0/musl/o32/eapi b/profiles/default/linux/mips/23.0/mipsel/o32/musl/eapi similarity index 100% rename from profiles/default/linux/mips/17.0/musl/o32/eapi rename to profiles/default/linux/mips/23.0/mipsel/o32/musl/eapi diff --git a/profiles/default/linux/mips/23.0/musl/mipsel/make.defaults b/profiles/default/linux/mips/23.0/mipsel/o32/musl/make.defaults similarity index 57% rename from profiles/default/linux/mips/23.0/musl/mipsel/make.defaults rename to profiles/default/linux/mips/23.0/mipsel/o32/musl/make.defaults index 53daa27ad9fb..d19638d73590 100644 --- a/profiles/default/linux/mips/23.0/musl/mipsel/make.defaults +++ b/profiles/default/linux/mips/23.0/mipsel/o32/musl/make.defaults @@ -1,5 +1,9 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +CHOST="mipsel-gentoo-linux-musl" +CHOST_o32="${CHOST}" +LIBDIR_o32="lib" + # Disable sandbox because its currently broken on mipsel-musl FEATURES="-sandbox" diff --git a/profiles/default/linux/mips/23.0/mipsel/o32/musl/parent b/profiles/default/linux/mips/23.0/mipsel/o32/musl/parent new file mode 100644 index 000000000000..a3de2bcf95f7 --- /dev/null +++ b/profiles/default/linux/mips/23.0/mipsel/o32/musl/parent @@ -0,0 +1,3 @@ +.. +../../../../../../../features/musl +../../../../../../../features/wd40 diff --git a/profiles/default/linux/mips/23.0/musl/mipsel/n64/eapi b/profiles/default/linux/mips/23.0/musl/mipsel/n64/eapi deleted file mode 100644 index 7ed6ff82de6b..000000000000 --- a/profiles/default/linux/mips/23.0/musl/mipsel/n64/eapi +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/profiles/default/linux/mips/23.0/musl/mipsel/n64/parent b/profiles/default/linux/mips/23.0/musl/mipsel/n64/parent deleted file mode 100644 index e92fcf7cbf75..000000000000 --- a/profiles/default/linux/mips/23.0/musl/mipsel/n64/parent +++ /dev/null @@ -1,2 +0,0 @@ -.. -../../../../../../../arch/mips/mipsel/mips64el/n64 diff --git a/profiles/default/linux/mips/23.0/musl/mipsel/o32/eapi b/profiles/default/linux/mips/23.0/musl/mipsel/o32/eapi deleted file mode 100644 index 7ed6ff82de6b..000000000000 --- a/profiles/default/linux/mips/23.0/musl/mipsel/o32/eapi +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/profiles/default/linux/mips/23.0/musl/mipsel/o32/make.defaults b/profiles/default/linux/mips/23.0/musl/mipsel/o32/make.defaults deleted file mode 100644 index d0dec15ac7be..000000000000 --- a/profiles/default/linux/mips/23.0/musl/mipsel/o32/make.defaults +++ /dev/null @@ -1,6 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -CHOST="mipsel-gentoo-linux-musl" -CHOST_o32="${CHOST}" -LIBDIR_o32="lib" diff --git a/profiles/default/linux/mips/23.0/musl/mipsel/o32/parent b/profiles/default/linux/mips/23.0/musl/mipsel/o32/parent deleted file mode 100644 index 85db6caf16e5..000000000000 --- a/profiles/default/linux/mips/23.0/musl/mipsel/o32/parent +++ /dev/null @@ -1,2 +0,0 @@ -.. -../../../../../../../arch/mips/mipsel/o32 diff --git a/profiles/default/linux/mips/23.0/musl/mipsel/parent b/profiles/default/linux/mips/23.0/musl/mipsel/parent deleted file mode 100644 index f2bcf2737c18..000000000000 --- a/profiles/default/linux/mips/23.0/musl/mipsel/parent +++ /dev/null @@ -1,2 +0,0 @@ -.. -../../../../../../arch/mips/mipsel diff --git a/profiles/default/linux/mips/23.0/musl/n64/eapi b/profiles/default/linux/mips/23.0/musl/n64/eapi deleted file mode 100644 index 7ed6ff82de6b..000000000000 --- a/profiles/default/linux/mips/23.0/musl/n64/eapi +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/profiles/default/linux/mips/23.0/musl/n64/parent b/profiles/default/linux/mips/23.0/musl/n64/parent deleted file mode 100644 index 0a2e2f270682..000000000000 --- a/profiles/default/linux/mips/23.0/musl/n64/parent +++ /dev/null @@ -1,2 +0,0 @@ -.. -../../../../../../arch/mips/mips64/n64 diff --git a/profiles/default/linux/mips/23.0/musl/o32/eapi b/profiles/default/linux/mips/23.0/musl/o32/eapi deleted file mode 100644 index 7ed6ff82de6b..000000000000 --- a/profiles/default/linux/mips/23.0/musl/o32/eapi +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/profiles/default/linux/mips/23.0/musl/o32/parent b/profiles/default/linux/mips/23.0/musl/o32/parent deleted file mode 100644 index 6d4edaa24a38..000000000000 --- a/profiles/default/linux/mips/23.0/musl/o32/parent +++ /dev/null @@ -1,2 +0,0 @@ -.. -../../../../../../arch/mips/o32 diff --git a/profiles/default/linux/mips/23.0/musl/parent b/profiles/default/linux/mips/23.0/musl/parent deleted file mode 100644 index 9ef7663a23b6..000000000000 --- a/profiles/default/linux/mips/23.0/musl/parent +++ /dev/null @@ -1,3 +0,0 @@ -.. -../../../../../features/musl -../../../../../features/wd40 diff --git a/profiles/default/linux/mips/23.0/musl/eapi b/profiles/default/linux/mips/23.0/n64/musl/eapi similarity index 100% rename from profiles/default/linux/mips/23.0/musl/eapi rename to profiles/default/linux/mips/23.0/n64/musl/eapi diff --git a/profiles/default/linux/mips/17.0/musl/n64/make.defaults b/profiles/default/linux/mips/23.0/n64/musl/make.defaults similarity index 78% rename from profiles/default/linux/mips/17.0/musl/n64/make.defaults rename to profiles/default/linux/mips/23.0/n64/musl/make.defaults index 90dd88675350..594d429605ee 100644 --- a/profiles/default/linux/mips/17.0/musl/n64/make.defaults +++ b/profiles/default/linux/mips/23.0/n64/musl/make.defaults @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 CHOST="mips64-gentoo-linux-musl" diff --git a/profiles/default/linux/mips/23.0/n64/musl/parent b/profiles/default/linux/mips/23.0/n64/musl/parent new file mode 100644 index 000000000000..bd0ef6ecac62 --- /dev/null +++ b/profiles/default/linux/mips/23.0/n64/musl/parent @@ -0,0 +1,3 @@ +.. +../../../../../../features/musl +../../../../../../features/wd40 diff --git a/profiles/default/linux/mips/23.0/musl/mipsel/eapi b/profiles/default/linux/mips/23.0/o32/musl/eapi similarity index 100% rename from profiles/default/linux/mips/23.0/musl/mipsel/eapi rename to profiles/default/linux/mips/23.0/o32/musl/eapi diff --git a/profiles/default/linux/mips/23.0/musl/o32/make.defaults b/profiles/default/linux/mips/23.0/o32/musl/make.defaults similarity index 78% rename from profiles/default/linux/mips/23.0/musl/o32/make.defaults rename to profiles/default/linux/mips/23.0/o32/musl/make.defaults index 4027a830450d..98209034fdbd 100644 --- a/profiles/default/linux/mips/23.0/musl/o32/make.defaults +++ b/profiles/default/linux/mips/23.0/o32/musl/make.defaults @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 CHOST="mips-gentoo-linux-musl" diff --git a/profiles/default/linux/mips/23.0/o32/musl/parent b/profiles/default/linux/mips/23.0/o32/musl/parent new file mode 100644 index 000000000000..bd0ef6ecac62 --- /dev/null +++ b/profiles/default/linux/mips/23.0/o32/musl/parent @@ -0,0 +1,3 @@ +.. +../../../../../../features/musl +../../../../../../features/wd40 diff --git a/profiles/package.mask b/profiles/package.mask index 0e3580dbb51c..2855d7441956 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -33,6 +33,76 @@ #--- END OF EXAMPLES --- +# David Seifert (2023-03-19) +# Unmaintained, last release 18 years ago, assortment of QA issues, +# upstream gone, fails with modern C, no revdeps remaining. +# Removal on 2023-04-18. Bug #833484, #833536, #833944, #883757. +dev-perl/PerlMol + +# Hans de Graaff (2023-03-19) +# This version of cucumber-core is not compatible with the other +# cucumber dependencies. Please downgrade cucumber-core. +=dev-util/cucumber-core-11.1.0 + +# David Seifert (2023-03-19) +# Upstream disappeared, last release over 8.5 years ago, unmaintained, +# laundry list of QA issues, fails with modern C, no revdeps remaining. +# Removal on 2023-04-18. Bug #683166, #814658, #834966, #898262. +sci-libs/xdrfile + +# David Seifert (2023-03-19) +# Last release over 7.5 years ago, repo link broken and redirects to +# homepage, build system is a mess, fails with modern C. +# Removal on 2023-04-18. Bug #802729, #862414, #876993, #880577. +x11-wm/subtle + +# David Seifert (2023-03-19) +# Last release over 5 years ago, fails with modern C, no revdeps in +# tree. +# Removal on 2023-04-18. Bug #884407. +dev-ruby/ruby-xslt + +# David Seifert (2023-03-19) +# Last release over 10 years ago, fails with modern C, no revdeps in +# tree. +# Removal on 2023-04-18. Bug #587222, #884409. +dev-ruby/tidy-ext + +# David Seifert (2023-03-19) +# Upstream disappeared, last release over 8 years ago, fails with modern +# C, no revdeps in tree. +# Removal on 2023-04-18. Bug #713784, #895686. +dev-ruby/sigar + +# David Seifert (2023-03-19) +# Apache NIH make, long abandoned upstream, forked reboot went nowhere. +# Last release over 2 years ago, fails with modern C and no revdeps in +# tree. Removal on 2023-04-18. Bug #880401. +dev-util/dmake + +# Hans de Graaff (2023-03-19) +# ruby27-only package without reverse dependencies. No recent activity +# upstream and last supported ruby version is 2.5. Masked for removal on +# 2023-04-19. +dev-ruby/bit-struct + +# Obsolete slot using an older version of faraday. Use the newer slot +# instead. Masked for removal on 2023-04-19. +dev-ruby/elasticsearch:6 +dev-ruby/elasticsearch-api:6 +dev-ruby/elasticsearch-transport:6 + +# Hans de Graaff (2023-03-19) +# Last upstream activity 5 years ago, no longer works with modern +# Cucumber. Masked for removal on 2023-04-19. +dev-ruby/fivemat + +# David Seifert (2023-03-18) +# Upstream disappeared, last release over 20 years ago, only Gentoo +# still carries this, breaks with modern C under Clang, no revdeps. +# Removal on 2023-04-17. Bug #875683. +net-analyzer/bigeye + # David Seifert (2023-03-18) # Upstream disappeared, last release over 15 years ago, only Gentoo # still carries this, breaks with modern C under Clang, no revdeps. @@ -69,7 +139,7 @@ dev-ruby/six # Alfredo Tupone (2023-03-14) # Masked for removal in 30 days. -# Bug #895824, no rev dep +# Bug #895824, no rev dep dev-tcltk/tkzinc # David Seifert (2023-03-12) @@ -90,11 +160,14 @@ dev-ruby/net-http-persistent:3 >=app-text/evince-44_rc >=dev-libs/gjs-1.75 >=dev-python/pygobject-3.43 +>=dev-util/gnome-builder-44 >=gnome-base/gnome-session-44_rc >=gnome-base/gnome-settings-daemon-44_rc >=gnome-base/gnome-shell-44_rc >=gnome-base/librsvg-2.55.90 >=gnome-base/nautilus-44_rc +>=gnome-extra/evolution-data-server-3.48 +>=gnome-extra/evolution-ews-3.48 >=gnome-extra/gnome-boxes-44_rc >=gnome-extra/gnome-calculator-44_rc >=gnome-extra/gnome-calendar-44_rc @@ -108,9 +181,11 @@ dev-ruby/net-http-persistent:3 >=gnome-extra/gnome-weather-44_rc >=gui-apps/gnome-console-44_beta >=gui-libs/libadwaita-1.3_rc +>=mail-client/evolution-3.48 >=media-gfx/eog-44_beta >=media-gfx/gnome-font-viewer-44_rc >=net-libs/glib-networking-2.76_beta +>=net-libs/webkit-gtk-2.40.0 >=net-misc/gnome-connections-44_rc >=net-misc/gnome-remote-desktop-44_rc >=sci-geosciences/gnome-maps-44_rc @@ -287,17 +362,6 @@ app-eselect/eselect-opencascade # Removal on 2023-03-21. Bug #895342. dev-python/flask-script -# Michał Górny (2023-02-17) -# Merged into dev-python/pytest-cov in 2020. No revdeps left. -# Removal on 2023-03-19. Bug #895120. -dev-python/cov-core - -# Michał Górny (2023-02-17) -# Broken against the current package versions in ::gentoo. Upstream -# inactive. No revdeps. -# Removal on 2023-03-19. Bug #865931. -dev-python/pytest-flake8 - # Florian Schmaus (2023-02-09) # Leftovers from net-im/jabber-base. Unused and obsolete. # Removal on 2023-03-09. diff --git a/profiles/profiles.desc b/profiles/profiles.desc index 5845a27c356a..5907185b9e5a 100644 --- a/profiles/profiles.desc +++ b/profiles/profiles.desc @@ -351,10 +351,10 @@ arm64 default/linux/arm64/17.0/musl dev arm64 default/linux/arm64/17.0/musl/llvm exp arm64 default/linux/arm64/17.0/musl/hardened exp arm64 default/linux/arm64/17.0/musl/hardened/selinux exp -mips default/linux/mips/17.0/musl/o32 exp -mips default/linux/mips/17.0/musl/n64 exp -mips default/linux/mips/17.0/musl/mipsel/o32 exp -mips default/linux/mips/17.0/musl/mipsel/n64 exp +mips default/linux/mips/17.0/o32/musl exp +mips default/linux/mips/17.0/n64/musl exp +mips default/linux/mips/17.0/mipsel/o32/musl exp +mips default/linux/mips/17.0/mipsel/n64/musl exp riscv default/linux/riscv/20.0/rv64gc/lp64d/musl dev riscv default/linux/riscv/20.0/rv64gc/lp64/musl dev x86 default/linux/x86/17.0/musl dev diff --git a/profiles/use.local.desc b/profiles/use.local.desc index ef2b0ff19c20..7b69ad53715c 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1942,6 +1942,7 @@ dev-libs/libcharon:client - Install the charon client library dev-libs/libclc:spirv - Build SPIRV targets dev-libs/libdbusmenu:gtk - Enable support for GTK+2 dev-libs/libdbusmenu:gtk3 - Enable support for GTK+3 +dev-libs/libdex:sysprof - Enable profiling data capture support using dev-util/sysprof-capture dev-libs/libdynd:cuda - Enable NVIDIA CUDA toolkit support dev-libs/libevent:clock-gettime - Disable use of clock_gettime even if it is available dev-libs/libevent:debug - Support for running in debug mode @@ -3859,7 +3860,6 @@ media-fonts/liberation-fonts:fontforge - Use media-gfx/fontforge to build fonts media-fonts/montecarlo:bdf - Install BDF fonts in addition to PCF media-fonts/mplus-outline-fonts:ipafont - Generates new fonts merged with media-fonts/ja-ipafonts media-fonts/noto:extra - Install full upstream font set including condensed, semi-bold, extra-light variants -media-fonts/noto-emoji:buildfont - Build Noto Emoji font with supplied images media-fonts/noto-emoji:icons - Install Noto Emoji icon theme media-fonts/sil-charis:compact - Use more compactly spaced font media-fonts/terminus-font:a-like-o - Changes view of letter 'a' - a looks like o (see homepage) @@ -8968,7 +8968,7 @@ x11-themes/tela-icon-theme:dracula - Install dracula folder version x11-themes/tela-icon-theme:green - Install green folder version x11-themes/tela-icon-theme:grey - Install grey folder version x11-themes/tela-icon-theme:hardlink - Hardlink duplicate icons to greatly reduce installation size -x11-themes/tela-icon-theme:kde - Install colorshceme version for KDE plasma (folder color follow the colorscheme) +x11-themes/tela-icon-theme:kde - Install dynamic color version for KDE plasma (folder color follows the colorscheme) x11-themes/tela-icon-theme:manjaro - Install manjaro folder version x11-themes/tela-icon-theme:nord - Install nord folder version x11-themes/tela-icon-theme:orange - Install orange folder version diff --git a/sci-calculators/Manifest.gz b/sci-calculators/Manifest.gz index 3d1f53a075ab..659f92a3edd6 100644 Binary files a/sci-calculators/Manifest.gz and b/sci-calculators/Manifest.gz differ diff --git a/sci-calculators/bc-gh/Manifest b/sci-calculators/bc-gh/Manifest index 48d6feacf306..ec318471a456 100644 --- a/sci-calculators/bc-gh/Manifest +++ b/sci-calculators/bc-gh/Manifest @@ -1,2 +1,3 @@ DIST bc-6.1.1.tar.xz 455456 BLAKE2B 7945ac623740abd9cbd894c20b8a03006caf64d2ce9770ade930d912c52b4e29b107b524d4a95ebea99e31921b7940e39e1afdeec837b4a03d3ed4e11b9f517b SHA512 0e7fb4d4223ace8ba5c1961cc0d7eba475174f92b75529fde64446b5d80db5729f848fd95507570711d2b8928996c87e837e926d31028f32e3f97cad47567d39 DIST bc-6.4.0.tar.xz 460460 BLAKE2B 91d70f3907fde6d3c97c37872d57ac67e98990ab1e37324801a95184d7961002b68f2b6904520ab4c77c45a571c369fb0a6455553bb3db79553e01aece28e212 SHA512 6c7a86c534214e765e3890dffe77fb85ddf0764cde0c6ceb0385cce7de4c0d2db0815faf6bcf161fad75591461c346811a61c42c5eced7c3d84fe5b7eb719b60 +DIST bc-6.5.0.tar.xz 461380 BLAKE2B e4aa633162d03fc5723e967ba81f985ab1b16e47b3c9a3ca1c32e9a717db682ce88cc6ba453d5e9b09539dcb8ddbb258b7b7dbdd2e27279355e3c35028d56130 SHA512 1cb03038d828a0b10734c29931777add8b22f194c507b8ff538ec1aa52a2a97a4ac2733d72cdb0710fdc6937807074e929f7918c56aaf5be8fbe908ea7c5a401 diff --git a/sci-calculators/bc-gh/bc-gh-6.5.0.ebuild b/sci-calculators/bc-gh/bc-gh-6.5.0.ebuild new file mode 100644 index 000000000000..7b4e6bc4cbf5 --- /dev/null +++ b/sci-calculators/bc-gh/bc-gh-6.5.0.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P="bc-${PV}" +DESCRIPTION="Implementation of POSIX bc with GNU extensions" +HOMEPAGE=" + https://git.gavinhoward.com/gavin/bc/ + https://github.com/gavinhoward/bc/ +" +SRC_URI=" + https://github.com/gavinhoward/bc/releases/download/${PV}/${MY_P}.tar.xz +" +S=${WORKDIR}/${MY_P} + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="libedit readline" + +DEPEND=" + !readline? ( + libedit? ( dev-libs/libedit:= ) + ) + readline? ( + sys-libs/readline:= + sys-libs/ncurses:= + ) +" +RDEPEND=" + ${DEPEND} +" + +src_configure() { + local myconf=( + # GNU and BSD bc's have slightly different behavior. This bc can act + # like both, changing at runtime with environment variables, but it + # needs defaults, which can be set at compile time. This option sets all + # of the defaults to match the GNU bc/dc since it's common on Linux. + -pGNU + # A lot of test results are generated first by a bc compatible with the + # GNU bc. If there is no GNU bc installed, then those tests should be + # skipped. That's what this option does. Without it, we would have a + # dependency cycle. Those tests are super long, anyway. + -G + # Disables the automatic stripping of binaries. + -T + # Enables installing all locales, which is important for packages. + -l + # Disables some "problematic" tests that need specific options on Linux + # to not trigger the OOM killer because malloc() lies. + -P + ) + if use readline ; then + myconf+=( -r ) + elif use libedit ; then + myconf+=( -e ) + fi + + local -x EXECSUFFIX="-gh" + local -x PREFIX="${EPREFIX}/usr" + ./configure.sh "${myconf[@]}" || die +} + +src_test() { + # This is to fix a bug encountered on Arch. It is to ensure we don't get + # segfaults on `make check` when the error messages change because the error + # messages are passed to printf(); they have format specifiers. With these + # env vars, the internal error messages are used, instead of the installed + # locales, which might be different since the new locale files are not + # installed yet. (It is impossible to use uninstalled locales because of the + # poor design of POSIX locales.) + env LANG=C LC_ALL=C emake check +} diff --git a/sci-chemistry/Manifest.gz b/sci-chemistry/Manifest.gz index 0a44ec925324..54e779f13404 100644 Binary files a/sci-chemistry/Manifest.gz and b/sci-chemistry/Manifest.gz differ diff --git a/sci-chemistry/chemical-mime-data/Manifest b/sci-chemistry/chemical-mime-data/Manifest index c029ce5a966c..c87c4dfa11bc 100644 --- a/sci-chemistry/chemical-mime-data/Manifest +++ b/sci-chemistry/chemical-mime-data/Manifest @@ -1 +1,2 @@ DIST chemical-mime-data-0.1.94.tar.bz2 146077 BLAKE2B 9996c240446dc9571b6b4afbcdc6cf16a08e11314da9f785490b1b20933b6d18a333132492e30315c08f4441c048ec593a111815253050cfb5ab562aadb784f1 SHA512 7f3d967149f27ab1de53c948dc055959e661e1be9d778e3d56d06bea95769da7770ab5fb66afab6607747ef91ffb1dbbcf921e5f06e3303351781968594b5f00 +DIST chemical-mime-data-0.1.95_pre20171122.tar.gz 84515 BLAKE2B 42f76b44408c04e5a254c17502ea2c297727bb58fa3e86b8bca7f0c4c056ae7400b31f06b7d0c64b0712e97ab8a1f82549f44a3677720cd37a301ba99adb3d7a SHA512 a031e7a5bc31a74adcd8e5d827de71b6e0eafdceba16cf6f7407aa0266a9a082b0011963b315d2369f39abf45c4b41cedafccddbc2171673bf96ccbea51a4790 diff --git a/sci-chemistry/chemical-mime-data/chemical-mime-data-0.1.95_pre20171122.ebuild b/sci-chemistry/chemical-mime-data/chemical-mime-data-0.1.95_pre20171122.ebuild new file mode 100644 index 000000000000..13b91f044ac8 --- /dev/null +++ b/sci-chemistry/chemical-mime-data/chemical-mime-data-0.1.95_pre20171122.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit autotools xdg + +DESCRIPTION="A collection of data files to add support for chemical MIME types" +HOMEPAGE="https://github.com/dleidert/chemical-mime" +COMMIT="4fd66e3b3b7d922555d1e25587908b036805c45b" +SRC_URI="https://github.com/dleidert/chemical-mime/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="" + +RDEPEND="x11-misc/shared-mime-info" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/intltool + dev-util/desktop-file-utils + dev-libs/libxslt + virtual/pkgconfig +" + +PATCHES=( + # https://github.com/dleidert/chemical-mime/issues/5 + "${FILESDIR}"/${PN}-0.1.95-turbomole.patch +) + +S="${WORKDIR}/${PN/-data/}-${COMMIT}" + +src_prepare() { + default + # https://github.com/dleidert/chemical-mime/issues/4 + sed -i -e \ + '/<_comment/a\\t\t' \ + src/chemical-mime-database.xml.in || die + sed -i -e \ + 's:acronym|alias|comment|:acronym|alias|comment|generic-icon|:' \ + xsl/cmd_freedesktop_org.xsl || die + eautoreconf +} + +src_configure() { + econf \ + --disable-update-database \ + --without-gnome-mime \ + --without-kde-mime \ + --without-kde-magic +} diff --git a/sci-chemistry/chemical-mime-data/metadata.xml b/sci-chemistry/chemical-mime-data/metadata.xml index 702a57465bce..59742c34e797 100644 --- a/sci-chemistry/chemical-mime-data/metadata.xml +++ b/sci-chemistry/chemical-mime-data/metadata.xml @@ -1,11 +1,12 @@ - - sci-chemistry@gentoo.org - Gentoo Chemistry Project - - - chemical-mime - + + sci-chemistry@gentoo.org + Gentoo Chemistry Project + + + chemical-mime + dleidert/chemical-mime + diff --git a/sci-geosciences/Manifest.gz b/sci-geosciences/Manifest.gz index cafeac7bf060..ab2c5335bfcd 100644 Binary files a/sci-geosciences/Manifest.gz and b/sci-geosciences/Manifest.gz differ diff --git a/sci-geosciences/gnome-maps/Manifest b/sci-geosciences/gnome-maps/Manifest index 9e7b0a66f375..52593741d6c4 100644 --- a/sci-geosciences/gnome-maps/Manifest +++ b/sci-geosciences/gnome-maps/Manifest @@ -1,3 +1,5 @@ DIST gnome-maps-43.2.tar.xz 2334324 BLAKE2B a8daacd9874e9b8d44ae6107b7cc1a0a4a168d579b4101e4da408c08e2509f7da782605b27d089331d3628584783f3fd1d43c26d3bc7b09325810dec7b9b1648 SHA512 dfd7eba5fc0cc38152753d2d3b5ba13cdc614b96fe3f8e6629dc6c56515108fc6f2469f32629ffaba97667b15da294d874653d9133dd13592738379d5fb91c78 DIST gnome-maps-43.4.tar.xz 2335020 BLAKE2B 267b4a2a1c8273fdcdccd7f2b385b2c95aa8903d1f5e117affc2174c873931f01cba6d17bfcabd949eb91fbf960469517569a80acd8ecaa45de9a181a7cece9a SHA512 16efd035a940e5ffad6dbbd7d8e527c56fb088211c41d130c0441ae321ea89f3a60524a39dcc5de5bc1caaee408e0eb0fda504471002876b4f3550759939568f +DIST gnome-maps-43.5.tar.xz 2334576 BLAKE2B 164f4bbd1f50f92849a7c59b9e47bd1e3d1ec01f13273c3448e671bbdca6c727b103e3c7fa2a74244d59163d1607d436b15f6f7f1d4d93dfe02ad7ac720d3306 SHA512 e4f0fe6ef7803ad6d042a51af063db3e9e4591c760c216c21b644f948cfb2d56b13d271375be651ea52712ad5f7c4288f5f3027b52dc158a585be45c139d5fe7 +DIST gnome-maps-44.0.tar.xz 2349928 BLAKE2B 4c2e45f03554a4ef5b34e1dc932764ab96cbf535f305dc8a1504823986d7b4a5b78ab854dd6beea19f7dde168dfdc9fa8874fa06a858db6bf7844e1bdf5b14df SHA512 aa52446c273ac5b8603b5fd266e1e24c920821cd22ae441e41067bae6ed7753e47f57f14fd6a05b0682d3b0f6bfe22fe5e9da26d983812fdb0f419fea21cbe4a DIST gnome-maps-44.rc.tar.xz 2350924 BLAKE2B 3e0a6f418c77cf6d4dd0e49b279cff54f0e962ab1a789a8ea610a4f1204f47919f7ae003438784f00bce92c7e3823501763c7be68cdc2011b936458392fbe959 SHA512 528187886118b077b184e37d9cbb7eee8742366f5daac0121658ad506d556e1d7349a63d9cf2931db0b2245c8e59c91b0ce585c1da7cb2bb93559ae5fd9ea308 diff --git a/sci-geosciences/gnome-maps/gnome-maps-43.5.ebuild b/sci-geosciences/gnome-maps/gnome-maps-43.5.ebuild new file mode 100644 index 000000000000..fbde0d6d6cf0 --- /dev/null +++ b/sci-geosciences/gnome-maps/gnome-maps-43.5.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="A map application for GNOME" +HOMEPAGE="https://wiki.gnome.org/Apps/Maps" + +LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +# Pure introspection dependencies found by grepping imports in ${S} +RDEPEND=" + >=dev-libs/glib-2.66.0:2 + >=dev-libs/gjs-1.69.2 + >=dev-libs/gobject-introspection-0.10.1:= + gui-libs/gtk:4[introspection] + >=app-misc/geoclue-0.12.99:2.0[introspection] + >=gui-libs/libadwaita-1.0:1[introspection] + >=dev-libs/libgweather-4.2.0:4=[introspection] + >=sci-geosciences/geocode-glib-3.15.2:2[introspection] + >=media-libs/libshumate-1.0:1.0=[introspection] + dev-libs/libxml2:2 + >=net-libs/rest-0.9.1:1.0[introspection] + + app-crypt/libsecret[introspection] + media-libs/graphene[introspection] + net-libs/libsoup:3.0[introspection] + x11-libs/pango[introspection] +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/glib-utils + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +PATCHES=( + "${FILESDIR}"/43.0-tests-timeTest-Fix-tests-for-time-formats-with-diffe.patch +) + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/sci-geosciences/gnome-maps/gnome-maps-44.0.ebuild b/sci-geosciences/gnome-maps/gnome-maps-44.0.ebuild new file mode 100644 index 000000000000..b7701c61f77d --- /dev/null +++ b/sci-geosciences/gnome-maps/gnome-maps-44.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="A map application for GNOME" +HOMEPAGE="https://wiki.gnome.org/Apps/Maps" + +LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +# Pure introspection dependencies found by grepping imports in ${S} +RDEPEND=" + >=dev-libs/glib-2.66.0:2 + >=dev-libs/gjs-1.69.2 + >=dev-libs/gobject-introspection-0.10.1:= + gui-libs/gtk:4[introspection] + >=app-misc/geoclue-0.12.99:2.0[introspection] + >=gui-libs/libadwaita-1.0:1[introspection] + >=dev-libs/libgweather-4.2.0:4=[introspection] + >=sci-geosciences/geocode-glib-3.15.2:2[introspection] + >=media-libs/libshumate-1.0:1.0=[introspection] + dev-libs/libxml2:2 + >=net-libs/rest-0.9.1:1.0[introspection] + + app-crypt/libsecret[introspection] + media-libs/graphene[introspection] + net-libs/libsoup:3.0[introspection] + x11-libs/pango[introspection] +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/glib-utils + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/sci-geosciences/grass/grass-8.2.0-r5.ebuild b/sci-geosciences/grass/grass-8.2.0-r7.ebuild similarity index 99% rename from sci-geosciences/grass/grass-8.2.0-r5.ebuild rename to sci-geosciences/grass/grass-8.2.0-r7.ebuild index 67c415a6fb83..e30ecf9a377f 100644 --- a/sci-geosciences/grass/grass-8.2.0-r5.ebuild +++ b/sci-geosciences/grass/grass-8.2.0-r7.ebuild @@ -47,7 +47,6 @@ RDEPEND=" sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= - sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu diff --git a/sci-geosciences/grass/grass-8.2.0-r6.ebuild b/sci-geosciences/grass/grass-8.2.0-r8.ebuild similarity index 99% rename from sci-geosciences/grass/grass-8.2.0-r6.ebuild rename to sci-geosciences/grass/grass-8.2.0-r8.ebuild index 89da9d5144ac..037ead627c64 100644 --- a/sci-geosciences/grass/grass-8.2.0-r6.ebuild +++ b/sci-geosciences/grass/grass-8.2.0-r8.ebuild @@ -52,7 +52,6 @@ RDEPEND=" sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= - sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu diff --git a/sci-geosciences/grass/grass-8.2.1-r1.ebuild b/sci-geosciences/grass/grass-8.2.1-r2.ebuild similarity index 99% rename from sci-geosciences/grass/grass-8.2.1-r1.ebuild rename to sci-geosciences/grass/grass-8.2.1-r2.ebuild index d2f60e00ca0e..b3f26da18821 100644 --- a/sci-geosciences/grass/grass-8.2.1-r1.ebuild +++ b/sci-geosciences/grass/grass-8.2.1-r2.ebuild @@ -52,7 +52,6 @@ RDEPEND=" sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= - sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu diff --git a/sci-geosciences/grass/grass-9999.ebuild b/sci-geosciences/grass/grass-9999.ebuild index 45c10f8e8cd3..c335853ae4e4 100644 --- a/sci-geosciences/grass/grass-9999.ebuild +++ b/sci-geosciences/grass/grass-9999.ebuild @@ -52,7 +52,6 @@ RDEPEND=" sys-libs/gdbm:= sys-libs/ncurses:= sci-libs/proj:= - sci-libs/xdrfile sys-libs/zlib media-libs/libglvnd media-libs/glu diff --git a/sci-geosciences/josm-bin/josm-bin-18646.ebuild b/sci-geosciences/josm-bin/josm-bin-18646.ebuild index 1aba0e7ffd7b..60cd9ef522d0 100644 --- a/sci-geosciences/josm-bin/josm-bin-18646.ebuild +++ b/sci-geosciences/josm-bin/josm-bin-18646.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}" LICENSE="Apache-2.0 GPL-2+ GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" RDEPEND=">=virtual/jre-1.8" BDEPEND="app-arch/unzip" diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index d425ca915d22..8f9a1f0359ed 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/lapack/lapack-3.11.ebuild b/sci-libs/lapack/lapack-3.11.ebuild index d6b016878d7d..737bed9e5fdb 100644 --- a/sci-libs/lapack/lapack-3.11.ebuild +++ b/sci-libs/lapack/lapack-3.11.ebuild @@ -44,6 +44,9 @@ src_configure() { -DBUILD_DEPRECATED=$(usex deprecated) -DBUILD_SHARED_LIBS=ON -DBUILD_TESTING=$(usex test) + + # Breaks cross, will default to OFF in next release. + -DTEST_FORTRAN_COMPILER=OFF ) cmake_src_configure @@ -71,7 +74,7 @@ pkg_postinst() { local me=reference libdir=$(get_libdir) # check eselect-blas - eselect blas add ${libdir} "${EROOT}"/usr/${libdir}/blas/${me} ${me} + eselect blas add ${libdir} "${EPREFIX}"/usr/${libdir}/blas/${me} ${me} local current_blas=$(eselect blas show ${libdir} | cut -d' ' -f2) if [[ ${current_blas} == ${me} || -z ${current_blas} ]]; then eselect blas set ${libdir} ${me} @@ -83,7 +86,7 @@ pkg_postinst() { fi # check eselect-lapack - eselect lapack add ${libdir} "${EROOT}"/usr/${libdir}/lapack/${me} ${me} + eselect lapack add ${libdir} "${EPREFIX}"/usr/${libdir}/lapack/${me} ${me} local current_lapack=$(eselect lapack show ${libdir} | cut -d' ' -f2) if [[ ${current_lapack} == ${me} || -z ${current_lapack} ]]; then eselect lapack set ${libdir} ${me} diff --git a/sci-libs/nlopt/nlopt-2.7.1-r1.ebuild b/sci-libs/nlopt/nlopt-2.7.1-r1.ebuild index 5adc753ba921..538051367347 100644 --- a/sci-libs/nlopt/nlopt-2.7.1-r1.ebuild +++ b/sci-libs/nlopt/nlopt-2.7.1-r1.ebuild @@ -4,6 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{9..10} ) +FORTRAN_NEEDED="test" inherit python-r1 cmake fortran-2 diff --git a/sci-libs/nlopt/nlopt-2.7.1-r2.ebuild b/sci-libs/nlopt/nlopt-2.7.1-r2.ebuild index 67b4245b9809..8c7936051193 100644 --- a/sci-libs/nlopt/nlopt-2.7.1-r2.ebuild +++ b/sci-libs/nlopt/nlopt-2.7.1-r2.ebuild @@ -4,6 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{9..11} ) +FORTRAN_NEEDED="test" inherit python-r1 cmake fortran-2 diff --git a/sci-mathematics/Manifest.gz b/sci-mathematics/Manifest.gz index 369e2ac72929..297bffb2b31e 100644 Binary files a/sci-mathematics/Manifest.gz and b/sci-mathematics/Manifest.gz differ diff --git a/sci-mathematics/pari/Manifest b/sci-mathematics/pari/Manifest index 9e878940b366..787883758f30 100644 --- a/sci-mathematics/pari/Manifest +++ b/sci-mathematics/pari/Manifest @@ -1,2 +1,2 @@ DIST pari-2.13.4.tar.gz 4772735 BLAKE2B 5a3eebd380f1e47f38746b03ddde9a715ed74e7e8e4ed30ef8f2d62cf7289694b800fc8396557150ce9d79245c244fb56cecddac867c6057b438da4df68505e6 SHA512 0eb8c0100d76fb8f29fd29e6a49e9534b9a4d90e1869820dbfddd57fe444f0e83909947331823157a67be31f71a5d26fa1224f72ce3f9e5197db0194c417b9b9 -DIST pari-2.15.2.tar.gz 5176694 BLAKE2B b3aa021cb0b786dfde691b150d38c0ee9e9844ff5d2554d7a4f0cd85b27c8077696433b14c0b2128930b7db2191e7db99bdebc200e03607554cc4a9394ea42a4 SHA512 fa9e8713484ab5d659dcf7cf65de0fbaf28334969f443bfaffb8fc19c2305631435fc5635e090cbd8033758ea18200a62c47e8434067af9a86565832e96d489c +DIST pari-2.15.3.tar.gz 5178288 BLAKE2B d9cc11526360e9fc7688e0a3195a85302d6bf95039051c9419aa18c5bf91eff837d64d9acabb0a51a6e15a3614a5cab4acbf0a502dba5417982514f27721d47d SHA512 9e127850759bac0c0a9b32c6660a55018ec6c6781aaa14c42667f26655444f55c08e100fe186aec8ad1f574d883d76888b13fbafb65d1f4741e2018b78ff307b diff --git a/sci-mathematics/pari/files/pari-2.15.2-ellsea-r1.patch b/sci-mathematics/pari/files/pari-2.15.2-ellsea-r1.patch deleted file mode 100644 index b8af421c0e56..000000000000 --- a/sci-mathematics/pari/files/pari-2.15.2-ellsea-r1.patch +++ /dev/null @@ -1,34 +0,0 @@ -A fix for upstream bug 2441 and gentoo bug 892035, with the changes to -CHANGES and the test suite stripped out (they don't apply cleanly). - -From 6f556664bea5dae9d7101533be65f10b9d6332e2 Mon Sep 17 00:00:00 2001 -From: Bill Allombert -Date: Fri, 20 Jan 2023 11:13:46 +0100 -Subject: [PATCH 1/1] ellcard(ellinit([1,1]*ffgen([41,16])))-> impossible - inverse [#2441] - -find_isogenous_from_Atkin: check that the kernel divides the division polynomial ---- - CHANGES | 1 + - src/basemath/ellsea.c | 3 ++- - src/test/32/ellff | 3 ++- - src/test/in/ellff | 3 +++ - 4 files changed, 8 insertions(+), 2 deletions(-) - -diff --git a/src/basemath/ellsea.c b/src/basemath/ellsea.c -index a6871fa6a7..05f148eadd 100644 ---- a/src/basemath/ellsea.c -+++ b/src/basemath/ellsea.c -@@ -852,7 +852,8 @@ find_isogenous_from_Atkin(GEN a4, GEN a6, ulong ell, struct meqn *MEQN, GEN g, G - GEN a4t, a6t, h; - a4a6t(&a4t, &a6t, ell, E4t, E6t, T, p); - h = find_kernel(a4, a6, ell, a4t, a6t, pp1, T, p, pp, e); -- if (h) return gerepilecopy(ltop, mkvec3(a4t, a6t, h)); -+ if (h && signe(Fq_elldivpolmod(a4, a6, ell, h, T, pp))==0) -+ return gerepilecopy(ltop, mkvec3(a4t, a6t, h)); - } - } - pari_err_BUG("find_isogenous_from_Atkin, kernel not found"); --- -2.30.2 - diff --git a/sci-mathematics/pari/files/pari-2.15.2-install-doctex.patch b/sci-mathematics/pari/files/pari-2.15.2-install-doctex.patch deleted file mode 100644 index d504326b7b43..000000000000 --- a/sci-mathematics/pari/files/pari-2.15.2-install-doctex.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 0888050e8f3fc8c07e42331651c970d80c8d6a90 Mon Sep 17 00:00:00 2001 -From: Bill Allombert -Date: Wed, 25 Jan 2023 18:42:09 +0100 -Subject: [PATCH] TOP_Make.SH: add target install-docvi, install-doctex [#2444] - ---- - config/TOP_Make.SH | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/config/TOP_Make.SH b/config/TOP_Make.SH -index d2543c91eb..e60fd5f6ee 100644 ---- a/config/TOP_Make.SH -+++ b/config/TOP_Make.SH -@@ -42,7 +42,7 @@ all:: - @\$(MAKE) gp - @-cd doc && \$(MAKE) doc - --gp bench test-kernel test-all install cleanall cleanobj cleantest nsis link-data install-bin install-doc install-docpdf install-nodata install-data install-lib-sta install-bin-sta dobench dyntest-all statest-all tune $top_test_extra $top_dotest_extra:: -+gp bench test-kernel test-all install cleanall cleanobj cleantest nsis link-data install-bin install-doc install-doctex install-docdvi install-docpdf install-nodata install-data install-lib-sta install-bin-sta dobench dyntest-all statest-all tune $top_test_extra $top_dotest_extra:: - @dir=\`config/objdir\`; echo "Making \$@ in \$\$dir";\\ - if test ! -d \$\$dir; then echo "Please run Configure first!"; exit 1; fi;\\ - cd \$\$dir && \$(MAKE) \$@ --- -2.30.2 - diff --git a/sci-mathematics/pari/pari-2.15.2-r2.ebuild b/sci-mathematics/pari/pari-2.15.3.ebuild similarity index 97% rename from sci-mathematics/pari/pari-2.15.2-r2.ebuild rename to sci-mathematics/pari/pari-2.15.3.ebuild index c25f507e52f3..123f174d15a3 100644 --- a/sci-mathematics/pari/pari-2.15.2-r2.ebuild +++ b/sci-mathematics/pari/pari-2.15.3.ebuild @@ -33,10 +33,8 @@ RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}/${PN}"-2.9.4-ppc.patch - "${FILESDIR}/${PN}"-2.11.2-no-automagic.patch "${FILESDIR}/${PN}"-2.9.4-fltk-detection.patch - "${FILESDIR}/${PN}"-2.15.2-ellsea-r1.patch - "${FILESDIR}/${PN}"-2.15.2-install-doctex.patch + "${FILESDIR}/${PN}"-2.11.2-no-automagic.patch ) src_prepare() { diff --git a/sec-keys/Manifest.gz b/sec-keys/Manifest.gz index f77f4096ee42..94df53399be4 100644 Binary files a/sec-keys/Manifest.gz and b/sec-keys/Manifest.gz differ diff --git a/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild b/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild index 66e10f50de5a..559ffb3e026f 100644 --- a/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild +++ b/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild @@ -10,7 +10,7 @@ S="${WORKDIR}" LICENSE="public-domain" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux" src_install() { local files=( ${A} ) diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz index 24d2ce5f6a51..43fdb58e0be6 100644 Binary files a/sys-apps/Manifest.gz and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/baobab/Manifest b/sys-apps/baobab/Manifest index 9240e069ebca..f1fc49b7964c 100644 --- a/sys-apps/baobab/Manifest +++ b/sys-apps/baobab/Manifest @@ -1,3 +1,4 @@ DIST baobab-41.0.tar.xz 586228 BLAKE2B 8c06dd4c62dd377e2338df280dd1f78dcd6e0c13713f06bb126f96e658e42b9ed5f1cffa9f7445f2d854cf42c09b93d72f4ff82a80df5dd4a4d395978fe2ecff SHA512 4f41cac42491afb98855771a621573689f2b35c0a2602799af9f88adf901a5c62c9f8e4b70be43ed27024deba860b128bc22b8a7782ac207a5746b4df6b65aa0 DIST baobab-43.0.tar.xz 594832 BLAKE2B 1cf42a475bf08ddf85d3fb2944f80e274eeb47d1e3f44fcfba9e53c9302a5c3f5fcbe9378dc74059199e2ed38945af16eca2456f7cede9b45228b90e14ae8b96 SHA512 d368bde1ba1fafbe908c5e8e0e5cd9d593d3f3cc551a7b1f3be68624bd7ee8b1dac6374fc9031c7d4c53240dda739974b5c71653227251bb5b8fbcd332900b91 +DIST baobab-44.0.tar.xz 596552 BLAKE2B c58093dec9789a62db3f319d16010572439aba94629e82a5dc16912c08604f8d3800e08431855bd7d7cc87fcbc8643698f6a87ab3b0e5489552a601b1c7beaaf SHA512 a9b8ca9226b9464f33a06810ce5c889dcc50fa2b0c05343fcb88b0d453528fbf7de256b75f55e99a24f33b91bdd69a03f6ea3ea3e5d793033a8cce6345b3cac3 DIST baobab-44.rc.tar.xz 596580 BLAKE2B 70e684edd3fffeacc9c325d6057eea935caa099c3db24d0e1adb99be634c323e6dc285a41b7b06ea2895183abbbf7f4af063c50c846f9596b7d0994bf2b2ee76 SHA512 750c32f3b3671fbe453ac05e5e0859d2bad74f6726c7704a94516c140f366c5513e81b1e79dc285006186b17e05fb62e4b37bdcb8384ddd08eec8926d33040e5 diff --git a/sys-apps/baobab/baobab-44.0.ebuild b/sys-apps/baobab/baobab-44.0.ebuild new file mode 100644 index 000000000000..75b5c6a7d72a --- /dev/null +++ b/sys-apps/baobab/baobab-44.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson vala xdg + +DESCRIPTION="Disk usage browser for GNOME" +HOMEPAGE="https://wiki.gnome.org/Apps/Baobab" + +LICENSE="GPL-2+ FDL-1.1+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + >=dev-libs/glib-2.44:2 + >=gui-libs/gtk-4.4.0:4 + >=gui-libs/libadwaita-1.2:1 +" +DEPEND="${RDEPEND}" +BDEPEND=" + $(vala_depend) + >=gui-libs/libadwaita-1.2:1[vala] + dev-util/itstool + >=sys-devel/gettext-0.21 + virtual/pkgconfig +" + +src_prepare() { + default + vala_setup + xdg_environment_reset +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/sys-apps/coreutils/Manifest b/sys-apps/coreutils/Manifest index 03a6a957fb99..2e7cdc716049 100644 --- a/sys-apps/coreutils/Manifest +++ b/sys-apps/coreutils/Manifest @@ -3,5 +3,5 @@ DIST coreutils-8.32.tar.xz 5547836 BLAKE2B 0ad99c176c19ec214fcfd0845523e5362f015 DIST coreutils-9.0_p20220409-patches-01.tar.xz 6244 BLAKE2B 8ca9855680719660782931467ec70095c826e66b9850890b8cf456963f8114f63940707386b97c766172d01e55e17b7db2aa1c329208a873a76e2293b29f565f SHA512 4b43c25832122d241f33e6b4eff24bc1fa045b9ca5af45a49d22ecb1fa282986c4e4a045ef24c34b3d94fd9a2247247c42c344261e3f464d881969e6f3351d3f DIST coreutils-9.1.tar.xz 5712104 BLAKE2B f5654e4935535275615d44a56c071d1c0746af36cf4615fcc0a5a0d387af9c9023adac31f31a52e16b3d1105b9d4c0fb7ebff9b2862498849f867a866049dd6e SHA512 a6ee2c549140b189e8c1b35e119d4289ec27244ec0ed9da0ac55202f365a7e33778b1dc7c4e64d1669599ff81a8297fe4f5adbcc8a3a2f75c919a43cd4b9bdfa DIST coreutils-9.1.tar.xz.sig 833 BLAKE2B e9627a066f3c67596feaa8d43d5785076230f440bacea84d8b5736e51a22787c2d5df1f3e2cd8523d01fb7b468933d3c17fce3cb1fbefef322a0e0d820b81842 SHA512 9f0766531afd4faa3e2c337730f61db55605cf06729e9c61f644594883732c2e0b1ddb0005b492be309c53e6f45b8ff875398163a48699d52517ea49e9bdbc91 -DIST coreutils-9.1_p20230313.tar.xz 5741248 BLAKE2B b86a67c266fad13fc1d9a4c4775c60e480ab2925e1d2c8313d9da2e4eb45bb609641fa28336c54f05d7e22627906196ac52451a5fc18f538b6b133d7fdef56a7 SHA512 3046a4e02143105c4c7936ce67a59f99a3193fbb28b5bb491fcbb86a8698bf9f9bb83ea94aad225afaf3e2dd8a704fb77298e41fc3aebd1a42e3897e105bed0e -DIST coreutils-9.1_p20230313.tar.xz.sig 833 BLAKE2B 44db6c8295b6edfa435853c9391f43f47cfe4ffbc7b58b5fc031c5f05fd4f850ec76bff79d9b53ae0aae84278b51cf3acf00a0a062b5928b407042a5072f65e8 SHA512 078b5158a6ad14ba51fb4e5bc4b4effda8011e6e12ebdc0cd864227c8405f8092502bca9b6bde49a802f77dea2b9c3441af0fd3bafc08354e1e8cc038fd42f6d +DIST coreutils-9.2.tar.xz 5773008 BLAKE2B 026e01718d79dd95bf645088d395584cbd422bb318f414a6ad325aea5deeec7aecb63217c1ce8231e81dd3b6fee1c85c60616c57ef8e2e1d0b9d764fa5a68908 SHA512 7e3108fefba4ef995cc73c64ac5f4e09827a44649a97ddd624eb61d67ce82da5ed6dc8c0f79d3e269f5cdb7d43877a61ef5b93194dd905bec432a7e31f9f479c +DIST coreutils-9.2.tar.xz.sig 833 BLAKE2B 225f6ea9d6c2a2b0e47093b6c10d648b8d847daf0733eeb779eb01cffde47f67b3328bdfb214298d669689f5de76f3c64384a6471dfc4ccc3a238bfc1943e654 SHA512 4219f3103d829841a11bf1fe42ae277a44347e555fbbaf48e5e87cce48deb96753cb6d25f2571b88685a164acb9f016ff7ea02346b799ce954599fa0124ef070 diff --git a/sys-apps/coreutils/coreutils-9.1_p20230313.ebuild b/sys-apps/coreutils/coreutils-9.2.ebuild similarity index 100% rename from sys-apps/coreutils/coreutils-9.1_p20230313.ebuild rename to sys-apps/coreutils/coreutils-9.2.ebuild diff --git a/sys-apps/dmidecode/dmidecode-3.4.ebuild b/sys-apps/dmidecode/dmidecode-3.4-r1.ebuild similarity index 92% rename from sys-apps/dmidecode/dmidecode-3.4.ebuild rename to sys-apps/dmidecode/dmidecode-3.4-r1.ebuild index 82a023f12031..cf9d5fc8f094 100644 --- a/sys-apps/dmidecode/dmidecode-3.4.ebuild +++ b/sys-apps/dmidecode/dmidecode-3.4-r1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 # Upstream often give "recommended patches" at https://www.nongnu.org/dmidecode/ # Check regularly after releases! -inherit toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="DMI (Desktop Management Interface) table related utilities" HOMEPAGE="https://www.nongnu.org/dmidecode/" @@ -29,6 +29,8 @@ src_prepare() { } src_compile() { + append-lfs-flags + emake \ CFLAGS="${CFLAGS} ${CPPFLAGS}" \ LDFLAGS="${LDFLAGS}" \ diff --git a/sys-apps/dmidecode/dmidecode-3.5.ebuild b/sys-apps/dmidecode/dmidecode-3.5-r1.ebuild similarity index 95% rename from sys-apps/dmidecode/dmidecode-3.5.ebuild rename to sys-apps/dmidecode/dmidecode-3.5-r1.ebuild index fd9962c60623..516ba585f352 100644 --- a/sys-apps/dmidecode/dmidecode-3.5.ebuild +++ b/sys-apps/dmidecode/dmidecode-3.5-r1.ebuild @@ -5,7 +5,7 @@ EAPI=8 # Upstream often give "recommended patches" at https://www.nongnu.org/dmidecode/ # Check regularly after releases! -inherit toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="DMI (Desktop Management Interface) table related utilities" HOMEPAGE="https://www.nongnu.org/dmidecode/" @@ -29,6 +29,8 @@ src_prepare() { } src_compile() { + append-lfs-flags + emake \ CFLAGS="${CFLAGS} ${CPPFLAGS}" \ LDFLAGS="${LDFLAGS}" \ diff --git a/sys-apps/grep/Manifest b/sys-apps/grep/Manifest index 4c841f06709f..d1a05497f036 100644 --- a/sys-apps/grep/Manifest +++ b/sys-apps/grep/Manifest @@ -2,5 +2,7 @@ DIST grep-3.7.tar.xz 1641196 BLAKE2B acf03b1fe8065dac48d686de070bab9ecddae65c97f DIST grep-3.7.tar.xz.sig 833 BLAKE2B 02a2850e22e8054dcfd02b6f08747a97d43dae9adb908516bdaed35750aa7f773832ad1b0b4c53d7b0ebc8f1fe2979e7938bbbeeb09ea00c11b4a0d5846c7b9c SHA512 9db28883b696fbbb0fad32f4ecd168954dc475d5f0a8f2b4f960ff615ef7dd8348a7caaee85a96287824472a29485ff921af121c582083ca5ad5c30960f99cf4 DIST grep-3.8.tar.xz 1709536 BLAKE2B 24cf6f7aa35c85f59f508969ee9731c5be1e5c613e64e636f464bbdde917bb99ba739e4b82abf08da127ad0400d62e27d139f85142035745121d381982ec6c36 SHA512 2014519a80c6dcd799837e1bd7d9d5ebe8729ec54b0dc76981dac4755a9a8a9f200470cdcc911e2825bed8162e61da39e3dd60289f7393b48bf67314077d0c79 DIST grep-3.8.tar.xz.sig 833 BLAKE2B 40f472389705375611015ba0eb85eb32643304b1a324877a75821d086a128a20d00df3d7cd960ec45709f40f21488bbcf993c6fe667ef23663688b33296e650b SHA512 8266b58485f225c2189814e3898c72e59d251b729e0c302d31f57abdb7ac2e6e28dde2c5c8095673b6f007b2a3ebc26db1dca910a7771aba80dad4b3c6761ee4 +DIST grep-3.9.8-026c.tar.xz 1685328 BLAKE2B 1505fabf4614ba270cc7bc2c71152aa611050f0431687894e187ec93d069ed6d9b8a888406ea7461216fb9d8d42fa5ad293161c2535121875a8b21eb64b5fc9e SHA512 b11ff829590a875b7d53bb3f7e8c46f01b5dc89133eacb4a55941a1906ca1d2b99eeaef1fd0d07b9b265b972bc782ac311b5e5f0e43f8ef51c5c944b1e22317b +DIST grep-3.9.8-026c.tar.xz.sig 833 BLAKE2B 84c2aff801eaf075be6fcf985ffb4ea144c2c07d43b9df71e123b9b87b504ab3065e84ae1ee4a18c902215afbef4ecdc772bbede857cce74188099f6222be60e SHA512 6274b204156eb91dbcc65e279f808e8f865220ff10550c468d44823e65ae0e1d7da51d8468315fff326bfc4f13f9edbdc873799ed4cfbce388bd1a76781e675b DIST grep-3.9.tar.xz 1680380 BLAKE2B 33fefce2a831ad6f00f2eb1d8a063cf280635f2d9c481c98981f7a2ff143c846ab570a448c9c02c3ba08cf2c98612cb364d2d033baf92d62c4515315453cc6f9 SHA512 38aaa28bded9f6d1d527356e9e63bb1dafb4ec8f09e83f2d3bc86c1d6af1a5a8cb9895067375b5b8929ec2cba6ab71c369ed4c6e2a0f7a01dec3c11a6f4c1836 DIST grep-3.9.tar.xz.sig 833 BLAKE2B bbb8a07986368755276c6648378afdbec44da2873574ebb0dce634b0e90da2cb6fd0eaf64969843e2fe65ae5e83aba6b1fea9fde9b246fbedf982393cf54b715 SHA512 d50e11d0d333c09a6afcae511c93cfb54d9dd0a6600f271abf5e103cbf8bdcf9b8606924d7c71770e20c35df5d5468dc339cea1f05d257776734e17f8378d891 diff --git a/sys-apps/grep/grep-3.9_p20230319.ebuild b/sys-apps/grep/grep-3.9_p20230319.ebuild new file mode 100644 index 000000000000..9b91be42e509 --- /dev/null +++ b/sys-apps/grep/grep-3.9_p20230319.ebuild @@ -0,0 +1,115 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/grep.asc +inherit flag-o-matic verify-sig + +DESCRIPTION="GNU regular expression matcher" +HOMEPAGE="https://www.gnu.org/software/grep/" + +if [[ ${PV} == *_p* ]] ; then + # Subscribe to the 'platform-testers' ML to find these. + # Useful to test on our especially more niche arches and report issues upstream. + MY_COMMIT="8-026c" + MY_P=${PN}-$(ver_cut 1-2).${MY_COMMIT} + SRC_URI="https://meyering.net/${PN}/${MY_P}.tar.xz" + SRC_URI+=" verify-sig? ( https://meyering.net/${PN}/${MY_P}.tar.xz.sig )" + S="${WORKDIR}"/${MY_P} +else + SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" + SRC_URI+=" verify-sig? ( mirror://gnu/${PN}/${P}.tar.xz.sig )" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +fi + +LICENSE="GPL-3+" +SLOT="0" +IUSE="+egrep-fgrep nls pcre static" + +# We lack dev-libs/libsigsegv[static-libs] for now +REQUIRED_USE="static? ( !sparc )" + +LIB_DEPEND=" + pcre? ( >=dev-libs/libpcre2-7.8-r1[static-libs(+)] ) + sparc? ( dev-libs/libsigsegv ) +" +RDEPEND=" + !static? ( ${LIB_DEPEND//\[static-libs(+)]} ) + nls? ( virtual/libintl ) + virtual/libiconv +" +DEPEND=" + ${RDEPEND} + static? ( ${LIB_DEPEND} ) +" +BDEPEND=" + virtual/pkgconfig + nls? ( sys-devel/gettext ) + verify-sig? ( sec-keys/openpgp-keys-grep ) +" + +DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) + +QA_CONFIG_IMPL_DECL_SKIP=( + # Either gnulib FPs or fixed in newer autoconf, not worth autoreconf here for now? + MIN + alignof + static_assert +) + +src_prepare() { + default + + # bug #523898 + sed -i \ + -e "s:@SHELL@:${EPREFIX}/bin/sh:g" \ + -e "s:@grep@:${EPREFIX}/bin/grep:" \ + src/egrep.sh || die +} + +src_configure() { + use static && append-ldflags -static + + # We used to turn this off unconditionally (bug #673524) but we now + # allow it for cases where libsigsegv is better for userspace handling + # of stack overflows. + # In particular, it's necessary for sparc: bug #768135 + export ac_cv_libsigsegv=$(usex sparc) + + local myeconfargs=( + --bindir="${EPREFIX}"/bin + $(use_enable nls) + $(use_enable pcre perl-regexp) + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + default + + if use egrep-fgrep ; then + # Delete the upstream wrapper variants which warn on egrep+fgrep use + rm "${ED}"/bin/{egrep,fgrep} || die + + into / + # Install egrep, fgrep which don't warn. + # + # We do this by default to avoid breakage in old scripts + # and such which don't expect unexpected output on stderr, + # we've had examples of builds failing because foo-config + # starts returning a warning. + # + # https://lists.gnu.org/archive/html/bug-grep/2022-10/msg00000.html + newbin - egrep <<-EOF + #!/usr/bin/env sh + exec "${EPREFIX}/bin/grep" -E "\$@" + EOF + + newbin - fgrep <<-EOF + #!/usr/bin/env sh + exec "${EPREFIX}/bin/grep" -F "\$@" + EOF + fi +} diff --git a/sys-apps/hd-idle/hd-idle-1.05-r2.ebuild b/sys-apps/hd-idle/hd-idle-1.05-r2.ebuild index 7c244e6021ed..139080ba4c64 100644 --- a/sys-apps/hd-idle/hd-idle-1.05-r2.ebuild +++ b/sys-apps/hd-idle/hd-idle-1.05-r2.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" S="${WORKDIR}/${PN}" diff --git a/sys-apps/inxi/inxi-3.3.20.1.ebuild b/sys-apps/inxi/inxi-3.3.20.1.ebuild index 4612496598d1..a706e26a71c6 100644 --- a/sys-apps/inxi/inxi-3.3.20.1.ebuild +++ b/sys-apps/inxi/inxi-3.3.20.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${MY_PV}" LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="amd64 arm ~arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86" IUSE="bluetooth hddtemp opengl" RDEPEND="dev-lang/perl diff --git a/sys-apps/moar/Manifest b/sys-apps/moar/Manifest index 70b13dff8acc..256dea1116ad 100644 --- a/sys-apps/moar/Manifest +++ b/sys-apps/moar/Manifest @@ -1,4 +1,4 @@ -DIST moar-1.11.4-deps.tar.xz 25976728 BLAKE2B b1686e6608c8f27afa8704f7158a3d48482a580d8738389af78010a8d33c318152f6155b7c7be42058695653457eab75edb75905614c874f8a5ef15961b6689e SHA512 84b92f2b7d6b0cbc885e5486ca0d1051e3f3febe6a74e1e3afb11193c4b045dac28311d1f8f3a70eb996780c981f3f935174e2885c177c6a5f2c08c622b36fb5 -DIST moar-1.11.4.tar.gz 2777910 BLAKE2B 7d192436c3c53200d8d29e7251d3f73b825b2a9364341d53d3b5a594d93c10bb5b1db4d9658adbce57d9fa111b140bd354c84211b776eb48fd2f27bda0f6dc77 SHA512 56fac97a8b897b4e9d086088153816b98b45897d4ddec173fbe25f8b3526207d7a3f8f7d5821dc1fc243acfad701c2920c6d4b68cdf513984bdcf5fbc4112268 DIST moar-1.12.0-deps.tar.xz 26291664 BLAKE2B ebc16cbe23c26eacd84376b6e99d7484c753a065edd26d3d0ed7708595de61d6038f53f27c1bdc05032576eb11be3e2cbedbf9bdd2ecf8f8d467fd89eaf0a580 SHA512 dfd236a76bf4bb680b25a938e08bbd6874a554e9668f73af23d695c20403d1967f89fbeebfd54bb333bd86a7ca3e652a8418c6b9ada212aeb861cce4a70f0faf DIST moar-1.12.0.tar.gz 2777752 BLAKE2B fa2f442e2b0e6d909e77be8df873c7b08a82b43d881583a7f1c4a3591f2bbe90b5adc77524b92e0fcf071ce4a1c18d8c58c7cce18807974fae7342148d7fbe28 SHA512 bfa15f5fd3ffa4146adec9110fbf8fd3bc31c95877f5e24ab911d1ef9e357dd41b46e2f466f2ce7d2fc986e463dcf2e1132c0a42ebfe2c46a8cd216355c4b98b +DIST moar-1.13.0-deps.tar.xz 4808044 BLAKE2B cd7808337af5acb2bd6cb4b9696c9d04803df033b5a1d4904418602dc629cef7c16172b0eaa57644be76a02b6727d36f767bfafba1377ea95eb827fbb4a1d34b SHA512 e51ca15137f4b5dc5ea447c200341aaeb06cd77118cd8f2fb3efca0ffc2d4199e00687f980803c4ff09c535621b58206b22bff2c944ad8786c73c3a7c886d6c6 +DIST moar-1.13.0.tar.gz 2778084 BLAKE2B 6f3dfc1b997c0176b57e613a822df4f25d7bb509ce245d3c9711bebc4dfccee4d423ce02dbf2845377b856a909cc9e5d8f88d9c65a85d8830bd713ef93729250 SHA512 fca30d496c2439cf5d1204eaa5c5114ef13522f38c8ddcc771ea45aee5faafb5aaf48a8947ff7d5846556130368625f47e851c2494489eb9371807eabb4c7c49 diff --git a/sys-apps/moar/moar-1.11.4.ebuild b/sys-apps/moar/moar-1.13.0.ebuild similarity index 100% rename from sys-apps/moar/moar-1.11.4.ebuild rename to sys-apps/moar/moar-1.13.0.ebuild diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest index 58289a9dee47..18632e0ed2d0 100644 --- a/sys-apps/portage/Manifest +++ b/sys-apps/portage/Manifest @@ -1,3 +1,4 @@ DIST portage-3.0.43.tar.bz2 1139615 BLAKE2B e0f2646c3b6d5d49ec23038ad27507f7b9c0c03b848e82aff336896802c07b29344f924c4525d880f8895ba38f8116a7c79ecea51c794a433da9bd146efadc20 SHA512 b5e5339f3b5446f5c8f9b319e86e82d260e004b0606c3d0eadf09f91c95de0279c64c0fc4d7f6251ebd2cf7a65ba1ba37d752ed48b712e72b8c024835e747691 DIST portage-3.0.44.tar.bz2 1140911 BLAKE2B 06f584e6e37bbb309b9bb0e29ba4381eadd4ae6246aeb1045e3a5c5dcb33d74f74e74aa3f2325acbf37e16a535095c433f2796ed042f73cea5e208150e210cb0 SHA512 d40c95f3a31c5e2ae35374243c40c8d1f6b47b7c89f6a711a12d8744cb6848a85443298c0f947475b32acf52332e7f09b1e85915149ab8363930c0404f08410e DIST portage-3.0.45.2.tar.bz2 1145556 BLAKE2B 09cd28839418f91f512ce4ddf45addf37f72d07d6ee84812519239245529c6b5fbe63e45ee3fe3048fb8b3aced2a18c0f30fbdb261a793bae87243e9258799bd SHA512 16be3572d74b26ca5ed62392e3da701cc8e93e6d6d35024a2d10b0f971618404a135645a869d8df2aedf9e3e9201e7ad912a427e9593065fe20ada7a0fedf353 +DIST portage-3.0.45.3.tar.bz2 1146552 BLAKE2B 0506124bf47d71df699c2ecb2846b19f68b39813409e141fe292e237093eeb4f3d6fb771f6328624e0182322f71f42e629c2c58a2c590efb8697fa61b03d73a4 SHA512 89757efb71127249356c7d4ea1a05de7409285abaf045b2c6b5ddd463bef997db497df6ea3a05085656eced49bee625732bfb2d0771b7592f883f8712e547415 diff --git a/sys-apps/portage/portage-3.0.45.3.ebuild b/sys-apps/portage/portage-3.0.45.3.ebuild new file mode 100644 index 000000000000..c226bd813658 --- /dev/null +++ b/sys-apps/portage/portage-3.0.45.3.ebuild @@ -0,0 +1,284 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_REQ_USE='bzip2(+),threads(+)' +TMPFILES_OPTIONAL=1 + +inherit distutils-r1 linux-info toolchain-funcs tmpfiles prefix + +DESCRIPTION="The package management and distribution system for Gentoo" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage" +SRC_URI="https://gitweb.gentoo.org/proj/portage.git/snapshot/${P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +SLOT="0" +IUSE="apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify selinux test xattr" +RESTRICT="!test? ( test )" + +BDEPEND=" + app-arch/xz-utils + test? ( dev-vcs/git ) +" +DEPEND=" + !build? ( $(python_gen_impl_dep 'ssl(+)') ) + >=app-arch/tar-1.27 + dev-lang/python-exec:2 + >=sys-apps/sed-4.0.5 sys-devel/patch + doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) + apidoc? ( + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/sphinx-epytext[${PYTHON_USEDEP}] + ) +" +# Require sandbox-2.2 for bug #288863. +# For whirlpool hash, require python[ssl] (bug #425046). +# For compgen, require bash[readline] (bug #445576). +# app-portage/gemato goes without PYTHON_USEDEP since we're calling +# the executable. +RDEPEND=" + acct-user/portage + app-arch/zstd + >=app-arch/tar-1.27 + dev-lang/python-exec:2 + >=sys-apps/findutils-4.4 + !build? ( + >=sys-apps/sed-4.0.5 + >=app-shells/bash-5.0:0[readline] + >=app-admin/eselect-1.2 + rsync-verify? ( + >=app-portage/gemato-14.5[${PYTHON_USEDEP}] + >=sec-keys/openpgp-keys-gentoo-release-20220101 + >=app-crypt/gnupg-2.2.4-r2[ssl(-)] + ) + ) + elibc_glibc? ( >=sys-apps/sandbox-2.2 ) + elibc_musl? ( >=sys-apps/sandbox-2.2 ) + kernel_linux? ( sys-apps/util-linux ) + >=app-misc/pax-utils-0.1.17 + selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] ) + xattr? ( kernel_linux? ( + >=sys-apps/install-xattr-0.3 + ) ) + !> cnf/make.globals || die + fi + + if use native-extensions && ! tc-is-cross-compiler; then + printf "[build_ext]\nportage_ext_modules=true\n" >> \ + setup.cfg || die + fi + + if ! use ipc ; then + einfo "Disabling ipc..." + sed -e "s:_enable_ipc_daemon = True:_enable_ipc_daemon = False:" \ + -i lib/_emerge/AbstractEbuildProcess.py || \ + die "failed to patch AbstractEbuildProcess.py" + fi + + if use xattr && use kernel_linux ; then + einfo "Adding FEATURES=xattr to make.globals ..." + echo -e '\nFEATURES="${FEATURES} xattr"' >> cnf/make.globals \ + || die "failed to append to make.globals" + fi + + if use build || ! use rsync-verify; then + sed -e '/^sync-rsync-verify-metamanifest/s|yes|no|' \ + -e '/^sync-webrsync-verify-signature/s|yes|no|' \ + -i cnf/repos.conf || die "sed failed" + fi + + if [[ -n ${EPREFIX} ]] ; then + einfo "Setting portage.const.EPREFIX ..." + hprefixify -e "s|^(EPREFIX[[:space:]]*=[[:space:]]*\").*|\1${EPREFIX}\"|" \ + -w "/_BINARY/" lib/portage/const.py + + einfo "Prefixing shebangs ..." + > "${T}/shebangs" || die + while read -r -d $'\0' ; do + local shebang=$(head -n1 "$REPLY") + if [[ ${shebang} == "#!"* && ! ${shebang} == "#!${EPREFIX}/"* ]] ; then + echo "${REPLY}" >> "${T}/shebangs" || die + fi + done < <(find . -type f -executable ! -name etc-update -print0) + + if [[ -s ${T}/shebangs ]]; then + xargs sed -i -e "1s:^#!:#!${EPREFIX}:" < "${T}/shebangs" || die "sed failed" + fi + + einfo "Adjusting make.globals, repos.conf and etc-update ..." + hprefixify cnf/{make.globals,repos.conf} bin/etc-update + + if use prefix-guest ; then + sed -e "s|^\(main-repo = \).*|\\1gentoo_prefix|" \ + -e "s|^\\[gentoo\\]|[gentoo_prefix]|" \ + -e "s|^\(sync-uri = \).*|\\1rsync://rsync.prefix.bitzolder.nl/gentoo-portage-prefix|" \ + -i cnf/repos.conf || die "sed failed" + fi + fi + + cd "${S}/cnf" || die + if [[ -f "make.conf.example.${ARCH}".diff ]] ; then + patch make.conf.example "make.conf.example.${ARCH}".diff || \ + die "Failed to patch make.conf.example" + else + eerror "" + eerror "Portage does not have an arch-specific configuration for this arch." + eerror "Please notify the arch maintainer about this issue. Using generic." + eerror "" + fi +} + +python_compile_all() { + local targets=() + use doc && targets+=( docbook ) + use apidoc && targets+=( apidoc ) + + if [[ ${targets[@]} ]]; then + esetup.py "${targets[@]}" + fi +} + +python_test() { + esetup.py test +} + +python_install() { + # Install sbin scripts to bindir for python-exec linking + # they will be relocated in pkg_preinst() + distutils-r1_python_install \ + --system-prefix="${EPREFIX}/usr" \ + --bindir="$(python_get_scriptdir)" \ + --docdir="${EPREFIX}/usr/share/doc/${PF}" \ + --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \ + --portage-bindir="${EPREFIX}/usr/lib/portage/${EPYTHON}" \ + --sbindir="$(python_get_scriptdir)" \ + --sysconfdir="${EPREFIX}/etc" \ + "${@}" +} + +python_install_all() { + distutils-r1_python_install_all + + local targets=() + use doc && targets+=( + install_docbook + --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" + ) + use apidoc && targets+=( + install_apidoc + --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" + ) + + # install docs + if [[ ${targets[@]} ]]; then + esetup.py "${targets[@]}" + fi + + dotmpfiles "${FILESDIR}"/portage-{ccache,tmpdir}.conf + + # Due to distutils/python-exec limitations + # these must be installed to /usr/bin. + local sbin_relocations='archive-conf dispatch-conf emaint env-update etc-update fixpackages regenworld' + einfo "Moving admin scripts to the correct directory" + dodir /usr/sbin + for target in ${sbin_relocations}; do + einfo "Moving /usr/bin/${target} to /usr/sbin/${target}" + mv "${ED}/usr/bin/${target}" "${ED}/usr/sbin/${target}" || die "sbin scripts move failed!" + done +} + +pkg_preinst() { + if ! use build; then + python_setup + local sitedir=$(python_get_sitedir) + [[ -d ${D}${sitedir} ]] || die "${D}${sitedir}: No such directory" + env -u DISTDIR \ + -u PORTAGE_OVERRIDE_EPREFIX \ + -u PORTAGE_REPOSITORIES \ + -u PORTDIR \ + -u PORTDIR_OVERLAY \ + PYTHONPATH="${D}${sitedir}${PYTHONPATH:+:${PYTHONPATH}}" \ + "${PYTHON}" -m portage._compat_upgrade.default_locations || die + + env -u BINPKG_COMPRESS -u PORTAGE_REPOSITORIES \ + PYTHONPATH="${D}${sitedir}${PYTHONPATH:+:${PYTHONPATH}}" \ + "${PYTHON}" -m portage._compat_upgrade.binpkg_compression || die + + env -u FEATURES -u PORTAGE_REPOSITORIES \ + PYTHONPATH="${D}${sitedir}${PYTHONPATH:+:${PYTHONPATH}}" \ + "${PYTHON}" -m portage._compat_upgrade.binpkg_multi_instance || die + fi + + # elog dir must exist to avoid logrotate error for bug #415911. + # This code runs in preinst in order to bypass the mapping of + # portage:portage to root:root which happens after src_install. + keepdir /var/log/portage/elog + # This is allowed to fail if the user/group are invalid for prefix users. + if chown portage:portage "${ED}"/var/log/portage{,/elog} 2>/dev/null ; then + chmod g+s,ug+rwx "${ED}"/var/log/portage{,/elog} + fi + + if has_version "<${CATEGORY}/${PN}-2.3.77"; then + elog "The emerge --autounmask option is now disabled by default, except for" + elog "portions of behavior which are controlled by the --autounmask-use and" + elog "--autounmask-license options. For backward compatibility, previous" + elog "behavior of --autounmask=y and --autounmask=n is entirely preserved." + elog "Users can get the old behavior simply by adding --autounmask to the" + elog "make.conf EMERGE_DEFAULT_OPTS variable. For the rationale for this" + elog "change, see https://bugs.gentoo.org/658648." + fi +} + +pkg_postinst() { + # Warn about obsolete "enotice" script, bug #867010 + local bashrc=${EROOT}/etc/portage/profile/profile.bashrc + if [[ -e ${bashrc} ]] && grep -q enotice "${bashrc}"; then + eerror "Obsolete 'enotice' script detected!" + eerror "Please remove this from ${bashrc} to avoid problems." + eerror "See bug 867010 for more details." + fi +} diff --git a/sys-apps/texinfo/Manifest b/sys-apps/texinfo/Manifest index 7e5010a2e513..2c5caf77d1c8 100644 --- a/sys-apps/texinfo/Manifest +++ b/sys-apps/texinfo/Manifest @@ -1,2 +1,3 @@ DIST texinfo-6.8.tar.xz 4961528 BLAKE2B 0256dac5ba9c7f171c970644907b763f7a88fd9995111244df0458591aed1a0fe94c76045dde69f9138d65d6f780aae6869bbbc013f58e04ae7c62456b222bbb SHA512 0ff9290b14e4d83e32b889cfa24e6d065f98b2a764daf6b92c6c895fddbb35258398da6257c113220d5a4d886f7b54b09c4b117ca5eacfee6797f9bffde0f909 +DIST texinfo-7.0.2.90.tar.xz 4876224 BLAKE2B 632edc0e9312f6042eb6ea0da0a18f33fd46c78e089bbead1846519f501be3e4cdf488bf6965f7f27073c72860a8750f6fdc032911ca2f1a506ccf80ba4e1536 SHA512 3d84795de2a7bc9dc35729801fa6c9e32c8ecaf6c0bbfa834107a5786d191d5dbc4f053394b173eb7c49fbaa241c2374073ad499a6267c7cba680969bb23f4a5 DIST texinfo-7.0.2.tar.xz 4875424 BLAKE2B 23737cc800392c949add14c1d0a01a294e8c224d958c03325c96d6540dcfae49db5c2d4a8c29310c0603f8ac8477f6ee00a14db4aa6caab317b19e776139e617 SHA512 26dd5bb1392f2197ecde296ba157d4533f4b11fadf1238481da4cf2b3796c665ce96049df8d2f9a6d4fa22b7e9013d9978d195e525288663f0a54482bbc22b2b diff --git a/sys-apps/texinfo/texinfo-7.0.2.90.ebuild b/sys-apps/texinfo/texinfo-7.0.2.90.ebuild new file mode 100644 index 000000000000..ab957b84c675 --- /dev/null +++ b/sys-apps/texinfo/texinfo-7.0.2.90.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Note: if your package uses the texi2dvi utility, it must depend on the +# virtual/texi2dvi package to pull in all the right deps. The tool is not +# usable out-of-the-box because it requires the large tex packages. + +EAPI=8 + +inherit flag-o-matic toolchain-funcs + +DESCRIPTION="The GNU info program and utilities" +HOMEPAGE="https://www.gnu.org/software/texinfo/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.savannah.gnu.org/git/texinfo.git" + REGEN_BDEPEND=" + >=sys-devel/autoconf-2.62 + >=sys-devel/automake-1.16 + sys-devel/libtool + " +elif [[ $(ver_cut 3) -ge 90 || $(ver_cut 4) -ge 90 ]] ; then + SRC_URI="https://alpha.gnu.org/gnu/${PN}/${P}.tar.xz" + REGEN_BDEPEND="" +else + SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + REGEN_BDEPEND="" +fi + +LICENSE="GPL-3+" +SLOT="0" +IUSE="nls +standalone static" + +RDEPEND=" + !=app-text/tetex-2* + >=sys-libs/ncurses-5.2-r2:= + virtual/perl-Data-Dumper + virtual/perl-Encode + standalone? ( >=dev-lang/perl-5.8.1 ) + !standalone? ( >=dev-lang/perl-5.8.1:= ) + nls? ( virtual/libintl ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + ${REGEN_BDEPEND} + nls? ( >=sys-devel/gettext-0.19.6 ) +" + +src_prepare() { + default + + if [[ ${PV} == 9999 ]]; then + ./autogen.sh || die + fi + + # Needed if a patch touches install-info.c + #touch man/install-info.1 || die + + if use prefix ; then + sed -i -e '1c\#!/usr/bin/env sh' util/texi2dvi util/texi2pdf || die + touch {doc,man}/{texi2dvi,texi2pdf,pdftexi2dvi}.1 || die + fi +} + +src_configure() { + # Respect compiler and CPPFLAGS/CFLAGS/LDFLAGS for Perl extensions + # bug #622576 + local -x PERL_EXT_CC="$(tc-getCC)" PERL_EXT_CPPFLAGS="${CPPFLAGS}" + local -x PERL_EXT_CFLAGS="${CFLAGS}" PERL_EXT_LDFLAGS="${LDFLAGS}" + + use static && append-ldflags -static + + local myeconfargs=( + --cache-file="${S}"/config.cache + $(use_enable nls) + $(use_enable !standalone perl-xs) + ) + + econf "${myeconfargs[@]}" +} diff --git a/sys-apps/util-linux/Manifest b/sys-apps/util-linux/Manifest index 0748d8f9a93e..8026f61fcccc 100644 --- a/sys-apps/util-linux/Manifest +++ b/sys-apps/util-linux/Manifest @@ -1,3 +1,6 @@ DIST util-linux-2.37.4.tar.xz 6114232 BLAKE2B 7f6cd12ec9bc68a6db787be78c1ee19fdfbb37710df36d4278d869676ba531afd414097e57e5287efed6c7c80d6b6ef36d5812ff2bea611080d3ce5bf5ad4ac5 SHA512 ada2629b0a8e83ea83513e04f7b1ccceb3b8ab82acd119c5d8389d1abc48c92d0b591f39fb34b1fd65db3ab630f03a672a9f3dacf1a6e4f124bdb083fc1be6d7 DIST util-linux-2.38.1.tar.sign 833 BLAKE2B 2468c6b8c881d7a17666aac954edfd421085111937f5d0daada37a679e9bbfe61fc98bb57cca9bf7bea20be483f38e2a758039f9baf5b1a901852e2b5dd014d8 SHA512 d8b3e936065ae1dc105b8ce773c874bb037ebf84ee571676509543f79c39950180e7f252c6b0d4500119568ed4ac3aa7117793de839f983e9287f26649e91dad DIST util-linux-2.38.1.tar.xz 7495904 BLAKE2B a0e86ca62f82adaccc01ad6ec5a058dac429b81c310989cbad136f96c2770c60bbd4287067817520e8e0653146a10f13128e0af32122402bab416e1c2d6680b8 SHA512 07f11147f67dfc6c8bc766dfc83266054e6ede776feada0566b447d13276b6882ee85c6fe53e8d94a17c03332106fc0549deca3cf5f2e92dda554e9bc0551957 +DIST util-linux-2.39-rc1.tar.sign 833 BLAKE2B d540ee98c09879b26a1175b00145872b518d30edc91a1d4c625da502d8fffa8a5fb7ec7f36151e5da4a0c215cc1e53acf6134d5d5842e73f43a7ad8d05d5c0c3 SHA512 00c4e573513941fcf7f254b31bdc0747df24bcfee071f27b66ebd8b30680b098ea63c0590a139bf2b29ac02033c3b1cfae126d9ac0d5829c4e85acb348a643b7 +DIST util-linux-2.39-rc1.tar.xz 8083996 BLAKE2B a74d3b40540cd31c34c37caca20a2cd6691cfdf664da0a4a5b6c04201204d2cd6d357861f15dd41532aceb1adf3def7422f2c987ea79875330ca7c09039f03e8 SHA512 e9981d7c65eed7cd3f96f590e2190c7c804b1767464c821cd9277c72aaf38b8407f324cf9e8f3b96eb96359a0746f21a01dfb6baa504f49c8c7e1aff2dc956b3 +DIST util-linux-2.39_rc1-autotools-regenerate.patch.xz 17616 BLAKE2B 8bf56506f915b7c24bb47c6591b93bc132c3a4bbee9bd8bb78df03b08723cd1103b7ea34b6e53042aa38a1822007628c26f97e8aa8efae170765cbf9e710276b SHA512 e73e5b11a52a0e8ad0bda83fa5a5b41c06f452d6f34a42ad8714968261e0990ba2afda04f9bb3389c61a5fc67182701b9d44c4ead69cae6d268083f94191a977 diff --git a/sys-apps/util-linux/files/util-linux-2.39_rc1-test-build.patch b/sys-apps/util-linux/files/util-linux-2.39_rc1-test-build.patch new file mode 100644 index 000000000000..5fdb5a51bb9e --- /dev/null +++ b/sys-apps/util-linux/files/util-linux-2.39_rc1-test-build.patch @@ -0,0 +1,33 @@ +https://github.com/util-linux/util-linux/issues/2119 +https://github.com/util-linux/util-linux/commit/bccae5d85831c4cfa6b5d147acec739bd3c148b9 + +From bccae5d85831c4cfa6b5d147acec739bd3c148b9 Mon Sep 17 00:00:00 2001 +From: Karel Zak +Date: Fri, 17 Mar 2023 13:11:50 +0100 +Subject: [PATCH] build-sys: fix libblkid fuzz sample test if-endif + +All tests have to be covered by BUILD_LIBBLKID_TESTS otherwise +proper CFLAGS ($blkid_tests_cflags) are undefined. + +Fixes: https://github.com/util-linux/util-linux/issues/2119 +Signed-off-by: Karel Zak +--- a/libblkid/src/Makemodule.am ++++ b/libblkid/src/Makemodule.am +@@ -224,8 +224,6 @@ test_blkid_fuzz_LDFLAGS = $(blkid_tests_ldflags) -lpthread + test_blkid_fuzz_LDADD = $(blkid_tests_ldadd) $(LIB_FUZZING_ENGINE) + endif + +-endif # BUILD_LIBBLKID_TESTS +- + check_PROGRAMS += test_blkid_fuzz_sample + + test_blkid_fuzz_sample_SOURCES = libblkid/src/fuzz.c +@@ -234,6 +232,7 @@ test_blkid_fuzz_sample_CFLAGS = $(blkid_tests_cflags) + test_blkid_fuzz_sample_LDFLAGS = $(blkid_tests_ldflags) + test_blkid_fuzz_sample_LDADD = $(blkid_tests_ldadd) + ++endif # BUILD_LIBBLKID_TESTS + + # move lib from $(usrlib_execdir) to $(libdir) if needed + install-exec-hook-libblkid: + diff --git a/sys-apps/util-linux/util-linux-2.39_rc1.ebuild b/sys-apps/util-linux/util-linux-2.39_rc1.ebuild new file mode 100644 index 000000000000..0e42fe563e2b --- /dev/null +++ b/sys-apps/util-linux/util-linux-2.39_rc1.ebuild @@ -0,0 +1,391 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) + +inherit toolchain-funcs libtool flag-o-matic bash-completion-r1 usr-ldscript \ + pam python-r1 multilib-minimal multiprocessing systemd + +MY_PV="${PV/_/-}" +MY_P="${PN}-${MY_PV}" + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git" + inherit autotools git-r3 +else + VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/karelzak.asc + inherit verify-sig + + if [[ ${PV} != *_rc* ]] ; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + fi + + SRC_URI="https://www.kernel.org/pub/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz" + SRC_URI+=" verify-sig? ( https://www.kernel.org/pub/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.sign )" + + # Drop on next release, it's just here for ${P}-test-build.patch + SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-autotools-regenerate.patch.xz" +fi + +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="Various useful Linux utilities" +HOMEPAGE="https://www.kernel.org/pub/linux/utils/util-linux/ https://github.com/util-linux/util-linux" + +LICENSE="GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain" +SLOT="0" +IUSE="audit build caps +cramfs cryptsetup fdformat +hardlink kill +logger magic ncurses nls pam python +readline rtas selinux slang static-libs +su +suid systemd test tty-helpers udev unicode" + +# Most lib deps here are related to programs rather than our libs, +# so we rarely need to specify ${MULTILIB_USEDEP}. +RDEPEND=" + virtual/libcrypt:= + audit? ( >=sys-process/audit-2.6:= ) + caps? ( sys-libs/libcap-ng ) + cramfs? ( sys-libs/zlib:= ) + cryptsetup? ( >=sys-fs/cryptsetup-2.1.0 ) + hardlink? ( dev-libs/libpcre2:= ) + ncurses? ( + sys-libs/ncurses:=[unicode(+)?] + magic? ( sys-apps/file:0= ) + ) + nls? ( virtual/libintl[${MULTILIB_USEDEP}] ) + pam? ( sys-libs/pam ) + python? ( ${PYTHON_DEPS} ) + readline? ( sys-libs/readline:0= ) + rtas? ( sys-libs/librtas ) + selinux? ( >=sys-libs/libselinux-2.2.2-r4[${MULTILIB_USEDEP}] ) + slang? ( sys-libs/slang ) + !build? ( systemd? ( sys-apps/systemd ) ) + udev? ( virtual/libudev:= )" +BDEPEND=" + virtual/pkgconfig + nls? ( sys-devel/gettext ) + test? ( sys-devel/bc ) +" +DEPEND=" + ${RDEPEND} + virtual/os-headers + acct-group/root +" +RDEPEND+=" + hardlink? ( !app-arch/hardlink ) + logger? ( !>=app-admin/sysklogd-2.0[logger] ) + kill? ( + !sys-apps/coreutils[kill] + !sys-process/procps[kill] + ) + su? ( + !=sys-apps/shadow-4.7-r2[su] + ) + !net-wireless/rfkill +" + +if [[ ${PV} == 9999 ]] ; then + # Required for man-page generation + BDEPEND+=" dev-ruby/asciidoctor" +else + BDEPEND+=" verify-sig? ( sec-keys/openpgp-keys-karelzak )" +fi + +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ) su? ( pam )" +RESTRICT="!test? ( test )" + +PATCHES=( + "${FILESDIR}"/${P}-test-build.patch + "${WORKDIR}"/${P}-autotools-regenerate.patch +) + +pkg_pretend() { + if use su && ! use suid ; then + elog "su will be installed as suid despite USE=-suid (bug #832092)" + elog "To use su without suid, see e.g. Portage's suidctl feature." + fi +} + +src_unpack() { + if [[ ${PV} == 9999 ]] ; then + git-r3_src_unpack + return + fi + + if use verify-sig ; then + mkdir "${T}"/verify-sig || die + pushd "${T}"/verify-sig &>/dev/null || die + + # Upstream sign the decompressed .tar + # Let's do it separately in ${T} then cleanup to avoid external + # effects on normal unpack. + cp "${DISTDIR}"/${MY_P}.tar.xz . || die + xz -d ${MY_P}.tar.xz || die + verify-sig_verify_detached ${MY_P}.tar "${DISTDIR}"/${MY_P}.tar.sign + + popd &>/dev/null || die + rm -r "${T}"/verify-sig || die + fi + + default +} + +src_prepare() { + default + + if use test ; then + # Prevent uuidd test failure due to socket path limit, bug #593304 + sed -i \ + -e "s|UUIDD_SOCKET=\"\$(mktemp -u \"\${TS_OUTDIR}/uuiddXXXXXXXXXXXXX\")\"|UUIDD_SOCKET=\"\$(mktemp -u \"${T}/uuiddXXXXXXXXXXXXX.sock\")\"|g" \ + tests/ts/uuid/uuidd || die "Failed to fix uuidd test" + + # Known-failing tests + # TODO: investigate these + local known_failing_tests=( + # Subtest 'options-maximum-size-8192' fails + hardlink/options + + lsfd/mkfds-symlink + lsfd/mkfds-rw-character-device + ) + + local known_failing_test + for known_failing_test in "${known_failing_tests[@]}" ; do + einfo "Removing known-failing test: ${known_failing_test}" + rm tests/ts/${known_failing_test} || die + done + + fi + + if [[ ${PV} == 9999 ]] ; then + po/update-potfiles + eautoreconf + else + elibtoolize + fi +} + +python_configure() { + local myeconfargs=( + "${commonargs[@]}" + --disable-all-programs + --disable-bash-completion + --without-systemdsystemunitdir + --with-python + --enable-libblkid + --enable-libmount + --enable-pylibmount + ) + + mkdir "${BUILD_DIR}" || die + pushd "${BUILD_DIR}" >/dev/null || die + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" + popd >/dev/null || die +} + +multilib_src_configure() { + # The scanf test in a run-time test which fails while cross-compiling. + # Blindly assume a POSIX setup since we require libmount, and libmount + # itself fails when the scanf test fails. bug #531856 + tc-is-cross-compiler && export scanf_cv_alloc_modifier=ms + + # bug #485486 + export ac_cv_header_security_pam_misc_h=$(multilib_native_usex pam) + # bug #545042 + export ac_cv_header_security_pam_appl_h=$(multilib_native_usex pam) + + # Undo bad ncurses handling by upstream. Fall back to pkg-config. + # bug #601530 + export NCURSES6_CONFIG=false NCURSES5_CONFIG=false + export NCURSESW6_CONFIG=false NCURSESW5_CONFIG=false + + # Avoid automagic dependency on ppc* + export ac_cv_lib_rtas_rtas_get_sysparm=$(usex rtas) + + # configure args shared by python and non-python builds + local commonargs=( + --enable-fs-paths-extra="${EPREFIX}/usr/sbin:${EPREFIX}/bin:${EPREFIX}/usr/bin" + ) + + local myeconfargs=( + "${commonargs[@]}" + --with-bashcompletiondir="$(get_bashcompdir)" + --without-python + $(multilib_native_use_enable suid makeinstall-chown) + $(multilib_native_use_enable suid makeinstall-setuid) + $(multilib_native_use_with readline) + $(multilib_native_use_with slang) + $(multilib_native_use_with systemd) + $(multilib_native_use_with udev) + $(multilib_native_usex ncurses "$(use_with magic libmagic)" '--without-libmagic') + $(multilib_native_usex ncurses "$(use_with unicode ncursesw)" '--without-ncursesw') + $(multilib_native_usex ncurses "$(use_with !unicode ncurses)" '--without-ncurses') + $(multilib_native_use_with audit) + $(tc-has-tls || echo --disable-tls) + $(use_enable nls) + $(use_enable unicode widechar) + $(use_enable static-libs static) + $(use_with ncurses tinfo) + $(use_with selinux) + ) + + if multilib_is_native_abi ; then + myeconfargs+=( + --disable-chfn-chsh + --disable-login + --disable-newgrp + --disable-nologin + --disable-pylibmount + --disable-raw + --disable-vipw + --enable-agetty + --enable-bash-completion + --enable-line + --enable-partx + --enable-rename + --enable-rfkill + --enable-schedutils + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" + $(use_enable caps setpriv) + $(use_enable cramfs) + $(use_enable fdformat) + $(use_enable hardlink) + $(use_enable kill) + $(use_enable logger) + $(use_enable ncurses pg) + $(use_enable su) + $(use_enable tty-helpers mesg) + $(use_enable tty-helpers wall) + $(use_enable tty-helpers write) + $(use_with cryptsetup) + ) + if [[ ${PV} == *9999 ]] ; then + myeconfargs+=( --enable-asciidoc ) + else + # Upstream is shipping pre-generated man-pages for releases + myeconfargs+=( --disable-asciidoc ) + fi + else + myeconfargs+=( + --disable-all-programs + --disable-asciidoc + --disable-bash-completion + --without-systemdsystemunitdir + + # build libraries + --enable-libuuid + --enable-libblkid + --enable-libsmartcols + --enable-libfdisk + --enable-libmount + ) + fi + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" + + if multilib_is_native_abi && use python ; then + python_foreach_impl python_configure + fi +} + +src_configure() { + append-lfs-flags + multilib-minimal_src_configure +} + +python_compile() { + pushd "${BUILD_DIR}" >/dev/null || die + emake all + popd >/dev/null || die +} + +multilib_src_compile() { + emake all + + if multilib_is_native_abi && use python ; then + python_foreach_impl python_compile + fi +} + +python_test() { + pushd "${BUILD_DIR}" >/dev/null || die + emake check TS_OPTS="--parallel=$(makeopts_jobs) --nonroot" + popd >/dev/null || die +} + +multilib_src_test() { + emake check TS_OPTS="--parallel=$(makeopts_jobs) --nonroot" + if multilib_is_native_abi && use python ; then + python_foreach_impl python_test + fi +} + +python_install() { + pushd "${BUILD_DIR}" >/dev/null || die + emake DESTDIR="${D}" install + python_optimize + popd >/dev/null || die +} + +multilib_src_install() { + if multilib_is_native_abi && use python ; then + python_foreach_impl python_install + fi + + # This needs to be called AFTER python_install call, bug #689190 + emake DESTDIR="${D}" install + + if multilib_is_native_abi ; then + # Need the libs in / + gen_usr_ldscript -a blkid fdisk mount smartcols uuid + fi +} + +multilib_src_install_all() { + dodoc AUTHORS NEWS README* Documentation/{TODO,*.txt,releases/*} + + # e2fsprogs-libs didn't install .la files, and .pc work fine + find "${ED}" -name "*.la" -delete || die + + if use pam ; then + # See https://github.com/util-linux/util-linux/blob/master/Documentation/PAM-configuration.txt + newpamd "${FILESDIR}/runuser.pamd" runuser + newpamd "${FILESDIR}/runuser-l.pamd" runuser-l + + newpamd "${FILESDIR}/su-l.pamd" su-l + fi + + if use su && ! use suid ; then + # Always force suid su, even when USE=-suid, as su is useless + # for the overwhelming-majority case without suid. + # Users who wish to truly have a no-suid su can strip it out + # via e.g. Portage's suidctl or some other hook. + # See bug #832092 + fperms u+s /bin/su + fi + + # Note: + # Bash completion for "runuser" command is provided by same file which + # would also provide bash completion for "su" command. However, we don't + # use "su" command from this package. + # This triggers a known QA warning which we ignore for now to magically + # keep bash completion for "su" command which shadow package does not + # provide. + + local ver=$(tools/git-version-gen .tarballversion) + local major=$(ver_cut 1 ${ver}) + local minor=$(ver_cut 2 ${ver}) + local release=$(ver_cut 3 ${ver}) + export QA_PKGCONFIG_VERSION="${major}.${minor}.${release:-0}" +} + +pkg_postinst() { + if ! use tty-helpers ; then + elog "The mesg/wall/write tools have been disabled due to USE=-tty-helpers." + fi + + if [[ -z ${REPLACING_VERSIONS} ]] ; then + elog "The agetty util now clears the terminal by default. You" + elog "might want to add --noclear to your /etc/inittab lines." + fi +} diff --git a/sys-apps/xdg-desktop-portal-gnome/Manifest b/sys-apps/xdg-desktop-portal-gnome/Manifest index e1a2d817b1de..44880863c2ce 100644 --- a/sys-apps/xdg-desktop-portal-gnome/Manifest +++ b/sys-apps/xdg-desktop-portal-gnome/Manifest @@ -1,2 +1,3 @@ DIST xdg-desktop-portal-gnome-43.1.tar.xz 125248 BLAKE2B 5290041b3b0d24c6d62c1433c492fa5b04af80493d192392d6b89839356c1a4f2c74aba5509476bd5df5383375889d50636216b52e2448de1b3c8360501cb16b SHA512 fc9b2a0bf5483194326308099be0cb76245644bfc26546a4e63679eb695400cf254aa9e85de1b168e07ba7f05eb4f9fe4fde31853bcee4bd8bfb94063933ebc3 +DIST xdg-desktop-portal-gnome-44.0.tar.xz 127076 BLAKE2B e8775fe8017b5112bba995cea830a64b5f77222e40f09bf5318bed720274a7516cd2178b6d132b71b9608aae2885b9f9cab679a5abce25cd099591633a8a51e7 SHA512 1aa8eae420f4bf00ea34b3ad665edad89f9444bd2d5baa84d1f96b303ab072c66c139eb760cfbfd796691bda745f3eb5455f8d805fb042c8037eb786a730eb95 DIST xdg-desktop-portal-gnome-44.rc.tar.xz 127040 BLAKE2B b762d1e29cad9ed9afa98cfd98793a2b27c1553beccdaf6bccceaf642cd35d9d28bcbc3b4be891d1fb54efe99a27d62cf190f317deb26ea837b73b0448272a58 SHA512 bb3be21cbb4cb0e1fb22ae70d4c47cbd8b8bc6e87d4495f967fb4f8494cdcb0f1b3d03c15d12ed9cec4fca31151e99a967b38b3eb46cfdcc791f399185ceeacc diff --git a/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-44.0.ebuild b/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-44.0.ebuild new file mode 100644 index 000000000000..ef62dd2dfcc4 --- /dev/null +++ b/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-44.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org meson systemd xdg + +DESCRIPTION="Backend implementation for xdg-desktop-portal using GNOME" +HOMEPAGE="https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" +IUSE="wayland X" + +DEPEND=" + dev-libs/glib:2 + gnome-base/gnome-desktop:4= + gui-libs/libadwaita:1 + media-libs/fontconfig + sys-apps/dbus + >=sys-apps/xdg-desktop-portal-1.15.0 + >=sys-apps/xdg-desktop-portal-gtk-1.14.0 + gui-libs/gtk:4[wayland?,X?] + X? ( x11-libs/libX11 ) + wayland? ( dev-libs/wayland ) +" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-util/gdbus-codegen + sys-devel/gettext + virtual/pkgconfig + + wayland? ( dev-util/wayland-scanner ) +" + +src_configure() { + local emesonargs=( + -Dsystemduserunitdir="$(systemd_get_userunitdir)" + ) + + meson_src_configure +} diff --git a/sys-auth/Manifest.gz b/sys-auth/Manifest.gz index 2a863840e5fe..305ccd43383e 100644 Binary files a/sys-auth/Manifest.gz and b/sys-auth/Manifest.gz differ diff --git a/sys-auth/nss-pam-ldapd/files/nss-pam-ldapd-0.9.12-netdb-defines.patch b/sys-auth/nss-pam-ldapd/files/nss-pam-ldapd-0.9.12-netdb-defines.patch new file mode 100644 index 000000000000..2036da4fd7b1 --- /dev/null +++ b/sys-auth/nss-pam-ldapd/files/nss-pam-ldapd-0.9.12-netdb-defines.patch @@ -0,0 +1,26 @@ +Bug: https://bugs.gentoo.org/716272 + +--- a/nss/hosts.c ++++ b/nss/hosts.c +@@ -49,6 +49,9 @@ + *h_errnop = NO_RECOVERY; \ + return NSS_STATUS_UNAVAIL; + ++#ifndef NETDB_INTERNAL ++#define NETDB_INTERNAL -1 ++#endif + #undef ERROR_OUT_BUFERROR + #define ERROR_OUT_BUFERROR(fp) \ + *errnop = ERANGE; \ +--- a/nss/networks.c ++++ b/nss/networks.c +@@ -49,6 +49,9 @@ + *h_errnop = NO_RECOVERY; \ + return NSS_STATUS_UNAVAIL; + ++#ifndef NETDB_INTERNAL ++#define NETDB_INTERNAL -1 ++#endif + #undef ERROR_OUT_BUFERROR + #define ERROR_OUT_BUFERROR(fp) \ + *errnop = ERANGE; \ diff --git a/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.12-r3.ebuild b/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.12-r3.ebuild new file mode 100644 index 000000000000..2f0098518878 --- /dev/null +++ b/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.12-r3.ebuild @@ -0,0 +1,163 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +inherit autotools python-r1 s6 systemd tmpfiles multilib-minimal + +DESCRIPTION="NSS module for name lookups using LDAP" +HOMEPAGE="https://arthurdejong.org/nss-pam-ldapd/" +SRC_URI="https://arthurdejong.org/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ia64 ~sparc ~x86" +IUSE="debug kerberos +pam pynslcd sasl test +utils" +REQUIRED_USE=" + utils? ( ${PYTHON_REQUIRED_USE} ) + test? ( ${PYTHON_REQUIRED_USE} pynslcd ) +" +RESTRICT="!test? ( test )" + +RDEPEND=" + acct-group/nslcd + acct-user/nslcd + net-nds/openldap:=[${MULTILIB_USEDEP}] + sasl? ( dev-libs/cyrus-sasl[${MULTILIB_USEDEP}] ) + kerberos? ( virtual/krb5[${MULTILIB_USEDEP}] ) + sys-libs/pam[${MULTILIB_USEDEP}] + utils? ( ${PYTHON_DEPS} ) + pynslcd? ( + dev-python/python-ldap[${PYTHON_USEDEP}] + dev-python/python-daemon[${PYTHON_USEDEP}] + ) + elibc_musl? ( sys-libs/musl-nscd ) + !sys-auth/nss_ldap + !sys-auth/pam_ldap +" +DEPEND="${RDEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + test? ( dev-python/pylint[${PYTHON_USEDEP}] ) +" + +PATCHES=( + "${FILESDIR}"/nss-pam-ldapd-0.9.4-disable-py3-only-linters.patch + "${FILESDIR}"/nss-pam-ldapd-0.9.11-use-mkstemp.patch + "${FILESDIR}"/nss-pam-ldapd-0.9.11-relative-imports.patch + "${FILESDIR}"/nss-pam-ldapd-0.9.11-tests.patch + "${FILESDIR}"/nss-pam-ldapd-0.9.11-tests-py39.patch + "${FILESDIR}"/nss-pam-ldapd-0.9.12-netdb-defines.patch +) + +pkg_setup() { + [[ ${MERGE_TYPE} != binary ]] && python_setup +} + +src_prepare() { + default + + touch pynslcd/__init__.py || die "Could not create __init__.py for pynslcd" + mv pynslcd/pynslcd.py pynslcd/main.py || die + + eautoreconf +} + +multilib_src_configure() { + local myconf=( + --disable-utils + --enable-warnings + --with-ldap-lib=openldap + --with-ldap-conf-file="${EPREFIX}"/etc/nslcd.conf + --with-nslcd-pidfile=/run/nslcd/nslcd.pid + --with-nslcd-socket=/run/nslcd/socket + --with-nss-flavour=glibc + $(use_enable pynslcd) + $(use_enable debug) + $(use_enable kerberos) + $(use_enable pam) + $(use_enable sasl) + + # nss libraries always go in /lib on Gentoo + --with-pam-seclib-dir="${EPREFIX}"/$(get_libdir)/security + --libdir="${EPREFIX}"/$(get_libdir) + ) + ECONF_SOURCE="${S}" econf "${myconf[@]}" +} + +multilib_src_test() { + python_test() { + cp -l "${S}"/pynslcd/*.py pynslcd/ || die "Could not copy python files for tests" + nonfatal emake check || die "tests failed with ${EPYTHON}" + } + + pushd "${BUILD_DIR}" >/dev/null || die + ln -s ../pynslcd/constants.py utils/constants.py || die + python_foreach_impl python_test + popd >/dev/null || die +} + +multilib_src_install() { + emake DESTDIR="${D}" install + + if use pynslcd; then + python_moduleinto pynslcd + python_foreach_impl python_domodule pynslcd/*.py + fi +} + +multilib_src_install_all() { + einstalldocs + + newinitd "${FILESDIR}"/nslcd.init nslcd + s6_install_service nslcd "${FILESDIR}"/nslcd.s6 + + insinto /usr/share/nss-pam-ldapd + doins "${WORKDIR}"/${P}/nslcd.conf + + fperms o-r /etc/nslcd.conf + + if use utils; then + python_moduleinto nslcd + python_foreach_impl python_domodule utils/*.py + + local script + for script in chsh getent; do + python_foreach_impl python_newscript utils/${script}.py ${script}.ldap + done + fi + if use pynslcd; then + rm -rf "${ED}"/usr/share/pynslcd || die + python_moduleinto pynslcd + python_foreach_impl python_domodule pynslcd/*.py + python_scriptinto /usr/sbin + python_foreach_impl python_newscript pynslcd/main.py pynslcd + newinitd "${FILESDIR}"/pynslcd.init pynslcd + fi + + newtmpfiles "${FILESDIR}"/nslcd-tmpfiles.conf nslcd.conf + systemd_newunit "${FILESDIR}"/nslcd.service nslcd.service +} + +pkg_postinst() { + tmpfiles_process nslcd.conf + + elog "For this to work you must configure /etc/nslcd.conf" + elog "This configuration is similar to pam_ldap's /etc/ldap.conf" + elog + elog "In order to use nss-pam-ldapd, nslcd needs to be running. You can" + elog "start it like this:" + elog " # /etc/init.d/nslcd start" + elog + elog "You can add it to the default runlevel like so:" + elog " # rc-update add nslcd default" + elog + elog "If you have >=sys-apps/openrc-0.16.3, you can also use s6" + elog "to supervise this service." + elog "To do this, emerge sys-apps/s6 then add nslcd-s6" + elog "default runlevel instead of nslcd." + elog + elog "If you are upgrading, keep in mind that /etc/nss-ldapd.conf" + elog " is now named /etc/nslcd.conf" +} diff --git a/sys-cluster/Manifest.gz b/sys-cluster/Manifest.gz index 1d269d7c1f9f..2eb281e3ce3d 100644 Binary files a/sys-cluster/Manifest.gz and b/sys-cluster/Manifest.gz differ diff --git a/sys-cluster/kube-apiserver/Manifest b/sys-cluster/kube-apiserver/Manifest index 8ca6bc9a690d..fcdea1d67205 100644 --- a/sys-cluster/kube-apiserver/Manifest +++ b/sys-cluster/kube-apiserver/Manifest @@ -1,8 +1,4 @@ -DIST kubernetes-1.23.16.tar.gz 38115819 BLAKE2B 39a49a07d9d5c134b6d3edb0d48540ae00c134bd80a6236942f67faebf746e49d38bd23ff2d1935591a12043c4014fcd3a66739e6a3f38b72d125170f265254f SHA512 2eff0c8827fd01953e9d70a010f48ce35313969f238d330096b16ca9041983e992c45d97e4f0fb3b189c003b9f7805cf943727e32820fdb893fce1ffc4d8f092 DIST kubernetes-1.23.17.tar.gz 38135738 BLAKE2B 18661ca95d518ede1b8f08ec380bdb4678c0ba06bd4a7bc5aed323d6cec78fb8724a2880bd048df734e17f977159f21532349bae08a351b4adc56f52bb2e8198 SHA512 8cbe20601966faf2830dbe66548b95654651e3501c474be5351dbf64dabd1763f75e0afaa99ee31dabd8ea02ba1b16df6ba2a789aaddcad776ca0690637d05ff -DIST kubernetes-1.24.10.tar.gz 37847249 BLAKE2B 7f95f4ac29b5898033a8c19dc838eeae546befb762a19fa06fc6db29321cf7355f46958f994e374c395a9084bf5dc1580423ef7837e966277b7427a3b72428f3 SHA512 016b95537af6437d6285d07bfded048b093520fe7715dd8074bdde6a1646aa4e16a43b2dc6cae21e678795122b82dbeb1b7ac3f61997802e53bef518e3dcd2d7 DIST kubernetes-1.24.11.tar.gz 37867002 BLAKE2B 3972a049b1549cb1ed147763f09d20b656243814a91d701a1171c171a19721aef2b8393121160edbd75e6f11978b355ce8e97ef6e9d007634428753d7cc1499e SHA512 ceaa5ca883d208e8f80d4d2628195256df697ce5ebedf2524af7cd94ffd783c055c47797cf76f6d4893e2392b652a89f55999251feda196b96b9df4c27215adc -DIST kubernetes-1.25.6.tar.gz 38158861 BLAKE2B af116c78d216477ab757523f66b3332ef982b49384145a69d1b5641b0929b7179171814f89bbba1950b0ab69476e9e48722e8b9b04f0e77610d7dc602d4bac65 SHA512 47e0f736ee7efc614a2e8ed08acd95b64ee78484ac735ca515a03607634a9a94e2d7f3989db300f130506390a93eebb32fba4e54fe2869e3c782932f9b9a033b DIST kubernetes-1.25.7.tar.gz 38169376 BLAKE2B d324e823be2efc3d19892313ed2a7daa0a3c1384f4f03e18a703f63f32609e1a594a8fd3fc49cb78330848fd42ae1d629339a967ab973e73ddff2be8c6a1eb73 SHA512 d164496df03223cab4d1754ab42f88f0e5d5cc95e1e5995442183aa739d583078c6b7ea1febdc92e2bf8b76820857cd8973d8364f452c2e576b7168a32578419 -DIST kubernetes-1.26.1.tar.gz 38162001 BLAKE2B e3589eb702da49786b3363c16a2a405721c2130fe9814c41af94c5d466e7946732c05da46ccecce915e3d80ea122c3a60d1c5b00a86cfed8b7238bd74daa041e SHA512 8794322c1e943ca47a059e6866bda9dee04acc8a202a984efe5c82403e394c4f5aa2c0218fb43582016c7276e17e837f64c39fc3af0c633461bf026aaacc97ae DIST kubernetes-1.26.2.tar.gz 38192706 BLAKE2B ca14778ab5a1d1bdfb935d80eea269adb0414b5613d8e70b9c790711a284b79c8f89cdd22af73b9127fbf9f036b0aa317fbd97bc1df735aead0903d951fe5f4a SHA512 c14f3ba25ae3608ca8d28ab75c2f6a3636970d5851ef1c09259d6be4bce17af131f9adcc0be8e51f4197dc16650461bac8faae7b7ef24f899c1a0ad193ed0a6b diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.23.16.ebuild b/sys-cluster/kube-apiserver/kube-apiserver-1.23.16.ebuild deleted file mode 100644 index 7992a8108ee0..000000000000 --- a/sys-cluster/kube-apiserver/kube-apiserver-1.23.16.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-completion-r1 go-module systemd - -DESCRIPTION="Kubernetes API server" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND=" - acct-group/kube-apiserver - acct-user/kube-apiserver" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.17" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.23.17.ebuild b/sys-cluster/kube-apiserver/kube-apiserver-1.23.17.ebuild index 408cdf614fd2..7992a8108ee0 100644 --- a/sys-cluster/kube-apiserver/kube-apiserver-1.23.17.ebuild +++ b/sys-cluster/kube-apiserver/kube-apiserver-1.23.17.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND=" diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.24.10.ebuild b/sys-cluster/kube-apiserver/kube-apiserver-1.24.10.ebuild deleted file mode 100644 index d173c8d9825d..000000000000 --- a/sys-cluster/kube-apiserver/kube-apiserver-1.24.10.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-completion-r1 go-module systemd - -DESCRIPTION="Kubernetes API server" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND=" - acct-group/kube-apiserver - acct-user/kube-apiserver" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.18.1" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.24.11.ebuild b/sys-cluster/kube-apiserver/kube-apiserver-1.24.11.ebuild index 80549a7af0d5..d173c8d9825d 100644 --- a/sys-cluster/kube-apiserver/kube-apiserver-1.24.11.ebuild +++ b/sys-cluster/kube-apiserver/kube-apiserver-1.24.11.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND=" diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.25.6.ebuild b/sys-cluster/kube-apiserver/kube-apiserver-1.25.6.ebuild deleted file mode 100644 index 732d08517b60..000000000000 --- a/sys-cluster/kube-apiserver/kube-apiserver-1.25.6.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit bash-completion-r1 go-module systemd - -DESCRIPTION="Kubernetes API server" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND=" - acct-group/kube-apiserver - acct-user/kube-apiserver" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.19" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.25.7.ebuild b/sys-cluster/kube-apiserver/kube-apiserver-1.25.7.ebuild index 467da4d39d0b..732d08517b60 100644 --- a/sys-cluster/kube-apiserver/kube-apiserver-1.25.7.ebuild +++ b/sys-cluster/kube-apiserver/kube-apiserver-1.25.7.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND=" diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.26.1.ebuild b/sys-cluster/kube-apiserver/kube-apiserver-1.26.1.ebuild deleted file mode 100644 index 732d08517b60..000000000000 --- a/sys-cluster/kube-apiserver/kube-apiserver-1.26.1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit bash-completion-r1 go-module systemd - -DESCRIPTION="Kubernetes API server" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND=" - acct-group/kube-apiserver - acct-user/kube-apiserver" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.19" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.26.2.ebuild b/sys-cluster/kube-apiserver/kube-apiserver-1.26.2.ebuild index 467da4d39d0b..732d08517b60 100644 --- a/sys-cluster/kube-apiserver/kube-apiserver-1.26.2.ebuild +++ b/sys-cluster/kube-apiserver/kube-apiserver-1.26.2.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND=" diff --git a/sys-cluster/kube-controller-manager/Manifest b/sys-cluster/kube-controller-manager/Manifest index 8ca6bc9a690d..fcdea1d67205 100644 --- a/sys-cluster/kube-controller-manager/Manifest +++ b/sys-cluster/kube-controller-manager/Manifest @@ -1,8 +1,4 @@ -DIST kubernetes-1.23.16.tar.gz 38115819 BLAKE2B 39a49a07d9d5c134b6d3edb0d48540ae00c134bd80a6236942f67faebf746e49d38bd23ff2d1935591a12043c4014fcd3a66739e6a3f38b72d125170f265254f SHA512 2eff0c8827fd01953e9d70a010f48ce35313969f238d330096b16ca9041983e992c45d97e4f0fb3b189c003b9f7805cf943727e32820fdb893fce1ffc4d8f092 DIST kubernetes-1.23.17.tar.gz 38135738 BLAKE2B 18661ca95d518ede1b8f08ec380bdb4678c0ba06bd4a7bc5aed323d6cec78fb8724a2880bd048df734e17f977159f21532349bae08a351b4adc56f52bb2e8198 SHA512 8cbe20601966faf2830dbe66548b95654651e3501c474be5351dbf64dabd1763f75e0afaa99ee31dabd8ea02ba1b16df6ba2a789aaddcad776ca0690637d05ff -DIST kubernetes-1.24.10.tar.gz 37847249 BLAKE2B 7f95f4ac29b5898033a8c19dc838eeae546befb762a19fa06fc6db29321cf7355f46958f994e374c395a9084bf5dc1580423ef7837e966277b7427a3b72428f3 SHA512 016b95537af6437d6285d07bfded048b093520fe7715dd8074bdde6a1646aa4e16a43b2dc6cae21e678795122b82dbeb1b7ac3f61997802e53bef518e3dcd2d7 DIST kubernetes-1.24.11.tar.gz 37867002 BLAKE2B 3972a049b1549cb1ed147763f09d20b656243814a91d701a1171c171a19721aef2b8393121160edbd75e6f11978b355ce8e97ef6e9d007634428753d7cc1499e SHA512 ceaa5ca883d208e8f80d4d2628195256df697ce5ebedf2524af7cd94ffd783c055c47797cf76f6d4893e2392b652a89f55999251feda196b96b9df4c27215adc -DIST kubernetes-1.25.6.tar.gz 38158861 BLAKE2B af116c78d216477ab757523f66b3332ef982b49384145a69d1b5641b0929b7179171814f89bbba1950b0ab69476e9e48722e8b9b04f0e77610d7dc602d4bac65 SHA512 47e0f736ee7efc614a2e8ed08acd95b64ee78484ac735ca515a03607634a9a94e2d7f3989db300f130506390a93eebb32fba4e54fe2869e3c782932f9b9a033b DIST kubernetes-1.25.7.tar.gz 38169376 BLAKE2B d324e823be2efc3d19892313ed2a7daa0a3c1384f4f03e18a703f63f32609e1a594a8fd3fc49cb78330848fd42ae1d629339a967ab973e73ddff2be8c6a1eb73 SHA512 d164496df03223cab4d1754ab42f88f0e5d5cc95e1e5995442183aa739d583078c6b7ea1febdc92e2bf8b76820857cd8973d8364f452c2e576b7168a32578419 -DIST kubernetes-1.26.1.tar.gz 38162001 BLAKE2B e3589eb702da49786b3363c16a2a405721c2130fe9814c41af94c5d466e7946732c05da46ccecce915e3d80ea122c3a60d1c5b00a86cfed8b7238bd74daa041e SHA512 8794322c1e943ca47a059e6866bda9dee04acc8a202a984efe5c82403e394c4f5aa2c0218fb43582016c7276e17e837f64c39fc3af0c633461bf026aaacc97ae DIST kubernetes-1.26.2.tar.gz 38192706 BLAKE2B ca14778ab5a1d1bdfb935d80eea269adb0414b5613d8e70b9c790711a284b79c8f89cdd22af73b9127fbf9f036b0aa317fbd97bc1df735aead0903d951fe5f4a SHA512 c14f3ba25ae3608ca8d28ab75c2f6a3636970d5851ef1c09259d6be4bce17af131f9adcc0be8e51f4197dc16650461bac8faae7b7ef24f899c1a0ad193ed0a6b diff --git a/sys-cluster/kube-controller-manager/kube-controller-manager-1.23.16.ebuild b/sys-cluster/kube-controller-manager/kube-controller-manager-1.23.16.ebuild deleted file mode 100644 index 4aff7ba044e4..000000000000 --- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.23.16.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit go-module - -DESCRIPTION="Kubernetes Controller Manager" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND="acct-group/kube-controller-manager - acct-user/kube-controller-manager" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.17" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-controller-manager/kube-controller-manager-1.23.17.ebuild b/sys-cluster/kube-controller-manager/kube-controller-manager-1.23.17.ebuild index d69c0e7e500a..4aff7ba044e4 100644 --- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.23.17.ebuild +++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.23.17.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND="acct-group/kube-controller-manager diff --git a/sys-cluster/kube-controller-manager/kube-controller-manager-1.24.10.ebuild b/sys-cluster/kube-controller-manager/kube-controller-manager-1.24.10.ebuild deleted file mode 100644 index 4d4b42ffff8d..000000000000 --- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.24.10.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit go-module - -DESCRIPTION="Kubernetes Controller Manager" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND="acct-group/kube-controller-manager - acct-user/kube-controller-manager" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.18.1" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-controller-manager/kube-controller-manager-1.24.11.ebuild b/sys-cluster/kube-controller-manager/kube-controller-manager-1.24.11.ebuild index 2d00c0ea6648..4d4b42ffff8d 100644 --- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.24.11.ebuild +++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.24.11.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND="acct-group/kube-controller-manager diff --git a/sys-cluster/kube-controller-manager/kube-controller-manager-1.25.6.ebuild b/sys-cluster/kube-controller-manager/kube-controller-manager-1.25.6.ebuild deleted file mode 100644 index a5b017f18d03..000000000000 --- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.25.6.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module - -DESCRIPTION="Kubernetes Controller Manager" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND="acct-group/kube-controller-manager - acct-user/kube-controller-manager" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.19" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-controller-manager/kube-controller-manager-1.25.7.ebuild b/sys-cluster/kube-controller-manager/kube-controller-manager-1.25.7.ebuild index c4863b6e8840..a5b017f18d03 100644 --- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.25.7.ebuild +++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.25.7.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND="acct-group/kube-controller-manager diff --git a/sys-cluster/kube-controller-manager/kube-controller-manager-1.26.1.ebuild b/sys-cluster/kube-controller-manager/kube-controller-manager-1.26.1.ebuild deleted file mode 100644 index a5b017f18d03..000000000000 --- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.26.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module - -DESCRIPTION="Kubernetes Controller Manager" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND="acct-group/kube-controller-manager - acct-user/kube-controller-manager" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.19" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-controller-manager/kube-controller-manager-1.26.2.ebuild b/sys-cluster/kube-controller-manager/kube-controller-manager-1.26.2.ebuild index c4863b6e8840..a5b017f18d03 100644 --- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.26.2.ebuild +++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.26.2.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND="acct-group/kube-controller-manager diff --git a/sys-cluster/kube-proxy/Manifest b/sys-cluster/kube-proxy/Manifest index 8ca6bc9a690d..fcdea1d67205 100644 --- a/sys-cluster/kube-proxy/Manifest +++ b/sys-cluster/kube-proxy/Manifest @@ -1,8 +1,4 @@ -DIST kubernetes-1.23.16.tar.gz 38115819 BLAKE2B 39a49a07d9d5c134b6d3edb0d48540ae00c134bd80a6236942f67faebf746e49d38bd23ff2d1935591a12043c4014fcd3a66739e6a3f38b72d125170f265254f SHA512 2eff0c8827fd01953e9d70a010f48ce35313969f238d330096b16ca9041983e992c45d97e4f0fb3b189c003b9f7805cf943727e32820fdb893fce1ffc4d8f092 DIST kubernetes-1.23.17.tar.gz 38135738 BLAKE2B 18661ca95d518ede1b8f08ec380bdb4678c0ba06bd4a7bc5aed323d6cec78fb8724a2880bd048df734e17f977159f21532349bae08a351b4adc56f52bb2e8198 SHA512 8cbe20601966faf2830dbe66548b95654651e3501c474be5351dbf64dabd1763f75e0afaa99ee31dabd8ea02ba1b16df6ba2a789aaddcad776ca0690637d05ff -DIST kubernetes-1.24.10.tar.gz 37847249 BLAKE2B 7f95f4ac29b5898033a8c19dc838eeae546befb762a19fa06fc6db29321cf7355f46958f994e374c395a9084bf5dc1580423ef7837e966277b7427a3b72428f3 SHA512 016b95537af6437d6285d07bfded048b093520fe7715dd8074bdde6a1646aa4e16a43b2dc6cae21e678795122b82dbeb1b7ac3f61997802e53bef518e3dcd2d7 DIST kubernetes-1.24.11.tar.gz 37867002 BLAKE2B 3972a049b1549cb1ed147763f09d20b656243814a91d701a1171c171a19721aef2b8393121160edbd75e6f11978b355ce8e97ef6e9d007634428753d7cc1499e SHA512 ceaa5ca883d208e8f80d4d2628195256df697ce5ebedf2524af7cd94ffd783c055c47797cf76f6d4893e2392b652a89f55999251feda196b96b9df4c27215adc -DIST kubernetes-1.25.6.tar.gz 38158861 BLAKE2B af116c78d216477ab757523f66b3332ef982b49384145a69d1b5641b0929b7179171814f89bbba1950b0ab69476e9e48722e8b9b04f0e77610d7dc602d4bac65 SHA512 47e0f736ee7efc614a2e8ed08acd95b64ee78484ac735ca515a03607634a9a94e2d7f3989db300f130506390a93eebb32fba4e54fe2869e3c782932f9b9a033b DIST kubernetes-1.25.7.tar.gz 38169376 BLAKE2B d324e823be2efc3d19892313ed2a7daa0a3c1384f4f03e18a703f63f32609e1a594a8fd3fc49cb78330848fd42ae1d629339a967ab973e73ddff2be8c6a1eb73 SHA512 d164496df03223cab4d1754ab42f88f0e5d5cc95e1e5995442183aa739d583078c6b7ea1febdc92e2bf8b76820857cd8973d8364f452c2e576b7168a32578419 -DIST kubernetes-1.26.1.tar.gz 38162001 BLAKE2B e3589eb702da49786b3363c16a2a405721c2130fe9814c41af94c5d466e7946732c05da46ccecce915e3d80ea122c3a60d1c5b00a86cfed8b7238bd74daa041e SHA512 8794322c1e943ca47a059e6866bda9dee04acc8a202a984efe5c82403e394c4f5aa2c0218fb43582016c7276e17e837f64c39fc3af0c633461bf026aaacc97ae DIST kubernetes-1.26.2.tar.gz 38192706 BLAKE2B ca14778ab5a1d1bdfb935d80eea269adb0414b5613d8e70b9c790711a284b79c8f89cdd22af73b9127fbf9f036b0aa317fbd97bc1df735aead0903d951fe5f4a SHA512 c14f3ba25ae3608ca8d28ab75c2f6a3636970d5851ef1c09259d6be4bce17af131f9adcc0be8e51f4197dc16650461bac8faae7b7ef24f899c1a0ad193ed0a6b diff --git a/sys-cluster/kube-proxy/kube-proxy-1.23.16.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.23.16.ebuild deleted file mode 100644 index f7d7bee3e8a7..000000000000 --- a/sys-cluster/kube-proxy/kube-proxy-1.23.16.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit go-module - -DESCRIPTION="Kubernetes Proxy service" -HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -RDEPEND="net-firewall/conntrack-tools" -BDEPEND=">=dev-lang/go-1.17" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - keepdir /var/log/${PN} /var/lib/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} -} diff --git a/sys-cluster/kube-proxy/kube-proxy-1.23.17.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.23.17.ebuild index c1c662945d2d..f7d7bee3e8a7 100644 --- a/sys-cluster/kube-proxy/kube-proxy-1.23.17.ebuild +++ b/sys-cluster/kube-proxy/kube-proxy-1.23.17.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" RDEPEND="net-firewall/conntrack-tools" diff --git a/sys-cluster/kube-proxy/kube-proxy-1.24.10.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.24.10.ebuild deleted file mode 100644 index d228a4990b81..000000000000 --- a/sys-cluster/kube-proxy/kube-proxy-1.24.10.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit go-module - -DESCRIPTION="Kubernetes Proxy service" -HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -RDEPEND="net-firewall/conntrack-tools" -BDEPEND=">=dev-lang/go-1.18.1" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - keepdir /var/log/${PN} /var/lib/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} -} diff --git a/sys-cluster/kube-proxy/kube-proxy-1.24.11.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.24.11.ebuild index 0cc8ca0574f5..d228a4990b81 100644 --- a/sys-cluster/kube-proxy/kube-proxy-1.24.11.ebuild +++ b/sys-cluster/kube-proxy/kube-proxy-1.24.11.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" RDEPEND="net-firewall/conntrack-tools" diff --git a/sys-cluster/kube-proxy/kube-proxy-1.25.6.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.25.6.ebuild deleted file mode 100644 index 15eeeeea2dcb..000000000000 --- a/sys-cluster/kube-proxy/kube-proxy-1.25.6.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module - -DESCRIPTION="Kubernetes Proxy service" -HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -RDEPEND="net-firewall/conntrack-tools" -BDEPEND=">=dev-lang/go-1.19" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - keepdir /var/log/${PN} /var/lib/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} -} diff --git a/sys-cluster/kube-proxy/kube-proxy-1.25.7.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.25.7.ebuild index c2bf8bb7da7f..15eeeeea2dcb 100644 --- a/sys-cluster/kube-proxy/kube-proxy-1.25.7.ebuild +++ b/sys-cluster/kube-proxy/kube-proxy-1.25.7.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" RDEPEND="net-firewall/conntrack-tools" diff --git a/sys-cluster/kube-proxy/kube-proxy-1.26.1.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.26.1.ebuild deleted file mode 100644 index 15eeeeea2dcb..000000000000 --- a/sys-cluster/kube-proxy/kube-proxy-1.26.1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module - -DESCRIPTION="Kubernetes Proxy service" -HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -RDEPEND="net-firewall/conntrack-tools" -BDEPEND=">=dev-lang/go-1.19" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - keepdir /var/log/${PN} /var/lib/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} -} diff --git a/sys-cluster/kube-proxy/kube-proxy-1.26.2.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.26.2.ebuild index c2bf8bb7da7f..15eeeeea2dcb 100644 --- a/sys-cluster/kube-proxy/kube-proxy-1.26.2.ebuild +++ b/sys-cluster/kube-proxy/kube-proxy-1.26.2.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" RDEPEND="net-firewall/conntrack-tools" diff --git a/sys-cluster/kube-scheduler/Manifest b/sys-cluster/kube-scheduler/Manifest index 8ca6bc9a690d..fcdea1d67205 100644 --- a/sys-cluster/kube-scheduler/Manifest +++ b/sys-cluster/kube-scheduler/Manifest @@ -1,8 +1,4 @@ -DIST kubernetes-1.23.16.tar.gz 38115819 BLAKE2B 39a49a07d9d5c134b6d3edb0d48540ae00c134bd80a6236942f67faebf746e49d38bd23ff2d1935591a12043c4014fcd3a66739e6a3f38b72d125170f265254f SHA512 2eff0c8827fd01953e9d70a010f48ce35313969f238d330096b16ca9041983e992c45d97e4f0fb3b189c003b9f7805cf943727e32820fdb893fce1ffc4d8f092 DIST kubernetes-1.23.17.tar.gz 38135738 BLAKE2B 18661ca95d518ede1b8f08ec380bdb4678c0ba06bd4a7bc5aed323d6cec78fb8724a2880bd048df734e17f977159f21532349bae08a351b4adc56f52bb2e8198 SHA512 8cbe20601966faf2830dbe66548b95654651e3501c474be5351dbf64dabd1763f75e0afaa99ee31dabd8ea02ba1b16df6ba2a789aaddcad776ca0690637d05ff -DIST kubernetes-1.24.10.tar.gz 37847249 BLAKE2B 7f95f4ac29b5898033a8c19dc838eeae546befb762a19fa06fc6db29321cf7355f46958f994e374c395a9084bf5dc1580423ef7837e966277b7427a3b72428f3 SHA512 016b95537af6437d6285d07bfded048b093520fe7715dd8074bdde6a1646aa4e16a43b2dc6cae21e678795122b82dbeb1b7ac3f61997802e53bef518e3dcd2d7 DIST kubernetes-1.24.11.tar.gz 37867002 BLAKE2B 3972a049b1549cb1ed147763f09d20b656243814a91d701a1171c171a19721aef2b8393121160edbd75e6f11978b355ce8e97ef6e9d007634428753d7cc1499e SHA512 ceaa5ca883d208e8f80d4d2628195256df697ce5ebedf2524af7cd94ffd783c055c47797cf76f6d4893e2392b652a89f55999251feda196b96b9df4c27215adc -DIST kubernetes-1.25.6.tar.gz 38158861 BLAKE2B af116c78d216477ab757523f66b3332ef982b49384145a69d1b5641b0929b7179171814f89bbba1950b0ab69476e9e48722e8b9b04f0e77610d7dc602d4bac65 SHA512 47e0f736ee7efc614a2e8ed08acd95b64ee78484ac735ca515a03607634a9a94e2d7f3989db300f130506390a93eebb32fba4e54fe2869e3c782932f9b9a033b DIST kubernetes-1.25.7.tar.gz 38169376 BLAKE2B d324e823be2efc3d19892313ed2a7daa0a3c1384f4f03e18a703f63f32609e1a594a8fd3fc49cb78330848fd42ae1d629339a967ab973e73ddff2be8c6a1eb73 SHA512 d164496df03223cab4d1754ab42f88f0e5d5cc95e1e5995442183aa739d583078c6b7ea1febdc92e2bf8b76820857cd8973d8364f452c2e576b7168a32578419 -DIST kubernetes-1.26.1.tar.gz 38162001 BLAKE2B e3589eb702da49786b3363c16a2a405721c2130fe9814c41af94c5d466e7946732c05da46ccecce915e3d80ea122c3a60d1c5b00a86cfed8b7238bd74daa041e SHA512 8794322c1e943ca47a059e6866bda9dee04acc8a202a984efe5c82403e394c4f5aa2c0218fb43582016c7276e17e837f64c39fc3af0c633461bf026aaacc97ae DIST kubernetes-1.26.2.tar.gz 38192706 BLAKE2B ca14778ab5a1d1bdfb935d80eea269adb0414b5613d8e70b9c790711a284b79c8f89cdd22af73b9127fbf9f036b0aa317fbd97bc1df735aead0903d951fe5f4a SHA512 c14f3ba25ae3608ca8d28ab75c2f6a3636970d5851ef1c09259d6be4bce17af131f9adcc0be8e51f4197dc16650461bac8faae7b7ef24f899c1a0ad193ed0a6b diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.23.16.ebuild b/sys-cluster/kube-scheduler/kube-scheduler-1.23.16.ebuild deleted file mode 100644 index 00bd7c598fa2..000000000000 --- a/sys-cluster/kube-scheduler/kube-scheduler-1.23.16.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit go-module - -DESCRIPTION="Kubernetes Scheduler" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND="acct-group/kube-scheduler - acct-user/kube-scheduler" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.17" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.23.17.ebuild b/sys-cluster/kube-scheduler/kube-scheduler-1.23.17.ebuild index e029e58fd006..00bd7c598fa2 100644 --- a/sys-cluster/kube-scheduler/kube-scheduler-1.23.17.ebuild +++ b/sys-cluster/kube-scheduler/kube-scheduler-1.23.17.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND="acct-group/kube-scheduler diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.24.10.ebuild b/sys-cluster/kube-scheduler/kube-scheduler-1.24.10.ebuild deleted file mode 100644 index 25f887df0345..000000000000 --- a/sys-cluster/kube-scheduler/kube-scheduler-1.24.10.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit go-module - -DESCRIPTION="Kubernetes Scheduler" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND="acct-group/kube-scheduler - acct-user/kube-scheduler" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.18.1" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.24.11.ebuild b/sys-cluster/kube-scheduler/kube-scheduler-1.24.11.ebuild index 4d29f574fe61..25f887df0345 100644 --- a/sys-cluster/kube-scheduler/kube-scheduler-1.24.11.ebuild +++ b/sys-cluster/kube-scheduler/kube-scheduler-1.24.11.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND="acct-group/kube-scheduler diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.25.6.ebuild b/sys-cluster/kube-scheduler/kube-scheduler-1.25.6.ebuild deleted file mode 100644 index 524876afc4d5..000000000000 --- a/sys-cluster/kube-scheduler/kube-scheduler-1.25.6.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module - -DESCRIPTION="Kubernetes Scheduler" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND="acct-group/kube-scheduler - acct-user/kube-scheduler" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.19" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.25.7.ebuild b/sys-cluster/kube-scheduler/kube-scheduler-1.25.7.ebuild index b9b95df178b2..524876afc4d5 100644 --- a/sys-cluster/kube-scheduler/kube-scheduler-1.25.7.ebuild +++ b/sys-cluster/kube-scheduler/kube-scheduler-1.25.7.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND="acct-group/kube-scheduler diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.26.1.ebuild b/sys-cluster/kube-scheduler/kube-scheduler-1.26.1.ebuild deleted file mode 100644 index 524876afc4d5..000000000000 --- a/sys-cluster/kube-scheduler/kube-scheduler-1.26.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module - -DESCRIPTION="Kubernetes Scheduler" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -COMMON_DEPEND="acct-group/kube-scheduler - acct-user/kube-scheduler" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND=">=dev-lang/go-1.19" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} -} diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.26.2.ebuild b/sys-cluster/kube-scheduler/kube-scheduler-1.26.2.ebuild index b9b95df178b2..524876afc4d5 100644 --- a/sys-cluster/kube-scheduler/kube-scheduler-1.26.2.ebuild +++ b/sys-cluster/kube-scheduler/kube-scheduler-1.26.2.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" COMMON_DEPEND="acct-group/kube-scheduler diff --git a/sys-cluster/kubeadm/Manifest b/sys-cluster/kubeadm/Manifest index 8ca6bc9a690d..fcdea1d67205 100644 --- a/sys-cluster/kubeadm/Manifest +++ b/sys-cluster/kubeadm/Manifest @@ -1,8 +1,4 @@ -DIST kubernetes-1.23.16.tar.gz 38115819 BLAKE2B 39a49a07d9d5c134b6d3edb0d48540ae00c134bd80a6236942f67faebf746e49d38bd23ff2d1935591a12043c4014fcd3a66739e6a3f38b72d125170f265254f SHA512 2eff0c8827fd01953e9d70a010f48ce35313969f238d330096b16ca9041983e992c45d97e4f0fb3b189c003b9f7805cf943727e32820fdb893fce1ffc4d8f092 DIST kubernetes-1.23.17.tar.gz 38135738 BLAKE2B 18661ca95d518ede1b8f08ec380bdb4678c0ba06bd4a7bc5aed323d6cec78fb8724a2880bd048df734e17f977159f21532349bae08a351b4adc56f52bb2e8198 SHA512 8cbe20601966faf2830dbe66548b95654651e3501c474be5351dbf64dabd1763f75e0afaa99ee31dabd8ea02ba1b16df6ba2a789aaddcad776ca0690637d05ff -DIST kubernetes-1.24.10.tar.gz 37847249 BLAKE2B 7f95f4ac29b5898033a8c19dc838eeae546befb762a19fa06fc6db29321cf7355f46958f994e374c395a9084bf5dc1580423ef7837e966277b7427a3b72428f3 SHA512 016b95537af6437d6285d07bfded048b093520fe7715dd8074bdde6a1646aa4e16a43b2dc6cae21e678795122b82dbeb1b7ac3f61997802e53bef518e3dcd2d7 DIST kubernetes-1.24.11.tar.gz 37867002 BLAKE2B 3972a049b1549cb1ed147763f09d20b656243814a91d701a1171c171a19721aef2b8393121160edbd75e6f11978b355ce8e97ef6e9d007634428753d7cc1499e SHA512 ceaa5ca883d208e8f80d4d2628195256df697ce5ebedf2524af7cd94ffd783c055c47797cf76f6d4893e2392b652a89f55999251feda196b96b9df4c27215adc -DIST kubernetes-1.25.6.tar.gz 38158861 BLAKE2B af116c78d216477ab757523f66b3332ef982b49384145a69d1b5641b0929b7179171814f89bbba1950b0ab69476e9e48722e8b9b04f0e77610d7dc602d4bac65 SHA512 47e0f736ee7efc614a2e8ed08acd95b64ee78484ac735ca515a03607634a9a94e2d7f3989db300f130506390a93eebb32fba4e54fe2869e3c782932f9b9a033b DIST kubernetes-1.25.7.tar.gz 38169376 BLAKE2B d324e823be2efc3d19892313ed2a7daa0a3c1384f4f03e18a703f63f32609e1a594a8fd3fc49cb78330848fd42ae1d629339a967ab973e73ddff2be8c6a1eb73 SHA512 d164496df03223cab4d1754ab42f88f0e5d5cc95e1e5995442183aa739d583078c6b7ea1febdc92e2bf8b76820857cd8973d8364f452c2e576b7168a32578419 -DIST kubernetes-1.26.1.tar.gz 38162001 BLAKE2B e3589eb702da49786b3363c16a2a405721c2130fe9814c41af94c5d466e7946732c05da46ccecce915e3d80ea122c3a60d1c5b00a86cfed8b7238bd74daa041e SHA512 8794322c1e943ca47a059e6866bda9dee04acc8a202a984efe5c82403e394c4f5aa2c0218fb43582016c7276e17e837f64c39fc3af0c633461bf026aaacc97ae DIST kubernetes-1.26.2.tar.gz 38192706 BLAKE2B ca14778ab5a1d1bdfb935d80eea269adb0414b5613d8e70b9c790711a284b79c8f89cdd22af73b9127fbf9f036b0aa317fbd97bc1df735aead0903d951fe5f4a SHA512 c14f3ba25ae3608ca8d28ab75c2f6a3636970d5851ef1c09259d6be4bce17af131f9adcc0be8e51f4197dc16650461bac8faae7b7ef24f899c1a0ad193ed0a6b diff --git a/sys-cluster/kubeadm/kubeadm-1.23.16.ebuild b/sys-cluster/kubeadm/kubeadm-1.23.16.ebuild deleted file mode 100644 index b72eb2dd6391..000000000000 --- a/sys-cluster/kubeadm/kubeadm-1.23.16.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-completion-r1 go-module - -DESCRIPTION="CLI to Easily bootstrap a secure Kubernetes cluster" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened selinux" - -BDEPEND=">=dev-lang/go-1.17" -RDEPEND="app-containers/cri-tools - selinux? ( sec-policy/selinux-kubernetes )" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - _output/bin/${PN} completion bash > ${PN}.bash || die - _output/bin/${PN} completion zsh > ${PN}.zsh || die - newbashcomp ${PN}.bash ${PN} - insinto /usr/share/zsh/site-functions - newins ${PN}.zsh _${PN} -} diff --git a/sys-cluster/kubeadm/kubeadm-1.23.17.ebuild b/sys-cluster/kubeadm/kubeadm-1.23.17.ebuild index ff8db8b2469d..b72eb2dd6391 100644 --- a/sys-cluster/kubeadm/kubeadm-1.23.17.ebuild +++ b/sys-cluster/kubeadm/kubeadm-1.23.17.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened selinux" BDEPEND=">=dev-lang/go-1.17" diff --git a/sys-cluster/kubeadm/kubeadm-1.24.10.ebuild b/sys-cluster/kubeadm/kubeadm-1.24.10.ebuild deleted file mode 100644 index 75b9826b1578..000000000000 --- a/sys-cluster/kubeadm/kubeadm-1.24.10.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-completion-r1 go-module - -DESCRIPTION="CLI to Easily bootstrap a secure Kubernetes cluster" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened selinux" - -BDEPEND=">=dev-lang/go-1.18.1" -RDEPEND="app-containers/cri-tools - selinux? ( sec-policy/selinux-kubernetes )" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - _output/bin/${PN} completion bash > ${PN}.bash || die - _output/bin/${PN} completion zsh > ${PN}.zsh || die - newbashcomp ${PN}.bash ${PN} - insinto /usr/share/zsh/site-functions - newins ${PN}.zsh _${PN} -} diff --git a/sys-cluster/kubeadm/kubeadm-1.24.11.ebuild b/sys-cluster/kubeadm/kubeadm-1.24.11.ebuild index 9d1d7af21421..75b9826b1578 100644 --- a/sys-cluster/kubeadm/kubeadm-1.24.11.ebuild +++ b/sys-cluster/kubeadm/kubeadm-1.24.11.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened selinux" BDEPEND=">=dev-lang/go-1.18.1" diff --git a/sys-cluster/kubeadm/kubeadm-1.25.6.ebuild b/sys-cluster/kubeadm/kubeadm-1.25.6.ebuild deleted file mode 100644 index c428b054727b..000000000000 --- a/sys-cluster/kubeadm/kubeadm-1.25.6.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit bash-completion-r1 go-module - -DESCRIPTION="CLI to Easily bootstrap a secure Kubernetes cluster" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened selinux" - -BDEPEND=">=dev-lang/go-1.19" -RDEPEND="app-containers/cri-tools - selinux? ( sec-policy/selinux-kubernetes )" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - _output/bin/${PN} completion bash > ${PN}.bash || die - _output/bin/${PN} completion zsh > ${PN}.zsh || die - newbashcomp ${PN}.bash ${PN} - insinto /usr/share/zsh/site-functions - newins ${PN}.zsh _${PN} -} diff --git a/sys-cluster/kubeadm/kubeadm-1.25.7.ebuild b/sys-cluster/kubeadm/kubeadm-1.25.7.ebuild index f9b83313a772..c428b054727b 100644 --- a/sys-cluster/kubeadm/kubeadm-1.25.7.ebuild +++ b/sys-cluster/kubeadm/kubeadm-1.25.7.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened selinux" BDEPEND=">=dev-lang/go-1.19" diff --git a/sys-cluster/kubeadm/kubeadm-1.26.1.ebuild b/sys-cluster/kubeadm/kubeadm-1.26.1.ebuild deleted file mode 100644 index c428b054727b..000000000000 --- a/sys-cluster/kubeadm/kubeadm-1.26.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit bash-completion-r1 go-module - -DESCRIPTION="CLI to Easily bootstrap a secure Kubernetes cluster" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened selinux" - -BDEPEND=">=dev-lang/go-1.19" -RDEPEND="app-containers/cri-tools - selinux? ( sec-policy/selinux-kubernetes )" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - _output/bin/${PN} completion bash > ${PN}.bash || die - _output/bin/${PN} completion zsh > ${PN}.zsh || die - newbashcomp ${PN}.bash ${PN} - insinto /usr/share/zsh/site-functions - newins ${PN}.zsh _${PN} -} diff --git a/sys-cluster/kubeadm/kubeadm-1.26.2.ebuild b/sys-cluster/kubeadm/kubeadm-1.26.2.ebuild index f9b83313a772..c428b054727b 100644 --- a/sys-cluster/kubeadm/kubeadm-1.26.2.ebuild +++ b/sys-cluster/kubeadm/kubeadm-1.26.2.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened selinux" BDEPEND=">=dev-lang/go-1.19" diff --git a/sys-cluster/kubectl/Manifest b/sys-cluster/kubectl/Manifest index 8ca6bc9a690d..fcdea1d67205 100644 --- a/sys-cluster/kubectl/Manifest +++ b/sys-cluster/kubectl/Manifest @@ -1,8 +1,4 @@ -DIST kubernetes-1.23.16.tar.gz 38115819 BLAKE2B 39a49a07d9d5c134b6d3edb0d48540ae00c134bd80a6236942f67faebf746e49d38bd23ff2d1935591a12043c4014fcd3a66739e6a3f38b72d125170f265254f SHA512 2eff0c8827fd01953e9d70a010f48ce35313969f238d330096b16ca9041983e992c45d97e4f0fb3b189c003b9f7805cf943727e32820fdb893fce1ffc4d8f092 DIST kubernetes-1.23.17.tar.gz 38135738 BLAKE2B 18661ca95d518ede1b8f08ec380bdb4678c0ba06bd4a7bc5aed323d6cec78fb8724a2880bd048df734e17f977159f21532349bae08a351b4adc56f52bb2e8198 SHA512 8cbe20601966faf2830dbe66548b95654651e3501c474be5351dbf64dabd1763f75e0afaa99ee31dabd8ea02ba1b16df6ba2a789aaddcad776ca0690637d05ff -DIST kubernetes-1.24.10.tar.gz 37847249 BLAKE2B 7f95f4ac29b5898033a8c19dc838eeae546befb762a19fa06fc6db29321cf7355f46958f994e374c395a9084bf5dc1580423ef7837e966277b7427a3b72428f3 SHA512 016b95537af6437d6285d07bfded048b093520fe7715dd8074bdde6a1646aa4e16a43b2dc6cae21e678795122b82dbeb1b7ac3f61997802e53bef518e3dcd2d7 DIST kubernetes-1.24.11.tar.gz 37867002 BLAKE2B 3972a049b1549cb1ed147763f09d20b656243814a91d701a1171c171a19721aef2b8393121160edbd75e6f11978b355ce8e97ef6e9d007634428753d7cc1499e SHA512 ceaa5ca883d208e8f80d4d2628195256df697ce5ebedf2524af7cd94ffd783c055c47797cf76f6d4893e2392b652a89f55999251feda196b96b9df4c27215adc -DIST kubernetes-1.25.6.tar.gz 38158861 BLAKE2B af116c78d216477ab757523f66b3332ef982b49384145a69d1b5641b0929b7179171814f89bbba1950b0ab69476e9e48722e8b9b04f0e77610d7dc602d4bac65 SHA512 47e0f736ee7efc614a2e8ed08acd95b64ee78484ac735ca515a03607634a9a94e2d7f3989db300f130506390a93eebb32fba4e54fe2869e3c782932f9b9a033b DIST kubernetes-1.25.7.tar.gz 38169376 BLAKE2B d324e823be2efc3d19892313ed2a7daa0a3c1384f4f03e18a703f63f32609e1a594a8fd3fc49cb78330848fd42ae1d629339a967ab973e73ddff2be8c6a1eb73 SHA512 d164496df03223cab4d1754ab42f88f0e5d5cc95e1e5995442183aa739d583078c6b7ea1febdc92e2bf8b76820857cd8973d8364f452c2e576b7168a32578419 -DIST kubernetes-1.26.1.tar.gz 38162001 BLAKE2B e3589eb702da49786b3363c16a2a405721c2130fe9814c41af94c5d466e7946732c05da46ccecce915e3d80ea122c3a60d1c5b00a86cfed8b7238bd74daa041e SHA512 8794322c1e943ca47a059e6866bda9dee04acc8a202a984efe5c82403e394c4f5aa2c0218fb43582016c7276e17e837f64c39fc3af0c633461bf026aaacc97ae DIST kubernetes-1.26.2.tar.gz 38192706 BLAKE2B ca14778ab5a1d1bdfb935d80eea269adb0414b5613d8e70b9c790711a284b79c8f89cdd22af73b9127fbf9f036b0aa317fbd97bc1df735aead0903d951fe5f4a SHA512 c14f3ba25ae3608ca8d28ab75c2f6a3636970d5851ef1c09259d6be4bce17af131f9adcc0be8e51f4197dc16650461bac8faae7b7ef24f899c1a0ad193ed0a6b diff --git a/sys-cluster/kubectl/kubectl-1.23.16.ebuild b/sys-cluster/kubectl/kubectl-1.23.16.ebuild deleted file mode 100644 index 1b335671fc52..000000000000 --- a/sys-cluster/kubectl/kubectl-1.23.16.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-completion-r1 go-module - -DESCRIPTION="CLI to run commands against Kubernetes clusters" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -BDEPEND=">=dev-lang/go-1.17" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - _output/bin/${PN} completion bash > ${PN}.bash || die - _output/bin/${PN} completion zsh > ${PN}.zsh || die - newbashcomp ${PN}.bash ${PN} - insinto /usr/share/zsh/site-functions - newins ${PN}.zsh _${PN} -} diff --git a/sys-cluster/kubectl/kubectl-1.23.17.ebuild b/sys-cluster/kubectl/kubectl-1.23.17.ebuild index 98f40c019610..1b335671fc52 100644 --- a/sys-cluster/kubectl/kubectl-1.23.17.ebuild +++ b/sys-cluster/kubectl/kubectl-1.23.17.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" BDEPEND=">=dev-lang/go-1.17" diff --git a/sys-cluster/kubectl/kubectl-1.24.10.ebuild b/sys-cluster/kubectl/kubectl-1.24.10.ebuild deleted file mode 100644 index f5eaa1f9ddd8..000000000000 --- a/sys-cluster/kubectl/kubectl-1.24.10.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-completion-r1 go-module - -DESCRIPTION="CLI to run commands against Kubernetes clusters" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -BDEPEND=">=dev-lang/go-1.18.1" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - _output/bin/${PN} completion bash > ${PN}.bash || die - _output/bin/${PN} completion zsh > ${PN}.zsh || die - newbashcomp ${PN}.bash ${PN} - insinto /usr/share/zsh/site-functions - newins ${PN}.zsh _${PN} -} diff --git a/sys-cluster/kubectl/kubectl-1.24.11.ebuild b/sys-cluster/kubectl/kubectl-1.24.11.ebuild index cb0239165ac7..f5eaa1f9ddd8 100644 --- a/sys-cluster/kubectl/kubectl-1.24.11.ebuild +++ b/sys-cluster/kubectl/kubectl-1.24.11.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" BDEPEND=">=dev-lang/go-1.18.1" diff --git a/sys-cluster/kubectl/kubectl-1.25.6.ebuild b/sys-cluster/kubectl/kubectl-1.25.6.ebuild deleted file mode 100644 index da2fb28a9977..000000000000 --- a/sys-cluster/kubectl/kubectl-1.25.6.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit bash-completion-r1 go-module - -DESCRIPTION="CLI to run commands against Kubernetes clusters" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -BDEPEND=">=dev-lang/go-1.19" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - _output/bin/${PN} completion bash > ${PN}.bash || die - _output/bin/${PN} completion zsh > ${PN}.zsh || die - newbashcomp ${PN}.bash ${PN} - insinto /usr/share/zsh/site-functions - newins ${PN}.zsh _${PN} -} diff --git a/sys-cluster/kubectl/kubectl-1.25.7.ebuild b/sys-cluster/kubectl/kubectl-1.25.7.ebuild index 0a6d3b7c65b8..da2fb28a9977 100644 --- a/sys-cluster/kubectl/kubectl-1.25.7.ebuild +++ b/sys-cluster/kubectl/kubectl-1.25.7.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" BDEPEND=">=dev-lang/go-1.19" diff --git a/sys-cluster/kubectl/kubectl-1.26.1.ebuild b/sys-cluster/kubectl/kubectl-1.26.1.ebuild deleted file mode 100644 index da2fb28a9977..000000000000 --- a/sys-cluster/kubectl/kubectl-1.26.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit bash-completion-r1 go-module - -DESCRIPTION="CLI to run commands against Kubernetes clusters" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened" - -BDEPEND=">=dev-lang/go-1.19" - -RESTRICT+=" test" -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - _output/bin/${PN} completion bash > ${PN}.bash || die - _output/bin/${PN} completion zsh > ${PN}.zsh || die - newbashcomp ${PN}.bash ${PN} - insinto /usr/share/zsh/site-functions - newins ${PN}.zsh _${PN} -} diff --git a/sys-cluster/kubectl/kubectl-1.26.2.ebuild b/sys-cluster/kubectl/kubectl-1.26.2.ebuild index 0a6d3b7c65b8..da2fb28a9977 100644 --- a/sys-cluster/kubectl/kubectl-1.26.2.ebuild +++ b/sys-cluster/kubectl/kubectl-1.26.2.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened" BDEPEND=">=dev-lang/go-1.19" diff --git a/sys-cluster/kubelet/Manifest b/sys-cluster/kubelet/Manifest index 8ca6bc9a690d..fcdea1d67205 100644 --- a/sys-cluster/kubelet/Manifest +++ b/sys-cluster/kubelet/Manifest @@ -1,8 +1,4 @@ -DIST kubernetes-1.23.16.tar.gz 38115819 BLAKE2B 39a49a07d9d5c134b6d3edb0d48540ae00c134bd80a6236942f67faebf746e49d38bd23ff2d1935591a12043c4014fcd3a66739e6a3f38b72d125170f265254f SHA512 2eff0c8827fd01953e9d70a010f48ce35313969f238d330096b16ca9041983e992c45d97e4f0fb3b189c003b9f7805cf943727e32820fdb893fce1ffc4d8f092 DIST kubernetes-1.23.17.tar.gz 38135738 BLAKE2B 18661ca95d518ede1b8f08ec380bdb4678c0ba06bd4a7bc5aed323d6cec78fb8724a2880bd048df734e17f977159f21532349bae08a351b4adc56f52bb2e8198 SHA512 8cbe20601966faf2830dbe66548b95654651e3501c474be5351dbf64dabd1763f75e0afaa99ee31dabd8ea02ba1b16df6ba2a789aaddcad776ca0690637d05ff -DIST kubernetes-1.24.10.tar.gz 37847249 BLAKE2B 7f95f4ac29b5898033a8c19dc838eeae546befb762a19fa06fc6db29321cf7355f46958f994e374c395a9084bf5dc1580423ef7837e966277b7427a3b72428f3 SHA512 016b95537af6437d6285d07bfded048b093520fe7715dd8074bdde6a1646aa4e16a43b2dc6cae21e678795122b82dbeb1b7ac3f61997802e53bef518e3dcd2d7 DIST kubernetes-1.24.11.tar.gz 37867002 BLAKE2B 3972a049b1549cb1ed147763f09d20b656243814a91d701a1171c171a19721aef2b8393121160edbd75e6f11978b355ce8e97ef6e9d007634428753d7cc1499e SHA512 ceaa5ca883d208e8f80d4d2628195256df697ce5ebedf2524af7cd94ffd783c055c47797cf76f6d4893e2392b652a89f55999251feda196b96b9df4c27215adc -DIST kubernetes-1.25.6.tar.gz 38158861 BLAKE2B af116c78d216477ab757523f66b3332ef982b49384145a69d1b5641b0929b7179171814f89bbba1950b0ab69476e9e48722e8b9b04f0e77610d7dc602d4bac65 SHA512 47e0f736ee7efc614a2e8ed08acd95b64ee78484ac735ca515a03607634a9a94e2d7f3989db300f130506390a93eebb32fba4e54fe2869e3c782932f9b9a033b DIST kubernetes-1.25.7.tar.gz 38169376 BLAKE2B d324e823be2efc3d19892313ed2a7daa0a3c1384f4f03e18a703f63f32609e1a594a8fd3fc49cb78330848fd42ae1d629339a967ab973e73ddff2be8c6a1eb73 SHA512 d164496df03223cab4d1754ab42f88f0e5d5cc95e1e5995442183aa739d583078c6b7ea1febdc92e2bf8b76820857cd8973d8364f452c2e576b7168a32578419 -DIST kubernetes-1.26.1.tar.gz 38162001 BLAKE2B e3589eb702da49786b3363c16a2a405721c2130fe9814c41af94c5d466e7946732c05da46ccecce915e3d80ea122c3a60d1c5b00a86cfed8b7238bd74daa041e SHA512 8794322c1e943ca47a059e6866bda9dee04acc8a202a984efe5c82403e394c4f5aa2c0218fb43582016c7276e17e837f64c39fc3af0c633461bf026aaacc97ae DIST kubernetes-1.26.2.tar.gz 38192706 BLAKE2B ca14778ab5a1d1bdfb935d80eea269adb0414b5613d8e70b9c790711a284b79c8f89cdd22af73b9127fbf9f036b0aa317fbd97bc1df735aead0903d951fe5f4a SHA512 c14f3ba25ae3608ca8d28ab75c2f6a3636970d5851ef1c09259d6be4bce17af131f9adcc0be8e51f4197dc16650461bac8faae7b7ef24f899c1a0ad193ed0a6b diff --git a/sys-cluster/kubelet/kubelet-1.23.16.ebuild b/sys-cluster/kubelet/kubelet-1.23.16.ebuild deleted file mode 100644 index d8a36154e99d..000000000000 --- a/sys-cluster/kubelet/kubelet-1.23.16.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit go-module systemd - -DESCRIPTION="Kubernetes Node Agent" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened selinux" - -BDEPEND=">=dev-lang/go-1.17" -RDEPEND="selinux? ( sec-policy/selinux-kubernetes )" - -RESTRICT+=" test " -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - keepdir /etc/kubernetes/manifests /var/log/kubelet /var/lib/kubelet - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service - insinto /etc/kubernetes - newins "${FILESDIR}"/${PN}.env ${PN}.env -} diff --git a/sys-cluster/kubelet/kubelet-1.23.17.ebuild b/sys-cluster/kubelet/kubelet-1.23.17.ebuild index 6ef0830e9b3f..d8a36154e99d 100644 --- a/sys-cluster/kubelet/kubelet-1.23.17.ebuild +++ b/sys-cluster/kubelet/kubelet-1.23.17.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened selinux" BDEPEND=">=dev-lang/go-1.17" diff --git a/sys-cluster/kubelet/kubelet-1.24.10.ebuild b/sys-cluster/kubelet/kubelet-1.24.10.ebuild deleted file mode 100644 index 547382fb6c70..000000000000 --- a/sys-cluster/kubelet/kubelet-1.24.10.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit go-module systemd - -DESCRIPTION="Kubernetes Node Agent" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened selinux" - -BDEPEND=">=dev-lang/go-1.18.1" -RDEPEND="selinux? ( sec-policy/selinux-kubernetes )" - -RESTRICT+=" test " -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - keepdir /etc/kubernetes/manifests /var/log/kubelet /var/lib/kubelet - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service - insinto /etc/kubernetes - newins "${FILESDIR}"/${PN}.env ${PN}.env -} diff --git a/sys-cluster/kubelet/kubelet-1.24.11.ebuild b/sys-cluster/kubelet/kubelet-1.24.11.ebuild index c855f8434257..547382fb6c70 100644 --- a/sys-cluster/kubelet/kubelet-1.24.11.ebuild +++ b/sys-cluster/kubelet/kubelet-1.24.11.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened selinux" BDEPEND=">=dev-lang/go-1.18.1" diff --git a/sys-cluster/kubelet/kubelet-1.25.6.ebuild b/sys-cluster/kubelet/kubelet-1.25.6.ebuild deleted file mode 100644 index cff3013eb950..000000000000 --- a/sys-cluster/kubelet/kubelet-1.25.6.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module systemd - -DESCRIPTION="Kubernetes Node Agent" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened selinux" - -BDEPEND=">=dev-lang/go-1.19" -RDEPEND="selinux? ( sec-policy/selinux-kubernetes )" - -RESTRICT+=" test " -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - keepdir /etc/kubernetes/manifests /var/log/kubelet /var/lib/kubelet - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service - insinto /etc/kubernetes - newins "${FILESDIR}"/${PN}.env ${PN}.env -} diff --git a/sys-cluster/kubelet/kubelet-1.25.7.ebuild b/sys-cluster/kubelet/kubelet-1.25.7.ebuild index ea082c4400a5..cff3013eb950 100644 --- a/sys-cluster/kubelet/kubelet-1.25.7.ebuild +++ b/sys-cluster/kubelet/kubelet-1.25.7.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened selinux" BDEPEND=">=dev-lang/go-1.19" diff --git a/sys-cluster/kubelet/kubelet-1.26.1.ebuild b/sys-cluster/kubelet/kubelet-1.26.1.ebuild deleted file mode 100644 index cff3013eb950..000000000000 --- a/sys-cluster/kubelet/kubelet-1.26.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module systemd - -DESCRIPTION="Kubernetes Node Agent" -HOMEPAGE="https://kubernetes.io" -SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64" -IUSE="hardened selinux" - -BDEPEND=">=dev-lang/go-1.19" -RDEPEND="selinux? ( sec-policy/selinux-kubernetes )" - -RESTRICT+=" test " -S="${WORKDIR}/kubernetes-${PV}" - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ - emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} -} - -src_install() { - dobin _output/bin/${PN} - keepdir /etc/kubernetes/manifests /var/log/kubelet /var/lib/kubelet - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotated ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service - insinto /etc/kubernetes - newins "${FILESDIR}"/${PN}.env ${PN}.env -} diff --git a/sys-cluster/kubelet/kubelet-1.26.2.ebuild b/sys-cluster/kubelet/kubelet-1.26.2.ebuild index ea082c4400a5..cff3013eb950 100644 --- a/sys-cluster/kubelet/kubelet-1.26.2.ebuild +++ b/sys-cluster/kubelet/kubelet-1.26.2.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64" +KEYWORDS="amd64 ~arm64" IUSE="hardened selinux" BDEPEND=">=dev-lang/go-1.19" diff --git a/sys-cluster/zookeeper-bin/Manifest b/sys-cluster/zookeeper-bin/Manifest index 68a0d13d2107..880e4064adc7 100644 --- a/sys-cluster/zookeeper-bin/Manifest +++ b/sys-cluster/zookeeper-bin/Manifest @@ -1,2 +1,3 @@ DIST zookeeper-bin-3.7.1.tar.gz 12649765 BLAKE2B 1a0fd48185fb2a847d961ffb33387f9bf165f6c7f24eb00c82f1cc413278d48652459a89406dc4af01a4453d39e93be12deb07c0791d2337a43f04e14ce33417 SHA512 9103628a50745fa1a289bca666fda4a9c08ec17c55cf13e66887e7ba76e93dbae60a1f1ffd6c10798be3a16069344ecbc00cebb29bf03d9cd7096ccd098ed011 DIST zookeeper-bin-3.8.0.tar.gz 13185104 BLAKE2B 2afcfbac16a027fb2a009e20a852a747a9a93fb846b214c57ebf6730e73b892aa40037e29013cbc45e87532848bf889d24635becbf7dd554965b7da0a89ac8e0 SHA512 d66e3a40451f840406901b2cd940992b001f92049a372ae48d8b420891605871cd1ae5f6cceb3b10665491e7abef36a4078dace158bd1e0938fcd3567b5234ca +DIST zookeeper-bin-3.8.1.tar.gz 13368512 BLAKE2B c1e5c375f6068e847733aa655e54f0a302ce89dbb3a179abc60f2f2fff558aa264530d53d74857d617ef966c9904281927f50e639ac3e653f958be27c9595e34 SHA512 940ce2fdd4ff33acfc99860b5c604d2d48f37c4d6f0b7c2dcdade7492ecf5385b079bf56db68b4c9c9b8dfed0a86ecd73ee2977621738f263d6e9b8432f34b35 diff --git a/sys-cluster/zookeeper-bin/zookeeper-bin-3.8.1.ebuild b/sys-cluster/zookeeper-bin/zookeeper-bin-3.8.1.ebuild new file mode 100644 index 000000000000..f3969f04bfc3 --- /dev/null +++ b/sys-cluster/zookeeper-bin/zookeeper-bin-3.8.1.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit java-utils-2 + +MY_PN="zookeeper" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A high-performance coordination service for distributed applications" +HOMEPAGE="https://zookeeper.apache.org/" +SRC_URI="https://downloads.apache.org/${MY_PN}/${MY_P}/apache-${MY_P}-bin.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/apache-${MY_P}-bin" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="mirror binchecks" + +BDEPEND=" + acct-group/zookeeper + acct-user/zookeeper +" +RDEPEND=" + ${BDEPEND} + >=virtual/jre-1.8 +" + +INSTALL_DIR=/opt/"${PN}" +export CONFIG_PROTECT="${CONFIG_PROTECT} ${INSTALL_DIR}/conf" + +src_prepare() { + default + rm "${S}"/docs/skin/instruction_arrow.png || die +} + +src_install() { + local DATA_DIR=/var/lib/"${MY_P}" + + # cleanup sources + rm bin/*.cmd || die + + keepdir "${DATA_DIR}" + sed "s:^dataDir=.*:dataDir=${DATA_DIR}:" conf/zoo_sample.cfg > conf/zoo.cfg || die + cp "${FILESDIR}"/log4j.properties conf/ || die + + dodir "${INSTALL_DIR}" + cp -a "${S}"/* "${ED}${INSTALL_DIR}" || die + + # data dir perms + fowners zookeeper:zookeeper "${DATA_DIR}" + + # log dir + keepdir /var/log/zookeeper + fowners zookeeper:zookeeper /var/log/zookeeper + + # init script + newinitd "${FILESDIR}"/zookeeper.initd zookeeper + newconfd "${FILESDIR}"/zookeeper.confd zookeeper + + # env file + cat > 99"${PN}" <<-EOF + PATH="${INSTALL_DIR}"/bin + CONFIG_PROTECT="${INSTALL_DIR}"/conf + EOF + doenvd 99"${PN}" +} diff --git a/sys-devel/Manifest.gz b/sys-devel/Manifest.gz index 6b4ecd2ce1a4..240eb28b580d 100644 Binary files a/sys-devel/Manifest.gz and b/sys-devel/Manifest.gz differ diff --git a/sys-devel/autoconf-archive/autoconf-archive-2023.02.20.ebuild b/sys-devel/autoconf-archive/autoconf-archive-2023.02.20.ebuild index 74cad29304c1..54af93636e73 100644 --- a/sys-devel/autoconf-archive/autoconf-archive-2023.02.20.ebuild +++ b/sys-devel/autoconf-archive/autoconf-archive-2023.02.20.ebuild @@ -9,7 +9,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" # File collisions, bug #540246 RDEPEND=" diff --git a/sys-devel/clang-common/Manifest b/sys-devel/clang-common/Manifest index b1c047b45e06..52a376db7b69 100644 --- a/sys-devel/clang-common/Manifest +++ b/sys-devel/clang-common/Manifest @@ -4,9 +4,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/sys-devel/clang-common/clang-common-16.0.0_rc3-r2.ebuild b/sys-devel/clang-common/clang-common-16.0.0_rc3-r2.ebuild deleted file mode 100644 index 1f768ea302a9..000000000000 --- a/sys-devel/clang-common/clang-common-16.0.0_rc3-r2.ebuild +++ /dev/null @@ -1,177 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit bash-completion-r1 llvm.org - -DESCRIPTION="Common files shared between multiple slots of clang" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="~loong" -IUSE=" - default-compiler-rt default-libcxx default-lld llvm-libunwind - hardened stricter -" - -PDEPEND=" - sys-devel/clang:* - default-compiler-rt? ( - sys-devel/clang-runtime[compiler-rt] - llvm-libunwind? ( sys-libs/llvm-libunwind[static-libs] ) - !llvm-libunwind? ( sys-libs/libunwind[static-libs] ) - ) - !default-compiler-rt? ( sys-devel/gcc ) - default-libcxx? ( >=sys-libs/libcxx-${PV} ) - !default-libcxx? ( sys-devel/gcc ) - default-lld? ( sys-devel/lld ) - !default-lld? ( sys-devel/binutils ) -" -IDEPEND=" - !default-compiler-rt? ( sys-devel/gcc-config ) - !default-libcxx? ( sys-devel/gcc-config ) -" - -LLVM_COMPONENTS=( clang/utils ) -llvm.org_set_globals - -pkg_pretend() { - [[ ${CLANG_IGNORE_DEFAULT_RUNTIMES} ]] && return - - local flag missing_flags=() - for flag in default-{compiler-rt,libcxx,lld}; do - if ! use "${flag}" && has_version "sys-devel/clang[${flag}]"; then - missing_flags+=( "${flag}" ) - fi - done - - if [[ ${missing_flags[@]} ]]; then - eerror "It seems that you have the following flags set on sys-devel/clang:" - eerror - eerror " ${missing_flags[*]}" - eerror - eerror "The default runtimes are now set via flags on sys-devel/clang-common." - eerror "The build is being aborted to prevent breakage. Please either set" - eerror "the respective flags on this ebuild, e.g.:" - eerror - eerror " sys-devel/clang-common ${missing_flags[*]}" - eerror - eerror "or build with CLANG_IGNORE_DEFAULT_RUNTIMES=1." - die "Mismatched defaults detected between sys-devel/clang and sys-devel/clang-common" - fi -} - -src_install() { - newbashcomp bash-autocomplete.sh clang - - insinto /etc/clang - newins - gentoo-runtimes.cfg <<-EOF - # This file is initially generated by sys-devel/clang-runtime. - # It is used to control the default runtimes using by clang. - - --rtlib=$(usex default-compiler-rt compiler-rt libgcc) - --unwindlib=$(usex default-compiler-rt libunwind libgcc) - --stdlib=$(usex default-libcxx libc++ libstdc++) - -fuse-ld=$(usex default-lld lld bfd) - EOF - - newins - gentoo-gcc-install.cfg <<-EOF - # This file is maintained by gcc-config. - # It is used to specify the selected GCC installation. - EOF - - newins - gentoo-common.cfg <<-EOF - # This file contains flags common to clang, clang++ and clang-cpp. - @gentoo-runtimes.cfg - @gentoo-gcc-install.cfg - @gentoo-hardened.cfg - EOF - - # Baseline hardening (bug #851111) - newins - gentoo-hardened.cfg <<-EOF - # Some of these options are added unconditionally, regardless of - # USE=hardened, for parity with sys-devel/gcc. - -fstack-clash-protection - -fstack-protector-strong - -fPIE - -include "${EPREFIX}/usr/include/gentoo/fortify.h" - EOF - - dodir /usr/include/gentoo - - local fortify_level=$(usex hardened 3 2) - # We have to do this because glibc's headers warn if F_S is set - # without optimization and that would at the very least be very noisy - # during builds and at worst trigger many -Werror builds. - cat >> "${ED}/usr/include/gentoo/fortify.h" <<- EOF || die - #ifndef _FORTIFY_SOURCE - # if defined(__has_feature) - # define __GENTOO_HAS_FEATURE(x) __has_feature(x) - # else - # define __GENTOO_HAS_FEATURE(x) 0 - # endif - # - # if defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 - # if !defined(__SANITIZE_ADDRESS__) && !__GENTOO_HAS_FEATURE(address_sanitizer) && !__GENTOO_HAS_FEATURE(memory_sanitizer) - # define _FORTIFY_SOURCE ${fortify_level} - # endif - # endif - # undef __GENTOO_HAS_FEATURE - #endif - EOF - - if use hardened ; then - cat >> "${ED}/etc/clang/gentoo-hardened.cfg" <<-EOF || die - # Options below are conditional on USE=hardened. - -D_GLIBCXX_ASSERTIONS - - # Analogue to GLIBCXX_ASSERTIONS - # https://libcxx.llvm.org/UsingLibcxx.html#assertions-mode - -D_LIBCPP_ENABLE_ASSERTIONS=1 - EOF - fi - - if use stricter; then - newins - gentoo-stricter.cfg <<-EOF - # This file increases the strictness of older clang versions - # to match the newest upstream version. - - # clang-16 defaults - -Werror=implicit-function-declaration - -Werror=implicit-int - -Werror=incompatible-function-pointer-types - - # constructs banned by C2x - -Werror=deprecated-non-prototype - - # deprecated but large blast radius - #-Werror=strict-prototypes - EOF - - cat >> "${ED}/etc/clang/gentoo-common.cfg" <<-EOF || die - @gentoo-stricter.cfg - EOF - fi - - local tool - for tool in clang{,++,-cpp}; do - newins - "${tool}.cfg" <<-EOF - # This configuration file is used by ${tool} driver. - @gentoo-common.cfg - EOF - done -} - -pkg_preinst() { - if has_version -b sys-devel/gcc-config && has_version sys-devel/gcc - then - local gcc_path=$(gcc-config --get-lib-path 2>/dev/null) - if [[ -n ${gcc_path} ]]; then - cat >> "${ED}/etc/clang/gentoo-gcc-install.cfg" <<-EOF - --gcc-install-dir="${gcc_path%%:*}" - EOF - fi - fi -} diff --git a/sys-devel/clang-common/clang-common-16.0.0_rc4-r1.ebuild b/sys-devel/clang-common/clang-common-16.0.0_rc4-r1.ebuild deleted file mode 100644 index 1f768ea302a9..000000000000 --- a/sys-devel/clang-common/clang-common-16.0.0_rc4-r1.ebuild +++ /dev/null @@ -1,177 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit bash-completion-r1 llvm.org - -DESCRIPTION="Common files shared between multiple slots of clang" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="~loong" -IUSE=" - default-compiler-rt default-libcxx default-lld llvm-libunwind - hardened stricter -" - -PDEPEND=" - sys-devel/clang:* - default-compiler-rt? ( - sys-devel/clang-runtime[compiler-rt] - llvm-libunwind? ( sys-libs/llvm-libunwind[static-libs] ) - !llvm-libunwind? ( sys-libs/libunwind[static-libs] ) - ) - !default-compiler-rt? ( sys-devel/gcc ) - default-libcxx? ( >=sys-libs/libcxx-${PV} ) - !default-libcxx? ( sys-devel/gcc ) - default-lld? ( sys-devel/lld ) - !default-lld? ( sys-devel/binutils ) -" -IDEPEND=" - !default-compiler-rt? ( sys-devel/gcc-config ) - !default-libcxx? ( sys-devel/gcc-config ) -" - -LLVM_COMPONENTS=( clang/utils ) -llvm.org_set_globals - -pkg_pretend() { - [[ ${CLANG_IGNORE_DEFAULT_RUNTIMES} ]] && return - - local flag missing_flags=() - for flag in default-{compiler-rt,libcxx,lld}; do - if ! use "${flag}" && has_version "sys-devel/clang[${flag}]"; then - missing_flags+=( "${flag}" ) - fi - done - - if [[ ${missing_flags[@]} ]]; then - eerror "It seems that you have the following flags set on sys-devel/clang:" - eerror - eerror " ${missing_flags[*]}" - eerror - eerror "The default runtimes are now set via flags on sys-devel/clang-common." - eerror "The build is being aborted to prevent breakage. Please either set" - eerror "the respective flags on this ebuild, e.g.:" - eerror - eerror " sys-devel/clang-common ${missing_flags[*]}" - eerror - eerror "or build with CLANG_IGNORE_DEFAULT_RUNTIMES=1." - die "Mismatched defaults detected between sys-devel/clang and sys-devel/clang-common" - fi -} - -src_install() { - newbashcomp bash-autocomplete.sh clang - - insinto /etc/clang - newins - gentoo-runtimes.cfg <<-EOF - # This file is initially generated by sys-devel/clang-runtime. - # It is used to control the default runtimes using by clang. - - --rtlib=$(usex default-compiler-rt compiler-rt libgcc) - --unwindlib=$(usex default-compiler-rt libunwind libgcc) - --stdlib=$(usex default-libcxx libc++ libstdc++) - -fuse-ld=$(usex default-lld lld bfd) - EOF - - newins - gentoo-gcc-install.cfg <<-EOF - # This file is maintained by gcc-config. - # It is used to specify the selected GCC installation. - EOF - - newins - gentoo-common.cfg <<-EOF - # This file contains flags common to clang, clang++ and clang-cpp. - @gentoo-runtimes.cfg - @gentoo-gcc-install.cfg - @gentoo-hardened.cfg - EOF - - # Baseline hardening (bug #851111) - newins - gentoo-hardened.cfg <<-EOF - # Some of these options are added unconditionally, regardless of - # USE=hardened, for parity with sys-devel/gcc. - -fstack-clash-protection - -fstack-protector-strong - -fPIE - -include "${EPREFIX}/usr/include/gentoo/fortify.h" - EOF - - dodir /usr/include/gentoo - - local fortify_level=$(usex hardened 3 2) - # We have to do this because glibc's headers warn if F_S is set - # without optimization and that would at the very least be very noisy - # during builds and at worst trigger many -Werror builds. - cat >> "${ED}/usr/include/gentoo/fortify.h" <<- EOF || die - #ifndef _FORTIFY_SOURCE - # if defined(__has_feature) - # define __GENTOO_HAS_FEATURE(x) __has_feature(x) - # else - # define __GENTOO_HAS_FEATURE(x) 0 - # endif - # - # if defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 - # if !defined(__SANITIZE_ADDRESS__) && !__GENTOO_HAS_FEATURE(address_sanitizer) && !__GENTOO_HAS_FEATURE(memory_sanitizer) - # define _FORTIFY_SOURCE ${fortify_level} - # endif - # endif - # undef __GENTOO_HAS_FEATURE - #endif - EOF - - if use hardened ; then - cat >> "${ED}/etc/clang/gentoo-hardened.cfg" <<-EOF || die - # Options below are conditional on USE=hardened. - -D_GLIBCXX_ASSERTIONS - - # Analogue to GLIBCXX_ASSERTIONS - # https://libcxx.llvm.org/UsingLibcxx.html#assertions-mode - -D_LIBCPP_ENABLE_ASSERTIONS=1 - EOF - fi - - if use stricter; then - newins - gentoo-stricter.cfg <<-EOF - # This file increases the strictness of older clang versions - # to match the newest upstream version. - - # clang-16 defaults - -Werror=implicit-function-declaration - -Werror=implicit-int - -Werror=incompatible-function-pointer-types - - # constructs banned by C2x - -Werror=deprecated-non-prototype - - # deprecated but large blast radius - #-Werror=strict-prototypes - EOF - - cat >> "${ED}/etc/clang/gentoo-common.cfg" <<-EOF || die - @gentoo-stricter.cfg - EOF - fi - - local tool - for tool in clang{,++,-cpp}; do - newins - "${tool}.cfg" <<-EOF - # This configuration file is used by ${tool} driver. - @gentoo-common.cfg - EOF - done -} - -pkg_preinst() { - if has_version -b sys-devel/gcc-config && has_version sys-devel/gcc - then - local gcc_path=$(gcc-config --get-lib-path 2>/dev/null) - if [[ -n ${gcc_path} ]]; then - cat >> "${ED}/etc/clang/gentoo-gcc-install.cfg" <<-EOF - --gcc-install-dir="${gcc_path%%:*}" - EOF - fi - fi -} diff --git a/sys-devel/clang-common/clang-common-17.0.0_pre20230304-r1.ebuild b/sys-devel/clang-common/clang-common-17.0.0_pre20230304-r1.ebuild deleted file mode 100644 index 808c1e1a0ae1..000000000000 --- a/sys-devel/clang-common/clang-common-17.0.0_pre20230304-r1.ebuild +++ /dev/null @@ -1,177 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit bash-completion-r1 llvm.org - -DESCRIPTION="Common files shared between multiple slots of clang" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="" -IUSE=" - default-compiler-rt default-libcxx default-lld llvm-libunwind - hardened stricter -" - -PDEPEND=" - sys-devel/clang:* - default-compiler-rt? ( - sys-devel/clang-runtime[compiler-rt] - llvm-libunwind? ( sys-libs/llvm-libunwind[static-libs] ) - !llvm-libunwind? ( sys-libs/libunwind[static-libs] ) - ) - !default-compiler-rt? ( sys-devel/gcc ) - default-libcxx? ( >=sys-libs/libcxx-${PV} ) - !default-libcxx? ( sys-devel/gcc ) - default-lld? ( sys-devel/lld ) - !default-lld? ( sys-devel/binutils ) -" -IDEPEND=" - !default-compiler-rt? ( sys-devel/gcc-config ) - !default-libcxx? ( sys-devel/gcc-config ) -" - -LLVM_COMPONENTS=( clang/utils ) -llvm.org_set_globals - -pkg_pretend() { - [[ ${CLANG_IGNORE_DEFAULT_RUNTIMES} ]] && return - - local flag missing_flags=() - for flag in default-{compiler-rt,libcxx,lld}; do - if ! use "${flag}" && has_version "sys-devel/clang[${flag}]"; then - missing_flags+=( "${flag}" ) - fi - done - - if [[ ${missing_flags[@]} ]]; then - eerror "It seems that you have the following flags set on sys-devel/clang:" - eerror - eerror " ${missing_flags[*]}" - eerror - eerror "The default runtimes are now set via flags on sys-devel/clang-common." - eerror "The build is being aborted to prevent breakage. Please either set" - eerror "the respective flags on this ebuild, e.g.:" - eerror - eerror " sys-devel/clang-common ${missing_flags[*]}" - eerror - eerror "or build with CLANG_IGNORE_DEFAULT_RUNTIMES=1." - die "Mismatched defaults detected between sys-devel/clang and sys-devel/clang-common" - fi -} - -src_install() { - newbashcomp bash-autocomplete.sh clang - - insinto /etc/clang - newins - gentoo-runtimes.cfg <<-EOF - # This file is initially generated by sys-devel/clang-runtime. - # It is used to control the default runtimes using by clang. - - --rtlib=$(usex default-compiler-rt compiler-rt libgcc) - --unwindlib=$(usex default-compiler-rt libunwind libgcc) - --stdlib=$(usex default-libcxx libc++ libstdc++) - -fuse-ld=$(usex default-lld lld bfd) - EOF - - newins - gentoo-gcc-install.cfg <<-EOF - # This file is maintained by gcc-config. - # It is used to specify the selected GCC installation. - EOF - - newins - gentoo-common.cfg <<-EOF - # This file contains flags common to clang, clang++ and clang-cpp. - @gentoo-runtimes.cfg - @gentoo-gcc-install.cfg - @gentoo-hardened.cfg - EOF - - # Baseline hardening (bug #851111) - newins - gentoo-hardened.cfg <<-EOF - # Some of these options are added unconditionally, regardless of - # USE=hardened, for parity with sys-devel/gcc. - -fstack-clash-protection - -fstack-protector-strong - -fPIE - -include "${EPREFIX}/usr/include/gentoo/fortify.h" - EOF - - dodir /usr/include/gentoo - - local fortify_level=$(usex hardened 3 2) - # We have to do this because glibc's headers warn if F_S is set - # without optimization and that would at the very least be very noisy - # during builds and at worst trigger many -Werror builds. - cat >> "${ED}/usr/include/gentoo/fortify.h" <<- EOF || die - #ifndef _FORTIFY_SOURCE - # if defined(__has_feature) - # define __GENTOO_HAS_FEATURE(x) __has_feature(x) - # else - # define __GENTOO_HAS_FEATURE(x) 0 - # endif - # - # if defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 - # if !defined(__SANITIZE_ADDRESS__) && !__GENTOO_HAS_FEATURE(address_sanitizer) && !__GENTOO_HAS_FEATURE(memory_sanitizer) - # define _FORTIFY_SOURCE ${fortify_level} - # endif - # endif - # undef __GENTOO_HAS_FEATURE - #endif - EOF - - if use hardened ; then - cat >> "${ED}/etc/clang/gentoo-hardened.cfg" <<-EOF || die - # Options below are conditional on USE=hardened. - -D_GLIBCXX_ASSERTIONS - - # Analogue to GLIBCXX_ASSERTIONS - # https://libcxx.llvm.org/UsingLibcxx.html#assertions-mode - -D_LIBCPP_ENABLE_ASSERTIONS=1 - EOF - fi - - if use stricter; then - newins - gentoo-stricter.cfg <<-EOF - # This file increases the strictness of older clang versions - # to match the newest upstream version. - - # clang-16 defaults - -Werror=implicit-function-declaration - -Werror=implicit-int - -Werror=incompatible-function-pointer-types - - # constructs banned by C2x - -Werror=deprecated-non-prototype - - # deprecated but large blast radius - #-Werror=strict-prototypes - EOF - - cat >> "${ED}/etc/clang/gentoo-common.cfg" <<-EOF || die - @gentoo-stricter.cfg - EOF - fi - - local tool - for tool in clang{,++,-cpp}; do - newins - "${tool}.cfg" <<-EOF - # This configuration file is used by ${tool} driver. - @gentoo-common.cfg - EOF - done -} - -pkg_preinst() { - if has_version -b sys-devel/gcc-config && has_version sys-devel/gcc - then - local gcc_path=$(gcc-config --get-lib-path 2>/dev/null) - if [[ -n ${gcc_path} ]]; then - cat >> "${ED}/etc/clang/gentoo-gcc-install.cfg" <<-EOF - --gcc-install-dir="${gcc_path%%:*}" - EOF - fi - fi -} diff --git a/sys-devel/clang-runtime/clang-runtime-16.0.0_rc3.ebuild b/sys-devel/clang-runtime/clang-runtime-16.0.0_rc3.ebuild deleted file mode 100644 index b4fc2669d5d7..000000000000 --- a/sys-devel/clang-runtime/clang-runtime-16.0.0_rc3.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit multilib-build toolchain-funcs - -DESCRIPTION="Meta-ebuild for clang runtime libraries" -HOMEPAGE="https://clang.llvm.org/" - -LICENSE="metapackage" -SLOT="${PV%%.*}" -KEYWORDS="~loong" -IUSE="+compiler-rt libcxx openmp +sanitize" -REQUIRED_USE="sanitize? ( compiler-rt )" - -RDEPEND=" - compiler-rt? ( - ~sys-libs/compiler-rt-${PV}:${SLOT}[abi_x86_32(+)?,abi_x86_64(+)?] - sanitize? ( - ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT}[abi_x86_32(+)?,abi_x86_64(+)?] - ) - ) - libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] ) - openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] ) -" - -pkg_pretend() { - if tc-is-clang; then - ewarn "You seem to be using clang as a system compiler. As of clang-16," - ewarn "upstream has turned a few warnings that commonly occur during" - ewarn "configure script runs into errors by default. This causes some" - ewarn "configure tests to start failing, sometimes resulting in silent" - ewarn "breakage, missing functionality or runtime misbehavior. It is" - ewarn "not yet clear whether the change will remain or be reverted." - ewarn - ewarn "For more information, please see:" - ewarn "https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration/65213" - fi -} diff --git a/sys-devel/clang-runtime/clang-runtime-16.0.0_rc4.ebuild b/sys-devel/clang-runtime/clang-runtime-16.0.0_rc4.ebuild deleted file mode 100644 index b4fc2669d5d7..000000000000 --- a/sys-devel/clang-runtime/clang-runtime-16.0.0_rc4.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit multilib-build toolchain-funcs - -DESCRIPTION="Meta-ebuild for clang runtime libraries" -HOMEPAGE="https://clang.llvm.org/" - -LICENSE="metapackage" -SLOT="${PV%%.*}" -KEYWORDS="~loong" -IUSE="+compiler-rt libcxx openmp +sanitize" -REQUIRED_USE="sanitize? ( compiler-rt )" - -RDEPEND=" - compiler-rt? ( - ~sys-libs/compiler-rt-${PV}:${SLOT}[abi_x86_32(+)?,abi_x86_64(+)?] - sanitize? ( - ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT}[abi_x86_32(+)?,abi_x86_64(+)?] - ) - ) - libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] ) - openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] ) -" - -pkg_pretend() { - if tc-is-clang; then - ewarn "You seem to be using clang as a system compiler. As of clang-16," - ewarn "upstream has turned a few warnings that commonly occur during" - ewarn "configure script runs into errors by default. This causes some" - ewarn "configure tests to start failing, sometimes resulting in silent" - ewarn "breakage, missing functionality or runtime misbehavior. It is" - ewarn "not yet clear whether the change will remain or be reverted." - ewarn - ewarn "For more information, please see:" - ewarn "https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration/65213" - fi -} diff --git a/sys-devel/clang-runtime/clang-runtime-17.0.0_pre20230304.ebuild b/sys-devel/clang-runtime/clang-runtime-17.0.0_pre20230304.ebuild deleted file mode 100644 index 67b42357665e..000000000000 --- a/sys-devel/clang-runtime/clang-runtime-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit multilib-build toolchain-funcs - -DESCRIPTION="Meta-ebuild for clang runtime libraries" -HOMEPAGE="https://clang.llvm.org/" - -LICENSE="metapackage" -SLOT="${PV%%.*}" -KEYWORDS="" -IUSE="+compiler-rt libcxx openmp +sanitize" -REQUIRED_USE="sanitize? ( compiler-rt )" -PROPERTIES="live" - -RDEPEND=" - compiler-rt? ( - ~sys-libs/compiler-rt-${PV}:${SLOT}[abi_x86_32(+)?,abi_x86_64(+)?] - sanitize? ( - ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT}[abi_x86_32(+)?,abi_x86_64(+)?] - ) - ) - libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] ) - openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] ) -" - -pkg_pretend() { - if tc-is-clang; then - ewarn "You seem to be using clang as a system compiler. As of clang-16," - ewarn "upstream has turned a few warnings that commonly occur during" - ewarn "configure script runs into errors by default. This causes some" - ewarn "configure tests to start failing, sometimes resulting in silent" - ewarn "breakage, missing functionality or runtime misbehavior. It is" - ewarn "not yet clear whether the change will remain or be reverted." - ewarn - ewarn "For more information, please see:" - ewarn "https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration/65213" - fi -} diff --git a/sys-devel/clang/Manifest b/sys-devel/clang/Manifest index f364115a69b2..1a180b504684 100644 --- a/sys-devel/clang/Manifest +++ b/sys-devel/clang/Manifest @@ -9,9 +9,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/sys-devel/clang/clang-16.0.0_rc3.ebuild b/sys-devel/clang/clang-16.0.0_rc3.ebuild deleted file mode 100644 index 9c7caefc9f46..000000000000 --- a/sys-devel/clang/clang-16.0.0_rc3.ebuild +++ /dev/null @@ -1,477 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org multilib multilib-minimal \ - prefix python-single-r1 toolchain-funcs flag-o-matic - -DESCRIPTION="C language family frontend for LLVM" -HOMEPAGE="https://llvm.org/" - -# MSVCSetupApi.h: MIT -# sorttable.js: MIT - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT" -SLOT="${LLVM_MAJOR}/${LLVM_SOABI}" -KEYWORDS="~loong" -IUSE="debug doc +extra ieee-long-double +pie +static-analyzer test xml" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RESTRICT="!test? ( test )" - -DEPEND=" - ~sys-devel/llvm-${PV}:${LLVM_MAJOR}=[debug=,${MULTILIB_USEDEP}] - static-analyzer? ( dev-lang/perl:* ) - xml? ( dev-libs/libxml2:2=[${MULTILIB_USEDEP}] ) -" - -RDEPEND=" - ${PYTHON_DEPS} - ${DEPEND} - >=sys-devel/clang-common-${PV} -" -BDEPEND=" - ${PYTHON_DEPS} - >=dev-util/cmake-3.16 - doc? ( $(python_gen_cond_dep ' - dev-python/recommonmark[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ') ) - xml? ( virtual/pkgconfig ) -" -PDEPEND=" - ~sys-devel/clang-runtime-${PV} - sys-devel/clang-toolchain-symlinks:${LLVM_MAJOR} -" - -LLVM_COMPONENTS=( - clang clang-tools-extra cmake - llvm/lib/Transforms/Hello -) -LLVM_MANPAGES=1 -LLVM_TEST_COMPONENTS=( - llvm/lib/Testing - llvm/utils - third-party -) -LLVM_USE_TARGETS=llvm -llvm.org_set_globals - -# Multilib notes: -# 1. ABI_* flags control ABIs libclang* is built for only. -# 2. clang is always capable of compiling code for all ABIs for enabled -# target. However, you will need appropriate crt* files (installed -# e.g. by sys-devel/gcc and sys-libs/glibc). -# 3. ${CHOST}-clang wrappers are always installed for all ABIs included -# in the current profile (i.e. alike supported by sys-devel/gcc). -# -# Therefore: use sys-devel/clang[${MULTILIB_USEDEP}] only if you need -# multilib clang* libraries (not runtime, not wrappers). - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-single-r1_pkg_setup -} - -src_prepare() { - # create extra parent dir for relative CLANG_RESOURCE_DIR access - mkdir -p x/y || die - BUILD_DIR=${WORKDIR}/x/y/clang - - llvm.org_src_prepare - - # add Gentoo Portage Prefix for Darwin (see prefix-dirs.patch) - eprefixify \ - lib/Lex/InitHeaderSearch.cpp \ - lib/Driver/ToolChains/Darwin.cpp || die - - if ! use prefix-guest && [[ -n ${EPREFIX} ]]; then - sed -i "/LibDir.*Loader/s@return \"\/\"@return \"${EPREFIX}/\"@" lib/Driver/ToolChains/Linux.cpp || die - fi -} - -check_distribution_components() { - if [[ ${CMAKE_MAKEFILE_GENERATOR} == ninja ]]; then - local all_targets=() my_targets=() l - cd "${BUILD_DIR}" || die - - while read -r l; do - if [[ ${l} == install-*-stripped:* ]]; then - l=${l#install-} - l=${l%%-stripped*} - - case ${l} in - # meta-targets - clang-libraries|distribution) - continue - ;; - # tools - clang|clangd|clang-*) - ;; - # static libraries - clang*|findAllSymbols) - continue - ;; - # conditional to USE=doc - docs-clang-html|docs-clang-tools-html) - use doc || continue - ;; - esac - - all_targets+=( "${l}" ) - fi - done < <(${NINJA} -t targets all) - - while read -r l; do - my_targets+=( "${l}" ) - done < <(get_distribution_components $"\n") - - local add=() remove=() - for l in "${all_targets[@]}"; do - if ! has "${l}" "${my_targets[@]}"; then - add+=( "${l}" ) - fi - done - for l in "${my_targets[@]}"; do - if ! has "${l}" "${all_targets[@]}"; then - remove+=( "${l}" ) - fi - done - - if [[ ${#add[@]} -gt 0 || ${#remove[@]} -gt 0 ]]; then - eqawarn "get_distribution_components() is outdated!" - eqawarn " Add: ${add[*]}" - eqawarn "Remove: ${remove[*]}" - fi - cd - >/dev/null || die - fi -} - -get_distribution_components() { - local sep=${1-;} - - local out=( - # common stuff - clang-cmake-exports - clang-headers - clang-resource-headers - libclang-headers - - aarch64-resource-headers - arm-common-resource-headers - arm-resource-headers - core-resource-headers - cuda-resource-headers - hexagon-resource-headers - hip-resource-headers - hlsl-resource-headers - mips-resource-headers - opencl-resource-headers - openmp-resource-headers - ppc-htm-resource-headers - ppc-resource-headers - riscv-resource-headers - systemz-resource-headers - utility-resource-headers - ve-resource-headers - webassembly-resource-headers - windows-resource-headers - x86-resource-headers - - # libs - clang-cpp - libclang - ) - - if multilib_is_native_abi; then - out+=( - # common stuff - bash-autocomplete - libclang-python-bindings - - # tools - amdgpu-arch - c-index-test - clang - clang-format - clang-offload-bundler - clang-offload-packager - clang-refactor - clang-repl - clang-rename - clang-scan-deps - diagtool - hmaptool - nvptx-arch - - # needed for cross-compiling Clang - clang-tblgen - ) - - if use extra; then - out+=( - # extra tools - clang-apply-replacements - clang-change-namespace - clang-doc - clang-include-cleaner - clang-include-fixer - clang-move - clang-pseudo - clang-query - clang-reorder-fields - clang-tidy - clang-tidy-headers - clangd - find-all-symbols - modularize - pp-trace - ) - fi - - if llvm_are_manpages_built; then - out+=( docs-clang-man ) - use extra && out+=( docs-clang-tools-man ) - fi - - if use doc; then - out+=( docs-clang-html ) - use extra && out+=( docs-clang-tools-html ) - fi - - use static-analyzer && out+=( - clang-check - clang-extdef-mapping - scan-build - scan-build-py - scan-view - ) - fi - - printf "%s${sep}" "${out[@]}" -} - -multilib_src_configure() { - tc-is-gcc && filter-lto # GCC miscompiles LLVM, bug #873670 - - local mycmakeargs=( - -DDEFAULT_SYSROOT=$(usex prefix-guest "" "${EPREFIX}") - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}" - -DCMAKE_INSTALL_MANDIR="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/share/man" - -DCLANG_CONFIG_FILE_SYSTEM_DIR="${EPREFIX}/etc/clang" - # relative to bindir - -DCLANG_RESOURCE_DIR="../../../../lib/clang/${LLVM_MAJOR}" - - -DBUILD_SHARED_LIBS=OFF - -DCLANG_LINK_CLANG_DYLIB=ON - -DLLVM_DISTRIBUTION_COMPONENTS=$(get_distribution_components) - -DCLANG_INCLUDE_TESTS=$(usex test) - - -DLLVM_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" - - -DCMAKE_DISABLE_FIND_PACKAGE_LibXml2=$(usex !xml) - # libgomp support fails to find headers without explicit -I - # furthermore, it provides only syntax checking - -DCLANG_DEFAULT_OPENMP_RUNTIME=libomp - - # disable using CUDA to autodetect GPU, just build for all - -DCMAKE_DISABLE_FIND_PACKAGE_CUDA=ON - # disable linking to HSA to avoid automagic dep, - # load it dynamically instead - -DCMAKE_DISABLE_FIND_PACKAGE_hsa-runtime64=ON - - -DCLANG_DEFAULT_PIE_ON_LINUX=$(usex pie) - - -DCLANG_ENABLE_ARCMT=$(usex static-analyzer) - -DCLANG_ENABLE_STATIC_ANALYZER=$(usex static-analyzer) - - -DPython3_EXECUTABLE="${PYTHON}" - ) - - if ! use elibc_musl; then - mycmakeargs+=( - -DPPC_LINUX_DEFAULT_IEEELONGDOUBLE=$(usex ieee-long-double) - ) - fi - - use test && mycmakeargs+=( - -DLLVM_BUILD_TESTS=ON - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - if multilib_is_native_abi; then - local build_docs=OFF - if llvm_are_manpages_built; then - build_docs=ON - mycmakeargs+=( - -DLLVM_BUILD_DOCS=ON - -DLLVM_ENABLE_SPHINX=ON - -DCLANG_INSTALL_SPHINX_HTML_DIR="${EPREFIX}/usr/share/doc/${PF}/html" - -DSPHINX_WARNINGS_AS_ERRORS=OFF - ) - if use extra; then - mycmakeargs+=( - -DCLANG-TOOLS_INSTALL_SPHINX_HTML_DIR="${EPREFIX}/usr/share/doc/${PF}/tools-extra" - ) - fi - fi - mycmakeargs+=( - -DCLANG_INCLUDE_DOCS=${build_docs} - ) - fi - if multilib_native_use extra; then - mycmakeargs+=( - -DLLVM_EXTERNAL_CLANG_TOOLS_EXTRA_SOURCE_DIR="${WORKDIR}"/clang-tools-extra - -DCLANG_TOOLS_EXTRA_INCLUDE_DOCS=${build_docs} - ) - else - mycmakeargs+=( - -DLLVM_TOOL_CLANG_TOOLS_EXTRA_BUILD=OFF - ) - fi - - if [[ -n ${EPREFIX} ]]; then - mycmakeargs+=( - -DGCC_INSTALL_PREFIX="${EPREFIX}/usr" - ) - fi - - if tc-is-cross-compiler; then - has_version -b sys-devel/clang:${LLVM_MAJOR} || - die "sys-devel/clang:${LLVM_MAJOR} is required on the build host." - local tools_bin=${BROOT}/usr/lib/llvm/${LLVM_MAJOR}/bin - mycmakeargs+=( - -DLLVM_TOOLS_BINARY_DIR="${tools_bin}" - -DCLANG_TABLEGEN="${tools_bin}"/clang-tblgen - ) - fi - - # LLVM can have very high memory consumption while linking, - # exhausting the limit on 32-bit linker executable - use x86 && local -x LDFLAGS="${LDFLAGS} -Wl,--no-keep-memory" - - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - cmake_src_configure - - multilib_is_native_abi && check_distribution_components -} - -multilib_src_compile() { - cmake_build distribution - - # provide a symlink for tests - if [[ ! -L ${WORKDIR}/lib/clang ]]; then - mkdir -p "${WORKDIR}"/lib || die - ln -s "${BUILD_DIR}/$(get_libdir)/clang" "${WORKDIR}"/lib/clang || die - fi -} - -multilib_src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - local test_targets=( check-clang ) - if multilib_native_use extra; then - test_targets+=( - check-clang-tools - check-clangd - ) - fi - cmake_build "${test_targets[@]}" -} - -src_install() { - MULTILIB_WRAPPED_HEADERS=( - /usr/include/clang/Config/config.h - ) - - multilib-minimal_src_install - - # Move runtime headers to /usr/lib/clang, where they belong - mv "${ED}"/usr/include/clangrt "${ED}"/usr/lib/clang || die - # move (remaining) wrapped headers back - if use extra; then - mv "${T}"/clang-tidy "${ED}"/usr/include/ || die - fi - mv "${ED}"/usr/include "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include || die - - # Apply CHOST and version suffix to clang tools - local clang_tools=( clang clang++ clang-cl clang-cpp ) - local abi i - - # cmake gives us: - # - clang-X - # - clang -> clang-X - # - clang++, clang-cl, clang-cpp -> clang - # we want to have: - # - clang-X - # - clang++-X, clang-cl-X, clang-cpp-X -> clang-X - # - clang, clang++, clang-cl, clang-cpp -> clang*-X - # also in CHOST variant - for i in "${clang_tools[@]:1}"; do - rm "${ED}/usr/lib/llvm/${LLVM_MAJOR}/bin/${i}" || die - dosym "clang-${LLVM_MAJOR}" "/usr/lib/llvm/${LLVM_MAJOR}/bin/${i}-${LLVM_MAJOR}" - dosym "${i}-${LLVM_MAJOR}" "/usr/lib/llvm/${LLVM_MAJOR}/bin/${i}" - done - - # now create target symlinks for all supported ABIs - for abi in $(get_all_abis); do - local abi_chost=$(get_abi_CHOST "${abi}") - for i in "${clang_tools[@]}"; do - dosym "${i}-${LLVM_MAJOR}" \ - "/usr/lib/llvm/${LLVM_MAJOR}/bin/${abi_chost}-${i}-${LLVM_MAJOR}" - dosym "${abi_chost}-${i}-${LLVM_MAJOR}" \ - "/usr/lib/llvm/${LLVM_MAJOR}/bin/${abi_chost}-${i}" - done - done -} - -multilib_src_install() { - DESTDIR=${D} cmake_build install-distribution - - # move headers to /usr/include for wrapping & ABI mismatch checks - # (also drop the version suffix from runtime headers) - rm -rf "${ED}"/usr/include || die - mv "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include "${ED}"/usr/include || die - mv "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/clang "${ED}"/usr/include/clangrt || die - if multilib_native_use extra; then - # don't wrap clang-tidy headers, the list is too long - # (they're fine for non-native ABI but enabling the targets is problematic) - mv "${ED}"/usr/include/clang-tidy "${T}/" || die - fi -} - -multilib_src_install_all() { - python_fix_shebang "${ED}" - if use static-analyzer; then - python_optimize "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/share/scan-view - fi - - docompress "/usr/lib/llvm/${LLVM_MAJOR}/share/man" - llvm_install_manpages - # match 'html' non-compression - use doc && docompress -x "/usr/share/doc/${PF}/tools-extra" - # +x for some reason; TODO: investigate - use static-analyzer && fperms a-x "/usr/lib/llvm/${LLVM_MAJOR}/share/man/man1/scan-build.1" -} - -pkg_postinst() { - if [[ -z ${ROOT} && -f ${EPREFIX}/usr/share/eselect/modules/compiler-shadow.eselect ]] ; then - eselect compiler-shadow update all - fi - - elog "You can find additional utility scripts in:" - elog " ${EROOT}/usr/lib/llvm/${LLVM_MAJOR}/share/clang" - if use extra; then - elog "Some of them are vim integration scripts (with instructions inside)." - elog "The run-clang-tidy.py script requires the following additional package:" - elog " dev-python/pyyaml" - fi -} - -pkg_postrm() { - if [[ -z ${ROOT} && -f ${EPREFIX}/usr/share/eselect/modules/compiler-shadow.eselect ]] ; then - eselect compiler-shadow clean all - fi -} diff --git a/sys-devel/clang/clang-16.0.0_rc4.ebuild b/sys-devel/clang/clang-16.0.0_rc4.ebuild deleted file mode 100644 index 93bdd2ab61a8..000000000000 --- a/sys-devel/clang/clang-16.0.0_rc4.ebuild +++ /dev/null @@ -1,481 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org multilib multilib-minimal \ - prefix python-single-r1 toolchain-funcs flag-o-matic - -DESCRIPTION="C language family frontend for LLVM" -HOMEPAGE="https://llvm.org/" - -# MSVCSetupApi.h: MIT -# sorttable.js: MIT - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT" -SLOT="${LLVM_MAJOR}/${LLVM_SOABI}" -KEYWORDS="~loong" -IUSE="debug doc +extra ieee-long-double +pie +static-analyzer test xml" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RESTRICT="!test? ( test )" - -DEPEND=" - ~sys-devel/llvm-${PV}:${LLVM_MAJOR}=[debug=,${MULTILIB_USEDEP}] - static-analyzer? ( dev-lang/perl:* ) - xml? ( dev-libs/libxml2:2=[${MULTILIB_USEDEP}] ) -" - -RDEPEND=" - ${PYTHON_DEPS} - ${DEPEND} - >=sys-devel/clang-common-${PV} -" -BDEPEND=" - ${PYTHON_DEPS} - >=dev-util/cmake-3.16 - doc? ( $(python_gen_cond_dep ' - dev-python/recommonmark[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ') ) - xml? ( virtual/pkgconfig ) -" -PDEPEND=" - ~sys-devel/clang-runtime-${PV} - sys-devel/clang-toolchain-symlinks:${LLVM_MAJOR} -" - -LLVM_COMPONENTS=( - clang clang-tools-extra cmake - llvm/lib/Transforms/Hello -) -LLVM_MANPAGES=1 -LLVM_TEST_COMPONENTS=( - llvm/lib/Testing - llvm/utils - third-party -) -LLVM_USE_TARGETS=llvm -llvm.org_set_globals - -# Multilib notes: -# 1. ABI_* flags control ABIs libclang* is built for only. -# 2. clang is always capable of compiling code for all ABIs for enabled -# target. However, you will need appropriate crt* files (installed -# e.g. by sys-devel/gcc and sys-libs/glibc). -# 3. ${CHOST}-clang wrappers are always installed for all ABIs included -# in the current profile (i.e. alike supported by sys-devel/gcc). -# -# Therefore: use sys-devel/clang[${MULTILIB_USEDEP}] only if you need -# multilib clang* libraries (not runtime, not wrappers). - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-single-r1_pkg_setup -} - -src_prepare() { - # create extra parent dir for relative CLANG_RESOURCE_DIR access - mkdir -p x/y || die - BUILD_DIR=${WORKDIR}/x/y/clang - - llvm.org_src_prepare - - # add Gentoo Portage Prefix for Darwin (see prefix-dirs.patch) - eprefixify \ - lib/Lex/InitHeaderSearch.cpp \ - lib/Driver/ToolChains/Darwin.cpp || die - - if ! use prefix-guest && [[ -n ${EPREFIX} ]]; then - sed -i "/LibDir.*Loader/s@return \"\/\"@return \"${EPREFIX}/\"@" lib/Driver/ToolChains/Linux.cpp || die - fi -} - -check_distribution_components() { - if [[ ${CMAKE_MAKEFILE_GENERATOR} == ninja ]]; then - local all_targets=() my_targets=() l - cd "${BUILD_DIR}" || die - - while read -r l; do - if [[ ${l} == install-*-stripped:* ]]; then - l=${l#install-} - l=${l%%-stripped*} - - case ${l} in - # meta-targets - clang-libraries|distribution) - continue - ;; - # tools - clang|clangd|clang-*) - ;; - # static libraries - clang*|findAllSymbols) - continue - ;; - # conditional to USE=doc - docs-clang-html|docs-clang-tools-html) - use doc || continue - ;; - esac - - all_targets+=( "${l}" ) - fi - done < <(${NINJA} -t targets all) - - while read -r l; do - my_targets+=( "${l}" ) - done < <(get_distribution_components $"\n") - - local add=() remove=() - for l in "${all_targets[@]}"; do - if ! has "${l}" "${my_targets[@]}"; then - add+=( "${l}" ) - fi - done - for l in "${my_targets[@]}"; do - if ! has "${l}" "${all_targets[@]}"; then - remove+=( "${l}" ) - fi - done - - if [[ ${#add[@]} -gt 0 || ${#remove[@]} -gt 0 ]]; then - eqawarn "get_distribution_components() is outdated!" - eqawarn " Add: ${add[*]}" - eqawarn "Remove: ${remove[*]}" - fi - cd - >/dev/null || die - fi -} - -get_distribution_components() { - local sep=${1-;} - - local out=( - # common stuff - clang-cmake-exports - clang-headers - clang-resource-headers - libclang-headers - - aarch64-resource-headers - arm-common-resource-headers - arm-resource-headers - core-resource-headers - cuda-resource-headers - hexagon-resource-headers - hip-resource-headers - hlsl-resource-headers - mips-resource-headers - opencl-resource-headers - openmp-resource-headers - ppc-htm-resource-headers - ppc-resource-headers - riscv-resource-headers - systemz-resource-headers - utility-resource-headers - ve-resource-headers - webassembly-resource-headers - windows-resource-headers - x86-resource-headers - - # libs - clang-cpp - libclang - ) - - if multilib_is_native_abi; then - out+=( - # common stuff - bash-autocomplete - libclang-python-bindings - - # tools - amdgpu-arch - c-index-test - clang - clang-format - clang-offload-bundler - clang-offload-packager - clang-refactor - clang-repl - clang-rename - clang-scan-deps - diagtool - hmaptool - nvptx-arch - - # needed for cross-compiling Clang - clang-tblgen - ) - - if use extra; then - out+=( - # extra tools - clang-apply-replacements - clang-change-namespace - clang-doc - clang-include-cleaner - clang-include-fixer - clang-move - clang-pseudo - clang-query - clang-reorder-fields - clang-tidy - clang-tidy-headers - clangd - find-all-symbols - modularize - pp-trace - ) - fi - - if llvm_are_manpages_built; then - out+=( docs-clang-man ) - use extra && out+=( docs-clang-tools-man ) - fi - - if use doc; then - out+=( docs-clang-html ) - use extra && out+=( docs-clang-tools-html ) - fi - - use static-analyzer && out+=( - clang-check - clang-extdef-mapping - scan-build - scan-build-py - scan-view - ) - fi - - printf "%s${sep}" "${out[@]}" -} - -multilib_src_configure() { - tc-is-gcc && filter-lto # GCC miscompiles LLVM, bug #873670 - - local mycmakeargs=( - -DDEFAULT_SYSROOT=$(usex prefix-guest "" "${EPREFIX}") - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}" - -DCMAKE_INSTALL_MANDIR="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/share/man" - -DCLANG_CONFIG_FILE_SYSTEM_DIR="${EPREFIX}/etc/clang" - # relative to bindir - -DCLANG_RESOURCE_DIR="../../../../lib/clang/${LLVM_MAJOR}" - - -DBUILD_SHARED_LIBS=OFF - -DCLANG_LINK_CLANG_DYLIB=ON - -DLLVM_DISTRIBUTION_COMPONENTS=$(get_distribution_components) - -DCLANG_INCLUDE_TESTS=$(usex test) - - -DLLVM_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" - - # these are not propagated reliably, so redefine them - -DLLVM_ENABLE_EH=ON - -DLLVM_ENABLE_RTTI=ON - - -DCMAKE_DISABLE_FIND_PACKAGE_LibXml2=$(usex !xml) - # libgomp support fails to find headers without explicit -I - # furthermore, it provides only syntax checking - -DCLANG_DEFAULT_OPENMP_RUNTIME=libomp - - # disable using CUDA to autodetect GPU, just build for all - -DCMAKE_DISABLE_FIND_PACKAGE_CUDA=ON - # disable linking to HSA to avoid automagic dep, - # load it dynamically instead - -DCMAKE_DISABLE_FIND_PACKAGE_hsa-runtime64=ON - - -DCLANG_DEFAULT_PIE_ON_LINUX=$(usex pie) - - -DCLANG_ENABLE_ARCMT=$(usex static-analyzer) - -DCLANG_ENABLE_STATIC_ANALYZER=$(usex static-analyzer) - - -DPython3_EXECUTABLE="${PYTHON}" - ) - - if ! use elibc_musl; then - mycmakeargs+=( - -DPPC_LINUX_DEFAULT_IEEELONGDOUBLE=$(usex ieee-long-double) - ) - fi - - use test && mycmakeargs+=( - -DLLVM_BUILD_TESTS=ON - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - if multilib_is_native_abi; then - local build_docs=OFF - if llvm_are_manpages_built; then - build_docs=ON - mycmakeargs+=( - -DLLVM_BUILD_DOCS=ON - -DLLVM_ENABLE_SPHINX=ON - -DCLANG_INSTALL_SPHINX_HTML_DIR="${EPREFIX}/usr/share/doc/${PF}/html" - -DSPHINX_WARNINGS_AS_ERRORS=OFF - ) - if use extra; then - mycmakeargs+=( - -DCLANG-TOOLS_INSTALL_SPHINX_HTML_DIR="${EPREFIX}/usr/share/doc/${PF}/tools-extra" - ) - fi - fi - mycmakeargs+=( - -DCLANG_INCLUDE_DOCS=${build_docs} - ) - fi - if multilib_native_use extra; then - mycmakeargs+=( - -DLLVM_EXTERNAL_CLANG_TOOLS_EXTRA_SOURCE_DIR="${WORKDIR}"/clang-tools-extra - -DCLANG_TOOLS_EXTRA_INCLUDE_DOCS=${build_docs} - ) - else - mycmakeargs+=( - -DLLVM_TOOL_CLANG_TOOLS_EXTRA_BUILD=OFF - ) - fi - - if [[ -n ${EPREFIX} ]]; then - mycmakeargs+=( - -DGCC_INSTALL_PREFIX="${EPREFIX}/usr" - ) - fi - - if tc-is-cross-compiler; then - has_version -b sys-devel/clang:${LLVM_MAJOR} || - die "sys-devel/clang:${LLVM_MAJOR} is required on the build host." - local tools_bin=${BROOT}/usr/lib/llvm/${LLVM_MAJOR}/bin - mycmakeargs+=( - -DLLVM_TOOLS_BINARY_DIR="${tools_bin}" - -DCLANG_TABLEGEN="${tools_bin}"/clang-tblgen - ) - fi - - # LLVM can have very high memory consumption while linking, - # exhausting the limit on 32-bit linker executable - use x86 && local -x LDFLAGS="${LDFLAGS} -Wl,--no-keep-memory" - - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - cmake_src_configure - - multilib_is_native_abi && check_distribution_components -} - -multilib_src_compile() { - cmake_build distribution - - # provide a symlink for tests - if [[ ! -L ${WORKDIR}/lib/clang ]]; then - mkdir -p "${WORKDIR}"/lib || die - ln -s "${BUILD_DIR}/$(get_libdir)/clang" "${WORKDIR}"/lib/clang || die - fi -} - -multilib_src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - local test_targets=( check-clang ) - if multilib_native_use extra; then - test_targets+=( - check-clang-tools - check-clangd - ) - fi - cmake_build "${test_targets[@]}" -} - -src_install() { - MULTILIB_WRAPPED_HEADERS=( - /usr/include/clang/Config/config.h - ) - - multilib-minimal_src_install - - # Move runtime headers to /usr/lib/clang, where they belong - mv "${ED}"/usr/include/clangrt "${ED}"/usr/lib/clang || die - # move (remaining) wrapped headers back - if use extra; then - mv "${T}"/clang-tidy "${ED}"/usr/include/ || die - fi - mv "${ED}"/usr/include "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include || die - - # Apply CHOST and version suffix to clang tools - local clang_tools=( clang clang++ clang-cl clang-cpp ) - local abi i - - # cmake gives us: - # - clang-X - # - clang -> clang-X - # - clang++, clang-cl, clang-cpp -> clang - # we want to have: - # - clang-X - # - clang++-X, clang-cl-X, clang-cpp-X -> clang-X - # - clang, clang++, clang-cl, clang-cpp -> clang*-X - # also in CHOST variant - for i in "${clang_tools[@]:1}"; do - rm "${ED}/usr/lib/llvm/${LLVM_MAJOR}/bin/${i}" || die - dosym "clang-${LLVM_MAJOR}" "/usr/lib/llvm/${LLVM_MAJOR}/bin/${i}-${LLVM_MAJOR}" - dosym "${i}-${LLVM_MAJOR}" "/usr/lib/llvm/${LLVM_MAJOR}/bin/${i}" - done - - # now create target symlinks for all supported ABIs - for abi in $(get_all_abis); do - local abi_chost=$(get_abi_CHOST "${abi}") - for i in "${clang_tools[@]}"; do - dosym "${i}-${LLVM_MAJOR}" \ - "/usr/lib/llvm/${LLVM_MAJOR}/bin/${abi_chost}-${i}-${LLVM_MAJOR}" - dosym "${abi_chost}-${i}-${LLVM_MAJOR}" \ - "/usr/lib/llvm/${LLVM_MAJOR}/bin/${abi_chost}-${i}" - done - done -} - -multilib_src_install() { - DESTDIR=${D} cmake_build install-distribution - - # move headers to /usr/include for wrapping & ABI mismatch checks - # (also drop the version suffix from runtime headers) - rm -rf "${ED}"/usr/include || die - mv "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include "${ED}"/usr/include || die - mv "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/clang "${ED}"/usr/include/clangrt || die - if multilib_native_use extra; then - # don't wrap clang-tidy headers, the list is too long - # (they're fine for non-native ABI but enabling the targets is problematic) - mv "${ED}"/usr/include/clang-tidy "${T}/" || die - fi -} - -multilib_src_install_all() { - python_fix_shebang "${ED}" - if use static-analyzer; then - python_optimize "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/share/scan-view - fi - - docompress "/usr/lib/llvm/${LLVM_MAJOR}/share/man" - llvm_install_manpages - # match 'html' non-compression - use doc && docompress -x "/usr/share/doc/${PF}/tools-extra" - # +x for some reason; TODO: investigate - use static-analyzer && fperms a-x "/usr/lib/llvm/${LLVM_MAJOR}/share/man/man1/scan-build.1" -} - -pkg_postinst() { - if [[ -z ${ROOT} && -f ${EPREFIX}/usr/share/eselect/modules/compiler-shadow.eselect ]] ; then - eselect compiler-shadow update all - fi - - elog "You can find additional utility scripts in:" - elog " ${EROOT}/usr/lib/llvm/${LLVM_MAJOR}/share/clang" - if use extra; then - elog "Some of them are vim integration scripts (with instructions inside)." - elog "The run-clang-tidy.py script requires the following additional package:" - elog " dev-python/pyyaml" - fi -} - -pkg_postrm() { - if [[ -z ${ROOT} && -f ${EPREFIX}/usr/share/eselect/modules/compiler-shadow.eselect ]] ; then - eselect compiler-shadow clean all - fi -} diff --git a/sys-devel/clang/clang-17.0.0_pre20230304.ebuild b/sys-devel/clang/clang-17.0.0_pre20230304.ebuild deleted file mode 100644 index 4c59778e088a..000000000000 --- a/sys-devel/clang/clang-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,481 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm llvm.org multilib multilib-minimal \ - prefix python-single-r1 toolchain-funcs flag-o-matic - -DESCRIPTION="C language family frontend for LLVM" -HOMEPAGE="https://llvm.org/" - -# MSVCSetupApi.h: MIT -# sorttable.js: MIT - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT" -SLOT="${LLVM_MAJOR}/${LLVM_SOABI}" -KEYWORDS="" -IUSE="debug doc +extra ieee-long-double +pie +static-analyzer test xml" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RESTRICT="!test? ( test )" - -DEPEND=" - ~sys-devel/llvm-${PV}:${LLVM_MAJOR}=[debug=,${MULTILIB_USEDEP}] - static-analyzer? ( dev-lang/perl:* ) - xml? ( dev-libs/libxml2:2=[${MULTILIB_USEDEP}] ) -" - -RDEPEND=" - ${PYTHON_DEPS} - ${DEPEND} - >=sys-devel/clang-common-${PV} -" -BDEPEND=" - ${PYTHON_DEPS} - >=dev-util/cmake-3.16 - doc? ( $(python_gen_cond_dep ' - dev-python/recommonmark[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ') ) - xml? ( virtual/pkgconfig ) -" -PDEPEND=" - ~sys-devel/clang-runtime-${PV} - sys-devel/clang-toolchain-symlinks:${LLVM_MAJOR} -" - -LLVM_COMPONENTS=( - clang clang-tools-extra cmake - llvm/lib/Transforms/Hello -) -LLVM_MANPAGES=1 -LLVM_TEST_COMPONENTS=( - llvm/lib/Testing - llvm/utils - third-party -) -LLVM_USE_TARGETS=llvm -llvm.org_set_globals - -# Multilib notes: -# 1. ABI_* flags control ABIs libclang* is built for only. -# 2. clang is always capable of compiling code for all ABIs for enabled -# target. However, you will need appropriate crt* files (installed -# e.g. by sys-devel/gcc and sys-libs/glibc). -# 3. ${CHOST}-clang wrappers are always installed for all ABIs included -# in the current profile (i.e. alike supported by sys-devel/gcc). -# -# Therefore: use sys-devel/clang[${MULTILIB_USEDEP}] only if you need -# multilib clang* libraries (not runtime, not wrappers). - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-single-r1_pkg_setup -} - -src_prepare() { - # create extra parent dir for relative CLANG_RESOURCE_DIR access - mkdir -p x/y || die - BUILD_DIR=${WORKDIR}/x/y/clang - - llvm.org_src_prepare - - # add Gentoo Portage Prefix for Darwin (see prefix-dirs.patch) - eprefixify \ - lib/Lex/InitHeaderSearch.cpp \ - lib/Driver/ToolChains/Darwin.cpp || die - - if ! use prefix-guest && [[ -n ${EPREFIX} ]]; then - sed -i "/LibDir.*Loader/s@return \"\/\"@return \"${EPREFIX}/\"@" lib/Driver/ToolChains/Linux.cpp || die - fi -} - -check_distribution_components() { - if [[ ${CMAKE_MAKEFILE_GENERATOR} == ninja ]]; then - local all_targets=() my_targets=() l - cd "${BUILD_DIR}" || die - - while read -r l; do - if [[ ${l} == install-*-stripped:* ]]; then - l=${l#install-} - l=${l%%-stripped*} - - case ${l} in - # meta-targets - clang-libraries|distribution) - continue - ;; - # tools - clang|clangd|clang-*) - ;; - # static libraries - clang*|findAllSymbols) - continue - ;; - # conditional to USE=doc - docs-clang-html|docs-clang-tools-html) - use doc || continue - ;; - esac - - all_targets+=( "${l}" ) - fi - done < <(${NINJA} -t targets all) - - while read -r l; do - my_targets+=( "${l}" ) - done < <(get_distribution_components $"\n") - - local add=() remove=() - for l in "${all_targets[@]}"; do - if ! has "${l}" "${my_targets[@]}"; then - add+=( "${l}" ) - fi - done - for l in "${my_targets[@]}"; do - if ! has "${l}" "${all_targets[@]}"; then - remove+=( "${l}" ) - fi - done - - if [[ ${#add[@]} -gt 0 || ${#remove[@]} -gt 0 ]]; then - eqawarn "get_distribution_components() is outdated!" - eqawarn " Add: ${add[*]}" - eqawarn "Remove: ${remove[*]}" - fi - cd - >/dev/null || die - fi -} - -get_distribution_components() { - local sep=${1-;} - - local out=( - # common stuff - clang-cmake-exports - clang-headers - clang-resource-headers - libclang-headers - - aarch64-resource-headers - arm-common-resource-headers - arm-resource-headers - core-resource-headers - cuda-resource-headers - hexagon-resource-headers - hip-resource-headers - hlsl-resource-headers - mips-resource-headers - opencl-resource-headers - openmp-resource-headers - ppc-htm-resource-headers - ppc-resource-headers - riscv-resource-headers - systemz-resource-headers - utility-resource-headers - ve-resource-headers - webassembly-resource-headers - windows-resource-headers - x86-resource-headers - - # libs - clang-cpp - libclang - ) - - if multilib_is_native_abi; then - out+=( - # common stuff - bash-autocomplete - libclang-python-bindings - - # tools - amdgpu-arch - c-index-test - clang - clang-format - clang-offload-bundler - clang-offload-packager - clang-refactor - clang-repl - clang-rename - clang-scan-deps - diagtool - hmaptool - nvptx-arch - - # needed for cross-compiling Clang - clang-tblgen - ) - - if use extra; then - out+=( - # extra tools - clang-apply-replacements - clang-change-namespace - clang-doc - clang-include-cleaner - clang-include-fixer - clang-move - clang-pseudo - clang-query - clang-reorder-fields - clang-tidy - clang-tidy-headers - clangd - find-all-symbols - modularize - pp-trace - ) - fi - - if llvm_are_manpages_built; then - out+=( docs-clang-man ) - use extra && out+=( docs-clang-tools-man ) - fi - - if use doc; then - out+=( docs-clang-html ) - use extra && out+=( docs-clang-tools-html ) - fi - - use static-analyzer && out+=( - clang-check - clang-extdef-mapping - scan-build - scan-build-py - scan-view - ) - fi - - printf "%s${sep}" "${out[@]}" -} - -multilib_src_configure() { - tc-is-gcc && filter-lto # GCC miscompiles LLVM, bug #873670 - - local mycmakeargs=( - -DDEFAULT_SYSROOT=$(usex prefix-guest "" "${EPREFIX}") - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}" - -DCMAKE_INSTALL_MANDIR="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/share/man" - -DCLANG_CONFIG_FILE_SYSTEM_DIR="${EPREFIX}/etc/clang" - # relative to bindir - -DCLANG_RESOURCE_DIR="../../../../lib/clang/${LLVM_MAJOR}" - - -DBUILD_SHARED_LIBS=OFF - -DCLANG_LINK_CLANG_DYLIB=ON - -DLLVM_DISTRIBUTION_COMPONENTS=$(get_distribution_components) - -DCLANG_INCLUDE_TESTS=$(usex test) - - -DLLVM_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" - - # these are not propagated reliably, so redefine them - -DLLVM_ENABLE_EH=ON - -DLLVM_ENABLE_RTTI=ON - - -DCMAKE_DISABLE_FIND_PACKAGE_LibXml2=$(usex !xml) - # libgomp support fails to find headers without explicit -I - # furthermore, it provides only syntax checking - -DCLANG_DEFAULT_OPENMP_RUNTIME=libomp - - # disable using CUDA to autodetect GPU, just build for all - -DCMAKE_DISABLE_FIND_PACKAGE_CUDA=ON - # disable linking to HSA to avoid automagic dep, - # load it dynamically instead - -DCMAKE_DISABLE_FIND_PACKAGE_hsa-runtime64=ON - - -DCLANG_DEFAULT_PIE_ON_LINUX=$(usex pie) - - -DCLANG_ENABLE_ARCMT=$(usex static-analyzer) - -DCLANG_ENABLE_STATIC_ANALYZER=$(usex static-analyzer) - - -DPython3_EXECUTABLE="${PYTHON}" - ) - - if ! use elibc_musl; then - mycmakeargs+=( - -DPPC_LINUX_DEFAULT_IEEELONGDOUBLE=$(usex ieee-long-double) - ) - fi - - use test && mycmakeargs+=( - -DLLVM_BUILD_TESTS=ON - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - if multilib_is_native_abi; then - local build_docs=OFF - if llvm_are_manpages_built; then - build_docs=ON - mycmakeargs+=( - -DLLVM_BUILD_DOCS=ON - -DLLVM_ENABLE_SPHINX=ON - -DCLANG_INSTALL_SPHINX_HTML_DIR="${EPREFIX}/usr/share/doc/${PF}/html" - -DSPHINX_WARNINGS_AS_ERRORS=OFF - ) - if use extra; then - mycmakeargs+=( - -DCLANG-TOOLS_INSTALL_SPHINX_HTML_DIR="${EPREFIX}/usr/share/doc/${PF}/tools-extra" - ) - fi - fi - mycmakeargs+=( - -DCLANG_INCLUDE_DOCS=${build_docs} - ) - fi - if multilib_native_use extra; then - mycmakeargs+=( - -DLLVM_EXTERNAL_CLANG_TOOLS_EXTRA_SOURCE_DIR="${WORKDIR}"/clang-tools-extra - -DCLANG_TOOLS_EXTRA_INCLUDE_DOCS=${build_docs} - ) - else - mycmakeargs+=( - -DLLVM_TOOL_CLANG_TOOLS_EXTRA_BUILD=OFF - ) - fi - - if [[ -n ${EPREFIX} ]]; then - mycmakeargs+=( - -DGCC_INSTALL_PREFIX="${EPREFIX}/usr" - ) - fi - - if tc-is-cross-compiler; then - has_version -b sys-devel/clang:${LLVM_MAJOR} || - die "sys-devel/clang:${LLVM_MAJOR} is required on the build host." - local tools_bin=${BROOT}/usr/lib/llvm/${LLVM_MAJOR}/bin - mycmakeargs+=( - -DLLVM_TOOLS_BINARY_DIR="${tools_bin}" - -DCLANG_TABLEGEN="${tools_bin}"/clang-tblgen - ) - fi - - # LLVM can have very high memory consumption while linking, - # exhausting the limit on 32-bit linker executable - use x86 && local -x LDFLAGS="${LDFLAGS} -Wl,--no-keep-memory" - - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - cmake_src_configure - - multilib_is_native_abi && check_distribution_components -} - -multilib_src_compile() { - cmake_build distribution - - # provide a symlink for tests - if [[ ! -L ${WORKDIR}/lib/clang ]]; then - mkdir -p "${WORKDIR}"/lib || die - ln -s "${BUILD_DIR}/$(get_libdir)/clang" "${WORKDIR}"/lib/clang || die - fi -} - -multilib_src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - local test_targets=( check-clang ) - if multilib_native_use extra; then - test_targets+=( - check-clang-tools - check-clangd - ) - fi - cmake_build "${test_targets[@]}" -} - -src_install() { - MULTILIB_WRAPPED_HEADERS=( - /usr/include/clang/Config/config.h - ) - - multilib-minimal_src_install - - # Move runtime headers to /usr/lib/clang, where they belong - mv "${ED}"/usr/include/clangrt "${ED}"/usr/lib/clang || die - # move (remaining) wrapped headers back - if use extra; then - mv "${T}"/clang-tidy "${ED}"/usr/include/ || die - fi - mv "${ED}"/usr/include "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include || die - - # Apply CHOST and version suffix to clang tools - local clang_tools=( clang clang++ clang-cl clang-cpp ) - local abi i - - # cmake gives us: - # - clang-X - # - clang -> clang-X - # - clang++, clang-cl, clang-cpp -> clang - # we want to have: - # - clang-X - # - clang++-X, clang-cl-X, clang-cpp-X -> clang-X - # - clang, clang++, clang-cl, clang-cpp -> clang*-X - # also in CHOST variant - for i in "${clang_tools[@]:1}"; do - rm "${ED}/usr/lib/llvm/${LLVM_MAJOR}/bin/${i}" || die - dosym "clang-${LLVM_MAJOR}" "/usr/lib/llvm/${LLVM_MAJOR}/bin/${i}-${LLVM_MAJOR}" - dosym "${i}-${LLVM_MAJOR}" "/usr/lib/llvm/${LLVM_MAJOR}/bin/${i}" - done - - # now create target symlinks for all supported ABIs - for abi in $(get_all_abis); do - local abi_chost=$(get_abi_CHOST "${abi}") - for i in "${clang_tools[@]}"; do - dosym "${i}-${LLVM_MAJOR}" \ - "/usr/lib/llvm/${LLVM_MAJOR}/bin/${abi_chost}-${i}-${LLVM_MAJOR}" - dosym "${abi_chost}-${i}-${LLVM_MAJOR}" \ - "/usr/lib/llvm/${LLVM_MAJOR}/bin/${abi_chost}-${i}" - done - done -} - -multilib_src_install() { - DESTDIR=${D} cmake_build install-distribution - - # move headers to /usr/include for wrapping & ABI mismatch checks - # (also drop the version suffix from runtime headers) - rm -rf "${ED}"/usr/include || die - mv "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include "${ED}"/usr/include || die - mv "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/clang "${ED}"/usr/include/clangrt || die - if multilib_native_use extra; then - # don't wrap clang-tidy headers, the list is too long - # (they're fine for non-native ABI but enabling the targets is problematic) - mv "${ED}"/usr/include/clang-tidy "${T}/" || die - fi -} - -multilib_src_install_all() { - python_fix_shebang "${ED}" - if use static-analyzer; then - python_optimize "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/share/scan-view - fi - - docompress "/usr/lib/llvm/${LLVM_MAJOR}/share/man" - llvm_install_manpages - # match 'html' non-compression - use doc && docompress -x "/usr/share/doc/${PF}/tools-extra" - # +x for some reason; TODO: investigate - use static-analyzer && fperms a-x "/usr/lib/llvm/${LLVM_MAJOR}/share/man/man1/scan-build.1" -} - -pkg_postinst() { - if [[ -z ${ROOT} && -f ${EPREFIX}/usr/share/eselect/modules/compiler-shadow.eselect ]] ; then - eselect compiler-shadow update all - fi - - elog "You can find additional utility scripts in:" - elog " ${EROOT}/usr/lib/llvm/${LLVM_MAJOR}/share/clang" - if use extra; then - elog "Some of them are vim integration scripts (with instructions inside)." - elog "The run-clang-tidy.py script requires the following additional package:" - elog " dev-python/pyyaml" - fi -} - -pkg_postrm() { - if [[ -z ${ROOT} && -f ${EPREFIX}/usr/share/eselect/modules/compiler-shadow.eselect ]] ; then - eselect compiler-shadow clean all - fi -} diff --git a/sys-devel/dwz/Manifest b/sys-devel/dwz/Manifest index e46195dbc905..c5d5a1555852 100644 --- a/sys-devel/dwz/Manifest +++ b/sys-devel/dwz/Manifest @@ -1 +1,2 @@ DIST dwz-0.14.tar.xz 147428 BLAKE2B 286350a8276a1a674937a7adc99560562782044fd6caa50c9a55ec08343f34d8bd27140cca904e648859aba61d181e01ab0755f2115151fab16d498aa1549450 SHA512 62c39f79723ca99305dbb08d1d24a17699b9a84dd98c30904103da116831b1253bf1edbfb905c76fdc4d48305bd1ea0046314c5619209c40a1e624b8ae4908b1 +DIST dwz-0.15.tar.xz 150080 BLAKE2B 4ce1722a53cb588cda8195211a26b28d69891ed32cc59e44897270298d033590c79c8c73168dc3b261cb017fc12874a9cbd50db3bfaa0aa7de8ed7cf8a588cca SHA512 43eb4b08c1f529859dc3466697d5ad7e172d6efbf21409530a67a2492ae4acc3734d5134bbd6e07c089ecc358d915871b13e22f6e4f1dd4c3af19ef804f8fcc5 diff --git a/sys-devel/dwz/dwz-0.15-r1.ebuild b/sys-devel/dwz/dwz-0.15-r1.ebuild new file mode 100644 index 000000000000..a34aab7c8b3f --- /dev/null +++ b/sys-devel/dwz/dwz-0.15-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="DWARF optimization and duplicate removal tool" +HOMEPAGE="https://sourceware.org/dwz" +SRC_URI="https://sourceware.org/ftp/dwz/releases/${P}.tar.xz" + +S="${WORKDIR}/${PN}" + +LICENSE="GPL-2+ GPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/elfutils + dev-libs/xxhash +" +DEPEND="${RDEPEND}" +BDEPEND="test? ( + dev-libs/elfutils[utils] + dev-util/dejagnu + sys-devel/gdb +)" + +src_prepare() { + default + tc-export CC +} + +src_compile() { + emake CFLAGS="${CFLAGS}" srcdir="${S}" +} + +src_test() { + emake CFLAGS="${CFLAGS}" srcdir="${S}" check +} + +src_install() { + emake DESTDIR="${D}" CFLAGS="${CFLAGS}" srcdir="${S}" install +} diff --git a/sys-devel/dwz/metadata.xml b/sys-devel/dwz/metadata.xml index 319c2d8312f8..c87f24a66212 100644 --- a/sys-devel/dwz/metadata.xml +++ b/sys-devel/dwz/metadata.xml @@ -1,13 +1,9 @@ - - annulen@yandex.ru - Konstantin Tokarev - - - proxy-maint@gentoo.org - Proxy Maintainers + + toolchain@gentoo.org + Gentoo Toolchain Project The dwz package contains a program that attempts to optimize DWARF diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest index 5b05fb52ebe5..8298ee44a4c4 100644 --- a/sys-devel/gcc/Manifest +++ b/sys-devel/gcc/Manifest @@ -20,6 +20,7 @@ DIST gcc-11.4.0-patches-8.tar.xz 13788 BLAKE2B a1406d5dcd906ed51ef06bb6571c216d8 DIST gcc-12-20230121.tar.xz 79652428 BLAKE2B f4f0e6474d179454dc56dd05c823fca919a894e9efdc64625bb13045c7bd549a7bab59dfb4052d45d594d4484801ab5b18cf3f3d6277be54eaec24a53abd439c SHA512 b6c2486916418a64fab64c3655329bc18ca93ee4eca240e8779bd6d8280124fcd07b1aa8eff979fd317656646ecdba9353107887338354d8bd2c1f68c1609349 DIST gcc-12-20230304.tar.xz 79683276 BLAKE2B e02622f1193ba17dd1041eae0c2f594b26806b00cfb269e683cc356d6d405ae8a49e60823ed6f814d2aac820ef01d9004f68d628a853be139fa6a70e8601ba2a SHA512 0c23a8845c8f202b0c0e4aceb3104bf76c0aca9171ba65d292057703d160fc4ce0b0d7c8876cf1bb30f998c4a5a0a8f3c4165dd4d8d316019cff0dc19aa62182 DIST gcc-12-20230311.tar.xz 79694468 BLAKE2B 7c775bf81e43d431dd03b17b995ee6b7d54c8c8f2eb2962498dcb741b4a661d1c02b48cf3cc17f9074a58a8a299977e1caecb1ba34200759b00a18e36e156fe3 SHA512 e016537c8a06311ccfec5760417f9daa4c4e55b32fc28f32dd0ec7429f53ed753a84a788da304b12f9c7443ec693ad881536cfa875829d201d803138fde59c16 +DIST gcc-12-20230318.tar.xz 79703428 BLAKE2B ec1a4c1e8de27f8762ef91f553a2f8045f26a38c1beb49be4a39c86a11b894b609548f3f6f47b6bf2de9a357995a1f72c3667dba4892189eedee01c9e3c160ed SHA512 7ba9acab02a42090fde3e903bb579d20bd1ba6ae0403fa344e25db74e4a81dfe5a81a98971869baaf0d70c089f313bf789287f037294f813429480634afea8f6 DIST gcc-12.2.0-musl-patches-7.tar.xz 3652 BLAKE2B 295ea907efea854a3c2447d472bedb24714d78b7b725476b1eac3898d89c0c549da8e69db28911205bb3293f62cf344a90ade0898ecf5fed57ff00fcf8547a9f SHA512 7a7a440bc08de8dcb37c080ea0c27904adaaadaaaafaab24d90becd2d009243dcfc886d8f674ce3ccddb4ebb5ad17f04d841064d9ec2e2e2e96a1afac3002111 DIST gcc-12.2.0-patches-1.tar.xz 12864 BLAKE2B a5ae0a85dfc1b6f0bd968f0d5262ebed14ec9cdb3249e3a4c571578c54eda0e53708ee7fe8e03e506366c7f3cf7926eced9b390d9dee948c1249298c0fabd9fb SHA512 f3d793b89a2a0385d596162fb0c653d4acdf21ae418cb792c1786a01fde0391bd0719715dbf07d53636f127168f5cd99108a1dc11cf6cea889b7d82385bcc258 DIST gcc-12.2.0-patches-10.tar.xz 14252 BLAKE2B 99368db982227728a6a9e2b1f694999f041f38db4a3806b6a740c86218735f9b561197bc150423a3caad0b5fd335c95d1aca130a519754423cd44a083e655373 SHA512 f7f0d8185e908926046f579793dba5916dc27392b85bfe50a7e70c213c3ba29479dfdb1b27514765b76bc897c4dbb530680e59c4deca7a245a808ed566120e4c @@ -29,6 +30,7 @@ DIST gcc-12.2.0.tar.xz 84645292 BLAKE2B 715574af9ad678f9dc8cfd19c866bf910c7edfd4 DIST gcc-13-20230226.tar.xz 84264388 BLAKE2B fea763a1627bff19eb0f7869b83c00337dc2a203178d17143c98c2c1d3fd385d2f853f195ff79ecc1cae659a1f8704c88e7fd77456eed4510bdcba7631e49353 SHA512 38de82dd54e1b57490f5492a4adcd05b9da3ace2235654dff19bade8d378e75be1495f3b2b4e7f7e57ea144351c4ade1e9a5b141546259024f0359f43b2025ac DIST gcc-13-20230305.tar.xz 84314220 BLAKE2B cf4971cddea6981e3dfb62dd7d69b85b85df0a137e0596f71530966186f2919e800e60b6712b1d676b4250e835db8601af5376a77dad82fff7b1d9faae012da8 SHA512 39320f90bcdc2d8f5cefa2c8ac551d7a6f0d20744cdff5ed8956321d6b0813bbc44d18266bf7bb7ebbe642078a6d9677216e6db939dd56186959e5454d7d3a85 DIST gcc-13-20230312.tar.xz 84361832 BLAKE2B 4099036d7224cbdb9cfd8fb454201a80f76ea9569d8625d4cedc14ed30caf0a4b88a60b5f9fff12001a19a928909489609da3634c109e457f9b6dedcd20a947d SHA512 7513ebdbe9e6116658c4bafdc71f122cae3cf7233b91402bc1d05fe1fec0ff036ed613b1db3af2b235fc153c862f428cd297da6ba0e6e81e1e7962fa0550e01e +DIST gcc-13-20230319.tar.xz 83729684 BLAKE2B b57681574691f7909017ea1b8a5d101e09c22632d9f2aef166eaafc55cd7b2f8bca065b16a7b902130da55edf5f16994608601dfb2dacd7661a477afc4482a32 SHA512 461a70570ae3944f317b778feb67cfc3bd29945c0a825b558abd9311cb5297b390725896b81a494c3c592c231d77a7147338cb4962a1feba304f13e6e19b4538 DIST gcc-13.1.0-musl-patches-1.tar.xz 3528 BLAKE2B c572ab4a0fb929b16ec36b3a3616cdcccd62f7ee27ded8077008b9beb50539db64cc251ff8a3eade54e8ebfe1012f8f32d0802379bf8ffb0f1b8ce7c8457da37 SHA512 ffb7dfa54a9d23b5333664e915efd9f18a43cd696f4ff5669a8b072a0e9cf4978de53e315123542441a2533e4f269de0bb7d90ee7a37d3a7517b7cda6ea06681 DIST gcc-13.1.0-patches-8.tar.xz 11644 BLAKE2B aaa135a7d22badc22eeba42fe92c2de40e1a779836f42b5ba15884ad3d756020421b99e29b9a27f40368013fb9d8348e3ca1ef3541a6de55129d66f4645caf8f SHA512 a71ef0f215451c840a99d7100489e8364e4e7a71d83e9be42e35fb06d4276afadb64834801ef3469a4edb78eede5a03c18104215fef3039f98da3b3d0c8e69af DIST gcc-13.1.0-patches-9.tar.xz 11720 BLAKE2B c26a2924fa8aab318a1f4a4974ca4aeba255f3605fa0cbf448a4e48b6f3e9359012aeae15726299059257b93043c5cdd86bf1b2f2fffd4b9a096ab411a0503ba SHA512 98e48abaa664ea18bf00ba7bdb29cc1e908cc55ba9d12d52061e86fc917753ade8e38a190c04d23c63102808ac5a9e8ecf085dcc29a1568a329ceb5d43cf0290 diff --git a/sys-devel/gcc/gcc-12.2.1_p20230318.ebuild b/sys-devel/gcc/gcc-12.2.1_p20230318.ebuild new file mode 100644 index 000000000000..cb82e2228437 --- /dev/null +++ b/sys-devel/gcc/gcc-12.2.1_p20230318.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +TOOLCHAIN_PATCH_DEV="sam" +PATCH_VER="14" +PATCH_GCC_VER="12.2.0" +MUSL_VER="7" +MUSL_GCC_VER="12.2.0" + +if [[ $(ver_cut 3) == 9999 ]] ; then + MY_PV_2=$(ver_cut 2) + if [[ ${MY_PV_2} == 0 ]] ; then + MY_PV_2=0 + else + MY_PV_2=$(($(ver_cut 2) - 1)) + fi + + # e.g. 12.2.9999 -> 12.1.1 + TOOLCHAIN_GCC_PV=$(ver_cut 1).${MY_PV_2}.$(($(ver_cut 3) - 9998)) +elif [[ -n ${TOOLCHAIN_GCC_RC} ]] ; then + # Cheesy hack for RCs + MY_PV=$(ver_cut 1).$((($(ver_cut 2) + 1))).$((($(ver_cut 3) - 1)))-RC-$(ver_cut 5) + MY_P=${PN}-${MY_PV} + GCC_TARBALL_SRC_URI="https://gcc.gnu.org/pub/gcc/snapshots/${MY_PV}/${MY_P}.tar.xz" + TOOLCHAIN_SET_S=no + S="${WORKDIR}"/${MY_P} +fi + +inherit toolchain + +# Needs to be after inherit (for now?), bug #830908 +EGIT_BRANCH=releases/gcc-$(ver_cut 1) + +# Don't keyword live ebuilds +#if ! tc_is_live && [[ -z ${TOOLCHAIN_USE_GIT_PATCHES} ]] ; then +# KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +#fi + +# Technically only if USE=hardened *too* right now, but no point in complicating it further. +# If GCC is enabling CET by default, we need glibc to be built with support for it. +# bug #830454 +RDEPEND="elibc_glibc? ( sys-libs/glibc[cet(-)?] )" +DEPEND="${RDEPEND}" +BDEPEND=">=${CATEGORY}/binutils-2.30[cet(-)?]" + +src_prepare() { + toolchain_src_prepare + + eapply_user +} diff --git a/sys-devel/gcc/gcc-13.0.1_pre20230319.ebuild b/sys-devel/gcc/gcc-13.0.1_pre20230319.ebuild new file mode 100644 index 000000000000..1f65b8ba8aab --- /dev/null +++ b/sys-devel/gcc/gcc-13.0.1_pre20230319.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +TOOLCHAIN_PATCH_DEV="sam" +PATCH_VER="9" +PATCH_GCC_VER="13.1.0" +MUSL_VER="1" +MUSL_GCC_VER="13.1.0" + +if [[ $(ver_cut 3) == 9999 ]] ; then + MY_PV_2=$(ver_cut 2) + MY_PV_3=$(($(ver_cut 3) - 9998)) + if [[ ${MY_PV_2} == 0 ]] ; then + MY_PV_2=0 + MY_PV_3=0 + else + MY_PV_2=$(($(ver_cut 2) - 1)) + fi + + # e.g. 12.2.9999 -> 12.1.1 + TOOLCHAIN_GCC_PV=$(ver_cut 1).${MY_PV_2}.${MY_PV_3} +fi + +inherit toolchain +# Needs to be after inherit (for now?), bug #830908 +EGIT_BRANCH=master + +# Don't keyword live ebuilds +if ! tc_is_live && [[ -z ${TOOLCHAIN_USE_GIT_PATCHES} ]] ; then +# KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + KEYWORDS="~loong" +fi + +# Technically only if USE=hardened *too* right now, but no point in complicating it further. +# If GCC is enabling CET by default, we need glibc to be built with support for it. +# bug #830454 +RDEPEND="elibc_glibc? ( sys-libs/glibc[cet(-)?] )" +DEPEND="${RDEPEND}" +BDEPEND="${CATEGORY}/binutils[cet(-)?]" + +src_prepare() { + local p upstreamed_patches=( + # add them here + ) + for p in "${upstreamed_patches[@]}"; do + rm -v "${WORKDIR}/patch/${p}" || die + done + + toolchain_src_prepare + + eapply_user +} diff --git a/sys-devel/gdb/files/gdb-13.1-Wenum-constexpr-conversion-clang16.patch b/sys-devel/gdb/files/gdb-13.1-Wenum-constexpr-conversion-clang16.patch new file mode 100644 index 000000000000..adc09f83ea68 --- /dev/null +++ b/sys-devel/gdb/files/gdb-13.1-Wenum-constexpr-conversion-clang16.patch @@ -0,0 +1,128 @@ +https://bugs.gentoo.org/894174 +https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=ae61525fcf456ab395d55c45492a106d1275873a + +From ae61525fcf456ab395d55c45492a106d1275873a Mon Sep 17 00:00:00 2001 +From: Simon Marchi +Date: Thu, 23 Feb 2023 12:35:40 -0500 +Subject: [PATCH] gdbsupport: ignore -Wenum-constexpr-conversion in + enum-flags.h + +When building with clang 16, we get: + + CXX gdb.o + In file included from /home/smarchi/src/binutils-gdb/gdb/gdb.c:19: + In file included from /home/smarchi/src/binutils-gdb/gdb/defs.h:65: + /home/smarchi/src/binutils-gdb/gdb/../gdbsupport/enum-flags.h:95:52: error: integer value -1 is outside the valid range of values [0, 15] for this enumeration type [-Wenum-constexpr-conversion] + integer_for_size(T (-1) < T (0))>::type + ^ + +The error message does not make it clear in the context of which enum +flag this fails (i.e. what is T in this context), but it doesn't really +matter, we have similar warning/errors for many of them, if we let the +build go through. + +clang is right that the value -1 is invalid for the enum type we cast -1 +to. However, we do need this expression in order to select an integer +type with the appropriate signedness. That is, with the same signedness +as the underlying type of the enum. + +I first wondered if that was really needed, if we couldn't use +std::underlying_type for that. It turns out that the comment just above +says: + + /* Note that std::underlying_type is not what we want here, + since that returns unsigned int even when the enum decays to signed + int. */ + +I was surprised, because std::is_signed> +returns the right thing. So I tried replacing all this with +std::underlying_type, see if that would work. Doing so causes some +build failures in unittests/enum-flags-selftests.c: + + CXX unittests/enum-flags-selftests.o + /home/smarchi/src/binutils-gdb/gdb/unittests/enum-flags-selftests.c:254:1: error: static assertion failed due to requirement 'gdb::is_same, selftests::enum_flags_tests::RE, enum_flags, selftests::enum_flags_tests::RE2, enum_flags, selftests::enum_fla + gs_tests::URE, int>, selftests::enum_flags_tests::check_valid_expr254::archetype, selftests::enum_flags_tests::RE, enum_flags, selfte + sts::enum_flags_tests::RE2, enum_flags, selftests::enum_flags_tests::URE, unsigned int>>::value == true': + CHECK_VALID (true, int, true ? EF () : EF2 ()) + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + /home/smarchi/src/binutils-gdb/gdb/unittests/enum-flags-selftests.c:91:3: note: expanded from macro 'CHECK_VALID' + CHECK_VALID_EXPR_6 (EF, RE, EF2, RE2, UEF, URE, VALID, EXPR_TYPE, EXPR) + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + /home/smarchi/src/binutils-gdb/gdb/../gdbsupport/valid-expr.h:105:3: note: expanded from macro 'CHECK_VALID_EXPR_6' + CHECK_VALID_EXPR_INT (ESC_PARENS (typename T1, typename T2, \ + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + /home/smarchi/src/binutils-gdb/gdb/../gdbsupport/valid-expr.h:66:3: note: expanded from macro 'CHECK_VALID_EXPR_INT' + static_assert (gdb::is_detected_exact, \ + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This is a bit hard to decode, but basically enumerations have the +following funny property that they decay into a signed int, even if +their implicit underlying type is unsigned. This code: + + enum A {}; + enum B {}; + + int main() { + std::cout << std::is_signed::type>::value + << std::endl; + std::cout << std::is_signed::type>::value + << std::endl; + auto result = true ? A() : B(); + std::cout << std::is_signed::value << std::endl; + } + +produces: + + 0 + 0 + 1 + +So, the "CHECK_VALID" above checks that this property works for enum flags the +same way as it would if you were using their underlying enum types. And +somehow, changing integer_for_size to use std::underlying_type breaks that. + +Since the current code does what we want, and I don't see any way of doing it +differently, ignore -Wenum-constexpr-conversion around it. + +Change-Id: Ibc82ae7bbdb812102ae3f1dd099fc859dc6f3cc2 +--- a/gdbsupport/enum-flags.h ++++ b/gdbsupport/enum-flags.h +@@ -91,9 +91,12 @@ template<> struct integer_for_size<8, 1> { typedef int64_t type; }; + template + struct enum_underlying_type + { ++ DIAGNOSTIC_PUSH ++ DIAGNOSTIC_IGNORE_ENUM_CONSTEXPR_CONVERSION + typedef typename + integer_for_size(T (-1) < T (0))>::type + type; ++ DIAGNOSTIC_POP + }; + + namespace enum_flags_detail +--- a/include/diagnostics.h ++++ b/include/diagnostics.h +@@ -76,6 +76,11 @@ + # define DIAGNOSTIC_ERROR_SWITCH \ + DIAGNOSTIC_ERROR ("-Wswitch") + ++# if __has_warning ("-Wenum-constexpr-conversion") ++# define DIAGNOSTIC_IGNORE_ENUM_CONSTEXPR_CONVERSION \ ++ DIAGNOSTIC_IGNORE ("-Wenum-constexpr-conversion") ++# endif ++ + #elif defined (__GNUC__) /* GCC */ + + # define DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS \ +@@ -155,4 +160,8 @@ + # define DIAGNOSTIC_ERROR_SWITCH + #endif + ++#ifndef DIAGNOSTIC_IGNORE_ENUM_CONSTEXPR_CONVERSION ++# define DIAGNOSTIC_IGNORE_ENUM_CONSTEXPR_CONVERSION ++#endif ++ + #endif /* DIAGNOSTICS_H */ +-- +2.31.1 diff --git a/sys-devel/gdb/gdb-13.1-r1.ebuild b/sys-devel/gdb/gdb-13.1-r1.ebuild index bc86849c6276..60adac18680f 100644 --- a/sys-devel/gdb/gdb-13.1-r1.ebuild +++ b/sys-devel/gdb/gdb-13.1-r1.ebuild @@ -101,6 +101,7 @@ BDEPEND=" PATCHES=( "${FILESDIR}"/${PN}-8.3.1-verbose-build.patch + "${FILESDIR}"/${P}-Wenum-constexpr-conversion-clang16.patch ) pkg_setup() { diff --git a/sys-devel/lld/Manifest b/sys-devel/lld/Manifest index b1c047b45e06..52a376db7b69 100644 --- a/sys-devel/lld/Manifest +++ b/sys-devel/lld/Manifest @@ -4,9 +4,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/sys-devel/lld/lld-16.0.0_rc3.ebuild b/sys-devel/lld/lld-16.0.0_rc3.ebuild deleted file mode 100644 index d22c1fb13951..000000000000 --- a/sys-devel/lld/lld-16.0.0_rc3.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs - -DESCRIPTION="The LLVM linker (link editor)" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="${LLVM_MAJOR}/${LLVM_SOABI}" -KEYWORDS="" -IUSE="debug test zstd" -RESTRICT="!test? ( test )" - -DEPEND=" - ~sys-devel/llvm-${PV}[zstd=] - sys-libs/zlib:= - zstd? ( app-arch/zstd:= ) -" -RDEPEND=" - ${DEPEND} - !sys-devel/lld:0 -" -BDEPEND=" - sys-devel/llvm:${LLVM_MAJOR} - test? ( - >=dev-util/cmake-3.16 - $(python_gen_any_dep ">=dev-python/lit-${PV}[\${PYTHON_USEDEP}]") - ) -" -PDEPEND=" - >=sys-devel/lld-toolchain-symlinks-16-r2:${LLVM_MAJOR} -" - -LLVM_COMPONENTS=( lld cmake libunwind/include/mach-o ) -LLVM_TEST_COMPONENTS=( llvm/utils third-party ) -llvm.org_set_globals - -python_check_deps() { - python_has_version ">=dev-python/lit-${PV}[${PYTHON_USEDEP}]" -} - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - use test && python-any-r1_pkg_setup -} - -src_unpack() { - llvm.org_src_unpack - - # Directory ${WORKDIR}/llvm does not exist with USE="-test", - # but LLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" is set below, - # and ${LLVM_MAIN_SRC_DIR}/../libunwind/include is used by build system - # (lld/MachO/CMakeLists.txt) and is expected to be resolvable - # to existent directory ${WORKDIR}/libunwind/include. - mkdir -p "${WORKDIR}/llvm" || die -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - use elibc_musl && append-ldflags -Wl,-z,stack-size=2097152 - - local mycmakeargs=( - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}" - -DBUILD_SHARED_LIBS=ON - -DLLVM_INCLUDE_TESTS=$(usex test) - ) - - use test && mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - -DPython3_EXECUTABLE="${PYTHON}" - ) - - tc-is-cross-compiler && mycmakeargs+=( - -DLLVM_TABLEGEN_EXE="${BROOT}/usr/lib/llvm/${LLVM_MAJOR}/bin/llvm-tblgen" - ) - - cmake_src_configure -} - -src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-lld -} diff --git a/sys-devel/lld/lld-16.0.0_rc4.ebuild b/sys-devel/lld/lld-16.0.0_rc4.ebuild deleted file mode 100644 index d22c1fb13951..000000000000 --- a/sys-devel/lld/lld-16.0.0_rc4.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs - -DESCRIPTION="The LLVM linker (link editor)" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="${LLVM_MAJOR}/${LLVM_SOABI}" -KEYWORDS="" -IUSE="debug test zstd" -RESTRICT="!test? ( test )" - -DEPEND=" - ~sys-devel/llvm-${PV}[zstd=] - sys-libs/zlib:= - zstd? ( app-arch/zstd:= ) -" -RDEPEND=" - ${DEPEND} - !sys-devel/lld:0 -" -BDEPEND=" - sys-devel/llvm:${LLVM_MAJOR} - test? ( - >=dev-util/cmake-3.16 - $(python_gen_any_dep ">=dev-python/lit-${PV}[\${PYTHON_USEDEP}]") - ) -" -PDEPEND=" - >=sys-devel/lld-toolchain-symlinks-16-r2:${LLVM_MAJOR} -" - -LLVM_COMPONENTS=( lld cmake libunwind/include/mach-o ) -LLVM_TEST_COMPONENTS=( llvm/utils third-party ) -llvm.org_set_globals - -python_check_deps() { - python_has_version ">=dev-python/lit-${PV}[${PYTHON_USEDEP}]" -} - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - use test && python-any-r1_pkg_setup -} - -src_unpack() { - llvm.org_src_unpack - - # Directory ${WORKDIR}/llvm does not exist with USE="-test", - # but LLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" is set below, - # and ${LLVM_MAIN_SRC_DIR}/../libunwind/include is used by build system - # (lld/MachO/CMakeLists.txt) and is expected to be resolvable - # to existent directory ${WORKDIR}/libunwind/include. - mkdir -p "${WORKDIR}/llvm" || die -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - use elibc_musl && append-ldflags -Wl,-z,stack-size=2097152 - - local mycmakeargs=( - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}" - -DBUILD_SHARED_LIBS=ON - -DLLVM_INCLUDE_TESTS=$(usex test) - ) - - use test && mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - -DPython3_EXECUTABLE="${PYTHON}" - ) - - tc-is-cross-compiler && mycmakeargs+=( - -DLLVM_TABLEGEN_EXE="${BROOT}/usr/lib/llvm/${LLVM_MAJOR}/bin/llvm-tblgen" - ) - - cmake_src_configure -} - -src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-lld -} diff --git a/sys-devel/lld/lld-17.0.0_pre20230304.ebuild b/sys-devel/lld/lld-17.0.0_pre20230304.ebuild deleted file mode 100644 index d22c1fb13951..000000000000 --- a/sys-devel/lld/lld-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs - -DESCRIPTION="The LLVM linker (link editor)" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="${LLVM_MAJOR}/${LLVM_SOABI}" -KEYWORDS="" -IUSE="debug test zstd" -RESTRICT="!test? ( test )" - -DEPEND=" - ~sys-devel/llvm-${PV}[zstd=] - sys-libs/zlib:= - zstd? ( app-arch/zstd:= ) -" -RDEPEND=" - ${DEPEND} - !sys-devel/lld:0 -" -BDEPEND=" - sys-devel/llvm:${LLVM_MAJOR} - test? ( - >=dev-util/cmake-3.16 - $(python_gen_any_dep ">=dev-python/lit-${PV}[\${PYTHON_USEDEP}]") - ) -" -PDEPEND=" - >=sys-devel/lld-toolchain-symlinks-16-r2:${LLVM_MAJOR} -" - -LLVM_COMPONENTS=( lld cmake libunwind/include/mach-o ) -LLVM_TEST_COMPONENTS=( llvm/utils third-party ) -llvm.org_set_globals - -python_check_deps() { - python_has_version ">=dev-python/lit-${PV}[${PYTHON_USEDEP}]" -} - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - use test && python-any-r1_pkg_setup -} - -src_unpack() { - llvm.org_src_unpack - - # Directory ${WORKDIR}/llvm does not exist with USE="-test", - # but LLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" is set below, - # and ${LLVM_MAIN_SRC_DIR}/../libunwind/include is used by build system - # (lld/MachO/CMakeLists.txt) and is expected to be resolvable - # to existent directory ${WORKDIR}/libunwind/include. - mkdir -p "${WORKDIR}/llvm" || die -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - use elibc_musl && append-ldflags -Wl,-z,stack-size=2097152 - - local mycmakeargs=( - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}" - -DBUILD_SHARED_LIBS=ON - -DLLVM_INCLUDE_TESTS=$(usex test) - ) - - use test && mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - -DPython3_EXECUTABLE="${PYTHON}" - ) - - tc-is-cross-compiler && mycmakeargs+=( - -DLLVM_TABLEGEN_EXE="${BROOT}/usr/lib/llvm/${LLVM_MAJOR}/bin/llvm-tblgen" - ) - - cmake_src_configure -} - -src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-lld -} diff --git a/sys-devel/llvm-common/Manifest b/sys-devel/llvm-common/Manifest index b1c047b45e06..52a376db7b69 100644 --- a/sys-devel/llvm-common/Manifest +++ b/sys-devel/llvm-common/Manifest @@ -4,9 +4,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/sys-devel/llvm-common/llvm-common-16.0.0_rc3.ebuild b/sys-devel/llvm-common/llvm-common-16.0.0_rc3.ebuild deleted file mode 100644 index 54af5bde6db7..000000000000 --- a/sys-devel/llvm-common/llvm-common-16.0.0_rc3.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit llvm.org - -DESCRIPTION="Common files shared between multiple slots of LLVM" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="~loong" - -RDEPEND=" - !sys-devel/llvm:0 -" - -LLVM_COMPONENTS=( llvm/utils/vim ) -llvm.org_set_globals - -src_install() { - insinto /usr/share/vim/vimfiles - doins -r */ - # some users may find it useful - newdoc README README.vim - dodoc vimrc -} diff --git a/sys-devel/llvm-common/llvm-common-16.0.0_rc4.ebuild b/sys-devel/llvm-common/llvm-common-16.0.0_rc4.ebuild deleted file mode 100644 index 54af5bde6db7..000000000000 --- a/sys-devel/llvm-common/llvm-common-16.0.0_rc4.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit llvm.org - -DESCRIPTION="Common files shared between multiple slots of LLVM" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="~loong" - -RDEPEND=" - !sys-devel/llvm:0 -" - -LLVM_COMPONENTS=( llvm/utils/vim ) -llvm.org_set_globals - -src_install() { - insinto /usr/share/vim/vimfiles - doins -r */ - # some users may find it useful - newdoc README README.vim - dodoc vimrc -} diff --git a/sys-devel/llvm-common/llvm-common-17.0.0_pre20230304.ebuild b/sys-devel/llvm-common/llvm-common-17.0.0_pre20230304.ebuild deleted file mode 100644 index ce5f03ca34a5..000000000000 --- a/sys-devel/llvm-common/llvm-common-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit llvm.org - -DESCRIPTION="Common files shared between multiple slots of LLVM" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" -SLOT="0" -KEYWORDS="" - -RDEPEND=" - !sys-devel/llvm:0 -" - -LLVM_COMPONENTS=( llvm/utils/vim ) -llvm.org_set_globals - -src_install() { - insinto /usr/share/vim/vimfiles - doins -r */ - # some users may find it useful - newdoc README README.vim - dodoc vimrc -} diff --git a/sys-devel/llvm/Manifest b/sys-devel/llvm/Manifest index f364115a69b2..1a180b504684 100644 --- a/sys-devel/llvm/Manifest +++ b/sys-devel/llvm/Manifest @@ -9,9 +9,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/sys-devel/llvm/llvm-16.0.0_rc3.ebuild b/sys-devel/llvm/llvm-16.0.0_rc3.ebuild deleted file mode 100644 index 5783c357b804..000000000000 --- a/sys-devel/llvm/llvm-16.0.0_rc3.ebuild +++ /dev/null @@ -1,515 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm.org multilib-minimal pax-utils python-any-r1 \ - toolchain-funcs flag-o-matic - -DESCRIPTION="Low Level Virtual Machine" -HOMEPAGE="https://llvm.org/" - -# Additional licenses: -# 1. OpenBSD regex: Henry Spencer's license ('rc' in Gentoo) + BSD. -# 2. xxhash: BSD. -# 3. MD5 code: public-domain. -# 4. ConvertUTF.h: TODO. - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc" -SLOT="${LLVM_MAJOR}/${LLVM_SOABI}" -KEYWORDS="~loong" -IUSE=" - +binutils-plugin debug doc exegesis libedit +libffi ncurses test xar - xml z3 zstd -" -RESTRICT="!test? ( test )" - -RDEPEND=" - sys-libs/zlib:0=[${MULTILIB_USEDEP}] - exegesis? ( dev-libs/libpfm:= ) - libedit? ( dev-libs/libedit:0=[${MULTILIB_USEDEP}] ) - libffi? ( >=dev-libs/libffi-3.0.13-r1:0=[${MULTILIB_USEDEP}] ) - ncurses? ( >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}] ) - xar? ( app-arch/xar ) - xml? ( dev-libs/libxml2:2=[${MULTILIB_USEDEP}] ) - z3? ( >=sci-mathematics/z3-4.7.1:0=[${MULTILIB_USEDEP}] ) - zstd? ( app-arch/zstd:=[${MULTILIB_USEDEP}] ) -" -DEPEND=" - ${RDEPEND} - binutils-plugin? ( sys-libs/binutils-libs ) -" -BDEPEND=" - ${PYTHON_DEPS} - dev-lang/perl - >=dev-util/cmake-3.16 - sys-devel/gnuconfig - kernel_Darwin? ( - =sys-devel/binutils-apple-5.1 - ) - doc? ( $(python_gen_any_dep ' - dev-python/recommonmark[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ') ) - libffi? ( virtual/pkgconfig ) -" -# There are no file collisions between these versions but having :0 -# installed means llvm-config there will take precedence. -RDEPEND=" - ${RDEPEND} - !sys-devel/llvm:0 -" -PDEPEND=" - sys-devel/llvm-common - sys-devel/llvm-toolchain-symlinks:${LLVM_MAJOR} - binutils-plugin? ( >=sys-devel/llvmgold-${LLVM_MAJOR} ) -" - -LLVM_COMPONENTS=( llvm cmake ) -LLVM_TEST_COMPONENTS=( third-party ) -LLVM_MANPAGES=1 -LLVM_USE_TARGETS=provide -llvm.org_set_globals - -python_check_deps() { - use doc || return 0 - - python_has_version -b "dev-python/recommonmark[${PYTHON_USEDEP}]" && - python_has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" -} - -check_uptodate() { - local prod_targets=( - $(sed -n -e '/set(LLVM_ALL_TARGETS/,/)/p' CMakeLists.txt \ - | tail -n +2 | head -n -1) - ) - local all_targets=( - lib/Target/*/ - ) - all_targets=( "${all_targets[@]#lib/Target/}" ) - all_targets=( "${all_targets[@]%/}" ) - - local exp_targets=() i - for i in "${all_targets[@]}"; do - has "${i}" "${prod_targets[@]}" || exp_targets+=( "${i}" ) - done - - if [[ ${exp_targets[*]} != ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]} ]]; then - eqawarn "ALL_LLVM_EXPERIMENTAL_TARGETS is outdated!" - eqawarn " Have: ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]}" - eqawarn "Expected: ${exp_targets[*]}" - eqawarn - fi - - if [[ ${prod_targets[*]} != ${ALL_LLVM_PRODUCTION_TARGETS[*]} ]]; then - eqawarn "ALL_LLVM_PRODUCTION_TARGETS is outdated!" - eqawarn " Have: ${ALL_LLVM_PRODUCTION_TARGETS[*]}" - eqawarn "Expected: ${prod_targets[*]}" - fi -} - -check_distribution_components() { - if [[ ${CMAKE_MAKEFILE_GENERATOR} == ninja ]]; then - local all_targets=() my_targets=() l - cd "${BUILD_DIR}" || die - - while read -r l; do - if [[ ${l} == install-*-stripped:* ]]; then - l=${l#install-} - l=${l%%-stripped*} - - case ${l} in - # shared libs - LLVM|LLVMgold) - ;; - # TableGen lib + deps - LLVMDemangle|LLVMSupport|LLVMTableGen) - ;; - # static libs - LLVM*) - continue - ;; - # meta-targets - distribution|llvm-libraries) - continue - ;; - # used only w/ USE=doc - docs-llvm-html) - use doc || continue - ;; - esac - - all_targets+=( "${l}" ) - fi - done < <(${NINJA} -t targets all) - - while read -r l; do - my_targets+=( "${l}" ) - done < <(get_distribution_components $"\n") - - local add=() remove=() - for l in "${all_targets[@]}"; do - if ! has "${l}" "${my_targets[@]}"; then - add+=( "${l}" ) - fi - done - for l in "${my_targets[@]}"; do - if ! has "${l}" "${all_targets[@]}"; then - remove+=( "${l}" ) - fi - done - - if [[ ${#add[@]} -gt 0 || ${#remove[@]} -gt 0 ]]; then - eqawarn "get_distribution_components() is outdated!" - eqawarn " Add: ${add[*]}" - eqawarn "Remove: ${remove[*]}" - fi - cd - >/dev/null || die - fi -} - -src_prepare() { - # disable use of SDK on OSX, bug #568758 - sed -i -e 's/xcrun/false/' utils/lit/lit/util.py || die - - # Update config.guess to support more systems - cp "${BROOT}/usr/share/gnuconfig/config.guess" cmake/ || die - - # Verify that the ebuild is up-to-date - check_uptodate - - llvm.org_src_prepare -} - -get_distribution_components() { - local sep=${1-;} - - local out=( - # shared libs - LLVM - LTO - Remarks - - # tools - llvm-config - - # common stuff - cmake-exports - llvm-headers - - # libraries needed for clang-tblgen - LLVMDemangle - LLVMSupport - LLVMTableGen - ) - - if multilib_is_native_abi; then - out+=( - # utilities - llvm-tblgen - FileCheck - llvm-PerfectShuffle - count - not - yaml-bench - UnicodeNameMappingGenerator - - # tools - bugpoint - dsymutil - llc - lli - lli-child-target - llvm-addr2line - llvm-ar - llvm-as - llvm-bcanalyzer - llvm-bitcode-strip - llvm-c-test - llvm-cat - llvm-cfi-verify - llvm-config - llvm-cov - llvm-cvtres - llvm-cxxdump - llvm-cxxfilt - llvm-cxxmap - llvm-debuginfo-analyzer - llvm-debuginfod - llvm-debuginfod-find - llvm-diff - llvm-dis - llvm-dlltool - llvm-dwarfdump - llvm-dwarfutil - llvm-dwp - llvm-exegesis - llvm-extract - llvm-gsymutil - llvm-ifs - llvm-install-name-tool - llvm-jitlink - llvm-jitlink-executor - llvm-lib - llvm-libtool-darwin - llvm-link - llvm-lipo - llvm-lto - llvm-lto2 - llvm-mc - llvm-mca - llvm-ml - llvm-modextract - llvm-mt - llvm-nm - llvm-objcopy - llvm-objdump - llvm-opt-report - llvm-otool - llvm-pdbutil - llvm-profdata - llvm-profgen - llvm-ranlib - llvm-rc - llvm-readelf - llvm-readobj - llvm-reduce - llvm-remark-size-diff - llvm-remarkutil - llvm-rtdyld - llvm-sim - llvm-size - llvm-split - llvm-stress - llvm-strings - llvm-strip - llvm-symbolizer - llvm-tapi-diff - llvm-tli-checker - llvm-undname - llvm-windres - llvm-xray - obj2yaml - opt - sancov - sanstats - split-file - verify-uselistorder - yaml2obj - - # python modules - opt-viewer - ) - - if llvm_are_manpages_built; then - out+=( - # manpages - docs-dsymutil-man - docs-llvm-dwarfdump-man - docs-llvm-man - ) - fi - use doc && out+=( - docs-llvm-html - ) - - use binutils-plugin && out+=( - LLVMgold - ) - fi - - printf "%s${sep}" "${out[@]}" -} - -multilib_src_configure() { - tc-is-gcc && filter-lto # GCC miscompiles LLVM, bug #873670 - - local ffi_cflags ffi_ldflags - if use libffi; then - ffi_cflags=$($(tc-getPKG_CONFIG) --cflags-only-I libffi) - ffi_ldflags=$($(tc-getPKG_CONFIG) --libs-only-L libffi) - fi - - local libdir=$(get_libdir) - local mycmakeargs=( - # disable appending VCS revision to the version to improve - # direct cache hit ratio - -DLLVM_APPEND_VC_REV=OFF - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}" - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - - -DBUILD_SHARED_LIBS=OFF - -DLLVM_BUILD_LLVM_DYLIB=ON - -DLLVM_LINK_LLVM_DYLIB=ON - -DLLVM_DISTRIBUTION_COMPONENTS=$(get_distribution_components) - - # cheap hack: LLVM combines both anyway, and the only difference - # is that the former list is explicitly verified at cmake time - -DLLVM_TARGETS_TO_BUILD="" - -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" - -DLLVM_INCLUDE_BENCHMARKS=OFF - -DLLVM_INCLUDE_TESTS=$(usex test) - -DLLVM_BUILD_TESTS=$(usex test) - - -DLLVM_ENABLE_FFI=$(usex libffi) - -DLLVM_ENABLE_LIBEDIT=$(usex libedit) - -DLLVM_ENABLE_TERMINFO=$(usex ncurses) - -DLLVM_ENABLE_LIBXML2=$(usex xml) - -DLLVM_ENABLE_ASSERTIONS=$(usex debug) - -DLLVM_ENABLE_LIBPFM=$(usex exegesis) - -DLLVM_ENABLE_Z3_SOLVER=$(usex z3) - -DLLVM_ENABLE_ZSTD=$(usex zstd) - - -DLLVM_HOST_TRIPLE="${CHOST}" - - -DFFI_INCLUDE_DIR="${ffi_cflags#-I}" - -DFFI_LIBRARY_DIR="${ffi_ldflags#-L}" - # used only for llvm-objdump tool - -DLLVM_HAVE_LIBXAR=$(multilib_native_usex xar 1 0) - - -DPython3_EXECUTABLE="${PYTHON}" - - # disable OCaml bindings (now in dev-ml/llvm-ocaml) - -DOCAMLFIND=NO - ) - - local suffix= - if [[ -n ${EGIT_VERSION} && ${EGIT_BRANCH} != release/* ]]; then - # the ABI of the main branch is not stable, so let's include - # the commit id in the SOVERSION to contain the breakage - suffix+="git${EGIT_VERSION::8}" - fi - if [[ $(tc-get-cxx-stdlib) == libc++ ]]; then - # Smart hack: alter version suffix -> SOVERSION when linking - # against libc++. This way we won't end up mixing LLVM libc++ - # libraries with libstdc++ clang, and the other way around. - suffix+="+libcxx" - mycmakeargs+=( - -DLLVM_ENABLE_LIBCXX=ON - ) - fi - mycmakeargs+=( - -DLLVM_VERSION_SUFFIX="${suffix}" - ) - - use test && mycmakeargs+=( - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - if multilib_is_native_abi; then - local build_docs=OFF - if llvm_are_manpages_built; then - build_docs=ON - mycmakeargs+=( - -DCMAKE_INSTALL_MANDIR="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/share/man" - -DLLVM_INSTALL_SPHINX_HTML_DIR="${EPREFIX}/usr/share/doc/${PF}/html" - -DSPHINX_WARNINGS_AS_ERRORS=OFF - ) - fi - - mycmakeargs+=( - -DLLVM_BUILD_DOCS=${build_docs} - -DLLVM_ENABLE_OCAMLDOC=OFF - -DLLVM_ENABLE_SPHINX=${build_docs} - -DLLVM_ENABLE_DOXYGEN=OFF - -DLLVM_INSTALL_UTILS=ON - ) - use binutils-plugin && mycmakeargs+=( - -DLLVM_BINUTILS_INCDIR="${EPREFIX}"/usr/include - ) - fi - - # workaround BMI bug in gcc-7 (fixed in 7.4) - # https://bugs.gentoo.org/649880 - # apply only to x86, https://bugs.gentoo.org/650506 - if tc-is-gcc && [[ ${MULTILIB_ABI_FLAG} == abi_x86* ]] && - [[ $(gcc-major-version) -eq 7 && $(gcc-minor-version) -lt 4 ]] - then - local CFLAGS="${CFLAGS} -mno-bmi" - local CXXFLAGS="${CXXFLAGS} -mno-bmi" - fi - - # LLVM can have very high memory consumption while linking, - # exhausting the limit on 32-bit linker executable - use x86 && local -x LDFLAGS="${LDFLAGS} -Wl,--no-keep-memory" - - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - cmake_src_configure - - grep -q -E "^CMAKE_PROJECT_VERSION_MAJOR(:.*)?=${LLVM_MAJOR}$" \ - CMakeCache.txt || - die "Incorrect version, did you update _LLVM_MASTER_MAJOR?" - multilib_is_native_abi && check_distribution_components -} - -multilib_src_compile() { - tc-env_build cmake_build distribution - - pax-mark m "${BUILD_DIR}"/bin/llvm-rtdyld - pax-mark m "${BUILD_DIR}"/bin/lli - pax-mark m "${BUILD_DIR}"/bin/lli-child-target - - if use test; then - pax-mark m "${BUILD_DIR}"/unittests/ExecutionEngine/Orc/OrcJITTests - pax-mark m "${BUILD_DIR}"/unittests/ExecutionEngine/MCJIT/MCJITTests - pax-mark m "${BUILD_DIR}"/unittests/Support/SupportTests - fi -} - -multilib_src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - cmake_build check -} - -src_install() { - local MULTILIB_CHOST_TOOLS=( - /usr/lib/llvm/${LLVM_MAJOR}/bin/llvm-config - ) - - local MULTILIB_WRAPPED_HEADERS=( - /usr/include/llvm/Config/llvm-config.h - ) - - local LLVM_LDPATHS=() - multilib-minimal_src_install - - # move wrapped headers back - mv "${ED}"/usr/include "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include || die -} - -multilib_src_install() { - DESTDIR=${D} cmake_build install-distribution - - # move headers to /usr/include for wrapping - rm -rf "${ED}"/usr/include || die - mv "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include "${ED}"/usr/include || die - - LLVM_LDPATHS+=( "${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)" ) -} - -multilib_src_install_all() { - local revord=$(( 9999 - ${LLVM_MAJOR} )) - newenvd - "60llvm-${revord}" <<-_EOF_ - PATH="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin" - # we need to duplicate it in ROOTPATH for Portage to respect... - ROOTPATH="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin" - MANPATH="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/share/man" - LDPATH="$( IFS=:; echo "${LLVM_LDPATHS[*]}" )" - _EOF_ - - docompress "/usr/lib/llvm/${LLVM_MAJOR}/share/man" - llvm_install_manpages -} - -pkg_postinst() { - elog "You can find additional opt-viewer utility scripts in:" - elog " ${EROOT}/usr/lib/llvm/${LLVM_MAJOR}/share/opt-viewer" - elog "To use these scripts, you will need Python along with the following" - elog "packages:" - elog " dev-python/pygments (for opt-viewer)" - elog " dev-python/pyyaml (for all of them)" -} diff --git a/sys-devel/llvm/llvm-16.0.0_rc4.ebuild b/sys-devel/llvm/llvm-16.0.0_rc4.ebuild deleted file mode 100644 index 5228bf50a680..000000000000 --- a/sys-devel/llvm/llvm-16.0.0_rc4.ebuild +++ /dev/null @@ -1,517 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm.org multilib-minimal pax-utils python-any-r1 \ - toolchain-funcs flag-o-matic - -DESCRIPTION="Low Level Virtual Machine" -HOMEPAGE="https://llvm.org/" - -# Additional licenses: -# 1. OpenBSD regex: Henry Spencer's license ('rc' in Gentoo) + BSD. -# 2. xxhash: BSD. -# 3. MD5 code: public-domain. -# 4. ConvertUTF.h: TODO. - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc" -SLOT="${LLVM_MAJOR}/${LLVM_SOABI}" -KEYWORDS="~loong" -IUSE=" - +binutils-plugin debug doc exegesis libedit +libffi ncurses test xar - xml z3 zstd -" -RESTRICT="!test? ( test )" - -RDEPEND=" - sys-libs/zlib:0=[${MULTILIB_USEDEP}] - exegesis? ( dev-libs/libpfm:= ) - libedit? ( dev-libs/libedit:0=[${MULTILIB_USEDEP}] ) - libffi? ( >=dev-libs/libffi-3.0.13-r1:0=[${MULTILIB_USEDEP}] ) - ncurses? ( >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}] ) - xar? ( app-arch/xar ) - xml? ( dev-libs/libxml2:2=[${MULTILIB_USEDEP}] ) - z3? ( >=sci-mathematics/z3-4.7.1:0=[${MULTILIB_USEDEP}] ) - zstd? ( app-arch/zstd:=[${MULTILIB_USEDEP}] ) -" -DEPEND=" - ${RDEPEND} - binutils-plugin? ( sys-libs/binutils-libs ) -" -BDEPEND=" - ${PYTHON_DEPS} - dev-lang/perl - >=dev-util/cmake-3.16 - sys-devel/gnuconfig - kernel_Darwin? ( - =sys-devel/binutils-apple-5.1 - ) - doc? ( $(python_gen_any_dep ' - dev-python/recommonmark[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ') ) - libffi? ( virtual/pkgconfig ) -" -# There are no file collisions between these versions but having :0 -# installed means llvm-config there will take precedence. -RDEPEND=" - ${RDEPEND} - !sys-devel/llvm:0 -" -PDEPEND=" - sys-devel/llvm-common - sys-devel/llvm-toolchain-symlinks:${LLVM_MAJOR} - binutils-plugin? ( >=sys-devel/llvmgold-${LLVM_MAJOR} ) -" - -LLVM_COMPONENTS=( llvm cmake ) -LLVM_TEST_COMPONENTS=( third-party ) -LLVM_MANPAGES=1 -LLVM_USE_TARGETS=provide -llvm.org_set_globals - -python_check_deps() { - use doc || return 0 - - python_has_version -b "dev-python/recommonmark[${PYTHON_USEDEP}]" && - python_has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" -} - -check_uptodate() { - local prod_targets=( - $(sed -n -e '/set(LLVM_ALL_TARGETS/,/)/p' CMakeLists.txt \ - | tail -n +2 | head -n -1) - ) - local all_targets=( - lib/Target/*/ - ) - all_targets=( "${all_targets[@]#lib/Target/}" ) - all_targets=( "${all_targets[@]%/}" ) - - local exp_targets=() i - for i in "${all_targets[@]}"; do - has "${i}" "${prod_targets[@]}" || exp_targets+=( "${i}" ) - done - - if [[ ${exp_targets[*]} != ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]} ]]; then - eqawarn "ALL_LLVM_EXPERIMENTAL_TARGETS is outdated!" - eqawarn " Have: ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]}" - eqawarn "Expected: ${exp_targets[*]}" - eqawarn - fi - - if [[ ${prod_targets[*]} != ${ALL_LLVM_PRODUCTION_TARGETS[*]} ]]; then - eqawarn "ALL_LLVM_PRODUCTION_TARGETS is outdated!" - eqawarn " Have: ${ALL_LLVM_PRODUCTION_TARGETS[*]}" - eqawarn "Expected: ${prod_targets[*]}" - fi -} - -check_distribution_components() { - if [[ ${CMAKE_MAKEFILE_GENERATOR} == ninja ]]; then - local all_targets=() my_targets=() l - cd "${BUILD_DIR}" || die - - while read -r l; do - if [[ ${l} == install-*-stripped:* ]]; then - l=${l#install-} - l=${l%%-stripped*} - - case ${l} in - # shared libs - LLVM|LLVMgold) - ;; - # TableGen lib + deps - LLVMDemangle|LLVMSupport|LLVMTableGen) - ;; - # static libs - LLVM*) - continue - ;; - # meta-targets - distribution|llvm-libraries) - continue - ;; - # used only w/ USE=doc - docs-llvm-html) - use doc || continue - ;; - esac - - all_targets+=( "${l}" ) - fi - done < <(${NINJA} -t targets all) - - while read -r l; do - my_targets+=( "${l}" ) - done < <(get_distribution_components $"\n") - - local add=() remove=() - for l in "${all_targets[@]}"; do - if ! has "${l}" "${my_targets[@]}"; then - add+=( "${l}" ) - fi - done - for l in "${my_targets[@]}"; do - if ! has "${l}" "${all_targets[@]}"; then - remove+=( "${l}" ) - fi - done - - if [[ ${#add[@]} -gt 0 || ${#remove[@]} -gt 0 ]]; then - eqawarn "get_distribution_components() is outdated!" - eqawarn " Add: ${add[*]}" - eqawarn "Remove: ${remove[*]}" - fi - cd - >/dev/null || die - fi -} - -src_prepare() { - # disable use of SDK on OSX, bug #568758 - sed -i -e 's/xcrun/false/' utils/lit/lit/util.py || die - - # Update config.guess to support more systems - cp "${BROOT}/usr/share/gnuconfig/config.guess" cmake/ || die - - # Verify that the ebuild is up-to-date - check_uptodate - - llvm.org_src_prepare -} - -get_distribution_components() { - local sep=${1-;} - - local out=( - # shared libs - LLVM - LTO - Remarks - - # tools - llvm-config - - # common stuff - cmake-exports - llvm-headers - - # libraries needed for clang-tblgen - LLVMDemangle - LLVMSupport - LLVMTableGen - ) - - if multilib_is_native_abi; then - out+=( - # utilities - llvm-tblgen - FileCheck - llvm-PerfectShuffle - count - not - yaml-bench - UnicodeNameMappingGenerator - - # tools - bugpoint - dsymutil - llc - lli - lli-child-target - llvm-addr2line - llvm-ar - llvm-as - llvm-bcanalyzer - llvm-bitcode-strip - llvm-c-test - llvm-cat - llvm-cfi-verify - llvm-config - llvm-cov - llvm-cvtres - llvm-cxxdump - llvm-cxxfilt - llvm-cxxmap - llvm-debuginfo-analyzer - llvm-debuginfod - llvm-debuginfod-find - llvm-diff - llvm-dis - llvm-dlltool - llvm-dwarfdump - llvm-dwarfutil - llvm-dwp - llvm-exegesis - llvm-extract - llvm-gsymutil - llvm-ifs - llvm-install-name-tool - llvm-jitlink - llvm-jitlink-executor - llvm-lib - llvm-libtool-darwin - llvm-link - llvm-lipo - llvm-lto - llvm-lto2 - llvm-mc - llvm-mca - llvm-ml - llvm-modextract - llvm-mt - llvm-nm - llvm-objcopy - llvm-objdump - llvm-opt-report - llvm-otool - llvm-pdbutil - llvm-profdata - llvm-profgen - llvm-ranlib - llvm-rc - llvm-readelf - llvm-readobj - llvm-reduce - llvm-remark-size-diff - llvm-remarkutil - llvm-rtdyld - llvm-sim - llvm-size - llvm-split - llvm-stress - llvm-strings - llvm-strip - llvm-symbolizer - llvm-tapi-diff - llvm-tli-checker - llvm-undname - llvm-windres - llvm-xray - obj2yaml - opt - sancov - sanstats - split-file - verify-uselistorder - yaml2obj - - # python modules - opt-viewer - ) - - if llvm_are_manpages_built; then - out+=( - # manpages - docs-dsymutil-man - docs-llvm-dwarfdump-man - docs-llvm-man - ) - fi - use doc && out+=( - docs-llvm-html - ) - - use binutils-plugin && out+=( - LLVMgold - ) - fi - - printf "%s${sep}" "${out[@]}" -} - -multilib_src_configure() { - tc-is-gcc && filter-lto # GCC miscompiles LLVM, bug #873670 - - local ffi_cflags ffi_ldflags - if use libffi; then - ffi_cflags=$($(tc-getPKG_CONFIG) --cflags-only-I libffi) - ffi_ldflags=$($(tc-getPKG_CONFIG) --libs-only-L libffi) - fi - - local libdir=$(get_libdir) - local mycmakeargs=( - # disable appending VCS revision to the version to improve - # direct cache hit ratio - -DLLVM_APPEND_VC_REV=OFF - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}" - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - - -DBUILD_SHARED_LIBS=OFF - -DLLVM_BUILD_LLVM_DYLIB=ON - -DLLVM_LINK_LLVM_DYLIB=ON - -DLLVM_DISTRIBUTION_COMPONENTS=$(get_distribution_components) - - # cheap hack: LLVM combines both anyway, and the only difference - # is that the former list is explicitly verified at cmake time - -DLLVM_TARGETS_TO_BUILD="" - -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" - -DLLVM_INCLUDE_BENCHMARKS=OFF - -DLLVM_INCLUDE_TESTS=$(usex test) - -DLLVM_BUILD_TESTS=$(usex test) - - -DLLVM_ENABLE_FFI=$(usex libffi) - -DLLVM_ENABLE_LIBEDIT=$(usex libedit) - -DLLVM_ENABLE_TERMINFO=$(usex ncurses) - -DLLVM_ENABLE_LIBXML2=$(usex xml) - -DLLVM_ENABLE_ASSERTIONS=$(usex debug) - -DLLVM_ENABLE_LIBPFM=$(usex exegesis) - -DLLVM_ENABLE_EH=ON - -DLLVM_ENABLE_RTTI=ON - -DLLVM_ENABLE_Z3_SOLVER=$(usex z3) - -DLLVM_ENABLE_ZSTD=$(usex zstd) - - -DLLVM_HOST_TRIPLE="${CHOST}" - - -DFFI_INCLUDE_DIR="${ffi_cflags#-I}" - -DFFI_LIBRARY_DIR="${ffi_ldflags#-L}" - # used only for llvm-objdump tool - -DLLVM_HAVE_LIBXAR=$(multilib_native_usex xar 1 0) - - -DPython3_EXECUTABLE="${PYTHON}" - - # disable OCaml bindings (now in dev-ml/llvm-ocaml) - -DOCAMLFIND=NO - ) - - local suffix= - if [[ -n ${EGIT_VERSION} && ${EGIT_BRANCH} != release/* ]]; then - # the ABI of the main branch is not stable, so let's include - # the commit id in the SOVERSION to contain the breakage - suffix+="git${EGIT_VERSION::8}" - fi - if [[ $(tc-get-cxx-stdlib) == libc++ ]]; then - # Smart hack: alter version suffix -> SOVERSION when linking - # against libc++. This way we won't end up mixing LLVM libc++ - # libraries with libstdc++ clang, and the other way around. - suffix+="+libcxx" - mycmakeargs+=( - -DLLVM_ENABLE_LIBCXX=ON - ) - fi - mycmakeargs+=( - -DLLVM_VERSION_SUFFIX="${suffix}" - ) - - use test && mycmakeargs+=( - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - if multilib_is_native_abi; then - local build_docs=OFF - if llvm_are_manpages_built; then - build_docs=ON - mycmakeargs+=( - -DCMAKE_INSTALL_MANDIR="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/share/man" - -DLLVM_INSTALL_SPHINX_HTML_DIR="${EPREFIX}/usr/share/doc/${PF}/html" - -DSPHINX_WARNINGS_AS_ERRORS=OFF - ) - fi - - mycmakeargs+=( - -DLLVM_BUILD_DOCS=${build_docs} - -DLLVM_ENABLE_OCAMLDOC=OFF - -DLLVM_ENABLE_SPHINX=${build_docs} - -DLLVM_ENABLE_DOXYGEN=OFF - -DLLVM_INSTALL_UTILS=ON - ) - use binutils-plugin && mycmakeargs+=( - -DLLVM_BINUTILS_INCDIR="${EPREFIX}"/usr/include - ) - fi - - # workaround BMI bug in gcc-7 (fixed in 7.4) - # https://bugs.gentoo.org/649880 - # apply only to x86, https://bugs.gentoo.org/650506 - if tc-is-gcc && [[ ${MULTILIB_ABI_FLAG} == abi_x86* ]] && - [[ $(gcc-major-version) -eq 7 && $(gcc-minor-version) -lt 4 ]] - then - local CFLAGS="${CFLAGS} -mno-bmi" - local CXXFLAGS="${CXXFLAGS} -mno-bmi" - fi - - # LLVM can have very high memory consumption while linking, - # exhausting the limit on 32-bit linker executable - use x86 && local -x LDFLAGS="${LDFLAGS} -Wl,--no-keep-memory" - - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - cmake_src_configure - - grep -q -E "^CMAKE_PROJECT_VERSION_MAJOR(:.*)?=${LLVM_MAJOR}$" \ - CMakeCache.txt || - die "Incorrect version, did you update _LLVM_MASTER_MAJOR?" - multilib_is_native_abi && check_distribution_components -} - -multilib_src_compile() { - tc-env_build cmake_build distribution - - pax-mark m "${BUILD_DIR}"/bin/llvm-rtdyld - pax-mark m "${BUILD_DIR}"/bin/lli - pax-mark m "${BUILD_DIR}"/bin/lli-child-target - - if use test; then - pax-mark m "${BUILD_DIR}"/unittests/ExecutionEngine/Orc/OrcJITTests - pax-mark m "${BUILD_DIR}"/unittests/ExecutionEngine/MCJIT/MCJITTests - pax-mark m "${BUILD_DIR}"/unittests/Support/SupportTests - fi -} - -multilib_src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - cmake_build check -} - -src_install() { - local MULTILIB_CHOST_TOOLS=( - /usr/lib/llvm/${LLVM_MAJOR}/bin/llvm-config - ) - - local MULTILIB_WRAPPED_HEADERS=( - /usr/include/llvm/Config/llvm-config.h - ) - - local LLVM_LDPATHS=() - multilib-minimal_src_install - - # move wrapped headers back - mv "${ED}"/usr/include "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include || die -} - -multilib_src_install() { - DESTDIR=${D} cmake_build install-distribution - - # move headers to /usr/include for wrapping - rm -rf "${ED}"/usr/include || die - mv "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include "${ED}"/usr/include || die - - LLVM_LDPATHS+=( "${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)" ) -} - -multilib_src_install_all() { - local revord=$(( 9999 - ${LLVM_MAJOR} )) - newenvd - "60llvm-${revord}" <<-_EOF_ - PATH="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin" - # we need to duplicate it in ROOTPATH for Portage to respect... - ROOTPATH="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin" - MANPATH="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/share/man" - LDPATH="$( IFS=:; echo "${LLVM_LDPATHS[*]}" )" - _EOF_ - - docompress "/usr/lib/llvm/${LLVM_MAJOR}/share/man" - llvm_install_manpages -} - -pkg_postinst() { - elog "You can find additional opt-viewer utility scripts in:" - elog " ${EROOT}/usr/lib/llvm/${LLVM_MAJOR}/share/opt-viewer" - elog "To use these scripts, you will need Python along with the following" - elog "packages:" - elog " dev-python/pygments (for opt-viewer)" - elog " dev-python/pyyaml (for all of them)" -} diff --git a/sys-devel/llvm/llvm-17.0.0_pre20230304.ebuild b/sys-devel/llvm/llvm-17.0.0_pre20230304.ebuild deleted file mode 100644 index 6b874a5fe20f..000000000000 --- a/sys-devel/llvm/llvm-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,517 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake llvm.org multilib-minimal pax-utils python-any-r1 \ - toolchain-funcs flag-o-matic - -DESCRIPTION="Low Level Virtual Machine" -HOMEPAGE="https://llvm.org/" - -# Additional licenses: -# 1. OpenBSD regex: Henry Spencer's license ('rc' in Gentoo) + BSD. -# 2. xxhash: BSD. -# 3. MD5 code: public-domain. -# 4. ConvertUTF.h: TODO. - -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc" -SLOT="${LLVM_MAJOR}/${LLVM_SOABI}" -KEYWORDS="" -IUSE=" - +binutils-plugin debug doc exegesis libedit +libffi ncurses test xar - xml z3 zstd -" -RESTRICT="!test? ( test )" - -RDEPEND=" - sys-libs/zlib:0=[${MULTILIB_USEDEP}] - exegesis? ( dev-libs/libpfm:= ) - libedit? ( dev-libs/libedit:0=[${MULTILIB_USEDEP}] ) - libffi? ( >=dev-libs/libffi-3.0.13-r1:0=[${MULTILIB_USEDEP}] ) - ncurses? ( >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}] ) - xar? ( app-arch/xar ) - xml? ( dev-libs/libxml2:2=[${MULTILIB_USEDEP}] ) - z3? ( >=sci-mathematics/z3-4.7.1:0=[${MULTILIB_USEDEP}] ) - zstd? ( app-arch/zstd:=[${MULTILIB_USEDEP}] ) -" -DEPEND=" - ${RDEPEND} - binutils-plugin? ( sys-libs/binutils-libs ) -" -BDEPEND=" - ${PYTHON_DEPS} - dev-lang/perl - >=dev-util/cmake-3.16 - sys-devel/gnuconfig - kernel_Darwin? ( - =sys-devel/binutils-apple-5.1 - ) - doc? ( $(python_gen_any_dep ' - dev-python/recommonmark[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ') ) - libffi? ( virtual/pkgconfig ) -" -# There are no file collisions between these versions but having :0 -# installed means llvm-config there will take precedence. -RDEPEND=" - ${RDEPEND} - !sys-devel/llvm:0 -" -PDEPEND=" - sys-devel/llvm-common - sys-devel/llvm-toolchain-symlinks:${LLVM_MAJOR} - binutils-plugin? ( >=sys-devel/llvmgold-${LLVM_MAJOR} ) -" - -LLVM_COMPONENTS=( llvm cmake ) -LLVM_TEST_COMPONENTS=( third-party ) -LLVM_MANPAGES=1 -LLVM_USE_TARGETS=provide -llvm.org_set_globals - -python_check_deps() { - use doc || return 0 - - python_has_version -b "dev-python/recommonmark[${PYTHON_USEDEP}]" && - python_has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" -} - -check_uptodate() { - local prod_targets=( - $(sed -n -e '/set(LLVM_ALL_TARGETS/,/)/p' CMakeLists.txt \ - | tail -n +2 | head -n -1) - ) - local all_targets=( - lib/Target/*/ - ) - all_targets=( "${all_targets[@]#lib/Target/}" ) - all_targets=( "${all_targets[@]%/}" ) - - local exp_targets=() i - for i in "${all_targets[@]}"; do - has "${i}" "${prod_targets[@]}" || exp_targets+=( "${i}" ) - done - - if [[ ${exp_targets[*]} != ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]} ]]; then - eqawarn "ALL_LLVM_EXPERIMENTAL_TARGETS is outdated!" - eqawarn " Have: ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]}" - eqawarn "Expected: ${exp_targets[*]}" - eqawarn - fi - - if [[ ${prod_targets[*]} != ${ALL_LLVM_PRODUCTION_TARGETS[*]} ]]; then - eqawarn "ALL_LLVM_PRODUCTION_TARGETS is outdated!" - eqawarn " Have: ${ALL_LLVM_PRODUCTION_TARGETS[*]}" - eqawarn "Expected: ${prod_targets[*]}" - fi -} - -check_distribution_components() { - if [[ ${CMAKE_MAKEFILE_GENERATOR} == ninja ]]; then - local all_targets=() my_targets=() l - cd "${BUILD_DIR}" || die - - while read -r l; do - if [[ ${l} == install-*-stripped:* ]]; then - l=${l#install-} - l=${l%%-stripped*} - - case ${l} in - # shared libs - LLVM|LLVMgold) - ;; - # TableGen lib + deps - LLVMDemangle|LLVMSupport|LLVMTableGen) - ;; - # static libs - LLVM*) - continue - ;; - # meta-targets - distribution|llvm-libraries) - continue - ;; - # used only w/ USE=doc - docs-llvm-html) - use doc || continue - ;; - esac - - all_targets+=( "${l}" ) - fi - done < <(${NINJA} -t targets all) - - while read -r l; do - my_targets+=( "${l}" ) - done < <(get_distribution_components $"\n") - - local add=() remove=() - for l in "${all_targets[@]}"; do - if ! has "${l}" "${my_targets[@]}"; then - add+=( "${l}" ) - fi - done - for l in "${my_targets[@]}"; do - if ! has "${l}" "${all_targets[@]}"; then - remove+=( "${l}" ) - fi - done - - if [[ ${#add[@]} -gt 0 || ${#remove[@]} -gt 0 ]]; then - eqawarn "get_distribution_components() is outdated!" - eqawarn " Add: ${add[*]}" - eqawarn "Remove: ${remove[*]}" - fi - cd - >/dev/null || die - fi -} - -src_prepare() { - # disable use of SDK on OSX, bug #568758 - sed -i -e 's/xcrun/false/' utils/lit/lit/util.py || die - - # Update config.guess to support more systems - cp "${BROOT}/usr/share/gnuconfig/config.guess" cmake/ || die - - # Verify that the ebuild is up-to-date - check_uptodate - - llvm.org_src_prepare -} - -get_distribution_components() { - local sep=${1-;} - - local out=( - # shared libs - LLVM - LTO - Remarks - - # tools - llvm-config - - # common stuff - cmake-exports - llvm-headers - - # libraries needed for clang-tblgen - LLVMDemangle - LLVMSupport - LLVMTableGen - ) - - if multilib_is_native_abi; then - out+=( - # utilities - llvm-tblgen - FileCheck - llvm-PerfectShuffle - count - not - yaml-bench - UnicodeNameMappingGenerator - - # tools - bugpoint - dsymutil - llc - lli - lli-child-target - llvm-addr2line - llvm-ar - llvm-as - llvm-bcanalyzer - llvm-bitcode-strip - llvm-c-test - llvm-cat - llvm-cfi-verify - llvm-config - llvm-cov - llvm-cvtres - llvm-cxxdump - llvm-cxxfilt - llvm-cxxmap - llvm-debuginfo-analyzer - llvm-debuginfod - llvm-debuginfod-find - llvm-diff - llvm-dis - llvm-dlltool - llvm-dwarfdump - llvm-dwarfutil - llvm-dwp - llvm-exegesis - llvm-extract - llvm-gsymutil - llvm-ifs - llvm-install-name-tool - llvm-jitlink - llvm-jitlink-executor - llvm-lib - llvm-libtool-darwin - llvm-link - llvm-lipo - llvm-lto - llvm-lto2 - llvm-mc - llvm-mca - llvm-ml - llvm-modextract - llvm-mt - llvm-nm - llvm-objcopy - llvm-objdump - llvm-opt-report - llvm-otool - llvm-pdbutil - llvm-profdata - llvm-profgen - llvm-ranlib - llvm-rc - llvm-readelf - llvm-readobj - llvm-reduce - llvm-remark-size-diff - llvm-remarkutil - llvm-rtdyld - llvm-sim - llvm-size - llvm-split - llvm-stress - llvm-strings - llvm-strip - llvm-symbolizer - llvm-tapi-diff - llvm-tli-checker - llvm-undname - llvm-windres - llvm-xray - obj2yaml - opt - sancov - sanstats - split-file - verify-uselistorder - yaml2obj - - # python modules - opt-viewer - ) - - if llvm_are_manpages_built; then - out+=( - # manpages - docs-dsymutil-man - docs-llvm-dwarfdump-man - docs-llvm-man - ) - fi - use doc && out+=( - docs-llvm-html - ) - - use binutils-plugin && out+=( - LLVMgold - ) - fi - - printf "%s${sep}" "${out[@]}" -} - -multilib_src_configure() { - tc-is-gcc && filter-lto # GCC miscompiles LLVM, bug #873670 - - local ffi_cflags ffi_ldflags - if use libffi; then - ffi_cflags=$($(tc-getPKG_CONFIG) --cflags-only-I libffi) - ffi_ldflags=$($(tc-getPKG_CONFIG) --libs-only-L libffi) - fi - - local libdir=$(get_libdir) - local mycmakeargs=( - # disable appending VCS revision to the version to improve - # direct cache hit ratio - -DLLVM_APPEND_VC_REV=OFF - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}" - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - - -DBUILD_SHARED_LIBS=OFF - -DLLVM_BUILD_LLVM_DYLIB=ON - -DLLVM_LINK_LLVM_DYLIB=ON - -DLLVM_DISTRIBUTION_COMPONENTS=$(get_distribution_components) - - # cheap hack: LLVM combines both anyway, and the only difference - # is that the former list is explicitly verified at cmake time - -DLLVM_TARGETS_TO_BUILD="" - -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" - -DLLVM_INCLUDE_BENCHMARKS=OFF - -DLLVM_INCLUDE_TESTS=$(usex test) - -DLLVM_BUILD_TESTS=$(usex test) - - -DLLVM_ENABLE_FFI=$(usex libffi) - -DLLVM_ENABLE_LIBEDIT=$(usex libedit) - -DLLVM_ENABLE_TERMINFO=$(usex ncurses) - -DLLVM_ENABLE_LIBXML2=$(usex xml) - -DLLVM_ENABLE_ASSERTIONS=$(usex debug) - -DLLVM_ENABLE_LIBPFM=$(usex exegesis) - -DLLVM_ENABLE_EH=ON - -DLLVM_ENABLE_RTTI=ON - -DLLVM_ENABLE_Z3_SOLVER=$(usex z3) - -DLLVM_ENABLE_ZSTD=$(usex zstd) - - -DLLVM_HOST_TRIPLE="${CHOST}" - - -DFFI_INCLUDE_DIR="${ffi_cflags#-I}" - -DFFI_LIBRARY_DIR="${ffi_ldflags#-L}" - # used only for llvm-objdump tool - -DLLVM_HAVE_LIBXAR=$(multilib_native_usex xar 1 0) - - -DPython3_EXECUTABLE="${PYTHON}" - - # disable OCaml bindings (now in dev-ml/llvm-ocaml) - -DOCAMLFIND=NO - ) - - local suffix= - if [[ -n ${EGIT_VERSION} && ${EGIT_BRANCH} != release/* ]]; then - # the ABI of the main branch is not stable, so let's include - # the commit id in the SOVERSION to contain the breakage - suffix+="git${EGIT_VERSION::8}" - fi - if [[ $(tc-get-cxx-stdlib) == libc++ ]]; then - # Smart hack: alter version suffix -> SOVERSION when linking - # against libc++. This way we won't end up mixing LLVM libc++ - # libraries with libstdc++ clang, and the other way around. - suffix+="+libcxx" - mycmakeargs+=( - -DLLVM_ENABLE_LIBCXX=ON - ) - fi - mycmakeargs+=( - -DLLVM_VERSION_SUFFIX="${suffix}" - ) - - use test && mycmakeargs+=( - -DLLVM_LIT_ARGS="$(get_lit_flags)" - ) - - if multilib_is_native_abi; then - local build_docs=OFF - if llvm_are_manpages_built; then - build_docs=ON - mycmakeargs+=( - -DCMAKE_INSTALL_MANDIR="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/share/man" - -DLLVM_INSTALL_SPHINX_HTML_DIR="${EPREFIX}/usr/share/doc/${PF}/html" - -DSPHINX_WARNINGS_AS_ERRORS=OFF - ) - fi - - mycmakeargs+=( - -DLLVM_BUILD_DOCS=${build_docs} - -DLLVM_ENABLE_OCAMLDOC=OFF - -DLLVM_ENABLE_SPHINX=${build_docs} - -DLLVM_ENABLE_DOXYGEN=OFF - -DLLVM_INSTALL_UTILS=ON - ) - use binutils-plugin && mycmakeargs+=( - -DLLVM_BINUTILS_INCDIR="${EPREFIX}"/usr/include - ) - fi - - # workaround BMI bug in gcc-7 (fixed in 7.4) - # https://bugs.gentoo.org/649880 - # apply only to x86, https://bugs.gentoo.org/650506 - if tc-is-gcc && [[ ${MULTILIB_ABI_FLAG} == abi_x86* ]] && - [[ $(gcc-major-version) -eq 7 && $(gcc-minor-version) -lt 4 ]] - then - local CFLAGS="${CFLAGS} -mno-bmi" - local CXXFLAGS="${CXXFLAGS} -mno-bmi" - fi - - # LLVM can have very high memory consumption while linking, - # exhausting the limit on 32-bit linker executable - use x86 && local -x LDFLAGS="${LDFLAGS} -Wl,--no-keep-memory" - - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - cmake_src_configure - - grep -q -E "^CMAKE_PROJECT_VERSION_MAJOR(:.*)?=${LLVM_MAJOR}$" \ - CMakeCache.txt || - die "Incorrect version, did you update _LLVM_MASTER_MAJOR?" - multilib_is_native_abi && check_distribution_components -} - -multilib_src_compile() { - tc-env_build cmake_build distribution - - pax-mark m "${BUILD_DIR}"/bin/llvm-rtdyld - pax-mark m "${BUILD_DIR}"/bin/lli - pax-mark m "${BUILD_DIR}"/bin/lli-child-target - - if use test; then - pax-mark m "${BUILD_DIR}"/unittests/ExecutionEngine/Orc/OrcJITTests - pax-mark m "${BUILD_DIR}"/unittests/ExecutionEngine/MCJIT/MCJITTests - pax-mark m "${BUILD_DIR}"/unittests/Support/SupportTests - fi -} - -multilib_src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - cmake_build check -} - -src_install() { - local MULTILIB_CHOST_TOOLS=( - /usr/lib/llvm/${LLVM_MAJOR}/bin/llvm-config - ) - - local MULTILIB_WRAPPED_HEADERS=( - /usr/include/llvm/Config/llvm-config.h - ) - - local LLVM_LDPATHS=() - multilib-minimal_src_install - - # move wrapped headers back - mv "${ED}"/usr/include "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include || die -} - -multilib_src_install() { - DESTDIR=${D} cmake_build install-distribution - - # move headers to /usr/include for wrapping - rm -rf "${ED}"/usr/include || die - mv "${ED}"/usr/lib/llvm/${LLVM_MAJOR}/include "${ED}"/usr/include || die - - LLVM_LDPATHS+=( "${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)" ) -} - -multilib_src_install_all() { - local revord=$(( 9999 - ${LLVM_MAJOR} )) - newenvd - "60llvm-${revord}" <<-_EOF_ - PATH="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin" - # we need to duplicate it in ROOTPATH for Portage to respect... - ROOTPATH="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin" - MANPATH="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/share/man" - LDPATH="$( IFS=:; echo "${LLVM_LDPATHS[*]}" )" - _EOF_ - - docompress "/usr/lib/llvm/${LLVM_MAJOR}/share/man" - llvm_install_manpages -} - -pkg_postinst() { - elog "You can find additional opt-viewer utility scripts in:" - elog " ${EROOT}/usr/lib/llvm/${LLVM_MAJOR}/share/opt-viewer" - elog "To use these scripts, you will need Python along with the following" - elog "packages:" - elog " dev-python/pygments (for opt-viewer)" - elog " dev-python/pyyaml (for all of them)" -} diff --git a/sys-fs/Manifest.gz b/sys-fs/Manifest.gz index df65687d89aa..44487c157d6c 100644 Binary files a/sys-fs/Manifest.gz and b/sys-fs/Manifest.gz differ diff --git a/sys-fs/dmraid/dmraid-1.0.0_rc16-r7.ebuild b/sys-fs/dmraid/dmraid-1.0.0_rc16-r7.ebuild index 005029b321bb..f602f7a7970c 100644 --- a/sys-fs/dmraid/dmraid-1.0.0_rc16-r7.ebuild +++ b/sys-fs/dmraid/dmraid-1.0.0_rc16-r7.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}/${MY_PV}/${PN}" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86" IUSE="intel-led led mini static" RDEPEND=">=sys-fs/lvm2-2.02.45[lvm(+)]" diff --git a/sys-fs/fatsort/Manifest b/sys-fs/fatsort/Manifest index 775765532f2c..dafa0ada036f 100644 --- a/sys-fs/fatsort/Manifest +++ b/sys-fs/fatsort/Manifest @@ -1 +1,2 @@ DIST fatsort-1.6.4.625.tar.xz 123964 BLAKE2B 4d958886af48e9f6d6a39b128b5ff96b809e67667026483a5abfb3db6f16d8a5ebb257433f2a7fbba6c7e4d81614477cc4cec437bcfba868a2c2fb6b13b15c42 SHA512 1d67c3cb515295d0a47054803e5b2a625875e71f41b2fad17f9d495b6aa4a291776696692545800bb4d5b826e9d622ea34077c81f7f08f41b8dfd70491e439ef +DIST fatsort-1.6.5.640.tar.xz 131792 BLAKE2B 6e89c2240241642c828e462d44832e533351f5d6dcde78617b55fe61e24d30c92ebe567eaa4c2293e0db1671e60955cd2d48c83ade9acb6988371bbb05cd0953 SHA512 e4b0e6f007686ed873df8415e09787203cf508a27b94ac033c38b47bf9938f5d8fb130d98cc6588a376ea0004a8f8add55dc38e2fb9b133e6984b24bce3160ca diff --git a/sys-fs/fatsort/fatsort-1.6.5.640.ebuild b/sys-fs/fatsort/fatsort-1.6.5.640.ebuild new file mode 100644 index 000000000000..d318bb6ffdff --- /dev/null +++ b/sys-fs/fatsort/fatsort-1.6.5.640.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Sorts files on FAT16/32 partitions, ideal for basic audio players" +HOMEPAGE="http://fatsort.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_prepare() { + default + + sed -i -e 's|/usr/local|/usr|g' \ + $(find ./ -name Makefile || die) || die +} + +src_compile() { + emake \ + CC="$(tc-getCC)" LD="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ + man +} + +src_test() { + # Tests require root permissions and mounting filesystems which does + # not work inside the ebuild environment + true +} diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz index b44d596e667d..289664a4aec8 100644 Binary files a/sys-kernel/Manifest.gz and b/sys-kernel/Manifest.gz differ diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest index 151a069145c1..388e42c7e23a 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -1,3 +1,4 @@ DIST linux-6.2.tar.xz 136430892 BLAKE2B 05b63254734ea685db437cb1c00a6da63eee74d7e99f4ed2d074aaa01ac4487813ab297d337a6855cdbcbb33346b631c4256ee3b06191adfb1be3615a56bdd6d SHA512 a01bee0b968b95183934fe3504516be7ef5811944a061f5aed05ecebaa27b5eb64e33232fd0a8dd622b3c8743bfe462ef7e464d381734d111a0ad6a6d9f66ddd DIST patch-6.3-rc1.patch 75751420 BLAKE2B 6e3cddb5397bea144a14b2b1efb1816841d81fa44030066a0196d97493121edfa451310dcb023d2feea45f17c43a8e3d1ecac63cf2a1b8c759c42bec5529d528 SHA512 f5f3240508ba1a0b5fef3a88ba781b7b76502eb242dbc670217f4c599d8394781d8fd8f05a24a831b25c18951e2a3278d1a89e99f2ef818d865c588371527e01 DIST patch-6.3-rc2.patch 77506749 BLAKE2B 827dfc8da94ee33d4c0ff93f9fc1595d87ef94e0fd4bf50c4d493f9e4762e7b5678385b5af07198e8b018ffa9dc64474899e818ba359b18ed6cf61aeaba48c86 SHA512 a1d4fa8346f71159bc767ba85ab6970d20fb5ca7e31a635b6a793c28a504f276c95dd7f5bb4f76eb20c781c7e25ac0c9ed3e2c6f449e3ea8da89b9868fc826ee +DIST patch-6.3-rc3.patch 77958099 BLAKE2B 5e459202c7e77ec1cb977cd6e7d49b014e9ca0fdaef9edf69fe425e2326fd89efae0a278570834691b523a5c3d69276da5b391c6dea2f87fb17f3dd1b55190e9 SHA512 9ff7f62ba90d2e37f50398538ee25f03e520763f0a7bd41d5bc2187b7bcc9512aa52599786246660ab3daf465888c6e17ba0588c907c01810a4572e9afbad246 diff --git a/sys-kernel/git-sources/git-sources-6.3_rc3.ebuild b/sys-kernel/git-sources/git-sources-6.3_rc3.ebuild new file mode 100644 index 000000000000..ae9a3401cdd2 --- /dev/null +++ b/sys-kernel/git-sources/git-sources-6.3_rc3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +UNIPATCH_STRICTORDER="yes" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_NOUSEPR="yes" +K_SECURITY_UNSUPPORTED="1" +K_BASE_VER="6.2" +K_EXP_GENPATCHES_NOUSE="1" +K_FROM_GIT="yes" +K_NODRYRUN="yes" +ETYPE="sources" +CKV="${PVR/-r/-git}" + +# only use this if it's not an _rc/_pre release +[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}" +inherit kernel-2 +detect_version + +DESCRIPTION="The very latest -git version of the Linux kernel" +HOMEPAGE="https://www.kernel.org" +SRC_URI="${KERNEL_URI}" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="" + +K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and +experimental nature. If you have any issues, try a matching vanilla-sources +ebuild -- if the problem is not there, please contact the upstream kernel +developers at https://bugzilla.kernel.org and on the linux-kernel mailing list to +report the problem so it can be fixed in time for the next kernel release." + +RDEPEND="" +DEPEND="${RDEPEND} + >=sys-devel/patch-2.7.6-r4" + +pkg_postinst() { + postinst_sources +} diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest index 491221457fa5..b6afdf0f59b5 100644 --- a/sys-kernel/rt-sources/Manifest +++ b/sys-kernel/rt-sources/Manifest @@ -14,14 +14,14 @@ DIST linux-5.15.tar.xz 121913744 BLAKE2B 3921274b23f7938abdf3ed9334534b4581e13d7 DIST linux-5.4.tar.xz 109441440 BLAKE2B 193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13 SHA512 9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f DIST linux-6.0.tar.xz 133886176 BLAKE2B c09a9c877ac0fac83dc31d2d04d96f0a3331d4ed78e3ad4edfd4dc077e1c11d0c49f419fdac4008b5c93d1b09c2b724e12ef0b38371ad0962908abf85dfa95fa SHA512 bac41a7aeb6e809616cee2f13dcd1c45e829dfd1ccf60aee1dc4c46b1e28532f4485c7d819a32940de84fdfbf89db80a4e919bce8a74b2948c5a01551771b714 DIST linux-6.1.tar.xz 134728520 BLAKE2B ae60257860b2bd1bd708d183f0443afc60ebbd2b3d535c45e44c2e541bd0928530a3b62de6385dd4e4726ebbedcc0a871d4f3ffb4105b9f1f6d8ed7467f5688e SHA512 6ed2a73c2699d0810e54753715635736fc370288ad5ce95c594f2379959b0e418665cd71bc512a0273fe226fe90074d8b10d14c209080a6466498417a4fdda68 -DIST patch-4.14.305-rt143.patch.xz 243100 BLAKE2B 5c2018d24874ae6ba5868867d9ce44a3c4e3b50a2c4c265e311cd66b7934eb55ef738d66e8d464bb99f514f2e6b2cc6120daa91eb8206533a641ae10bd666840 SHA512 d2e68ff37977c3422d3b81430ad1e601ad8f0d544fe2e13a639f94636f20dbda9c44749cde0f12c6304d3d9da84d3a76c467ded8e06583005daf094ab4d24454 -DIST patch-4.14.305.xz 5022012 BLAKE2B c56cbcbad13922081496cea5ba7613352e195256eb247be570a57125c263506e73eaf34b6c0c85c3d6a8cae58f4ac5bcd3383601f0ac76c1659924d861b77507 SHA512 728f210c9fe167241cd466dfb289068b39b329659d16ffe9386a11e4cc2bfc0ba55f26e65e078adcf2a995a2a320476c0a9f3a0f838bb8daf48a1fc04f9a312e +DIST patch-4.14.310-rt145.patch.xz 242940 BLAKE2B 08af143d5701cb1970adb70f285e6691d41f4d3506083bbf41590764f590b4f899288ced0e0b0f057e4cc29c18f46aba0a392308c36e6853d6500ebf3e91fbb0 SHA512 fc7f0d1ca8d3318f8e452c5bc74ca4fa61a1131dff59170ec5b661cd5be1d9736bcbdab5888696b755afe6f190905565576dc318b955d3218446fd563c800d34 +DIST patch-4.14.310.xz 5059132 BLAKE2B 984da5e3203fb2b3a9b33d41bff4725d8c17fc515daf64371a2aeb02c95924c7d61eb9eca5d0173abfb956aaaae494728bc241c6e97ca5faa55d5be8b82cfb20 SHA512 9f12147eabbc555f3b956c2befbefa5c06f7aba0d5deb3068b142b9b7909c7938e565258ae6f8b0cb2ff2731d8aa68d51b6e2dc568b2e1ba1c0a42459ee2b120 DIST patch-4.19.277-rt122.patch.xz 168180 BLAKE2B bed6969bf730296c5d5f46e130778ae527cc2bc32284535301233933971c2c9e31a2035dd5c314e0b41832a7b90040b100b773d173dfccca30ac3a4b6640a33f SHA512 913708a103e09b1861e2538992ea69400ebc2291e3d125b5f2bae4461b4610c7565d7a10a533d5354591f51172b0da834ae6532ecf36889698596e551876853b DIST patch-4.19.277.xz 5169348 BLAKE2B 71d57bfe34376cdee263ad9dc974e302908c77f5337948c677619dbb230bc2612e81db394969c3af18593f0521805614ae01e1ebc21076a65829c855b4427392 SHA512 1db760d21f5485f5515814b55b1a0ad05a6563701008e19966e6efabb0cafa8e506b77fc17ef58f3d8d5adba973b197da8fe71e2360c350d99f546f30cb3e729 DIST patch-4.9.327-rt197.patch.xz 169900 BLAKE2B 432b68f260db4970c3bd844a4d1a8709ceaaee86df6a77bd4be6260f53b1491f900cb63fd59efbcd55161e6c5629274fd555a05d97baef15bd68103194b2c6c1 SHA512 acfbe50962fb2fe6b215be10f076427161950098f33278bf5a51c3a28dd70203923e92b2a43b635fb2fe4fb791f4fd532eb4db378b094baa8abaa9fbfeaed822 DIST patch-4.9.327.xz 4449004 BLAKE2B b48aa23af600cafe5117854b76105c9c65adf9f2f026927367781cd360c61c551b174d2ea73eb02543e626408b27bf3bb8cfed62d9c36e9bac6d22c7e1099a48 SHA512 d6a5421cfbd70ff20664cbf05f9c955f03b55c3e22306f7adfd87ed760794817fd7d2211e5d92b169df64d8578717a9250c7ea6ca312bf10287a7283bf66d0e6 -DIST patch-5.10.168-rt83.patch.xz 170464 BLAKE2B 75edc2e070f60ae7e7d77edb67a531495b63df29e94c29fd1c7c8c3fa32a79c272ec85a84d0ad586d26dbe66ccee2314ef44d300cf0d0ac098b1f332f7bad8dd SHA512 46f1d5c6bfb2b13a622c9980e7dd84771502e97d9ce564ef0144650fed9c55f7562ce9a73d29edc7767add40a24a04257894b00499e84dfb6102c01de14d35df -DIST patch-5.10.168.xz 4330740 BLAKE2B 33c5340b3f3655505f92b22569f6800a2ced7de9415656a237bbba5c15be678b6933d4894e9a85e8e9f5c7c146d8c76e201f3dd9343a4ab09dae3a89df4ea020 SHA512 607842d9949415e119ffe521a6385d1ed2359a50523dca38ce6eb4337b084885353c8345a520cb9e98cb57454417d981d6314e6f471293e53387ece30d7b7fb8 +DIST patch-5.10.175-rt84.patch.xz 170500 BLAKE2B 4b65a72fcc21932c61f05e228cfb55180d726935fb5ed6327667455297a796bfa6f41b60848c54d295e72e4c1a9d92d3f27834a104e90391ab57eb24ee3209ec SHA512 a261e99e21d7ceb1d17d094af787077b00b3a0383c9d9ca6fa9c6710c40859ae58d80a85dd5900df1071e1056efc8a71e0c304ae804f1bd3fb424cd17019424d +DIST patch-5.10.175.xz 4472448 BLAKE2B 4b1527fd2776181cbedb4fb5361ff5ccd3f00db9d0ab455712b8cdc94950d7f779abe5dd0f1cf8b90edd558e31cfd89692b8b6200f4bc0569c5ecd61f095bdb5 SHA512 895fac50f528b8bbbb3211e44f1df4cc00d12cae9a12f3df170c97019a75b13140918cd56b7a1ada62add7359fe7ae1d0ebc30ca0d5147597cf484b0028b487e DIST patch-5.15.96-rt61.patch.xz 77116 BLAKE2B e7ea7f89056ab1721f014c62750736915d3f06ba2952c387b656d35a050c60d28d74d26d5f115c6254fca6622cee25d9b3f2f88276867fb442c376c9a9aa8941 SHA512 e7de227787e35a0647c0865b2cc1c2969f3d01dbf96f7041e285ab1ca3332f1abd8bd58fba643b237b8c6576ea8e87a88971758d6b7a0d60aa68ac5968d03f45 DIST patch-5.15.96.xz 3594200 BLAKE2B 390a5610f82f4f72986bc40efa4416c355cef1b63a1601bf7eb1797d3685052b0e23c5d6989338e0e7df759c29f1677e0655be58bf14dd641ecd45e8bb40fa24 SHA512 6330877a88d6d8e446cfcf8deb212a2221f3dec46c36dc5541c88fecea4714fef0822c64942a4669efce52530f2824d4d2dbd4bbd089f37654a864b3565202ca DIST patch-5.4.230-rt80.patch.xz 183116 BLAKE2B 4a28dfb2ac1cfa81a1d97a0b86e4ae7e47ed6e37b17926a8fccf87e9f3b43ad716b270cfbddd8db48e82ae5fa76b77f46f3506b63c004035b45c5b8935977d24 SHA512 124e0c99afb439d6c97596ea47a6ded73bf7bbc688bdeee9e7177cfc4f6c41985f2cbf9d0100e97b3db20a21735e76a3c09d29251fbdf54f8862498c63ae5e9d diff --git a/sys-kernel/rt-sources/rt-sources-4.14.305_p143.ebuild b/sys-kernel/rt-sources/rt-sources-4.14.310_p145.ebuild similarity index 100% rename from sys-kernel/rt-sources/rt-sources-4.14.305_p143.ebuild rename to sys-kernel/rt-sources/rt-sources-4.14.310_p145.ebuild diff --git a/sys-kernel/rt-sources/rt-sources-5.10.168_p83.ebuild b/sys-kernel/rt-sources/rt-sources-5.10.175_p84.ebuild similarity index 100% rename from sys-kernel/rt-sources/rt-sources-5.10.168_p83.ebuild rename to sys-kernel/rt-sources/rt-sources-5.10.175_p84.ebuild diff --git a/sys-libs/Manifest.gz b/sys-libs/Manifest.gz index b4b8a9e11e85..7808c7f811c7 100644 Binary files a/sys-libs/Manifest.gz and b/sys-libs/Manifest.gz differ diff --git a/sys-libs/compiler-rt-sanitizers/Manifest b/sys-libs/compiler-rt-sanitizers/Manifest index 14953c635899..411822a684e2 100644 --- a/sys-libs/compiler-rt-sanitizers/Manifest +++ b/sys-libs/compiler-rt-sanitizers/Manifest @@ -6,9 +6,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-16.0.0_rc3.ebuild b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-16.0.0_rc3.ebuild deleted file mode 100644 index 682d15574b6a..000000000000 --- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-16.0.0_rc3.ebuild +++ /dev/null @@ -1,216 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit check-reqs cmake flag-o-matic llvm llvm.org python-any-r1 - -DESCRIPTION="Compiler runtime libraries for clang (sanitizers & xray)" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="${LLVM_MAJOR}" -KEYWORDS="~loong" -IUSE="+abi_x86_32 abi_x86_64 +clang debug test" -# base targets -IUSE+=" +libfuzzer +memprof +orc +profile +xray" -# sanitizer targets, keep in sync with config-ix.cmake -# NB: ubsan, scudo deliberately match two entries -SANITIZER_FLAGS=( - asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo - shadowcallstack gwp-asan -) -IUSE+=" ${SANITIZER_FLAGS[@]/#/+}" -REQUIRED_USE=" - || ( ${SANITIZER_FLAGS[*]} libfuzzer orc profile xray ) - test? ( - cfi? ( ubsan ) - gwp-asan? ( scudo ) - ) -" -RESTRICT=" - !clang? ( test ) - !test? ( test ) -" - -DEPEND=" - sys-devel/llvm:${LLVM_MAJOR} - virtual/libcrypt[abi_x86_32(-)?,abi_x86_64(-)?] -" -BDEPEND=" - >=dev-util/cmake-3.16 - clang? ( sys-devel/clang ) - elibc_glibc? ( net-libs/libtirpc ) - test? ( - $(python_gen_any_dep ">=dev-python/lit-15[\${PYTHON_USEDEP}]") - =sys-devel/clang-${LLVM_VERSION}*:${LLVM_MAJOR} - sys-libs/compiler-rt:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) -" - -LLVM_COMPONENTS=( compiler-rt cmake llvm/cmake ) -LLVM_TEST_COMPONENTS=( llvm/lib/Testing/Support third-party ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version ">=dev-python/lit-15[${PYTHON_USEDEP}]" -} - -check_space() { - if use test; then - local CHECKREQS_DISK_BUILD=11G - check-reqs_pkg_pretend - fi -} - -pkg_pretend() { - check_space -} - -pkg_setup() { - check_space - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-any-r1_pkg_setup -} - -src_prepare() { - sed -i -e 's:-Werror::' lib/tsan/go/buildgo.sh || die - - local flag - for flag in "${SANITIZER_FLAGS[@]}"; do - if ! use "${flag}"; then - local cmake_flag=${flag/-/_} - sed -i -e "/COMPILER_RT_HAS_${cmake_flag^^}/s:TRUE:FALSE:" \ - cmake/config-ix.cmake || die - fi - done - - # TODO: fix these tests to be skipped upstream - if use asan && ! use profile; then - rm test/asan/TestCases/asan_and_llvm_coverage_test.cpp || die - fi - if use ubsan && ! use cfi; then - > test/cfi/CMakeLists.txt || die - fi - - llvm.org_src_prepare -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - # pre-set since we need to pass it to cmake - BUILD_DIR=${WORKDIR}/compiler-rt_build - - if use clang; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - strip-unsupported-flags - fi - - local flag want_sanitizer=OFF - for flag in "${SANITIZER_FLAGS[@]}"; do - if use "${flag}"; then - want_sanitizer=ON - break - fi - done - - local mycmakeargs=( - -DCOMPILER_RT_INSTALL_PATH="${EPREFIX}/usr/lib/clang/${LLVM_MAJOR}" - # use a build dir structure consistent with install - # this makes it possible to easily deploy test-friendly clang - -DCOMPILER_RT_OUTPUT_DIR="${BUILD_DIR}/lib/clang/${LLVM_MAJOR}" - - -DCOMPILER_RT_INCLUDE_TESTS=$(usex test) - # builtins & crt installed by sys-libs/compiler-rt - -DCOMPILER_RT_BUILD_BUILTINS=OFF - -DCOMPILER_RT_BUILD_CRT=OFF - -DCOMPILER_RT_BUILD_LIBFUZZER=$(usex libfuzzer) - -DCOMPILER_RT_BUILD_MEMPROF=$(usex memprof) - -DCOMPILER_RT_BUILD_ORC=$(usex orc) - -DCOMPILER_RT_BUILD_PROFILE=$(usex profile) - -DCOMPILER_RT_BUILD_SANITIZERS="${want_sanitizer}" - -DCOMPILER_RT_BUILD_XRAY=$(usex xray) - - -DPython3_EXECUTABLE="${PYTHON}" - ) - - if use amd64; then - mycmakeargs+=( - -DCAN_TARGET_i386=$(usex abi_x86_32) - -DCAN_TARGET_x86_64=$(usex abi_x86_64) - ) - fi - - if use test; then - mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - - # they are created during src_test() - -DCOMPILER_RT_TEST_COMPILER="${BUILD_DIR}/lib/llvm/${LLVM_MAJOR}/bin/clang" - -DCOMPILER_RT_TEST_CXX_COMPILER="${BUILD_DIR}/lib/llvm/${LLVM_MAJOR}/bin/clang++" - ) - - # same flags are passed for build & tests, so we need to strip - # them down to a subset supported by clang - CC=${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang \ - CXX=${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang++ \ - strip-unsupported-flags - fi - - if use prefix && [[ "${CHOST}" == *-darwin* ]] ; then - mycmakeargs+=( - # setting -isysroot is disabled with compiler-rt-prefix-paths.patch - # this allows adding arm64 support using SDK in EPREFIX - -DDARWIN_macosx_CACHED_SYSROOT="${EPREFIX}/MacOSX.sdk" - # Set version based on the SDK in EPREFIX - # This disables i386 for SDK >= 10.15 - # Will error if has_use tsan and SDK < 10.12 - -DDARWIN_macosx_OVERRIDE_SDK_VERSION="$(realpath ${EPREFIX}/MacOSX.sdk | sed -e 's/.*MacOSX\(.*\)\.sdk/\1/')" - # Use our libtool instead of looking it up with xcrun - -DCMAKE_LIBTOOL="${EPREFIX}/usr/bin/${CHOST}-libtool" - ) - fi - - cmake_src_configure - - if use test; then - local sys_dir=( "${EPREFIX}"/usr/lib/clang/${LLVM_MAJOR}/lib/* ) - [[ -e ${sys_dir} ]] || die "Unable to find ${sys_dir}" - [[ ${#sys_dir[@]} -eq 1 ]] || die "Non-deterministic compiler-rt install: ${sys_dir[*]}" - - # copy clang over since resource_dir is located relatively to binary - # therefore, we can put our new libraries in it - mkdir -p "${BUILD_DIR}"/lib/{llvm/${LLVM_MAJOR}/{bin,$(get_libdir)},clang/${LLVM_MAJOR}/include} || die - cp "${EPREFIX}"/usr/lib/llvm/${LLVM_MAJOR}/bin/clang{,++} \ - "${BUILD_DIR}"/lib/llvm/${LLVM_MAJOR}/bin/ || die - cp "${EPREFIX}"/usr/lib/clang/${LLVM_MAJOR}/include/*.h \ - "${BUILD_DIR}"/lib/clang/${LLVM_MAJOR}/include/ || die - cp "${sys_dir}"/*builtins*.a \ - "${BUILD_DIR}/lib/clang/${LLVM_MAJOR}/lib/${sys_dir##*/}/" || die - # we also need LLVMgold.so for gold-based tests - if [[ -f ${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/LLVMgold.so ]]; then - ln -s "${EPREFIX}"/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/LLVMgold.so \ - "${BUILD_DIR}"/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/ || die - fi - fi -} - -src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - # disable sandbox to have it stop clobbering LD_PRELOAD - local -x SANDBOX_ON=0 - # wipe LD_PRELOAD to make ASAN happy - local -x LD_PRELOAD= - - cmake_build check-all -} diff --git a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-16.0.0_rc4.ebuild b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-16.0.0_rc4.ebuild deleted file mode 100644 index 682d15574b6a..000000000000 --- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-16.0.0_rc4.ebuild +++ /dev/null @@ -1,216 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit check-reqs cmake flag-o-matic llvm llvm.org python-any-r1 - -DESCRIPTION="Compiler runtime libraries for clang (sanitizers & xray)" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="${LLVM_MAJOR}" -KEYWORDS="~loong" -IUSE="+abi_x86_32 abi_x86_64 +clang debug test" -# base targets -IUSE+=" +libfuzzer +memprof +orc +profile +xray" -# sanitizer targets, keep in sync with config-ix.cmake -# NB: ubsan, scudo deliberately match two entries -SANITIZER_FLAGS=( - asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo - shadowcallstack gwp-asan -) -IUSE+=" ${SANITIZER_FLAGS[@]/#/+}" -REQUIRED_USE=" - || ( ${SANITIZER_FLAGS[*]} libfuzzer orc profile xray ) - test? ( - cfi? ( ubsan ) - gwp-asan? ( scudo ) - ) -" -RESTRICT=" - !clang? ( test ) - !test? ( test ) -" - -DEPEND=" - sys-devel/llvm:${LLVM_MAJOR} - virtual/libcrypt[abi_x86_32(-)?,abi_x86_64(-)?] -" -BDEPEND=" - >=dev-util/cmake-3.16 - clang? ( sys-devel/clang ) - elibc_glibc? ( net-libs/libtirpc ) - test? ( - $(python_gen_any_dep ">=dev-python/lit-15[\${PYTHON_USEDEP}]") - =sys-devel/clang-${LLVM_VERSION}*:${LLVM_MAJOR} - sys-libs/compiler-rt:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) -" - -LLVM_COMPONENTS=( compiler-rt cmake llvm/cmake ) -LLVM_TEST_COMPONENTS=( llvm/lib/Testing/Support third-party ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version ">=dev-python/lit-15[${PYTHON_USEDEP}]" -} - -check_space() { - if use test; then - local CHECKREQS_DISK_BUILD=11G - check-reqs_pkg_pretend - fi -} - -pkg_pretend() { - check_space -} - -pkg_setup() { - check_space - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-any-r1_pkg_setup -} - -src_prepare() { - sed -i -e 's:-Werror::' lib/tsan/go/buildgo.sh || die - - local flag - for flag in "${SANITIZER_FLAGS[@]}"; do - if ! use "${flag}"; then - local cmake_flag=${flag/-/_} - sed -i -e "/COMPILER_RT_HAS_${cmake_flag^^}/s:TRUE:FALSE:" \ - cmake/config-ix.cmake || die - fi - done - - # TODO: fix these tests to be skipped upstream - if use asan && ! use profile; then - rm test/asan/TestCases/asan_and_llvm_coverage_test.cpp || die - fi - if use ubsan && ! use cfi; then - > test/cfi/CMakeLists.txt || die - fi - - llvm.org_src_prepare -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - # pre-set since we need to pass it to cmake - BUILD_DIR=${WORKDIR}/compiler-rt_build - - if use clang; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - strip-unsupported-flags - fi - - local flag want_sanitizer=OFF - for flag in "${SANITIZER_FLAGS[@]}"; do - if use "${flag}"; then - want_sanitizer=ON - break - fi - done - - local mycmakeargs=( - -DCOMPILER_RT_INSTALL_PATH="${EPREFIX}/usr/lib/clang/${LLVM_MAJOR}" - # use a build dir structure consistent with install - # this makes it possible to easily deploy test-friendly clang - -DCOMPILER_RT_OUTPUT_DIR="${BUILD_DIR}/lib/clang/${LLVM_MAJOR}" - - -DCOMPILER_RT_INCLUDE_TESTS=$(usex test) - # builtins & crt installed by sys-libs/compiler-rt - -DCOMPILER_RT_BUILD_BUILTINS=OFF - -DCOMPILER_RT_BUILD_CRT=OFF - -DCOMPILER_RT_BUILD_LIBFUZZER=$(usex libfuzzer) - -DCOMPILER_RT_BUILD_MEMPROF=$(usex memprof) - -DCOMPILER_RT_BUILD_ORC=$(usex orc) - -DCOMPILER_RT_BUILD_PROFILE=$(usex profile) - -DCOMPILER_RT_BUILD_SANITIZERS="${want_sanitizer}" - -DCOMPILER_RT_BUILD_XRAY=$(usex xray) - - -DPython3_EXECUTABLE="${PYTHON}" - ) - - if use amd64; then - mycmakeargs+=( - -DCAN_TARGET_i386=$(usex abi_x86_32) - -DCAN_TARGET_x86_64=$(usex abi_x86_64) - ) - fi - - if use test; then - mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - - # they are created during src_test() - -DCOMPILER_RT_TEST_COMPILER="${BUILD_DIR}/lib/llvm/${LLVM_MAJOR}/bin/clang" - -DCOMPILER_RT_TEST_CXX_COMPILER="${BUILD_DIR}/lib/llvm/${LLVM_MAJOR}/bin/clang++" - ) - - # same flags are passed for build & tests, so we need to strip - # them down to a subset supported by clang - CC=${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang \ - CXX=${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang++ \ - strip-unsupported-flags - fi - - if use prefix && [[ "${CHOST}" == *-darwin* ]] ; then - mycmakeargs+=( - # setting -isysroot is disabled with compiler-rt-prefix-paths.patch - # this allows adding arm64 support using SDK in EPREFIX - -DDARWIN_macosx_CACHED_SYSROOT="${EPREFIX}/MacOSX.sdk" - # Set version based on the SDK in EPREFIX - # This disables i386 for SDK >= 10.15 - # Will error if has_use tsan and SDK < 10.12 - -DDARWIN_macosx_OVERRIDE_SDK_VERSION="$(realpath ${EPREFIX}/MacOSX.sdk | sed -e 's/.*MacOSX\(.*\)\.sdk/\1/')" - # Use our libtool instead of looking it up with xcrun - -DCMAKE_LIBTOOL="${EPREFIX}/usr/bin/${CHOST}-libtool" - ) - fi - - cmake_src_configure - - if use test; then - local sys_dir=( "${EPREFIX}"/usr/lib/clang/${LLVM_MAJOR}/lib/* ) - [[ -e ${sys_dir} ]] || die "Unable to find ${sys_dir}" - [[ ${#sys_dir[@]} -eq 1 ]] || die "Non-deterministic compiler-rt install: ${sys_dir[*]}" - - # copy clang over since resource_dir is located relatively to binary - # therefore, we can put our new libraries in it - mkdir -p "${BUILD_DIR}"/lib/{llvm/${LLVM_MAJOR}/{bin,$(get_libdir)},clang/${LLVM_MAJOR}/include} || die - cp "${EPREFIX}"/usr/lib/llvm/${LLVM_MAJOR}/bin/clang{,++} \ - "${BUILD_DIR}"/lib/llvm/${LLVM_MAJOR}/bin/ || die - cp "${EPREFIX}"/usr/lib/clang/${LLVM_MAJOR}/include/*.h \ - "${BUILD_DIR}"/lib/clang/${LLVM_MAJOR}/include/ || die - cp "${sys_dir}"/*builtins*.a \ - "${BUILD_DIR}/lib/clang/${LLVM_MAJOR}/lib/${sys_dir##*/}/" || die - # we also need LLVMgold.so for gold-based tests - if [[ -f ${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/LLVMgold.so ]]; then - ln -s "${EPREFIX}"/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/LLVMgold.so \ - "${BUILD_DIR}"/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/ || die - fi - fi -} - -src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - # disable sandbox to have it stop clobbering LD_PRELOAD - local -x SANDBOX_ON=0 - # wipe LD_PRELOAD to make ASAN happy - local -x LD_PRELOAD= - - cmake_build check-all -} diff --git a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-17.0.0_pre20230304.ebuild b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-17.0.0_pre20230304.ebuild deleted file mode 100644 index cc599404c49c..000000000000 --- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,216 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit check-reqs cmake flag-o-matic llvm llvm.org python-any-r1 - -DESCRIPTION="Compiler runtime libraries for clang (sanitizers & xray)" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="${LLVM_MAJOR}" -KEYWORDS="" -IUSE="+abi_x86_32 abi_x86_64 +clang debug test" -# base targets -IUSE+=" +libfuzzer +memprof +orc +profile +xray" -# sanitizer targets, keep in sync with config-ix.cmake -# NB: ubsan, scudo deliberately match two entries -SANITIZER_FLAGS=( - asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo - shadowcallstack gwp-asan -) -IUSE+=" ${SANITIZER_FLAGS[@]/#/+}" -REQUIRED_USE=" - || ( ${SANITIZER_FLAGS[*]} libfuzzer orc profile xray ) - test? ( - cfi? ( ubsan ) - gwp-asan? ( scudo ) - ) -" -RESTRICT=" - !clang? ( test ) - !test? ( test ) -" - -DEPEND=" - sys-devel/llvm:${LLVM_MAJOR} - virtual/libcrypt[abi_x86_32(-)?,abi_x86_64(-)?] -" -BDEPEND=" - >=dev-util/cmake-3.16 - clang? ( sys-devel/clang ) - elibc_glibc? ( net-libs/libtirpc ) - test? ( - $(python_gen_any_dep ">=dev-python/lit-15[\${PYTHON_USEDEP}]") - =sys-devel/clang-${LLVM_VERSION}*:${LLVM_MAJOR} - sys-libs/compiler-rt:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) -" - -LLVM_COMPONENTS=( compiler-rt cmake llvm/cmake ) -LLVM_TEST_COMPONENTS=( llvm/lib/Testing/Support third-party ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version ">=dev-python/lit-15[${PYTHON_USEDEP}]" -} - -check_space() { - if use test; then - local CHECKREQS_DISK_BUILD=11G - check-reqs_pkg_pretend - fi -} - -pkg_pretend() { - check_space -} - -pkg_setup() { - check_space - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-any-r1_pkg_setup -} - -src_prepare() { - sed -i -e 's:-Werror::' lib/tsan/go/buildgo.sh || die - - local flag - for flag in "${SANITIZER_FLAGS[@]}"; do - if ! use "${flag}"; then - local cmake_flag=${flag/-/_} - sed -i -e "/COMPILER_RT_HAS_${cmake_flag^^}/s:TRUE:FALSE:" \ - cmake/config-ix.cmake || die - fi - done - - # TODO: fix these tests to be skipped upstream - if use asan && ! use profile; then - rm test/asan/TestCases/asan_and_llvm_coverage_test.cpp || die - fi - if use ubsan && ! use cfi; then - > test/cfi/CMakeLists.txt || die - fi - - llvm.org_src_prepare -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - # pre-set since we need to pass it to cmake - BUILD_DIR=${WORKDIR}/compiler-rt_build - - if use clang; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - strip-unsupported-flags - fi - - local flag want_sanitizer=OFF - for flag in "${SANITIZER_FLAGS[@]}"; do - if use "${flag}"; then - want_sanitizer=ON - break - fi - done - - local mycmakeargs=( - -DCOMPILER_RT_INSTALL_PATH="${EPREFIX}/usr/lib/clang/${LLVM_MAJOR}" - # use a build dir structure consistent with install - # this makes it possible to easily deploy test-friendly clang - -DCOMPILER_RT_OUTPUT_DIR="${BUILD_DIR}/lib/clang/${LLVM_MAJOR}" - - -DCOMPILER_RT_INCLUDE_TESTS=$(usex test) - # builtins & crt installed by sys-libs/compiler-rt - -DCOMPILER_RT_BUILD_BUILTINS=OFF - -DCOMPILER_RT_BUILD_CRT=OFF - -DCOMPILER_RT_BUILD_LIBFUZZER=$(usex libfuzzer) - -DCOMPILER_RT_BUILD_MEMPROF=$(usex memprof) - -DCOMPILER_RT_BUILD_ORC=$(usex orc) - -DCOMPILER_RT_BUILD_PROFILE=$(usex profile) - -DCOMPILER_RT_BUILD_SANITIZERS="${want_sanitizer}" - -DCOMPILER_RT_BUILD_XRAY=$(usex xray) - - -DPython3_EXECUTABLE="${PYTHON}" - ) - - if use amd64; then - mycmakeargs+=( - -DCAN_TARGET_i386=$(usex abi_x86_32) - -DCAN_TARGET_x86_64=$(usex abi_x86_64) - ) - fi - - if use test; then - mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - - # they are created during src_test() - -DCOMPILER_RT_TEST_COMPILER="${BUILD_DIR}/lib/llvm/${LLVM_MAJOR}/bin/clang" - -DCOMPILER_RT_TEST_CXX_COMPILER="${BUILD_DIR}/lib/llvm/${LLVM_MAJOR}/bin/clang++" - ) - - # same flags are passed for build & tests, so we need to strip - # them down to a subset supported by clang - CC=${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang \ - CXX=${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang++ \ - strip-unsupported-flags - fi - - if use prefix && [[ "${CHOST}" == *-darwin* ]] ; then - mycmakeargs+=( - # setting -isysroot is disabled with compiler-rt-prefix-paths.patch - # this allows adding arm64 support using SDK in EPREFIX - -DDARWIN_macosx_CACHED_SYSROOT="${EPREFIX}/MacOSX.sdk" - # Set version based on the SDK in EPREFIX - # This disables i386 for SDK >= 10.15 - # Will error if has_use tsan and SDK < 10.12 - -DDARWIN_macosx_OVERRIDE_SDK_VERSION="$(realpath ${EPREFIX}/MacOSX.sdk | sed -e 's/.*MacOSX\(.*\)\.sdk/\1/')" - # Use our libtool instead of looking it up with xcrun - -DCMAKE_LIBTOOL="${EPREFIX}/usr/bin/${CHOST}-libtool" - ) - fi - - cmake_src_configure - - if use test; then - local sys_dir=( "${EPREFIX}"/usr/lib/clang/${LLVM_MAJOR}/lib/* ) - [[ -e ${sys_dir} ]] || die "Unable to find ${sys_dir}" - [[ ${#sys_dir[@]} -eq 1 ]] || die "Non-deterministic compiler-rt install: ${sys_dir[*]}" - - # copy clang over since resource_dir is located relatively to binary - # therefore, we can put our new libraries in it - mkdir -p "${BUILD_DIR}"/lib/{llvm/${LLVM_MAJOR}/{bin,$(get_libdir)},clang/${LLVM_MAJOR}/include} || die - cp "${EPREFIX}"/usr/lib/llvm/${LLVM_MAJOR}/bin/clang{,++} \ - "${BUILD_DIR}"/lib/llvm/${LLVM_MAJOR}/bin/ || die - cp "${EPREFIX}"/usr/lib/clang/${LLVM_MAJOR}/include/*.h \ - "${BUILD_DIR}"/lib/clang/${LLVM_MAJOR}/include/ || die - cp "${sys_dir}"/*builtins*.a \ - "${BUILD_DIR}/lib/clang/${LLVM_MAJOR}/lib/${sys_dir##*/}/" || die - # we also need LLVMgold.so for gold-based tests - if [[ -f ${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/LLVMgold.so ]]; then - ln -s "${EPREFIX}"/usr/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/LLVMgold.so \ - "${BUILD_DIR}"/lib/llvm/${LLVM_MAJOR}/$(get_libdir)/ || die - fi - fi -} - -src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - # disable sandbox to have it stop clobbering LD_PRELOAD - local -x SANDBOX_ON=0 - # wipe LD_PRELOAD to make ASAN happy - local -x LD_PRELOAD= - - cmake_build check-all -} diff --git a/sys-libs/compiler-rt/Manifest b/sys-libs/compiler-rt/Manifest index 88633d946d17..92bbff8244fd 100644 --- a/sys-libs/compiler-rt/Manifest +++ b/sys-libs/compiler-rt/Manifest @@ -6,9 +6,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/sys-libs/compiler-rt/compiler-rt-14.0.6-r1.ebuild b/sys-libs/compiler-rt/compiler-rt-14.0.6-r1.ebuild index 03211f749fd4..c3a8d53ce19f 100644 --- a/sys-libs/compiler-rt/compiler-rt-14.0.6-r1.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-14.0.6-r1.ebuild @@ -51,7 +51,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/compiler-rt/compiler-rt-15.0.7.ebuild b/sys-libs/compiler-rt/compiler-rt-15.0.7.ebuild index 284371357cd2..32f758f51aa5 100644 --- a/sys-libs/compiler-rt/compiler-rt-15.0.7.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-15.0.7.ebuild @@ -50,7 +50,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/compiler-rt/compiler-rt-16.0.0.9999.ebuild b/sys-libs/compiler-rt/compiler-rt-16.0.0.9999.ebuild index 2ed5fc860074..5abe2bd9bf79 100644 --- a/sys-libs/compiler-rt/compiler-rt-16.0.0.9999.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-16.0.0.9999.ebuild @@ -49,7 +49,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/compiler-rt/compiler-rt-16.0.0.ebuild b/sys-libs/compiler-rt/compiler-rt-16.0.0.ebuild index 111c3be95d40..49b92c7f0e51 100644 --- a/sys-libs/compiler-rt/compiler-rt-16.0.0.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-16.0.0.ebuild @@ -49,7 +49,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/compiler-rt/compiler-rt-16.0.0_rc3.ebuild b/sys-libs/compiler-rt/compiler-rt-16.0.0_rc3.ebuild deleted file mode 100644 index 44675fe040f5..000000000000 --- a/sys-libs/compiler-rt/compiler-rt-16.0.0_rc3.ebuild +++ /dev/null @@ -1,149 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs - -DESCRIPTION="Compiler runtime library for clang (built-in part)" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="${LLVM_MAJOR}" -KEYWORDS="~loong" -IUSE="+abi_x86_32 abi_x86_64 +clang debug test" -RESTRICT="!test? ( test ) !clang? ( test )" - -DEPEND=" - sys-devel/llvm:${LLVM_MAJOR} -" -BDEPEND=" - >=dev-util/cmake-3.16 - clang? ( sys-devel/clang ) - test? ( - $(python_gen_any_dep ">=dev-python/lit-15[\${PYTHON_USEDEP}]") - =sys-devel/clang-${LLVM_VERSION}*:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) -" - -LLVM_COMPONENTS=( compiler-rt cmake llvm/cmake ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version ">=dev-python/lit-15[${PYTHON_USEDEP}]" -} - -pkg_pretend() { - if ! use clang && ! tc-is-clang; then - ewarn "Building using a compiler other than clang may result in broken atomics" - ewarn "library. Enable USE=clang unless you have a very good reason not to." - fi -} - -pkg_setup() { - # Darwin Prefix builds do not have llvm installed yet, so rely on - # bootstrap-prefix to set the appropriate path vars to LLVM instead - # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - fi - python-any-r1_pkg_setup -} - -test_compiler() { - $(tc-getCC) ${CFLAGS} ${LDFLAGS} "${@}" -o /dev/null -x c - \ - <<<'int main() { return 0; }' &>/dev/null -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - # pre-set since we need to pass it to cmake - BUILD_DIR=${WORKDIR}/${P}_build - - if use clang; then - # Only do this conditionally to allow overriding with - # e.g. CC=clang-13 in case of breakage - if ! tc-is-clang ; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - fi - - strip-unsupported-flags - fi - - if ! test_compiler; then - local nolib_flags=( -nodefaultlibs -lc ) - - if test_compiler "${nolib_flags[@]}"; then - local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}" - ewarn "${CC} seems to lack runtime, trying with ${nolib_flags[*]}" - elif test_compiler "${nolib_flags[@]}" -nostartfiles; then - # Avoiding -nostartfiles earlier on for bug #862540, - # and set available entry symbol for bug #862798. - nolib_flags+=( -nostartfiles -emain ) - - local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}" - ewarn "${CC} seems to lack runtime, trying with ${nolib_flags[*]}" - fi - fi - - local mycmakeargs=( - -DCOMPILER_RT_INSTALL_PATH="${EPREFIX}/usr/lib/clang/${LLVM_MAJOR}" - - -DCOMPILER_RT_INCLUDE_TESTS=$(usex test) - -DCOMPILER_RT_BUILD_LIBFUZZER=OFF - -DCOMPILER_RT_BUILD_MEMPROF=OFF - -DCOMPILER_RT_BUILD_ORC=OFF - -DCOMPILER_RT_BUILD_PROFILE=OFF - -DCOMPILER_RT_BUILD_SANITIZERS=OFF - -DCOMPILER_RT_BUILD_XRAY=OFF - - -DPython3_EXECUTABLE="${PYTHON}" - ) - - if use amd64; then - mycmakeargs+=( - -DCAN_TARGET_i386=$(usex abi_x86_32) - -DCAN_TARGET_x86_64=$(usex abi_x86_64) - ) - fi - - if use prefix && [[ "${CHOST}" == *-darwin* ]] ; then - mycmakeargs+=( - # setting -isysroot is disabled with compiler-rt-prefix-paths.patch - # this allows adding arm64 support using SDK in EPREFIX - -DDARWIN_macosx_CACHED_SYSROOT="${EPREFIX}/MacOSX.sdk" - # Set version based on the SDK in EPREFIX. - # This disables i386 for SDK >= 10.15 - -DDARWIN_macosx_OVERRIDE_SDK_VERSION="$(realpath ${EPREFIX}/MacOSX.sdk | sed -e 's/.*MacOSX\(.*\)\.sdk/\1/')" - # Use our libtool instead of looking it up with xcrun - -DCMAKE_LIBTOOL="${EPREFIX}/usr/bin/${CHOST}-libtool" - ) - fi - - if use test; then - mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - - -DCOMPILER_RT_TEST_COMPILER="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang" - -DCOMPILER_RT_TEST_CXX_COMPILER="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang++" - ) - fi - - cmake_src_configure -} - -src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - - cmake_build check-builtins -} diff --git a/sys-libs/compiler-rt/compiler-rt-16.0.0_rc4.ebuild b/sys-libs/compiler-rt/compiler-rt-16.0.0_rc4.ebuild deleted file mode 100644 index 44675fe040f5..000000000000 --- a/sys-libs/compiler-rt/compiler-rt-16.0.0_rc4.ebuild +++ /dev/null @@ -1,149 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs - -DESCRIPTION="Compiler runtime library for clang (built-in part)" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="${LLVM_MAJOR}" -KEYWORDS="~loong" -IUSE="+abi_x86_32 abi_x86_64 +clang debug test" -RESTRICT="!test? ( test ) !clang? ( test )" - -DEPEND=" - sys-devel/llvm:${LLVM_MAJOR} -" -BDEPEND=" - >=dev-util/cmake-3.16 - clang? ( sys-devel/clang ) - test? ( - $(python_gen_any_dep ">=dev-python/lit-15[\${PYTHON_USEDEP}]") - =sys-devel/clang-${LLVM_VERSION}*:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) -" - -LLVM_COMPONENTS=( compiler-rt cmake llvm/cmake ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version ">=dev-python/lit-15[${PYTHON_USEDEP}]" -} - -pkg_pretend() { - if ! use clang && ! tc-is-clang; then - ewarn "Building using a compiler other than clang may result in broken atomics" - ewarn "library. Enable USE=clang unless you have a very good reason not to." - fi -} - -pkg_setup() { - # Darwin Prefix builds do not have llvm installed yet, so rely on - # bootstrap-prefix to set the appropriate path vars to LLVM instead - # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - fi - python-any-r1_pkg_setup -} - -test_compiler() { - $(tc-getCC) ${CFLAGS} ${LDFLAGS} "${@}" -o /dev/null -x c - \ - <<<'int main() { return 0; }' &>/dev/null -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - # pre-set since we need to pass it to cmake - BUILD_DIR=${WORKDIR}/${P}_build - - if use clang; then - # Only do this conditionally to allow overriding with - # e.g. CC=clang-13 in case of breakage - if ! tc-is-clang ; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - fi - - strip-unsupported-flags - fi - - if ! test_compiler; then - local nolib_flags=( -nodefaultlibs -lc ) - - if test_compiler "${nolib_flags[@]}"; then - local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}" - ewarn "${CC} seems to lack runtime, trying with ${nolib_flags[*]}" - elif test_compiler "${nolib_flags[@]}" -nostartfiles; then - # Avoiding -nostartfiles earlier on for bug #862540, - # and set available entry symbol for bug #862798. - nolib_flags+=( -nostartfiles -emain ) - - local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}" - ewarn "${CC} seems to lack runtime, trying with ${nolib_flags[*]}" - fi - fi - - local mycmakeargs=( - -DCOMPILER_RT_INSTALL_PATH="${EPREFIX}/usr/lib/clang/${LLVM_MAJOR}" - - -DCOMPILER_RT_INCLUDE_TESTS=$(usex test) - -DCOMPILER_RT_BUILD_LIBFUZZER=OFF - -DCOMPILER_RT_BUILD_MEMPROF=OFF - -DCOMPILER_RT_BUILD_ORC=OFF - -DCOMPILER_RT_BUILD_PROFILE=OFF - -DCOMPILER_RT_BUILD_SANITIZERS=OFF - -DCOMPILER_RT_BUILD_XRAY=OFF - - -DPython3_EXECUTABLE="${PYTHON}" - ) - - if use amd64; then - mycmakeargs+=( - -DCAN_TARGET_i386=$(usex abi_x86_32) - -DCAN_TARGET_x86_64=$(usex abi_x86_64) - ) - fi - - if use prefix && [[ "${CHOST}" == *-darwin* ]] ; then - mycmakeargs+=( - # setting -isysroot is disabled with compiler-rt-prefix-paths.patch - # this allows adding arm64 support using SDK in EPREFIX - -DDARWIN_macosx_CACHED_SYSROOT="${EPREFIX}/MacOSX.sdk" - # Set version based on the SDK in EPREFIX. - # This disables i386 for SDK >= 10.15 - -DDARWIN_macosx_OVERRIDE_SDK_VERSION="$(realpath ${EPREFIX}/MacOSX.sdk | sed -e 's/.*MacOSX\(.*\)\.sdk/\1/')" - # Use our libtool instead of looking it up with xcrun - -DCMAKE_LIBTOOL="${EPREFIX}/usr/bin/${CHOST}-libtool" - ) - fi - - if use test; then - mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - - -DCOMPILER_RT_TEST_COMPILER="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang" - -DCOMPILER_RT_TEST_CXX_COMPILER="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang++" - ) - fi - - cmake_src_configure -} - -src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - - cmake_build check-builtins -} diff --git a/sys-libs/compiler-rt/compiler-rt-17.0.0.9999.ebuild b/sys-libs/compiler-rt/compiler-rt-17.0.0.9999.ebuild index 2ed5fc860074..5abe2bd9bf79 100644 --- a/sys-libs/compiler-rt/compiler-rt-17.0.0.9999.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-17.0.0.9999.ebuild @@ -49,7 +49,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/compiler-rt/compiler-rt-17.0.0_pre20230304.ebuild b/sys-libs/compiler-rt/compiler-rt-17.0.0_pre20230304.ebuild deleted file mode 100644 index 2ed5fc860074..000000000000 --- a/sys-libs/compiler-rt/compiler-rt-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,149 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs - -DESCRIPTION="Compiler runtime library for clang (built-in part)" -HOMEPAGE="https://llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="${LLVM_MAJOR}" -KEYWORDS="" -IUSE="+abi_x86_32 abi_x86_64 +clang debug test" -RESTRICT="!test? ( test ) !clang? ( test )" - -DEPEND=" - sys-devel/llvm:${LLVM_MAJOR} -" -BDEPEND=" - >=dev-util/cmake-3.16 - clang? ( sys-devel/clang ) - test? ( - $(python_gen_any_dep ">=dev-python/lit-15[\${PYTHON_USEDEP}]") - =sys-devel/clang-${LLVM_VERSION}*:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) -" - -LLVM_COMPONENTS=( compiler-rt cmake llvm/cmake ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version ">=dev-python/lit-15[${PYTHON_USEDEP}]" -} - -pkg_pretend() { - if ! use clang && ! tc-is-clang; then - ewarn "Building using a compiler other than clang may result in broken atomics" - ewarn "library. Enable USE=clang unless you have a very good reason not to." - fi -} - -pkg_setup() { - # Darwin Prefix builds do not have llvm installed yet, so rely on - # bootstrap-prefix to set the appropriate path vars to LLVM instead - # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - fi - python-any-r1_pkg_setup -} - -test_compiler() { - $(tc-getCC) ${CFLAGS} ${LDFLAGS} "${@}" -o /dev/null -x c - \ - <<<'int main() { return 0; }' &>/dev/null -} - -src_configure() { - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - # pre-set since we need to pass it to cmake - BUILD_DIR=${WORKDIR}/${P}_build - - if use clang; then - # Only do this conditionally to allow overriding with - # e.g. CC=clang-13 in case of breakage - if ! tc-is-clang ; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - fi - - strip-unsupported-flags - fi - - if ! test_compiler; then - local nolib_flags=( -nodefaultlibs -lc ) - - if test_compiler "${nolib_flags[@]}"; then - local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}" - ewarn "${CC} seems to lack runtime, trying with ${nolib_flags[*]}" - elif test_compiler "${nolib_flags[@]}" -nostartfiles; then - # Avoiding -nostartfiles earlier on for bug #862540, - # and set available entry symbol for bug #862798. - nolib_flags+=( -nostartfiles -emain ) - - local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}" - ewarn "${CC} seems to lack runtime, trying with ${nolib_flags[*]}" - fi - fi - - local mycmakeargs=( - -DCOMPILER_RT_INSTALL_PATH="${EPREFIX}/usr/lib/clang/${LLVM_MAJOR}" - - -DCOMPILER_RT_INCLUDE_TESTS=$(usex test) - -DCOMPILER_RT_BUILD_LIBFUZZER=OFF - -DCOMPILER_RT_BUILD_MEMPROF=OFF - -DCOMPILER_RT_BUILD_ORC=OFF - -DCOMPILER_RT_BUILD_PROFILE=OFF - -DCOMPILER_RT_BUILD_SANITIZERS=OFF - -DCOMPILER_RT_BUILD_XRAY=OFF - - -DPython3_EXECUTABLE="${PYTHON}" - ) - - if use amd64; then - mycmakeargs+=( - -DCAN_TARGET_i386=$(usex abi_x86_32) - -DCAN_TARGET_x86_64=$(usex abi_x86_64) - ) - fi - - if use prefix && [[ "${CHOST}" == *-darwin* ]] ; then - mycmakeargs+=( - # setting -isysroot is disabled with compiler-rt-prefix-paths.patch - # this allows adding arm64 support using SDK in EPREFIX - -DDARWIN_macosx_CACHED_SYSROOT="${EPREFIX}/MacOSX.sdk" - # Set version based on the SDK in EPREFIX. - # This disables i386 for SDK >= 10.15 - -DDARWIN_macosx_OVERRIDE_SDK_VERSION="$(realpath ${EPREFIX}/MacOSX.sdk | sed -e 's/.*MacOSX\(.*\)\.sdk/\1/')" - # Use our libtool instead of looking it up with xcrun - -DCMAKE_LIBTOOL="${EPREFIX}/usr/bin/${CHOST}-libtool" - ) - fi - - if use test; then - mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - - -DCOMPILER_RT_TEST_COMPILER="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang" - -DCOMPILER_RT_TEST_CXX_COMPILER="${EPREFIX}/usr/lib/llvm/${LLVM_MAJOR}/bin/clang++" - ) - fi - - cmake_src_configure -} - -src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - - cmake_build check-builtins -} diff --git a/sys-libs/compiler-rt/compiler-rt-17.0.0_pre20230314.ebuild b/sys-libs/compiler-rt/compiler-rt-17.0.0_pre20230314.ebuild index 2ed5fc860074..5abe2bd9bf79 100644 --- a/sys-libs/compiler-rt/compiler-rt-17.0.0_pre20230314.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-17.0.0_pre20230314.ebuild @@ -49,7 +49,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild b/sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild index f447a8198a55..fb1e3382f967 100644 --- a/sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild +++ b/sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/libavc1394/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86" BDEPEND="virtual/pkgconfig" DEPEND=">=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}] diff --git a/sys-libs/libcxx/Manifest b/sys-libs/libcxx/Manifest index ddf4d4d6feb1..f5a0c685bcf9 100644 --- a/sys-libs/libcxx/Manifest +++ b/sys-libs/libcxx/Manifest @@ -6,9 +6,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/sys-libs/libcxx/libcxx-14.0.6.ebuild b/sys-libs/libcxx/libcxx-14.0.6.ebuild index 1ae6c77afc9c..9ac9d8ad89f9 100644 --- a/sys-libs/libcxx/libcxx-14.0.6.ebuild +++ b/sys-libs/libcxx/libcxx-14.0.6.ebuild @@ -54,7 +54,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libcxx/libcxx-15.0.7-r1.ebuild b/sys-libs/libcxx/libcxx-15.0.7-r1.ebuild index b0445e061e96..2ea0abb84b2c 100644 --- a/sys-libs/libcxx/libcxx-15.0.7-r1.ebuild +++ b/sys-libs/libcxx/libcxx-15.0.7-r1.ebuild @@ -54,7 +54,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libcxx/libcxx-15.0.7.ebuild b/sys-libs/libcxx/libcxx-15.0.7.ebuild index c8284848d512..1d2b045156a9 100644 --- a/sys-libs/libcxx/libcxx-15.0.7.ebuild +++ b/sys-libs/libcxx/libcxx-15.0.7.ebuild @@ -53,7 +53,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libcxx/libcxx-16.0.0.9999.ebuild b/sys-libs/libcxx/libcxx-16.0.0.9999.ebuild index 4eeb65e55e83..56140d06df64 100644 --- a/sys-libs/libcxx/libcxx-16.0.0.9999.ebuild +++ b/sys-libs/libcxx/libcxx-16.0.0.9999.ebuild @@ -53,7 +53,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libcxx/libcxx-16.0.0.ebuild b/sys-libs/libcxx/libcxx-16.0.0.ebuild index ebd073f968d0..cdbee6be92d6 100644 --- a/sys-libs/libcxx/libcxx-16.0.0.ebuild +++ b/sys-libs/libcxx/libcxx-16.0.0.ebuild @@ -53,7 +53,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libcxx/libcxx-16.0.0_rc3.ebuild b/sys-libs/libcxx/libcxx-16.0.0_rc3.ebuild deleted file mode 100644 index bd6f3db60c4b..000000000000 --- a/sys-libs/libcxx/libcxx-16.0.0_rc3.ebuild +++ /dev/null @@ -1,204 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake-multilib flag-o-matic llvm llvm.org python-any-r1 \ - toolchain-funcs - -DESCRIPTION="New implementation of the C++ standard library, targeting C++11" -HOMEPAGE="https://libcxx.llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="0" -KEYWORDS="~loong" -IUSE="+clang +libcxxabi static-libs test" -REQUIRED_USE="test? ( clang )" -RESTRICT="!test? ( test )" - -RDEPEND=" - libcxxabi? ( - ~sys-libs/libcxxabi-${PV}[static-libs?,${MULTILIB_USEDEP}] - ) - !libcxxabi? ( >=sys-devel/gcc-4.7:=[cxx] ) -" -DEPEND=" - ${RDEPEND} - sys-devel/llvm:${LLVM_MAJOR} -" -BDEPEND=" - clang? ( - sys-devel/clang:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) - test? ( - >=dev-util/cmake-3.16 - sys-devel/gdb[python] - $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]') - ) -" - -LLVM_COMPONENTS=( runtimes libcxx{,abi} llvm/{cmake,utils/llvm-lit} cmake ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version "dev-python/lit[${PYTHON_USEDEP}]" -} - -pkg_setup() { - # Darwin Prefix builds do not have llvm installed yet, so rely on - # bootstrap-prefix to set the appropriate path vars to LLVM instead - # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - fi - python-any-r1_pkg_setup - - if ! use libcxxabi && ! tc-is-gcc ; then - eerror "To build ${PN} against libsupc++, you have to use gcc. Other" - eerror "compilers are not supported. Please set CC=gcc and CXX=g++" - eerror "and try again." - die - fi -} - -test_compiler() { - $(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} "${@}" -o /dev/null -x c++ - \ - <<<'int main() { return 0; }' &>/dev/null -} - -src_configure() { - # note: we need to do this before multilib kicks in since it will - # alter the CHOST - local cxxabi cxxabi_incs - if use libcxxabi; then - cxxabi=system-libcxxabi - cxxabi_incs="${EPREFIX}/usr/include/c++/v1" - else - local gcc_inc="${EPREFIX}/usr/lib/gcc/${CHOST}/$(gcc-fullversion)/include/g++-v$(gcc-major-version)" - cxxabi=libsupc++ - cxxabi_incs="${gcc_inc};${gcc_inc}/${CHOST}" - fi - - multilib-minimal_src_configure -} - -multilib_src_configure() { - if use clang; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - strip-unsupported-flags - fi - - # link to compiler-rt - local use_compiler_rt=OFF - [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON - - # bootstrap: cmake is unhappy if compiler can't link to stdlib - local nolib_flags=( -nodefaultlibs -lc ) - if ! test_compiler; then - if test_compiler "${nolib_flags[@]}"; then - local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}" - ewarn "${CXX} seems to lack runtime, trying with ${nolib_flags[*]}" - fi - fi - - local libdir=$(get_libdir) - local mycmakeargs=( - -DCMAKE_CXX_COMPILER_TARGET="${CHOST}" - -DPython3_EXECUTABLE="${PYTHON}" - -DLLVM_ENABLE_RUNTIMES=libcxx - -DLLVM_INCLUDE_TESTS=OFF - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - - -DLIBCXX_ENABLE_SHARED=ON - -DLIBCXX_ENABLE_STATIC=$(usex static-libs) - -DLIBCXX_CXX_ABI=${cxxabi} - -DLIBCXX_CXX_ABI_INCLUDE_PATHS=${cxxabi_incs} - # we're using our own mechanism for generating linker scripts - -DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=OFF - -DLIBCXX_HAS_MUSL_LIBC=$(usex elibc_musl) - -DLIBCXX_INCLUDE_BENCHMARKS=OFF - -DLIBCXX_INCLUDE_TESTS=$(usex test) - -DLIBCXX_USE_COMPILER_RT=${use_compiler_rt} - ) - - if use test; then - mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - -DPython3_EXECUTABLE="${PYTHON}" - ) - fi - cmake_src_configure -} - -multilib_src_compile() { - cmake_src_compile - if [[ ${CHOST} != *-darwin* ]] ; then - gen_shared_ldscript - use static-libs && gen_static_ldscript - fi -} - -multilib_src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-cxx -} - -multilib_src_install() { - cmake_src_install - # since we've replaced libc++.{a,so} with ldscripts, now we have to - # install the extra symlinks - if [[ ${CHOST} != *-darwin* ]] ; then - dolib.so lib/libc++_shared.so - use static-libs && dolib.a lib/libc++_static.a - fi -} - -# Usage: deps -gen_ldscript() { - local output_format - output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') - [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" - - cat <<-END_LDSCRIPT -/* GNU ld script - Include missing dependencies -*/ -${output_format} -GROUP ( $@ ) -END_LDSCRIPT -} - -gen_static_ldscript() { - # Move it first. - mv lib/libc++{,_static}.a || die - # Generate libc++.a ldscript for inclusion of its dependencies so that - # clang++ -stdlib=libc++ -static works out of the box. - local deps=( - libc++_static.a - $(usex libcxxabi libc++abi.a libsupc++.a) - ) - # On Linux/glibc it does not link without libpthread or libdl. It is - # fine on FreeBSD. - use elibc_glibc && deps+=( libpthread.a libdl.a ) - - gen_ldscript "${deps[*]}" > lib/libc++.a || die -} - -gen_shared_ldscript() { - # Move it first. - mv lib/libc++{,_shared}.so || die - local deps=( - libc++_shared.so - # libsupc++ doesn't have a shared version - $(usex libcxxabi libc++abi.so libsupc++.a) - ) - - gen_ldscript "${deps[*]}" > lib/libc++.so || die -} diff --git a/sys-libs/libcxx/libcxx-16.0.0_rc4.ebuild b/sys-libs/libcxx/libcxx-16.0.0_rc4.ebuild deleted file mode 100644 index bd6f3db60c4b..000000000000 --- a/sys-libs/libcxx/libcxx-16.0.0_rc4.ebuild +++ /dev/null @@ -1,204 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake-multilib flag-o-matic llvm llvm.org python-any-r1 \ - toolchain-funcs - -DESCRIPTION="New implementation of the C++ standard library, targeting C++11" -HOMEPAGE="https://libcxx.llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="0" -KEYWORDS="~loong" -IUSE="+clang +libcxxabi static-libs test" -REQUIRED_USE="test? ( clang )" -RESTRICT="!test? ( test )" - -RDEPEND=" - libcxxabi? ( - ~sys-libs/libcxxabi-${PV}[static-libs?,${MULTILIB_USEDEP}] - ) - !libcxxabi? ( >=sys-devel/gcc-4.7:=[cxx] ) -" -DEPEND=" - ${RDEPEND} - sys-devel/llvm:${LLVM_MAJOR} -" -BDEPEND=" - clang? ( - sys-devel/clang:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) - test? ( - >=dev-util/cmake-3.16 - sys-devel/gdb[python] - $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]') - ) -" - -LLVM_COMPONENTS=( runtimes libcxx{,abi} llvm/{cmake,utils/llvm-lit} cmake ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version "dev-python/lit[${PYTHON_USEDEP}]" -} - -pkg_setup() { - # Darwin Prefix builds do not have llvm installed yet, so rely on - # bootstrap-prefix to set the appropriate path vars to LLVM instead - # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - fi - python-any-r1_pkg_setup - - if ! use libcxxabi && ! tc-is-gcc ; then - eerror "To build ${PN} against libsupc++, you have to use gcc. Other" - eerror "compilers are not supported. Please set CC=gcc and CXX=g++" - eerror "and try again." - die - fi -} - -test_compiler() { - $(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} "${@}" -o /dev/null -x c++ - \ - <<<'int main() { return 0; }' &>/dev/null -} - -src_configure() { - # note: we need to do this before multilib kicks in since it will - # alter the CHOST - local cxxabi cxxabi_incs - if use libcxxabi; then - cxxabi=system-libcxxabi - cxxabi_incs="${EPREFIX}/usr/include/c++/v1" - else - local gcc_inc="${EPREFIX}/usr/lib/gcc/${CHOST}/$(gcc-fullversion)/include/g++-v$(gcc-major-version)" - cxxabi=libsupc++ - cxxabi_incs="${gcc_inc};${gcc_inc}/${CHOST}" - fi - - multilib-minimal_src_configure -} - -multilib_src_configure() { - if use clang; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - strip-unsupported-flags - fi - - # link to compiler-rt - local use_compiler_rt=OFF - [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON - - # bootstrap: cmake is unhappy if compiler can't link to stdlib - local nolib_flags=( -nodefaultlibs -lc ) - if ! test_compiler; then - if test_compiler "${nolib_flags[@]}"; then - local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}" - ewarn "${CXX} seems to lack runtime, trying with ${nolib_flags[*]}" - fi - fi - - local libdir=$(get_libdir) - local mycmakeargs=( - -DCMAKE_CXX_COMPILER_TARGET="${CHOST}" - -DPython3_EXECUTABLE="${PYTHON}" - -DLLVM_ENABLE_RUNTIMES=libcxx - -DLLVM_INCLUDE_TESTS=OFF - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - - -DLIBCXX_ENABLE_SHARED=ON - -DLIBCXX_ENABLE_STATIC=$(usex static-libs) - -DLIBCXX_CXX_ABI=${cxxabi} - -DLIBCXX_CXX_ABI_INCLUDE_PATHS=${cxxabi_incs} - # we're using our own mechanism for generating linker scripts - -DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=OFF - -DLIBCXX_HAS_MUSL_LIBC=$(usex elibc_musl) - -DLIBCXX_INCLUDE_BENCHMARKS=OFF - -DLIBCXX_INCLUDE_TESTS=$(usex test) - -DLIBCXX_USE_COMPILER_RT=${use_compiler_rt} - ) - - if use test; then - mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - -DPython3_EXECUTABLE="${PYTHON}" - ) - fi - cmake_src_configure -} - -multilib_src_compile() { - cmake_src_compile - if [[ ${CHOST} != *-darwin* ]] ; then - gen_shared_ldscript - use static-libs && gen_static_ldscript - fi -} - -multilib_src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-cxx -} - -multilib_src_install() { - cmake_src_install - # since we've replaced libc++.{a,so} with ldscripts, now we have to - # install the extra symlinks - if [[ ${CHOST} != *-darwin* ]] ; then - dolib.so lib/libc++_shared.so - use static-libs && dolib.a lib/libc++_static.a - fi -} - -# Usage: deps -gen_ldscript() { - local output_format - output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') - [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" - - cat <<-END_LDSCRIPT -/* GNU ld script - Include missing dependencies -*/ -${output_format} -GROUP ( $@ ) -END_LDSCRIPT -} - -gen_static_ldscript() { - # Move it first. - mv lib/libc++{,_static}.a || die - # Generate libc++.a ldscript for inclusion of its dependencies so that - # clang++ -stdlib=libc++ -static works out of the box. - local deps=( - libc++_static.a - $(usex libcxxabi libc++abi.a libsupc++.a) - ) - # On Linux/glibc it does not link without libpthread or libdl. It is - # fine on FreeBSD. - use elibc_glibc && deps+=( libpthread.a libdl.a ) - - gen_ldscript "${deps[*]}" > lib/libc++.a || die -} - -gen_shared_ldscript() { - # Move it first. - mv lib/libc++{,_shared}.so || die - local deps=( - libc++_shared.so - # libsupc++ doesn't have a shared version - $(usex libcxxabi libc++abi.so libsupc++.a) - ) - - gen_ldscript "${deps[*]}" > lib/libc++.so || die -} diff --git a/sys-libs/libcxx/libcxx-17.0.0.9999.ebuild b/sys-libs/libcxx/libcxx-17.0.0.9999.ebuild index 4eeb65e55e83..56140d06df64 100644 --- a/sys-libs/libcxx/libcxx-17.0.0.9999.ebuild +++ b/sys-libs/libcxx/libcxx-17.0.0.9999.ebuild @@ -53,7 +53,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libcxx/libcxx-17.0.0_pre20230304.ebuild b/sys-libs/libcxx/libcxx-17.0.0_pre20230304.ebuild deleted file mode 100644 index 4eeb65e55e83..000000000000 --- a/sys-libs/libcxx/libcxx-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,204 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake-multilib flag-o-matic llvm llvm.org python-any-r1 \ - toolchain-funcs - -DESCRIPTION="New implementation of the C++ standard library, targeting C++11" -HOMEPAGE="https://libcxx.llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="0" -KEYWORDS="" -IUSE="+clang +libcxxabi static-libs test" -REQUIRED_USE="test? ( clang )" -RESTRICT="!test? ( test )" - -RDEPEND=" - libcxxabi? ( - ~sys-libs/libcxxabi-${PV}[static-libs?,${MULTILIB_USEDEP}] - ) - !libcxxabi? ( >=sys-devel/gcc-4.7:=[cxx] ) -" -DEPEND=" - ${RDEPEND} - sys-devel/llvm:${LLVM_MAJOR} -" -BDEPEND=" - clang? ( - sys-devel/clang:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) - test? ( - >=dev-util/cmake-3.16 - sys-devel/gdb[python] - $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]') - ) -" - -LLVM_COMPONENTS=( runtimes libcxx{,abi} llvm/{cmake,utils/llvm-lit} cmake ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version "dev-python/lit[${PYTHON_USEDEP}]" -} - -pkg_setup() { - # Darwin Prefix builds do not have llvm installed yet, so rely on - # bootstrap-prefix to set the appropriate path vars to LLVM instead - # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - fi - python-any-r1_pkg_setup - - if ! use libcxxabi && ! tc-is-gcc ; then - eerror "To build ${PN} against libsupc++, you have to use gcc. Other" - eerror "compilers are not supported. Please set CC=gcc and CXX=g++" - eerror "and try again." - die - fi -} - -test_compiler() { - $(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} "${@}" -o /dev/null -x c++ - \ - <<<'int main() { return 0; }' &>/dev/null -} - -src_configure() { - # note: we need to do this before multilib kicks in since it will - # alter the CHOST - local cxxabi cxxabi_incs - if use libcxxabi; then - cxxabi=system-libcxxabi - cxxabi_incs="${EPREFIX}/usr/include/c++/v1" - else - local gcc_inc="${EPREFIX}/usr/lib/gcc/${CHOST}/$(gcc-fullversion)/include/g++-v$(gcc-major-version)" - cxxabi=libsupc++ - cxxabi_incs="${gcc_inc};${gcc_inc}/${CHOST}" - fi - - multilib-minimal_src_configure -} - -multilib_src_configure() { - if use clang; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - strip-unsupported-flags - fi - - # link to compiler-rt - local use_compiler_rt=OFF - [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON - - # bootstrap: cmake is unhappy if compiler can't link to stdlib - local nolib_flags=( -nodefaultlibs -lc ) - if ! test_compiler; then - if test_compiler "${nolib_flags[@]}"; then - local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}" - ewarn "${CXX} seems to lack runtime, trying with ${nolib_flags[*]}" - fi - fi - - local libdir=$(get_libdir) - local mycmakeargs=( - -DCMAKE_CXX_COMPILER_TARGET="${CHOST}" - -DPython3_EXECUTABLE="${PYTHON}" - -DLLVM_ENABLE_RUNTIMES=libcxx - -DLLVM_INCLUDE_TESTS=OFF - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - - -DLIBCXX_ENABLE_SHARED=ON - -DLIBCXX_ENABLE_STATIC=$(usex static-libs) - -DLIBCXX_CXX_ABI=${cxxabi} - -DLIBCXX_CXX_ABI_INCLUDE_PATHS=${cxxabi_incs} - # we're using our own mechanism for generating linker scripts - -DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=OFF - -DLIBCXX_HAS_MUSL_LIBC=$(usex elibc_musl) - -DLIBCXX_INCLUDE_BENCHMARKS=OFF - -DLIBCXX_INCLUDE_TESTS=$(usex test) - -DLIBCXX_USE_COMPILER_RT=${use_compiler_rt} - ) - - if use test; then - mycmakeargs+=( - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - -DPython3_EXECUTABLE="${PYTHON}" - ) - fi - cmake_src_configure -} - -multilib_src_compile() { - cmake_src_compile - if [[ ${CHOST} != *-darwin* ]] ; then - gen_shared_ldscript - use static-libs && gen_static_ldscript - fi -} - -multilib_src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-cxx -} - -multilib_src_install() { - cmake_src_install - # since we've replaced libc++.{a,so} with ldscripts, now we have to - # install the extra symlinks - if [[ ${CHOST} != *-darwin* ]] ; then - dolib.so lib/libc++_shared.so - use static-libs && dolib.a lib/libc++_static.a - fi -} - -# Usage: deps -gen_ldscript() { - local output_format - output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') - [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" - - cat <<-END_LDSCRIPT -/* GNU ld script - Include missing dependencies -*/ -${output_format} -GROUP ( $@ ) -END_LDSCRIPT -} - -gen_static_ldscript() { - # Move it first. - mv lib/libc++{,_static}.a || die - # Generate libc++.a ldscript for inclusion of its dependencies so that - # clang++ -stdlib=libc++ -static works out of the box. - local deps=( - libc++_static.a - $(usex libcxxabi libc++abi.a libsupc++.a) - ) - # On Linux/glibc it does not link without libpthread or libdl. It is - # fine on FreeBSD. - use elibc_glibc && deps+=( libpthread.a libdl.a ) - - gen_ldscript "${deps[*]}" > lib/libc++.a || die -} - -gen_shared_ldscript() { - # Move it first. - mv lib/libc++{,_shared}.so || die - local deps=( - libc++_shared.so - # libsupc++ doesn't have a shared version - $(usex libcxxabi libc++abi.so libsupc++.a) - ) - - gen_ldscript "${deps[*]}" > lib/libc++.so || die -} diff --git a/sys-libs/libcxx/libcxx-17.0.0_pre20230314.ebuild b/sys-libs/libcxx/libcxx-17.0.0_pre20230314.ebuild index 4eeb65e55e83..56140d06df64 100644 --- a/sys-libs/libcxx/libcxx-17.0.0_pre20230314.ebuild +++ b/sys-libs/libcxx/libcxx-17.0.0_pre20230314.ebuild @@ -53,7 +53,7 @@ pkg_setup() { # Darwin Prefix builds do not have llvm installed yet, so rely on # bootstrap-prefix to set the appropriate path vars to LLVM instead # of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libcxxabi/Manifest b/sys-libs/libcxxabi/Manifest index b1c047b45e06..52a376db7b69 100644 --- a/sys-libs/libcxxabi/Manifest +++ b/sys-libs/libcxxabi/Manifest @@ -4,9 +4,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/sys-libs/libcxxabi/libcxxabi-14.0.6.ebuild b/sys-libs/libcxxabi/libcxxabi-14.0.6.ebuild index fb6e382467f1..a396fb6620e2 100644 --- a/sys-libs/libcxxabi/libcxxabi-14.0.6.ebuild +++ b/sys-libs/libcxxabi/libcxxabi-14.0.6.ebuild @@ -50,7 +50,7 @@ python_check_deps() { pkg_setup() { # darwin prefix builds do not have llvm installed yet, so rely on bootstrap-prefix # to set the appropriate path vars to LLVM instead of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libcxxabi/libcxxabi-15.0.7.ebuild b/sys-libs/libcxxabi/libcxxabi-15.0.7.ebuild index 1b6f8964e39a..30ac0da6b21a 100644 --- a/sys-libs/libcxxabi/libcxxabi-15.0.7.ebuild +++ b/sys-libs/libcxxabi/libcxxabi-15.0.7.ebuild @@ -49,7 +49,7 @@ python_check_deps() { pkg_setup() { # darwin prefix builds do not have llvm installed yet, so rely on bootstrap-prefix # to set the appropriate path vars to LLVM instead of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libcxxabi/libcxxabi-16.0.0.9999.ebuild b/sys-libs/libcxxabi/libcxxabi-16.0.0.9999.ebuild index e5f19fc61a28..16f40d6829fa 100644 --- a/sys-libs/libcxxabi/libcxxabi-16.0.0.9999.ebuild +++ b/sys-libs/libcxxabi/libcxxabi-16.0.0.9999.ebuild @@ -49,7 +49,7 @@ python_check_deps() { pkg_setup() { # darwin prefix builds do not have llvm installed yet, so rely on bootstrap-prefix # to set the appropriate path vars to LLVM instead of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libcxxabi/libcxxabi-16.0.0.ebuild b/sys-libs/libcxxabi/libcxxabi-16.0.0.ebuild index 40271cf28572..e5d488bf1341 100644 --- a/sys-libs/libcxxabi/libcxxabi-16.0.0.ebuild +++ b/sys-libs/libcxxabi/libcxxabi-16.0.0.ebuild @@ -49,7 +49,7 @@ python_check_deps() { pkg_setup() { # darwin prefix builds do not have llvm installed yet, so rely on bootstrap-prefix # to set the appropriate path vars to LLVM instead of using llvm_pkg_setup. - if [[ ${CHOST} != *-darwin* ]] || has_version dev-lang/llvm; then + if [[ ${CHOST} != *-darwin* ]] || has_version sys-devel/llvm; then LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/sys-libs/libcxxabi/libcxxabi-16.0.0_rc3.ebuild b/sys-libs/libcxxabi/libcxxabi-16.0.0_rc3.ebuild deleted file mode 100644 index fb725b1c09a1..000000000000 --- a/sys-libs/libcxxabi/libcxxabi-16.0.0_rc3.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake-multilib flag-o-matic llvm llvm.org python-any-r1 \ - toolchain-funcs - -DESCRIPTION="Low level support for a standard C++ library" -HOMEPAGE="https://libcxxabi.llvm.org/" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="0" -KEYWORDS="~loong" -IUSE="+clang static-libs test" -REQUIRED_USE="test? ( clang )" -RESTRICT="!test? ( test )" - -# in 15.x, cxxabi.h is moving from libcxx to libcxxabi -RDEPEND+=" - !/dev/null - int test[sizeof(void *) == 8 ? 1 : -1]; - EOF - then - build_omptarget=ON - fi - - local libdir="$(get_libdir)" - local mycmakeargs=( - -DOPENMP_LIBDIR_SUFFIX="${libdir#lib}" - - -DLIBOMP_USE_HWLOC=$(usex hwloc) - -DLIBOMP_OMPD_GDB_SUPPORT=$(multilib_native_usex gdb-plugin) - -DLIBOMP_OMPT_SUPPORT=$(usex ompt) - - -DOPENMP_ENABLE_LIBOMPTARGET=${build_omptarget} - - # do not install libgomp.so & libiomp5.so aliases - -DLIBOMP_INSTALL_ALIASES=OFF - # disable unnecessary hack copying stuff back to srcdir - -DLIBOMP_COPY_EXPORTS=OFF - ) - - if [[ ${build_omptarget} == ON ]]; then - if has "${CHOST%%-*}" aarch64 powerpc64le x86_64; then - mycmakeargs+=( - -DLIBOMPTARGET_BUILD_AMDGPU_PLUGIN=$(usex llvm_targets_AMDGPU) - -DLIBOMPTARGET_BUILD_CUDA_PLUGIN=$(usex llvm_targets_NVPTX) - ) - else - mycmakeargs+=( - -DLIBOMPTARGET_BUILD_AMDGPU_PLUGIN=OFF - -DLIBOMPTARGET_BUILD_CUDA_PLUGIN=OFF - ) - fi - fi - - use test && mycmakeargs+=( - # this project does not use standard LLVM cmake macros - -DOPENMP_LLVM_LIT_EXECUTABLE="${EPREFIX}/usr/bin/lit" - -DOPENMP_LIT_ARGS="$(get_lit_flags)" - - -DOPENMP_TEST_C_COMPILER="$(type -P "${CHOST}-clang")" - -DOPENMP_TEST_CXX_COMPILER="$(type -P "${CHOST}-clang++")" - ) - addpredict /dev/nvidiactl - cmake_src_configure -} - -multilib_src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - - cmake_build check-libomp -} diff --git a/sys-libs/libomp/libomp-16.0.0_rc4.ebuild b/sys-libs/libomp/libomp-16.0.0_rc4.ebuild deleted file mode 100644 index 731fcbdf9f10..000000000000 --- a/sys-libs/libomp/libomp-16.0.0_rc4.ebuild +++ /dev/null @@ -1,149 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit flag-o-matic cmake-multilib linux-info llvm llvm.org -inherit python-single-r1 toolchain-funcs - -DESCRIPTION="OpenMP runtime library for LLVM/clang compiler" -HOMEPAGE="https://openmp.llvm.org" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="0/${LLVM_SOABI}" -KEYWORDS="~loong" -IUSE=" - debug gdb-plugin hwloc offload ompt test - llvm_targets_AMDGPU llvm_targets_NVPTX -" -REQUIRED_USE=" - gdb-plugin? ( ${PYTHON_REQUIRED_USE} ) -" -RESTRICT="!test? ( test )" - -RDEPEND=" - gdb-plugin? ( ${PYTHON_DEPS} ) - hwloc? ( >=sys-apps/hwloc-2.5:0=[${MULTILIB_USEDEP}] ) - offload? ( - dev-libs/libffi:=[${MULTILIB_USEDEP}] - ~sys-devel/llvm-${PV}[${MULTILIB_USEDEP}] - llvm_targets_AMDGPU? ( dev-libs/rocr-runtime:= ) - ) -" -# tests: -# - dev-python/lit provides the test runner -# - sys-devel/llvm provide test utils (e.g. FileCheck) -# - sys-devel/clang provides the compiler to run tests -DEPEND=" - ${RDEPEND} -" -BDEPEND=" - dev-lang/perl - offload? ( - llvm_targets_AMDGPU? ( sys-devel/clang ) - llvm_targets_NVPTX? ( sys-devel/clang ) - virtual/pkgconfig - ) - test? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/lit[${PYTHON_USEDEP}] - ') - sys-devel/clang - ) -" - -LLVM_COMPONENTS=( openmp cmake llvm/include ) -llvm.org_set_globals - -kernel_pds_check() { - if use kernel_linux && kernel_is -lt 4 15 && kernel_is -ge 4 13; then - local CONFIG_CHECK="~!SCHED_PDS" - local ERROR_SCHED_PDS="\ -PDS scheduler versions >= 0.98c < 0.98i (e.g. used in kernels >= 4.13-pf11 -< 4.14-pf9) do not implement sched_yield() call which may result in horrible -performance problems with libomp. If you are using one of the specified -kernel versions, you may want to disable the PDS scheduler." - - check_extra_config - fi -} - -pkg_pretend() { - kernel_pds_check -} - -pkg_setup() { - use offload && LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - if use gdb-plugin || use test; then - python-single-r1_pkg_setup - fi -} - -multilib_src_configure() { - # LTO causes issues in other packages building, #870127 - filter-lto - - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - local build_omptarget=OFF - # upstream disallows building libomptarget when sizeof(void*) != 8 - if use offload && - "$(tc-getCC)" ${CFLAGS} ${CPPFLAGS} -c -x c - -o /dev/null \ - <<-EOF &>/dev/null - int test[sizeof(void *) == 8 ? 1 : -1]; - EOF - then - build_omptarget=ON - fi - - local libdir="$(get_libdir)" - local mycmakeargs=( - -DOPENMP_LIBDIR_SUFFIX="${libdir#lib}" - - -DLIBOMP_USE_HWLOC=$(usex hwloc) - -DLIBOMP_OMPD_GDB_SUPPORT=$(multilib_native_usex gdb-plugin) - -DLIBOMP_OMPT_SUPPORT=$(usex ompt) - - -DOPENMP_ENABLE_LIBOMPTARGET=${build_omptarget} - - # do not install libgomp.so & libiomp5.so aliases - -DLIBOMP_INSTALL_ALIASES=OFF - # disable unnecessary hack copying stuff back to srcdir - -DLIBOMP_COPY_EXPORTS=OFF - ) - - if [[ ${build_omptarget} == ON ]]; then - if has "${CHOST%%-*}" aarch64 powerpc64le x86_64; then - mycmakeargs+=( - -DLIBOMPTARGET_BUILD_AMDGPU_PLUGIN=$(usex llvm_targets_AMDGPU) - -DLIBOMPTARGET_BUILD_CUDA_PLUGIN=$(usex llvm_targets_NVPTX) - ) - else - mycmakeargs+=( - -DLIBOMPTARGET_BUILD_AMDGPU_PLUGIN=OFF - -DLIBOMPTARGET_BUILD_CUDA_PLUGIN=OFF - ) - fi - fi - - use test && mycmakeargs+=( - # this project does not use standard LLVM cmake macros - -DOPENMP_LLVM_LIT_EXECUTABLE="${EPREFIX}/usr/bin/lit" - -DOPENMP_LIT_ARGS="$(get_lit_flags)" - - -DOPENMP_TEST_C_COMPILER="$(type -P "${CHOST}-clang")" - -DOPENMP_TEST_CXX_COMPILER="$(type -P "${CHOST}-clang++")" - ) - addpredict /dev/nvidiactl - cmake_src_configure -} - -multilib_src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - - cmake_build check-libomp -} diff --git a/sys-libs/libomp/libomp-17.0.0_pre20230304.ebuild b/sys-libs/libomp/libomp-17.0.0_pre20230304.ebuild deleted file mode 100644 index 57c4ff3a33d0..000000000000 --- a/sys-libs/libomp/libomp-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,149 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit flag-o-matic cmake-multilib linux-info llvm llvm.org -inherit python-single-r1 toolchain-funcs - -DESCRIPTION="OpenMP runtime library for LLVM/clang compiler" -HOMEPAGE="https://openmp.llvm.org" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="0/${LLVM_SOABI}" -KEYWORDS="" -IUSE=" - debug gdb-plugin hwloc offload ompt test - llvm_targets_AMDGPU llvm_targets_NVPTX -" -REQUIRED_USE=" - gdb-plugin? ( ${PYTHON_REQUIRED_USE} ) -" -RESTRICT="!test? ( test )" - -RDEPEND=" - gdb-plugin? ( ${PYTHON_DEPS} ) - hwloc? ( >=sys-apps/hwloc-2.5:0=[${MULTILIB_USEDEP}] ) - offload? ( - dev-libs/libffi:=[${MULTILIB_USEDEP}] - ~sys-devel/llvm-${PV}[${MULTILIB_USEDEP}] - llvm_targets_AMDGPU? ( dev-libs/rocr-runtime:= ) - ) -" -# tests: -# - dev-python/lit provides the test runner -# - sys-devel/llvm provide test utils (e.g. FileCheck) -# - sys-devel/clang provides the compiler to run tests -DEPEND=" - ${RDEPEND} -" -BDEPEND=" - dev-lang/perl - offload? ( - llvm_targets_AMDGPU? ( sys-devel/clang ) - llvm_targets_NVPTX? ( sys-devel/clang ) - virtual/pkgconfig - ) - test? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/lit[${PYTHON_USEDEP}] - ') - sys-devel/clang - ) -" - -LLVM_COMPONENTS=( openmp cmake llvm/include ) -llvm.org_set_globals - -kernel_pds_check() { - if use kernel_linux && kernel_is -lt 4 15 && kernel_is -ge 4 13; then - local CONFIG_CHECK="~!SCHED_PDS" - local ERROR_SCHED_PDS="\ -PDS scheduler versions >= 0.98c < 0.98i (e.g. used in kernels >= 4.13-pf11 -< 4.14-pf9) do not implement sched_yield() call which may result in horrible -performance problems with libomp. If you are using one of the specified -kernel versions, you may want to disable the PDS scheduler." - - check_extra_config - fi -} - -pkg_pretend() { - kernel_pds_check -} - -pkg_setup() { - use offload && LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - if use gdb-plugin || use test; then - python-single-r1_pkg_setup - fi -} - -multilib_src_configure() { - # LTO causes issues in other packages building, #870127 - filter-lto - - # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 - use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" - - local build_omptarget=OFF - # upstream disallows building libomptarget when sizeof(void*) != 8 - if use offload && - "$(tc-getCC)" ${CFLAGS} ${CPPFLAGS} -c -x c - -o /dev/null \ - <<-EOF &>/dev/null - int test[sizeof(void *) == 8 ? 1 : -1]; - EOF - then - build_omptarget=ON - fi - - local libdir="$(get_libdir)" - local mycmakeargs=( - -DOPENMP_LIBDIR_SUFFIX="${libdir#lib}" - - -DLIBOMP_USE_HWLOC=$(usex hwloc) - -DLIBOMP_OMPD_GDB_SUPPORT=$(multilib_native_usex gdb-plugin) - -DLIBOMP_OMPT_SUPPORT=$(usex ompt) - - -DOPENMP_ENABLE_LIBOMPTARGET=${build_omptarget} - - # do not install libgomp.so & libiomp5.so aliases - -DLIBOMP_INSTALL_ALIASES=OFF - # disable unnecessary hack copying stuff back to srcdir - -DLIBOMP_COPY_EXPORTS=OFF - ) - - if [[ ${build_omptarget} == ON ]]; then - if has "${CHOST%%-*}" aarch64 powerpc64le x86_64; then - mycmakeargs+=( - -DLIBOMPTARGET_BUILD_AMDGPU_PLUGIN=$(usex llvm_targets_AMDGPU) - -DLIBOMPTARGET_BUILD_CUDA_PLUGIN=$(usex llvm_targets_NVPTX) - ) - else - mycmakeargs+=( - -DLIBOMPTARGET_BUILD_AMDGPU_PLUGIN=OFF - -DLIBOMPTARGET_BUILD_CUDA_PLUGIN=OFF - ) - fi - fi - - use test && mycmakeargs+=( - # this project does not use standard LLVM cmake macros - -DOPENMP_LLVM_LIT_EXECUTABLE="${EPREFIX}/usr/bin/lit" - -DOPENMP_LIT_ARGS="$(get_lit_flags)" - - -DOPENMP_TEST_C_COMPILER="$(type -P "${CHOST}-clang")" - -DOPENMP_TEST_CXX_COMPILER="$(type -P "${CHOST}-clang++")" - ) - addpredict /dev/nvidiactl - cmake_src_configure -} - -multilib_src_test() { - # respect TMPDIR! - local -x LIT_PRESERVES_TMP=1 - - cmake_build check-libomp -} diff --git a/sys-libs/libxcrypt/libxcrypt-4.4.33.ebuild b/sys-libs/libxcrypt/libxcrypt-4.4.33.ebuild index b8e357fe4526..f062f307542a 100644 --- a/sys-libs/libxcrypt/libxcrypt-4.4.33.ebuild +++ b/sys-libs/libxcrypt/libxcrypt-4.4.33.ebuild @@ -20,7 +20,7 @@ fi LICENSE="LGPL-2.1+ public-domain BSD BSD-2" SLOT="0/1" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="+compat split-usr static-libs +system test headers-only" REQUIRED_USE="split-usr? ( system )" RESTRICT="!test? ( test )" diff --git a/sys-libs/llvm-libunwind/Manifest b/sys-libs/llvm-libunwind/Manifest index b1c047b45e06..52a376db7b69 100644 --- a/sys-libs/llvm-libunwind/Manifest +++ b/sys-libs/llvm-libunwind/Manifest @@ -4,9 +4,4 @@ DIST llvm-project-15.0.7.src.tar.xz 110936452 BLAKE2B f3d277e2029157329e5be78b78 DIST llvm-project-15.0.7.src.tar.xz.sig 566 BLAKE2B 47dc8c82d86237b80c6d85f83a6c9a6e9e174cf8e7f367b071e0cd9481d7cd408e991337c5624e07f3f370f26387c814f212808575ed1c1b58404d3e3836b7df SHA512 fc6891b440dd1175eb8df3790590af8d36bc92301660f84744ae15123475aeb900a151e6a8e7998ded27ec4d86871903ad0b89cd61164943054c2e3bc8d8beb2 DIST llvm-project-16.0.0.src.tar.xz 117933476 BLAKE2B fa09cd8f647ce0daf5a7eae9ac03b99594a9b3193b12065f43f9a6731875243f2f5b354136bcadcb31622b246054e94f880eec3dab0bcd6ae89973fa9dca845c SHA512 3f040abc1b03205693824aeff2ee6efb0cff25fe04bd5265141c093f294655a1f3fcda73cab9c57cbed7523c8f186a7e2484afce0792c55e90e3fb80450fabb7 DIST llvm-project-16.0.0.src.tar.xz.sig 566 BLAKE2B daba130aa5662fbf7cc2e7aa8fa6b64f9cb355a72330f7a01a21b86389c6f2f85ae93de19ff08ba3f1cfe2834d9a2b7648bdf659caba3afdb2a0d13984774a54 SHA512 38e2449dce20cfbf813d1a9a68b36807722ac8ebb5ee07360fa215b2de8534d2329d3e41cfc3ed33e59e36714b94a6683a6d8077950bcf0037973492e0820fb3 -DIST llvm-project-16.0.0rc3.src.tar.xz 117914548 BLAKE2B 18ffa35eb73c7cc4626d7b6b7b30aade7171ee2e17fb8d72e79a67185e809f611fefa4cfef17e5cd16822a5a70de2222534dc9f146fc53987eb49ff6a9d98c18 SHA512 d14e5e5ec984a0dc0292a2d27440398b3e32f120c1579517054dcb1a05dbc4ac5f1c6d078a3d6ef8597a71af6f22863868680a972a571839dcd573418b4a4697 -DIST llvm-project-16.0.0rc3.src.tar.xz.sig 566 BLAKE2B 43683d2d7b266a847516f71412bf6236a355462430330fc0da1d624fb8dfbc98bfc982d367baee74d5b4964a9e82e7a4a6ea84bdcff3996d246932f516cced1a SHA512 61adc4dc3eb5a4c11a7f96f9267ff37895e5845a08d48a609a03a2696c1b6bca5af5861a6f28de936c48e6d621bf282170589187f2cb593a912b9078300cf47c -DIST llvm-project-16.0.0rc4.src.tar.xz 117930024 BLAKE2B 55cf032ad3ba52d2af0942fe1c627319ae95b466122d04b24a917c33e29139fae546d92c375715600190c02426b798803ead0ab7a97d86960cf98fca80e8815c SHA512 8d628205c5b93fe6683b67b97b5c7f98bae945bd87cccebcdac00ddd4362108bd171f077a5196242be0fb909c795592b34bfa1c96c50a744fb68f287fd9781cc -DIST llvm-project-16.0.0rc4.src.tar.xz.sig 566 BLAKE2B bfcf39070f32e16cfeae699d95d06f184b1331c3af403340c31cc5a973a3bb1faec0b6342445176cebed5819ddf68e4abfdaa8542ec425b1c822fc8c03c03349 SHA512 2af72e3d771e2361873007a944dcccfe81fbdbc3025a2101e03cbc15f1a173d39ceb94c4ae8966b1d7564bf004ee9a5ffa032e2334c0cf7154aea1090d04b00f -DIST llvm-project-2708869801ae00f4681f6b2d9d69b25b3fce26b6.tar.gz 180523586 BLAKE2B cf918d1e23f922d201a44531c9765b7d8ec2b3b8499ea7954845abcd5fa2687e85b3a34819a583c4f4a6d6e1baa49dbac0b4450cd6b9b322b0f13c88cd7da93c SHA512 18cb00e93d819993a925ae0467d382bc952d82c1eb92dbbb5bb3cdf87043269948670713734ddc3ea4ec50544e54dd11b6747496f7eaa02479374ab9ad075aa5 DIST llvm-project-4bf004e07e2b9d6e04e3f33e1b02628c679de664.tar.gz 180304467 BLAKE2B 6750855453b575eb8fcc861d5b24b144497bba62df9b9292ac586cf340e04b2b58290fe9df6d89142f29b56aa37ddeb3bd11cc3337e4dc985a4487954d1e2ffa SHA512 d8a87064ba0f92967df019e9345222b87cda81852a9599902cedc4a49ec7d9e2175c972b7fa6d19920489c1d309822f9c31c23bdce0376a8d40c71d57bcd5068 diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_rc3.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_rc3.ebuild deleted file mode 100644 index 15f7c2ee9dcb..000000000000 --- a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_rc3.ebuild +++ /dev/null @@ -1,123 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake-multilib flag-o-matic llvm llvm.org python-any-r1 \ - toolchain-funcs - -DESCRIPTION="C++ runtime stack unwinder from LLVM" -HOMEPAGE="https://llvm.org/docs/ExceptionHandling.html" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="0" -KEYWORDS="~loong" -IUSE="+clang debug static-libs test" -REQUIRED_USE="test? ( clang )" -RESTRICT="!test? ( test )" - -RDEPEND=" - !sys-libs/libunwind -" -DEPEND=" - sys-devel/llvm:${LLVM_MAJOR} -" -BDEPEND=" - clang? ( - sys-devel/clang:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) - test? ( - $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]') - ) -" - -LLVM_COMPONENTS=( runtimes libunwind libcxx llvm/cmake cmake ) -LLVM_TEST_COMPONENTS=( libcxxabi llvm/utils/llvm-lit ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version "dev-python/lit[${PYTHON_USEDEP}]" -} - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-any-r1_pkg_setup -} - -multilib_src_configure() { - local libdir=$(get_libdir) - - # https://github.com/llvm/llvm-project/issues/56825 - # also separately bug #863917 - filter-lto - - if use clang; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - strip-unsupported-flags - fi - - # link to compiler-rt - # https://github.com/gentoo/gentoo/pull/21516 - local use_compiler_rt=OFF - [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON - - local mycmakeargs=( - -DCMAKE_CXX_COMPILER_TARGET="${CHOST}" - -DPython3_EXECUTABLE="${PYTHON}" - -DLLVM_ENABLE_RUNTIMES="libunwind" - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - -DLLVM_INCLUDE_TESTS=OFF - -DLIBUNWIND_ENABLE_ASSERTIONS=$(usex debug) - -DLIBUNWIND_ENABLE_STATIC=$(usex static-libs) - -DLIBUNWIND_INCLUDE_TESTS=$(usex test) - -DLIBUNWIND_INSTALL_HEADERS=ON - - # support non-native unwinding; given it's small enough, - # enable it unconditionally - -DLIBUNWIND_ENABLE_CROSS_UNWINDING=ON - - # avoid dependency on libgcc_s if compiler-rt is used - -DLIBUNWIND_USE_COMPILER_RT=${use_compiler_rt} - ) - if use test; then - mycmakeargs+=( - -DLLVM_ENABLE_RUNTIMES="libunwind;libcxxabi;libcxx" - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - -DLIBUNWIND_LIBCXX_PATH="${WORKDIR}/libcxx" - - -DLIBCXXABI_LIBDIR_SUFFIX= - -DLIBCXXABI_ENABLE_SHARED=OFF - -DLIBCXXABI_ENABLE_STATIC=ON - -DLIBCXXABI_USE_LLVM_UNWINDER=ON - -DLIBCXXABI_INCLUDE_TESTS=OFF - - -DLIBCXX_LIBDIR_SUFFIX= - -DLIBCXX_ENABLE_SHARED=OFF - -DLIBCXX_ENABLE_STATIC=ON - -DLIBCXX_CXX_ABI=libcxxabi - -DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=OFF - -DLIBCXX_HAS_MUSL_LIBC=$(usex elibc_musl) - -DLIBCXX_HAS_GCC_S_LIB=OFF - -DLIBCXX_INCLUDE_TESTS=OFF - -DLIBCXX_INCLUDE_BENCHMARKS=OFF - ) - fi - - cmake_src_configure -} - -multilib_src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-unwind -} - -multilib_src_install() { - DESTDIR=${D} cmake_build install-unwind -} diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_rc4.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_rc4.ebuild deleted file mode 100644 index 15f7c2ee9dcb..000000000000 --- a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_rc4.ebuild +++ /dev/null @@ -1,123 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake-multilib flag-o-matic llvm llvm.org python-any-r1 \ - toolchain-funcs - -DESCRIPTION="C++ runtime stack unwinder from LLVM" -HOMEPAGE="https://llvm.org/docs/ExceptionHandling.html" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="0" -KEYWORDS="~loong" -IUSE="+clang debug static-libs test" -REQUIRED_USE="test? ( clang )" -RESTRICT="!test? ( test )" - -RDEPEND=" - !sys-libs/libunwind -" -DEPEND=" - sys-devel/llvm:${LLVM_MAJOR} -" -BDEPEND=" - clang? ( - sys-devel/clang:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) - test? ( - $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]') - ) -" - -LLVM_COMPONENTS=( runtimes libunwind libcxx llvm/cmake cmake ) -LLVM_TEST_COMPONENTS=( libcxxabi llvm/utils/llvm-lit ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version "dev-python/lit[${PYTHON_USEDEP}]" -} - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-any-r1_pkg_setup -} - -multilib_src_configure() { - local libdir=$(get_libdir) - - # https://github.com/llvm/llvm-project/issues/56825 - # also separately bug #863917 - filter-lto - - if use clang; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - strip-unsupported-flags - fi - - # link to compiler-rt - # https://github.com/gentoo/gentoo/pull/21516 - local use_compiler_rt=OFF - [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON - - local mycmakeargs=( - -DCMAKE_CXX_COMPILER_TARGET="${CHOST}" - -DPython3_EXECUTABLE="${PYTHON}" - -DLLVM_ENABLE_RUNTIMES="libunwind" - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - -DLLVM_INCLUDE_TESTS=OFF - -DLIBUNWIND_ENABLE_ASSERTIONS=$(usex debug) - -DLIBUNWIND_ENABLE_STATIC=$(usex static-libs) - -DLIBUNWIND_INCLUDE_TESTS=$(usex test) - -DLIBUNWIND_INSTALL_HEADERS=ON - - # support non-native unwinding; given it's small enough, - # enable it unconditionally - -DLIBUNWIND_ENABLE_CROSS_UNWINDING=ON - - # avoid dependency on libgcc_s if compiler-rt is used - -DLIBUNWIND_USE_COMPILER_RT=${use_compiler_rt} - ) - if use test; then - mycmakeargs+=( - -DLLVM_ENABLE_RUNTIMES="libunwind;libcxxabi;libcxx" - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - -DLIBUNWIND_LIBCXX_PATH="${WORKDIR}/libcxx" - - -DLIBCXXABI_LIBDIR_SUFFIX= - -DLIBCXXABI_ENABLE_SHARED=OFF - -DLIBCXXABI_ENABLE_STATIC=ON - -DLIBCXXABI_USE_LLVM_UNWINDER=ON - -DLIBCXXABI_INCLUDE_TESTS=OFF - - -DLIBCXX_LIBDIR_SUFFIX= - -DLIBCXX_ENABLE_SHARED=OFF - -DLIBCXX_ENABLE_STATIC=ON - -DLIBCXX_CXX_ABI=libcxxabi - -DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=OFF - -DLIBCXX_HAS_MUSL_LIBC=$(usex elibc_musl) - -DLIBCXX_HAS_GCC_S_LIB=OFF - -DLIBCXX_INCLUDE_TESTS=OFF - -DLIBCXX_INCLUDE_BENCHMARKS=OFF - ) - fi - - cmake_src_configure -} - -multilib_src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-unwind -} - -multilib_src_install() { - DESTDIR=${D} cmake_build install-unwind -} diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-17.0.0_pre20230304.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-17.0.0_pre20230304.ebuild deleted file mode 100644 index 6ffa6c4f81b8..000000000000 --- a/sys-libs/llvm-libunwind/llvm-libunwind-17.0.0_pre20230304.ebuild +++ /dev/null @@ -1,123 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit cmake-multilib flag-o-matic llvm llvm.org python-any-r1 \ - toolchain-funcs - -DESCRIPTION="C++ runtime stack unwinder from LLVM" -HOMEPAGE="https://llvm.org/docs/ExceptionHandling.html" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="0" -KEYWORDS="" -IUSE="+clang debug static-libs test" -REQUIRED_USE="test? ( clang )" -RESTRICT="!test? ( test )" - -RDEPEND=" - !sys-libs/libunwind -" -DEPEND=" - sys-devel/llvm:${LLVM_MAJOR} -" -BDEPEND=" - clang? ( - sys-devel/clang:${LLVM_MAJOR} - ) - !test? ( - ${PYTHON_DEPS} - ) - test? ( - $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]') - ) -" - -LLVM_COMPONENTS=( runtimes libunwind libcxx llvm/cmake cmake ) -LLVM_TEST_COMPONENTS=( libcxxabi llvm/utils/llvm-lit ) -llvm.org_set_globals - -python_check_deps() { - use test || return 0 - python_has_version "dev-python/lit[${PYTHON_USEDEP}]" -} - -pkg_setup() { - LLVM_MAX_SLOT=${LLVM_MAJOR} llvm_pkg_setup - python-any-r1_pkg_setup -} - -multilib_src_configure() { - local libdir=$(get_libdir) - - # https://github.com/llvm/llvm-project/issues/56825 - # also separately bug #863917 - filter-lto - - if use clang; then - local -x CC=${CHOST}-clang - local -x CXX=${CHOST}-clang++ - strip-unsupported-flags - fi - - # link to compiler-rt - # https://github.com/gentoo/gentoo/pull/21516 - local use_compiler_rt=OFF - [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON - - local mycmakeargs=( - -DCMAKE_CXX_COMPILER_TARGET="${CHOST}" - -DPython3_EXECUTABLE="${PYTHON}" - -DLLVM_ENABLE_RUNTIMES="libunwind" - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - -DLLVM_INCLUDE_TESTS=OFF - -DLIBUNWIND_ENABLE_ASSERTIONS=$(usex debug) - -DLIBUNWIND_ENABLE_STATIC=$(usex static-libs) - -DLIBUNWIND_INCLUDE_TESTS=$(usex test) - -DLIBUNWIND_INSTALL_HEADERS=ON - - # support non-native unwinding; given it's small enough, - # enable it unconditionally - -DLIBUNWIND_ENABLE_CROSS_UNWINDING=ON - - # avoid dependency on libgcc_s if compiler-rt is used - -DLIBUNWIND_USE_COMPILER_RT=${use_compiler_rt} - ) - if use test; then - mycmakeargs+=( - -DLLVM_ENABLE_RUNTIMES="libunwind;libcxxabi;libcxx" - -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="$(get_lit_flags)" - -DLIBUNWIND_LIBCXX_PATH="${WORKDIR}/libcxx" - - -DLIBCXXABI_LIBDIR_SUFFIX= - -DLIBCXXABI_ENABLE_SHARED=OFF - -DLIBCXXABI_ENABLE_STATIC=ON - -DLIBCXXABI_USE_LLVM_UNWINDER=ON - -DLIBCXXABI_INCLUDE_TESTS=OFF - - -DLIBCXX_LIBDIR_SUFFIX= - -DLIBCXX_ENABLE_SHARED=OFF - -DLIBCXX_ENABLE_STATIC=ON - -DLIBCXX_CXX_ABI=libcxxabi - -DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=OFF - -DLIBCXX_HAS_MUSL_LIBC=$(usex elibc_musl) - -DLIBCXX_HAS_GCC_S_LIB=OFF - -DLIBCXX_INCLUDE_TESTS=OFF - -DLIBCXX_INCLUDE_BENCHMARKS=OFF - ) - fi - - cmake_src_configure -} - -multilib_src_test() { - local -x LIT_PRESERVES_TMP=1 - cmake_build check-unwind -} - -multilib_src_install() { - DESTDIR=${D} cmake_build install-unwind -} diff --git a/sys-power/Manifest.gz b/sys-power/Manifest.gz index 7210a5f0f487..a22f1bcf23ba 100644 Binary files a/sys-power/Manifest.gz and b/sys-power/Manifest.gz differ diff --git a/sys-power/power-profiles-daemon/files/power-profiles-daemon.initd b/sys-power/power-profiles-daemon/files/power-profiles-daemon.initd new file mode 100644 index 000000000000..d16735e930f8 --- /dev/null +++ b/sys-power/power-profiles-daemon/files/power-profiles-daemon.initd @@ -0,0 +1,14 @@ +#!/sbin/openrc-run +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +name="power-profiles-daemon" +description="Makes power profiles handling available over D-Bus" + +pidfile="/run/power-profiles-daemon.pid" +command="/usr/libexec/power-profiles-daemon" +command_background=true + +start_pre() { + checkpath -d /var/lib/power-profiles-daemon +} diff --git a/sys-power/power-profiles-daemon/power-profiles-daemon-0.12-r1.ebuild b/sys-power/power-profiles-daemon/power-profiles-daemon-0.12-r1.ebuild new file mode 100644 index 000000000000..84451d51dd70 --- /dev/null +++ b/sys-power/power-profiles-daemon/power-profiles-daemon-0.12-r1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit meson python-single-r1 systemd + +DESCRIPTION="Makes power profiles handling available over D-Bus" +HOMEPAGE="https://gitlab.freedesktop.org/hadess/power-profiles-daemon/" +SRC_URI="https://gitlab.freedesktop.org/hadess/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="gtk-doc test" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RESTRICT="!test? ( test )" + +RDEPEND="${PYTHON_DEPS} + $(python_gen_cond_dep 'dev-python/pygobject:3[${PYTHON_USEDEP}]') + dev-libs/glib:2 + >=dev-libs/libgudev-234 + >=sys-auth/polkit-0.114 + sys-power/upower +" +DEPEND="${RDEPEND}" +BDEPEND=" + gtk-doc? ( dev-util/gi-docgen ) + test? ( + dev-util/umockdev + $(python_gen_cond_dep ' + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-dbusmock[${PYTHON_USEDEP}] + ') + ) +" + +python_check_deps() { + if use test; then + python_has_version "dev-python/python-dbusmock[${PYTHON_USEDEP}]" && + python_has_version "dev-python/pygobject:3[${PYTHON_USEDEP}]" + else + python_has_version "dev-python/pygobject:3[${PYTHON_USEDEP}]" + fi +} + +src_configure() { + local emesonargs=( + -Dsystemdsystemunitdir="$(systemd_get_systemunitdir)" + $(meson_use gtk-doc gtk_doc) + $(meson_use test tests) + ) + meson_src_configure +} + +src_install() { + meson_src_install + python_fix_shebang "${D}"/usr/bin/powerprofilesctl + newinitd "${FILESDIR}/power-profiles-daemon.initd" power-profiles-daemon +} + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + if systemd_is_booted; then + elog "You need to enable the service:" + elog "# systemctl enable ${PN}" + else + elog "# rc-update add ${PN} default" + fi + fi +} diff --git a/sys-power/thermald/thermald-2.5.1.ebuild b/sys-power/thermald/thermald-2.5.1.ebuild index 97ae4f71f839..bcc7f1b46b8a 100644 --- a/sys-power/thermald/thermald-2.5.1.ebuild +++ b/sys-power/thermald/thermald-2.5.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools out-of-source systemd +inherit autotools linux-info out-of-source systemd DESCRIPTION="Thermal daemon for Intel architectures" HOMEPAGE="https://github.com/intel/thermal_daemon" @@ -28,6 +28,8 @@ DEPEND="${RDEPEND} S=${WORKDIR}/thermal_daemon-${PV} DOCS=( thermal_daemon_usage.txt README.txt ) +CONFIG_CHECK="~PERF_EVENTS_INTEL_RAPL ~X86_INTEL_PSTATE ~INTEL_POWERCLAMP ~INT340X_THERMAL ~ACPI_THERMAL_REL ~INT3406_THERMAL" + src_prepare() { sed -i -e "/group=/s/power/wheel/g" \ data/org.freedesktop.thermald.conf || die diff --git a/sys-power/thermald/thermald-2.5.2.ebuild b/sys-power/thermald/thermald-2.5.2.ebuild index b5ef42067b32..a4a0727b15bf 100644 --- a/sys-power/thermald/thermald-2.5.2.ebuild +++ b/sys-power/thermald/thermald-2.5.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools out-of-source systemd +inherit autotools linux-info out-of-source systemd DESCRIPTION="Thermal daemon for Intel architectures" HOMEPAGE="https://github.com/intel/thermal_daemon" @@ -28,6 +28,8 @@ DEPEND="${RDEPEND} S=${WORKDIR}/thermal_daemon-${PV} DOCS=( thermal_daemon_usage.txt README.txt ) +CONFIG_CHECK="~PERF_EVENTS_INTEL_RAPL ~X86_INTEL_PSTATE ~INTEL_POWERCLAMP ~INT340X_THERMAL ~ACPI_THERMAL_REL ~INT3406_THERMAL" + src_prepare() { sed -i -e "/group=/s/power/wheel/g" \ data/org.freedesktop.thermald.conf || die diff --git a/virtual/Manifest.gz b/virtual/Manifest.gz index cff11cbca0a1..b6d7fb4ca0c5 100644 Binary files a/virtual/Manifest.gz and b/virtual/Manifest.gz differ diff --git a/virtual/libcrypt/libcrypt-2-r1.ebuild b/virtual/libcrypt/libcrypt-2-r1.ebuild index ed66eaa1a4fd..7a5ad71cbdf8 100644 --- a/virtual/libcrypt/libcrypt-2-r1.ebuild +++ b/virtual/libcrypt/libcrypt-2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020-2022 Gentoo Authors +# Copyright 2020-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -8,7 +8,7 @@ inherit multilib-build DESCRIPTION="Virtual for libcrypt.so" SLOT="0/2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="static-libs" RDEPEND=" diff --git a/virtual/rust/rust-1.68.0.ebuild b/virtual/rust/rust-1.68.0.ebuild new file mode 100644 index 000000000000..ae12ed9a2d0f --- /dev/null +++ b/virtual/rust/rust-1.68.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit multilib-build + +DESCRIPTION="Virtual for Rust language compiler" + +LICENSE="" + +# adjust when rust upstream bumps internal llvm +# we do not allow multiple llvm versions in dev-lang/rust for +# neither system nor bundled, so we just hardcode it here. +SLOT="0/llvm-15" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="rustfmt" + +BDEPEND="" +RDEPEND="|| ( + ~dev-lang/rust-${PV}[rustfmt?,${MULTILIB_USEDEP}] + ~dev-lang/rust-bin-${PV}[rustfmt?,${MULTILIB_USEDEP}] +)" diff --git a/www-apps/Manifest.gz b/www-apps/Manifest.gz index ac89037d9d99..853bad77b049 100644 Binary files a/www-apps/Manifest.gz and b/www-apps/Manifest.gz differ diff --git a/www-apps/grafana-bin/Manifest b/www-apps/grafana-bin/Manifest index 850947d7d063..4dce2f7eaa7f 100644 --- a/www-apps/grafana-bin/Manifest +++ b/www-apps/grafana-bin/Manifest @@ -1,7 +1,5 @@ -DIST grafana-bin-9.2.10.tar.gz 97715216 BLAKE2B c23fb535dca47f8a6d7da0900abcdcd6844d4e0c834b25dcb2bd3e820b5245b395e678a3748d362aa8a02d6128d4ae93b4f63f348dd74a39be6b58ef67008ae1 SHA512 71bb0c34303e80cef364f24d6f7bc55f122a7a9619c46d848d2dd57cc93e172b68db4233dbf5ff95fe32c7d1314acf09b1f78d4414a7dd20176bf5a2dccc9399 -DIST grafana-bin-9.2.4.tar.gz 96905343 BLAKE2B bb4f55e166f01123cbfcd1a940a4a42736195f208578889393d66aad35a42726a95908ad793f84769b5483e3bd0de861c5ce7f1375506d2a616f78c836d263e1 SHA512 094d1d131f22f63d8e96a1a61b52440910cb82a9790b502b30375901fcaf48b8b45db52040c9e43667c96e710266f2df77c0ce6542755656e28f84668210f4e9 -DIST grafana-bin-9.2.7.tar.gz 97192376 BLAKE2B 6af296375aee559367de9e7e2db53d1b1a96c753853eda21d00367c960b8927e794a9bccaa364c5675a6abd10118485467f4d9a5b7ff17fb8a13015a4db050db SHA512 9ed17e589eecf1c10716c0a9b7cb60259ec3ef98695882475509dd332d6222a44c6886d044992eede93638b7c9826f76f0390fc0808bc85e739825106b3a7762 -DIST grafana-bin-9.2.8.tar.gz 97680178 BLAKE2B 1d3c149f6f0f28e2600c10d673187ea200fbe8e6111a2314b83e0a41ed3647d6b7516fe44688ebaf348d55e2dd77ed4acf6ade98e8bea4a92f2cbeac7b523b0c SHA512 b0cc3e89ee5b93adbd2b6bbcaa828a4e8da75d28a8f230eefda42716ebae57f880a482e52708d506152593c0e9ad554bbc56bb72c9d6265f9166b673bfbd5077 DIST grafana-bin-9.3.0.tar.gz 88847005 BLAKE2B 4c37dc077b7f9fb8f9256a2a85094eef5ae2dabe693d039b7c5509ec2662ec544d307dc1cf0043301fb4c3525107bddfac0a7f7a67f0efb8b333936c1b96192d SHA512 1489d3f948259dd3db6403e95f176fea664cb5bfc83a6f22e57ffbe075cc07257a463c4b1d1fd8aa94fbad5473b29608f0c3fc6fdf0c08bcb72f3beeff5163c7 DIST grafana-bin-9.3.2.tar.gz 89322650 BLAKE2B b9256b6468aa4eff1d77a7bce1f701ab61a372baf2f239572921b04a5624933e57c881035de9a0a86a5ff17b942e2965a7807ae2c183a60cfabb4bd4bf546acb SHA512 9d13624f728b5f5845c9780372b9334d81faadf03b47034b0de708fe87e50db3daff95f61e5649548cf6a4181253cc39f6d523dde5651833e72df42fe3577f16 DIST grafana-bin-9.3.6.tar.gz 89397564 BLAKE2B 1095be4f4fd4cedb70ddc0500b7ec84466d6db5a9be8154e5675fa47cdef0082cd57f5c03e0035f84989e639df2f30ced644c270b0d1189d7a00c54f5dd8ca66 SHA512 2619a6fef8bfaafdd45469198b7b7542def77d795e9c58a03a0308cce1e21db0dda936966a098e750304e6cc5a3576ba059d13aad0fd5f59ca24cf3074dba921 +DIST grafana-bin-9.3.8.tar.gz 69932750 BLAKE2B 57c1ad7910145f81b552cdb68fb835bfa0de45c73f69cdff9fdc6565827d73c957513bb02aba31871895d641457c8dc68e19689af4b476ff659d1ab2b84d67dd SHA512 4e321d007011452dac57daf0dfad55430f46b96f04be7d4f779809900c2dd81b3817123419c9570c84eb9496e3bd38f73af4a63a6c00e95a9d6c252afeda1ccf +DIST grafana-bin-9.4.3.tar.gz 83780585 BLAKE2B b8b609bb701b63262e0b70e551b608e4923721664a40ce4eb91a50c60f0978f93c53dd05d5e0e7758ecd7a38f3a459cf695175912c5806f6cfda3e4109114c7e SHA512 bd315ab4ddd52ad7d9cbf81bce9d04fb00fdf418d2148c84385a47649b76df3e2f36c5664692bfe99038b6f4a280176152d508627f57b7f4402767c03f73f7a6 diff --git a/www-apps/grafana-bin/files/grafana.initd2 b/www-apps/grafana-bin/files/grafana.initd2 new file mode 100644 index 000000000000..1c8f6b2af56f --- /dev/null +++ b/www-apps/grafana-bin/files/grafana.initd2 @@ -0,0 +1,36 @@ +#!/sbin/openrc-run +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +GRAFANA_USER="${GRAFANA_USER:-"grafana"}" +GRAFANA_GROUP="${GRAFANA_GROUP:-"grafana"}" +GRAFANA_CONFIGFILE="${GRAFANA_CONFIGFILE:-"/etc/grafana/${RC_SVCNAME}.ini"}" +GRAFANA_DATADIR="${GRAFANA_DATADIR:-"/var/lib/grafana"}" +GRAFANA_LOGDIR="${GRAFANA_LOGDIR:-"/var/log/grafana"}" +GRAFANA_PIDFILE="${GRAFANA_PIDFILE:-"/run/${RC_SVCNAME}.pid"}" +GRAFANA_SSDARGS=${GRAFANA_SSDARGS:-"--wait 1000"} +GRAFANA_TERMTIMEOUT=${GRFANA_TERMTIMEOUT:-"TERM/60/KILL/5"} + +command="/usr/bin/grafana" +command_args="server -homepath=/usr/share/grafana" +command_args="${command_args} -config=\"${GRAFANA_CONFIGFILE}\"" +command_args="${command_args} cfg:default.paths.data=\"${GRAFANA_DATADIR}\"" +command_args="${command_args} cfg:default.paths.logs=\"${GRAFANA_LOGDIR}\"" +command_background="yes" +pidfile="${GRAFANA_PIDFILE}" +retry="${GRAFANA_TERMTIMEOUT}" +start_stop_daemon_args="--user ${GRAFANA_USER}:${GRAFANA_GROUP} ${GRAFANA_SSDARGS}" + +description="Grafana server, feature rich metrics dashboard and graph editor." + +required_files="${GRAFANA_CONFIGFILE}" + +depend() { + need localmount +} + +start_pre() { + checkpath -d -o "${GRAFANA_USER}:${GRAFANA_GROUP}" -m750 "${GRAFANA_DATADIR}" || return 1 + checkpath -d -o "${GRAFANA_USER}:${GRAFANA_GROUP}" -m750 "${GRAFANA_DATADIR}/dashboards" || return 1 + checkpath -d -o "${GRAFANA_USER}:${GRAFANA_GROUP}" -m750 "${GRAFANA_DATADIR}/plugins" || return 1 +} diff --git a/www-apps/grafana-bin/grafana-bin-9.2.4.ebuild b/www-apps/grafana-bin/grafana-bin-9.2.4.ebuild deleted file mode 100644 index 0143a5740601..000000000000 --- a/www-apps/grafana-bin/grafana-bin-9.2.4.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit systemd - -MY_PN=${PN/-bin/} -MY_PV=${PV/_beta/-beta} -S=${WORKDIR}/${MY_PN}-${MY_PV} - -DESCRIPTION="Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB" -HOMEPAGE="https://grafana.org" -SRC_URI="https://dl.grafana.com/oss/release/grafana-${PV}.linux-amd64.tar.gz -> ${P}.tar.gz" - -RESTRICT="mirror" -LICENSE="AGPL-3" -SLOT="0" -KEYWORDS="-* ~amd64" - -DEPEND="acct-group/grafana - acct-user/grafana" -RDEPEND="${DEPEND} - media-libs/fontconfig - sys-libs/glibc" - -QA_PREBUILT="usr/bin/grafana-*" -QA_PRESTRIPPED=${QA_PREBUILT} - -src_install() { - keepdir /etc/grafana - insinto /etc/grafana - newins "${S}"/conf/sample.ini grafana.ini - rm "${S}"/conf/sample.ini || die - - # Frontend assets - insinto /usr/share/${MY_PN} - doins -r public conf - - dobin bin/grafana-cli - dobin bin/grafana-server - - newconfd "${FILESDIR}"/grafana-r1.confd grafana - newinitd "${FILESDIR}"/grafana.initd grafana - systemd_newunit "${FILESDIR}"/grafana.service grafana.service - - keepdir /var/{lib,log}/grafana - keepdir /var/lib/grafana/{dashboards,plugins} - fowners grafana:grafana /var/{lib,log}/grafana - fowners grafana:grafana /var/lib/grafana/{dashboards,plugins} - fperms 0750 /var/{lib,log}/grafana - fperms 0750 /var/lib/grafana/{dashboards,plugins} -} - -pkg_postinst() { - if [[ -z "${REPLACING_VERSIONS}" ]]; then - # This is a new installation - - elog "${PN} has built-in log rotation. Please see [log.file] section of" - elog "/etc/grafana/grafana.ini for related settings." - elog - elog "You may add your own custom configuration for app-admin/logrotate if you" - elog "wish to use external rotation of logs. In this case, you also need to make" - elog "sure the built-in rotation is turned off." - fi -} diff --git a/www-apps/grafana-bin/grafana-bin-9.2.7.ebuild b/www-apps/grafana-bin/grafana-bin-9.2.7.ebuild deleted file mode 100644 index 0143a5740601..000000000000 --- a/www-apps/grafana-bin/grafana-bin-9.2.7.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit systemd - -MY_PN=${PN/-bin/} -MY_PV=${PV/_beta/-beta} -S=${WORKDIR}/${MY_PN}-${MY_PV} - -DESCRIPTION="Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB" -HOMEPAGE="https://grafana.org" -SRC_URI="https://dl.grafana.com/oss/release/grafana-${PV}.linux-amd64.tar.gz -> ${P}.tar.gz" - -RESTRICT="mirror" -LICENSE="AGPL-3" -SLOT="0" -KEYWORDS="-* ~amd64" - -DEPEND="acct-group/grafana - acct-user/grafana" -RDEPEND="${DEPEND} - media-libs/fontconfig - sys-libs/glibc" - -QA_PREBUILT="usr/bin/grafana-*" -QA_PRESTRIPPED=${QA_PREBUILT} - -src_install() { - keepdir /etc/grafana - insinto /etc/grafana - newins "${S}"/conf/sample.ini grafana.ini - rm "${S}"/conf/sample.ini || die - - # Frontend assets - insinto /usr/share/${MY_PN} - doins -r public conf - - dobin bin/grafana-cli - dobin bin/grafana-server - - newconfd "${FILESDIR}"/grafana-r1.confd grafana - newinitd "${FILESDIR}"/grafana.initd grafana - systemd_newunit "${FILESDIR}"/grafana.service grafana.service - - keepdir /var/{lib,log}/grafana - keepdir /var/lib/grafana/{dashboards,plugins} - fowners grafana:grafana /var/{lib,log}/grafana - fowners grafana:grafana /var/lib/grafana/{dashboards,plugins} - fperms 0750 /var/{lib,log}/grafana - fperms 0750 /var/lib/grafana/{dashboards,plugins} -} - -pkg_postinst() { - if [[ -z "${REPLACING_VERSIONS}" ]]; then - # This is a new installation - - elog "${PN} has built-in log rotation. Please see [log.file] section of" - elog "/etc/grafana/grafana.ini for related settings." - elog - elog "You may add your own custom configuration for app-admin/logrotate if you" - elog "wish to use external rotation of logs. In this case, you also need to make" - elog "sure the built-in rotation is turned off." - fi -} diff --git a/www-apps/grafana-bin/grafana-bin-9.2.8.ebuild b/www-apps/grafana-bin/grafana-bin-9.3.8-r1.ebuild similarity index 96% rename from www-apps/grafana-bin/grafana-bin-9.2.8.ebuild rename to www-apps/grafana-bin/grafana-bin-9.3.8-r1.ebuild index 0e8aae35965c..ed079e9887f5 100644 --- a/www-apps/grafana-bin/grafana-bin-9.2.8.ebuild +++ b/www-apps/grafana-bin/grafana-bin-9.3.8-r1.ebuild @@ -38,10 +38,11 @@ src_install() { doins -r public conf dobin bin/grafana-cli + dobin bin/grafana dobin bin/grafana-server newconfd "${FILESDIR}"/grafana-r1.confd grafana - newinitd "${FILESDIR}"/grafana.initd grafana + newinitd "${FILESDIR}"/grafana.initd2 grafana systemd_newunit "${FILESDIR}"/grafana.service grafana.service keepdir /var/{lib,log}/grafana diff --git a/www-apps/grafana-bin/grafana-bin-9.2.10.ebuild b/www-apps/grafana-bin/grafana-bin-9.4.3-r1.ebuild similarity index 96% rename from www-apps/grafana-bin/grafana-bin-9.2.10.ebuild rename to www-apps/grafana-bin/grafana-bin-9.4.3-r1.ebuild index 0e8aae35965c..ed079e9887f5 100644 --- a/www-apps/grafana-bin/grafana-bin-9.2.10.ebuild +++ b/www-apps/grafana-bin/grafana-bin-9.4.3-r1.ebuild @@ -38,10 +38,11 @@ src_install() { doins -r public conf dobin bin/grafana-cli + dobin bin/grafana dobin bin/grafana-server newconfd "${FILESDIR}"/grafana-r1.confd grafana - newinitd "${FILESDIR}"/grafana.initd grafana + newinitd "${FILESDIR}"/grafana.initd2 grafana systemd_newunit "${FILESDIR}"/grafana.service grafana.service keepdir /var/{lib,log}/grafana diff --git a/www-apps/hugo/Manifest b/www-apps/hugo/Manifest index 549c73109538..82e456ea2c2a 100644 --- a/www-apps/hugo/Manifest +++ b/www-apps/hugo/Manifest @@ -1,2 +1,4 @@ DIST hugo-0.110.0-vendor.tar.xz 5792924 BLAKE2B a70283d9b5764c3340591e40d6472c0f14b029e5bed086c4f294951e00a45041a869868884328ea39b75caccf8e2089250a98502a3ec38c730989a77e55c976b SHA512 c6a0cd262934b6434eac7122a0ec257ca4eec1611b938585e6ee22d56991632fd5e52c061d552772e0e8bd10e13c23aecc461d52c23dff009e8e522b651642da DIST hugo-0.110.0.tar.gz 29055652 BLAKE2B d8c9e04c3141f02eeea1a951ba92c552148b604817e60041a3b944ccea37565ab8a6c3a47300877f5497d4575df4cdf598627d8dea65a1c935073b7bd8e99b70 SHA512 b64a6fa50201c0d95bf49fd0193138123163e0dad077491cc4c3e0d851de03ed2cd2e81482c1e6291d9a10d2d99f89c9dbbcfaafcd17f702906901dc6f28b3de +DIST hugo-0.111.3-vendor.tar.xz 5812152 BLAKE2B c3daccdd3e6841df3a45c4fb7c82cf5ffba0a9267881733898c54814fbc0707f0cb110604de1a0604d986bc8668347b71eb9b845217a6c1a5764a776282caea3 SHA512 ba08add570db8d8f92a31474252470f3b6440884c9d595a8bd128a0c8f9ce066553e28531c331ddc51e8f665acb555ec8f31525ceda94c5542be229b80b1a274 +DIST hugo-0.111.3.tar.gz 29191902 BLAKE2B a5c4bf3f53579b7870e5a0bed247feff016d3a06c0683949ecada5083db07ee2108c712b41b1f15edd42f0a77d5649657d3fe76d8704a8a7668911a56b045e3b SHA512 fd9fa9138cf714572d50328abc332edcdaaa3d45440914705d0d2119fd2a062c8df59732d9f5c23f540076e0c5a4104ac1d332f8633d93ab1479f82dd5ecce39 diff --git a/www-apps/hugo/hugo-0.110.0-r1.ebuild b/www-apps/hugo/hugo-0.110.0-r2.ebuild similarity index 93% rename from www-apps/hugo/hugo-0.110.0-r1.ebuild rename to www-apps/hugo/hugo-0.110.0-r2.ebuild index 2844ad2eecb8..68c6effbbe55 100644 --- a/www-apps/hugo/hugo-0.110.0-r1.ebuild +++ b/www-apps/hugo/hugo-0.110.0-r2.ebuild @@ -48,7 +48,7 @@ src_configure() { export CGO_CPPFLAGS="${CPPFLAGS}" export CGO_CXXFLAGS="${CXXFLAGS}" export CGO_LDFLAGS="${LDFLAGS}" - export EGO_BUILD_FLAGS="$(usev sass "-tags extended")" + export MY_BUILD_FLAGS="$(usev sass "-tags extended")" default } @@ -56,7 +56,7 @@ src_configure() { src_compile() { mkdir -pv bin || die ego build -ldflags "-X github.com/gohugoio/hugo/common/hugo.vendorInfo=gentoo:${PVR}" \ - -o "${S}/bin/hugo" + ${MY_BUILD_FLAGS} -o "${S}/bin/hugo" bin/hugo gen man --dir man || die @@ -71,7 +71,7 @@ src_compile() { } src_test() { - ego test "./..." + ego test "./..." ${MY_BUILD_FLAGS} } src_install() { diff --git a/www-apps/hugo/hugo-0.111.3.ebuild b/www-apps/hugo/hugo-0.111.3.ebuild new file mode 100644 index 000000000000..7eb297bafecd --- /dev/null +++ b/www-apps/hugo/hugo-0.111.3.ebuild @@ -0,0 +1,92 @@ +# Copyright 2018-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module bash-completion-r1 + +DESCRIPTION="Fast static HTML and CSS website generator" +HOMEPAGE="https://gohugo.io https://github.com/gohugoio/hugo" +SRC_URI=" + https://github.com/gohugoio/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://tastytea.de/files/gentoo/${P}-vendor.tar.xz +" + +# NOTE: To create the vendor tarball, run: +# `go mod vendor && cd .. && tar -caf ${P}-vendor.tar.xz ${P}/vendor` + +LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86" +IUSE="doc +sass test" + +BDEPEND=" + >=dev-lang/go-1.18 + test? ( + dev-python/docutils + dev-ruby/asciidoctor + virtual/pandoc + ) +" +RDEPEND=" + >=media-libs/libwebp-1.2.3-r1:= + sass? ( dev-libs/libsass:= ) +" +DEPEND="${RDEPEND}" + +RESTRICT="!test? ( test )" + +PATCHES=( + "${FILESDIR}"/${PN}-0.96.0-unbundle-libwebp-and-libsass.patch + "${FILESDIR}"/${PN}-0.110.0-skip-some-tests.patch + "${FILESDIR}"/${PN}-0.99.1-test-timeout.patch +) + +src_configure() { + export CGO_ENABLED=1 + export CGO_CFLAGS="${CFLAGS}" + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export MY_BUILD_FLAGS="$(usev sass "-tags extended")" + + default +} + +src_compile() { + mkdir -pv bin || die + ego build -ldflags "-X github.com/gohugoio/hugo/common/hugo.vendorInfo=gentoo:${PVR}" \ + ${MY_BUILD_FLAGS} -o "${S}/bin/hugo" + + bin/hugo gen man --dir man || die + + mkdir -pv completions || die + bin/hugo completion bash > completions/hugo || die + bin/hugo completion fish > completions/hugo.fish || die + bin/hugo completion zsh > completions/_hugo || die + + if use doc ; then + bin/hugo gen doc --dir doc || die + fi +} + +src_test() { + ego test "./..." ${MY_BUILD_FLAGS} +} + +src_install() { + dobin bin/* + doman man/* + + dobashcomp completions/${PN} + + insinto /usr/share/fish/vendor_completions.d + doins completions/${PN}.fish + + insinto /usr/share/zsh/site-functions + doins completions/_${PN} + + if use doc ; then + dodoc -r doc/* + fi +} diff --git a/www-client/Manifest.gz b/www-client/Manifest.gz index 88047ab9a3b7..1c280405b812 100644 Binary files a/www-client/Manifest.gz and b/www-client/Manifest.gz differ diff --git a/www-client/qutebrowser/Manifest b/www-client/qutebrowser/Manifest index ec0594f9451b..7644b9878438 100644 --- a/www-client/qutebrowser/Manifest +++ b/www-client/qutebrowser/Manifest @@ -1,2 +1 @@ -DIST qutebrowser-2.5.2.tar.gz 6114611 BLAKE2B 5f56e1e2c390bb2f36c95e25a2dae9e5203020ff6b2cf1e13092cf493efa950b24b8ff8f23af6eed93ca8b316e30f86715ecd2f2eb28c341210de0b25c9f67ad SHA512 4751ea1a5b1776f085fcd1f9ab5ff805155fca34d0272ba8eb6574f9074257929c3fb5b50c9053a522bfb346aee1a2551b58cf933c6ff7c5c84fd10559ec36fc DIST qutebrowser-2.5.4.tar.gz 6117674 BLAKE2B d8dedf57ac064ce1a3d2e4e854a0064dfe567260cadfcdf129c2a2bcdbd26aaa21a569e3f69300c75e5dfb363b62173ac6e5f11e4bcd4a5c8dd72697b4caa5c3 SHA512 1c500cda921a273dee14b1e0808786bbfd2ce53ea9b4d5114be9abdacbefa5d3c7580d2995ad0100f597b9bf54addf4c98dbd4b924d9e8d3d08fe30309e44c3e diff --git a/www-client/qutebrowser/files/qutebrowser-2.5.2-dictcli.patch b/www-client/qutebrowser/files/qutebrowser-2.5.2-dictcli.patch deleted file mode 100644 index cd179a5d0236..000000000000 --- a/www-client/qutebrowser/files/qutebrowser-2.5.2-dictcli.patch +++ /dev/null @@ -1,17 +0,0 @@ -https://github.com/qutebrowser/qutebrowser/commit/f277876ce0817f7d05ca94b05beb644482027f85 -From: Florian Bruhin -Date: Sat, 19 Nov 2022 16:00:15 +0100 -Subject: [PATCH] dictcli: Switch from master to main - -Fixes #7481 ---- a/scripts/dictcli.py -+++ b/scripts/dictcli.py -@@ -40,7 +40,7 @@ - from qutebrowser.utils import standarddir - - --API_URL = 'https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git/+/master/' -+API_URL = 'https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git/+/main/' - - - class InvalidLanguageError(Exception): diff --git a/www-client/qutebrowser/qutebrowser-2.5.2-r1.ebuild b/www-client/qutebrowser/qutebrowser-2.5.2-r1.ebuild deleted file mode 100644 index 1e0b94274b51..000000000000 --- a/www-client/qutebrowser/qutebrowser-2.5.2-r1.ebuild +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_SINGLE_IMPL=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) -inherit distutils-r1 xdg - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/qutebrowser/qutebrowser.git" -else - SRC_URI="https://github.com/qutebrowser/qutebrowser/releases/download/v${PV}/${P}.tar.gz" - KEYWORDS="amd64 ~arm64 ~x86" -fi - -DESCRIPTION="Keyboard-driven, vim-like browser based on PyQt5 and QtWebEngine" -HOMEPAGE="https://www.qutebrowser.org/" - -LICENSE="GPL-3+" -SLOT="0" -IUSE="+adblock pdf widevine" - -RDEPEND=" - dev-qt/qtcore:5[icu] - dev-qt/qtgui:5[png] - $(python_gen_cond_dep ' - dev-python/colorama[${PYTHON_USEDEP}] - >=dev-python/jinja-3.0.2[${PYTHON_USEDEP}] - >=dev-python/markupsafe-2.0.1[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - dev-python/PyQt5[${PYTHON_USEDEP},dbus,declarative,multimedia,gui,network,opengl,printsupport,sql,widgets] - dev-python/PyQtWebEngine[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP},libyaml(+)] - dev-python/zipp[${PYTHON_USEDEP}] - adblock? ( dev-python/adblock[${PYTHON_USEDEP}] )') - pdf? ( Install ubuntu folder version Install dracula folder version Install nord folder version - Install colorshceme version for KDE plasma (folder color follow the colorscheme) + Install dynamic color version for KDE plasma (folder color follows the colorscheme) Hardlink duplicate icons to greatly reduce installation size diff --git a/x11-wm/Manifest.gz b/x11-wm/Manifest.gz index 97a8b4e71eda..2788929458ab 100644 Binary files a/x11-wm/Manifest.gz and b/x11-wm/Manifest.gz differ diff --git a/x11-wm/mutter/Manifest b/x11-wm/mutter/Manifest index 8f6b40f3f400..536a834288d1 100644 --- a/x11-wm/mutter/Manifest +++ b/x11-wm/mutter/Manifest @@ -1,3 +1,4 @@ DIST mutter-43.2.tar.xz 2781032 BLAKE2B cb4fc05ae9b53029649e9c80c8ce450d383a41f142ff1000bca6f9c1ddc707897511b5b54e8e28b4d263d19cffdfa699cef034d667cd8f166f8274c0f237d41a SHA512 ae6afccdf6af99197072afabf0900e1a72f38acfa6c4d039e8db03d21e89513f8828f29eb292ca9dfdec64388dcc4a93db64139e3af66706aaac81461b5da96d DIST mutter-43.3.tar.xz 2782016 BLAKE2B 9a931dba410a71e67383a453c4480622fce3333ea5d7466bf05cf20b474e3cb06288ea8015bc391a77fc3a358c60282a965428c4984006a0ea8db9a7cfee2e2f SHA512 5e9d4b213ac674889af9c15dd52f79a28a1c38af57f08a19bd6b2bf78a799aaa2f6dcb76adb9fa8d6a94e21d988befc37a696bc06801c96e1f692c80a5aff2ae +DIST mutter-44.0.tar.xz 2838932 BLAKE2B 0a5ea5a45a8074face45727af5d332ef61d69180d941634bf1ab673f53cd710893ccbedd16cb7bc1a09b51120b2047105a04a8eae4fbcb3803179eba89c7d73e SHA512 c7d35e797d080f90cc43b2904bb04d2328fecd13cd7d1ab12b1db735d331b2df9501668c2e0f7a10ea3ad9821048b09cbeb7149fcda3d43f37e5a1834bb04e2b DIST mutter-44.rc.tar.xz 2837848 BLAKE2B 7590afd00f6e6e65062675fd2478a8b7f41e7199f0ea0f77ccd8e62ba6e07bdefea57f8206a1f57cef101c97abe9f621cd4bf3cabca0d2bd0249f330c104072d SHA512 1d7659f9b4bb96ea50c32f122a8e621639007d023970cfeeb2afe5351abc38b9a697163019e26c85cad611f65eccbcd9f940ff1ff5ab10509fda8122c43f9a66 diff --git a/x11-wm/mutter/mutter-44.0.ebuild b/x11-wm/mutter/mutter-44.0.ebuild new file mode 100644 index 000000000000..5ef3fcb79b38 --- /dev/null +++ b/x11-wm/mutter/mutter-44.0.ebuild @@ -0,0 +1,216 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) +inherit gnome.org gnome2-utils meson python-any-r1 udev xdg + +DESCRIPTION="GNOME compositing window manager based on Clutter" +HOMEPAGE="https://gitlab.gnome.org/GNOME/mutter/" + +LICENSE="GPL-2+" +SLOT="0/$(($(ver_cut 1) - 32))" # 0/libmutter_api_version - ONLY gnome-shell (or anything using mutter-clutter-.pc) should use the subslot + +IUSE="debug elogind gnome gtk-doc input_devices_wacom +introspection screencast sysprof systemd test udev wayland video_cards_nvidia" +# native backend requires gles3 for hybrid graphics blitting support, udev and a logind provider +REQUIRED_USE=" + gtk-doc? ( introspection ) + wayland? ( ^^ ( elogind systemd ) udev ) + test? ( wayland )" +RESTRICT="!test? ( test )" + +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" + +# gnome-settings-daemon is build checked, but used at runtime only for org.gnome.settings-daemon.peripherals.keyboard gschema +# xorg-server is needed at build and runtime with USE=wayland for Xwayland +# v3.32.2 has many excessive or unused *_req variables declared, thus currently the dep order ignores those and goes via dependency() call order +DEPEND=" + >=media-libs/graphene-1.10.2[introspection?] + x11-libs/gdk-pixbuf:2 + >=x11-libs/pango-1.46[introspection?] + >=x11-libs/cairo-1.14[X] + >=dev-libs/fribidi-1.0.0 + >=gnome-base/gsettings-desktop-schemas-42.0[introspection?] + >=dev-libs/glib-2.75.1:2 + gnome-base/gnome-settings-daemon + >=dev-libs/json-glib-0.12.0[introspection?] + >=x11-libs/libxkbcommon-0.4.3 + x11-libs/libICE + >=app-accessibility/at-spi2-core-2.46:2[introspection?] + sys-apps/dbus + >=x11-misc/colord-1.4.5:= + >=media-libs/lcms-2.6:2 + >=media-libs/harfbuzz-2.6.0 + + gnome? ( gnome-base/gnome-desktop:4= ) + + >=media-libs/libcanberra-0.26 + + media-libs/libglvnd[X] + + wayland? ( + >=dev-libs/wayland-protocols-1.31 + >=dev-libs/wayland-1.21.0 + + x11-libs/libdrm + media-libs/mesa[gbm(+)] + >=dev-libs/libinput-1.18.0:= + + elogind? ( sys-auth/elogind ) + x11-base/xwayland + video_cards_nvidia? ( gui-libs/egl-wayland ) + ) + udev? ( + >=virtual/libudev-232-r1:= + >=dev-libs/libgudev-232 + ) + systemd? ( sys-apps/systemd ) + x11-libs/libSM + input_devices_wacom? ( >=dev-libs/libwacom-0.13:= ) + >=x11-libs/startup-notification-0.7 + screencast? ( >=media-video/pipewire-0.3.21:= ) + introspection? ( >=dev-libs/gobject-introspection-1.54:= ) + test? ( >=x11-libs/gtk+-3.19.8:3[X,introspection?] ) + sysprof? ( >=dev-util/sysprof-capture-3.40.1:4 >=dev-util/sysprof-3.46.0 ) +" +# for now upstream has "have_x11 = true" in the meson.build, but sooner or later upstream is going to make X optional. +# X? ( +DEPEND+=" + >=gui-libs/gtk-4.0.0:4[X,introspection?] + >=x11-libs/libX11-1.7.0 + >=x11-libs/libXcomposite-0.4 + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + >=x11-libs/libXfixes-3 + >=x11-libs/libXi-1.7.4 + x11-libs/libXtst + x11-libs/libxkbfile + x11-misc/xkeyboard-config + >=x11-libs/libxkbcommon-0.4.3[X] + x11-libs/libXrender + >=x11-libs/libXrandr-1.5.0 + x11-libs/libxcb:= + x11-libs/libXinerama + x11-libs/libXau +" +# )" + +RDEPEND="${DEPEND} + gnome-extra/zenity + + !=dev-python/python-dbusmock-0.28[${PYTHON_USEDEP}]" + fi +} + +src_prepare() { + default + + sed -i -e "s:#!/usr/bin/bash:#!$(command -v bash):" src/tests/x11-test.sh || die +} + +src_configure() { + local emesonargs=( + --buildtype $(usex debug debug plain) + -Dopengl=true + -Dopengl_libname=libOpenGL + $(meson_use wayland gles2) + #gles2_libname + -Degl=true + -Dglx=true + $(meson_use wayland) + $(meson_use wayland xwayland) + $(meson_use systemd) + $(meson_use wayland native_backend) + $(meson_use screencast remote_desktop) + -Dlibgnome_desktop=true + $(meson_use udev) + -Dudev_dir=$(get_udevdir) + $(meson_use input_devices_wacom libwacom) + -Dsound_player=true + -Dpango_ft2=true + -Dstartup_notification=true + -Dsm=true + $(meson_use introspection) + $(meson_use gtk-doc docs) + $(meson_use test cogl_tests) + $(meson_use wayland core_tests) # core tests require wayland; overall -Dtests option is honored on top, so no extra conditional needed + -Dnative_tests=false + $(meson_use test clutter_tests) + $(meson_use test tests) + -Dkvm_tests=false + -Dtty_tests=false + $(meson_use sysprof profiler) + -Dinstalled_tests=false + + #verbose # Let upstream choose default for verbose mode + #xwayland_path + # TODO: relies on default settings, but in Gentoo we might have some more packages we want to give Xgrab access (mostly virtual managers and remote desktops) + #xwayland_grab_default_access_rules + ) + + if use wayland && use video_cards_nvidia; then + emesonargs+=( + -Degl_device=true + -Dwayland_eglstream=true + ) + else + emesonargs+=( + -Degl_device=false + -Dwayland_eglstream=false + ) + fi + + meson_src_configure +} + +src_test() { + gnome2_environment_reset # Avoid dconf that looks at XDG_DATA_DIRS, which can sandbox fail if flatpak is installed + glib-compile-schemas "${BUILD_DIR}"/data + GSETTINGS_SCHEMA_DIR="${BUILD_DIR}"/data meson_src_test --setup=CI +} + +pkg_postinst() { + use udev && udev_reload + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + use udev && udev_reload + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/x11-wm/openbox/files/openbox-3.6.1-glib-2.76.patch b/x11-wm/openbox/files/openbox-3.6.1-glib-2.76.patch new file mode 100644 index 000000000000..65d0dba17300 --- /dev/null +++ b/x11-wm/openbox/files/openbox-3.6.1-glib-2.76.patch @@ -0,0 +1,54 @@ +Gentoo Bug: https://bugs.gentoo.org/901777 +Upstream Bug: https://bugzilla.icculus.org/show_bug.cgi?id=6669 +Upstream Commit: https://github.com/Mikachu/openbox/commit/9ed6fdd71890c5cc43747f105382d5677e5d37e7 + +From 9ed6fdd71890c5cc43747f105382d5677e5d37e7 Mon Sep 17 00:00:00 2001 +From: pldubouilh +Date: Fri, 17 Mar 2023 18:23:47 +0100 +Subject: [PATCH] Fix list traversal issue in client_calc_layer + +The calls to client_calc_layer_internal can modify stacking_list, which +can cause us to follow dangling ->next pointers (either by the pointer +itself already being freed, or it pointing to a freed area). Avoid this +by copying the list first, the goal is to visit every client in the list +once so this should be fine. +--- + openbox/client.c | 9 +++++++-- + 1 file changed, 7 insertions(+), 2 deletions(-) + +diff --git a/openbox/client.c b/openbox/client.c +index 7168b2407..b8264587c 100644 +--- a/openbox/client.c ++++ b/openbox/client.c +@@ -2742,9 +2742,12 @@ static void client_calc_layer_internal(ObClient *self) + void client_calc_layer(ObClient *self) + { + GList *it; ++ /* the client_calc_layer_internal calls below modify stacking_list, ++ so we have to make a copy to iterate over */ ++ GList *list = g_list_copy(stacking_list); + + /* skip over stuff above fullscreen layer */ +- for (it = stacking_list; it; it = g_list_next(it)) ++ for (it = list; it; it = g_list_next(it)) + if (window_layer(it->data) <= OB_STACKING_LAYER_FULLSCREEN) break; + + /* find the windows in the fullscreen layer, and mark them not-visited */ +@@ -2757,7 +2760,7 @@ void client_calc_layer(ObClient *self) + client_calc_layer_internal(self); + + /* skip over stuff above fullscreen layer */ +- for (it = stacking_list; it; it = g_list_next(it)) ++ for (it = list; it; it = g_list_next(it)) + if (window_layer(it->data) <= OB_STACKING_LAYER_FULLSCREEN) break; + + /* now recalc any windows in the fullscreen layer which have not +@@ -2768,6 +2771,8 @@ void client_calc_layer(ObClient *self) + !WINDOW_AS_CLIENT(it->data)->visited) + client_calc_layer_internal(it->data); + } ++ ++ g_list_free(it); + } + + gboolean client_should_show(ObClient *self) diff --git a/x11-wm/openbox/openbox-3.6.1-r5.ebuild b/x11-wm/openbox/openbox-3.6.1-r5.ebuild new file mode 100644 index 000000000000..ebd2a5d8b75d --- /dev/null +++ b/x11-wm/openbox/openbox-3.6.1-r5.ebuild @@ -0,0 +1,123 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11}) +inherit autotools python-single-r1 + +DESCRIPTION="Standards compliant, fast, light-weight, extensible window manager" +HOMEPAGE="http://openbox.org/wiki/Main_Page" + +if [[ ${PV} == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/Mikachu/openbox.git" +else + SRC_URI="http://openbox.org/dist/openbox/${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x86-linux" +fi + +SRC_URI+=" branding? ( https://dev.gentoo.org/~hwoarang/distfiles/surreal-gentoo.tar.gz )" + +LICENSE="GPL-2" +SLOT="3" +IUSE="branding debug imlib nls session startup-notification svg xdg" +REQUIRED_USE="xdg? ( ${PYTHON_REQUIRED_USE} )" + +BDEPEND=" + sys-devel/gettext + virtual/pkgconfig +" +RDEPEND=" + dev-libs/glib:2 + >=dev-libs/libxml2-2.0 + >=media-libs/fontconfig-2 + x11-libs/cairo + x11-libs/libXau + x11-libs/libXcursor + x11-libs/libXext + x11-libs/libXft + x11-libs/libXinerama + x11-libs/libXrandr + x11-libs/libXt + >=x11-libs/pango-1.8[X] + imlib? ( media-libs/imlib2 ) + startup-notification? ( >=x11-libs/startup-notification-0.8 ) + svg? ( gnome-base/librsvg:2 ) + xdg? ( + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/pyxdg[${PYTHON_USEDEP}] + ') + ) +" +DEPEND="${RDEPEND} + x11-base/xorg-proto +" + +PATCHES=( + "${FILESDIR}/${PN}-3.5.2-gnome-session.patch" + # see https://github.com/danakj/openbox/pull/35 + "${FILESDIR}/${PN}-3.6.1-py3-xdg.patch" + # https://bugs.gentoo.org/827227 + "${FILESDIR}/${PN}-3.6.1-getgrent-to-getgroups.patch" + # https://bugs.gentoo.org/901777 + "${FILESDIR}/${PN}-3.6.1-glib-2.76.patch" +) + +pkg_setup() { + use xdg && python-single-r1_pkg_setup +} + +src_unpack() { + if [[ ${PV} == *9999* ]]; then + git-r3_src_unpack + fi + + default +} + +src_prepare() { + default + sed -i \ + -e "s:-O0 -ggdb ::" \ + -e 's/-fno-strict-aliasing//' \ + m4/openbox.m4 || die + eautoreconf +} + +src_configure() { + local myeconfargs=( + --disable-static + --with-x + $(use_enable debug) + $(use_enable imlib imlib2) + $(use_enable nls) + $(use_enable session session-management) + $(use_enable startup-notification) + $(use_enable svg librsvg) + ) + econf "${myeconfargs[@]}" +} + +src_install() { + dodir /etc/X11/Sessions + echo "/usr/bin/openbox-session" > "${ED}/etc/X11/Sessions/${PN}" + fperms a+x /etc/X11/Sessions/${PN} + emake DESTDIR="${D}" install + if use branding; then + insinto /usr/share/themes + doins -r "${WORKDIR}"/Surreal_Gentoo + # make it the default theme + sed -i \ + -e "//{n; s@.*@Surreal_Gentoo@}" \ + "${D}"/etc/xdg/openbox/rc.xml \ + || die "failed to set Surreal Gentoo as the default theme" + fi + find "${ED}" -name '*.la' -delete || die + if use xdg ; then + python_fix_shebang "${ED}"/usr/libexec/openbox-xdg-autostart + else + rm "${ED}"/usr/libexec/openbox-xdg-autostart || die + fi +}